Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 1 | /** |
| 2 | * @file validation.h |
| 3 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * @brief Validation routines. |
| 5 | * |
| 6 | * Copyright (c) 2019 CESNET, z.s.p.o. |
| 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
| 14 | |
| 15 | #ifndef LY_VALIDATION_H_ |
| 16 | #define LY_VALIDATION_H_ |
| 17 | |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 18 | #include <stdint.h> |
| 19 | |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 20 | #include "log.h" |
Michal Vasko | fbed4ea | 2020-07-08 10:43:30 +0200 | [diff] [blame] | 21 | #include "parser_data.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 22 | |
| 23 | struct ly_set; |
| 24 | struct lyd_node; |
| 25 | struct lys_module; |
| 26 | struct lysc_node; |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 27 | |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 28 | enum lyd_diff_op; |
| 29 | |
| 30 | /** |
| 31 | * @brief Add new changes into a diff. They are always merged. |
| 32 | * |
| 33 | * @param[in] node Node/subtree to add. |
| 34 | * @param[in] op Operation of the change. |
| 35 | * @param[in,out] diff Diff to update. |
| 36 | * @return LY_ERR value. |
| 37 | */ |
| 38 | LY_ERR lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff); |
| 39 | |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 40 | /** |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 41 | * @brief Finish validation of nodes and attributes. Specifically, when (is processed first) and type validation. |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 42 | * |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 43 | * !! It is assumed autodeleted nodes cannot be in the unresolved node type set !! |
| 44 | * |
| 45 | * @param[in,out] tree Data tree, is updated if some nodes are autodeleted. |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 46 | * @param[in] mod Module of the @p tree to take into consideration when deleting @p tree and moving it. |
| 47 | * If set, it is expected @p tree should point to the first node of @p mod. Otherwise it will simply be |
| 48 | * the first top-level sibling. |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 49 | * @param[in] node_when Set with nodes with "when" conditions, can be NULL. |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 50 | * @param[in] node_types Set with nodes with unresolved types, can be NULL |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 51 | * @param[in] meta_types Set with metdata with unresolved types, can be NULL. |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 52 | * @param[in,out] diff Validation diff. |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 53 | * @return LY_ERR value. |
| 54 | */ |
Michal Vasko | d3bb12f | 2020-12-04 14:33:09 +0100 | [diff] [blame] | 55 | LY_ERR lyd_validate_unres(struct lyd_node **tree, const struct lys_module *mod, struct ly_set *node_when, |
| 56 | struct ly_set *node_types, struct ly_set *meta_types, struct lyd_node **diff); |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 57 | |
| 58 | /** |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 59 | * @brief Validate new siblings. Specifically, check duplicated instances, autodelete default values and cases. |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 60 | * |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 61 | * !! It is assumed autodeleted nodes cannot yet be in the unresolved node type set !! |
| 62 | * |
| 63 | * @param[in,out] first First sibling. |
| 64 | * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings. |
| 65 | * @param[in] mod Module of the siblings, NULL for nested siblings. |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 66 | * @param[in,out] diff Validation diff. |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 67 | * @return LY_ERR value. |
| 68 | */ |
Michal Vasko | 8104fd4 | 2020-07-13 11:09:51 +0200 | [diff] [blame] | 69 | LY_ERR lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 70 | struct lyd_node **diff); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 71 | |
| 72 | /** |
| 73 | * @brief Perform all remaining validation tasks, the data tree must be final when calling this function. |
| 74 | * |
| 75 | * @param[in] first First sibling. |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 76 | * @param[in] parent Data parent. |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 77 | * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings. |
| 78 | * @param[in] mod Module of the siblings, NULL for nested siblings. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 79 | * @param[in] val_opts Validation options (@ref datavalidationoptions). |
Radek Krejci | 7931b19 | 2020-06-25 17:05:03 +0200 | [diff] [blame] | 80 | * @param[in] op Operation to validate (@ref datavalidateop) or 0 for data tree |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 81 | * @return LY_ERR value. |
| 82 | */ |
Michal Vasko | bd4db89 | 2020-11-23 16:58:20 +0100 | [diff] [blame] | 83 | LY_ERR lyd_validate_final_r(struct lyd_node *first, const struct lyd_node *parent, const struct lysc_node *sparent, |
| 84 | const struct lys_module *mod, uint32_t val_opts, LYD_VALIDATE_OP op); |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 85 | |
Michal Vasko | cde73ac | 2019-11-14 16:10:27 +0100 | [diff] [blame] | 86 | #endif /* LY_VALIDATION_H_ */ |