blob: a5c4ffb95b4e7c23369f8d89201433d913bdc51d [file] [log] [blame]
Michal Vaskocde73ac2019-11-14 16:10:27 +01001/**
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 Krejci47fab892020-11-05 17:02:41 +010018#include <stdint.h>
19
Michal Vaskocde73ac2019-11-14 16:10:27 +010020#include "log.h"
Michal Vaskofbed4ea2020-07-08 10:43:30 +020021#include "parser_data.h"
Radek Krejci47fab892020-11-05 17:02:41 +010022
23struct ly_set;
24struct lyd_node;
25struct lys_module;
26struct lysc_node;
Michal Vaskocde73ac2019-11-14 16:10:27 +010027
Michal Vaskoa6669ba2020-08-06 16:14:26 +020028enum 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 */
38LY_ERR lyd_val_diff_add(const struct lyd_node *node, enum lyd_diff_op op, struct lyd_node **diff);
39
Michal Vaskocde73ac2019-11-14 16:10:27 +010040/**
Michal Vaskob1b5c262020-03-05 14:29:47 +010041 * @brief Finish validation of nodes and attributes. Specifically, when (is processed first) and type validation.
Michal Vaskocde73ac2019-11-14 16:10:27 +010042 *
Michal Vaskob1b5c262020-03-05 14:29:47 +010043 * !! 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.
46 * @param[in] node_when Set with nodes with "when" conditions, can be NULL.
Michal Vaskocde73ac2019-11-14 16:10:27 +010047 * @param[in] node_types Set with nodes with unresolved types, can be NULL
Michal Vasko9f96a052020-03-10 09:41:45 +010048 * @param[in] meta_types Set with metdata with unresolved types, can be NULL.
Michal Vasko8104fd42020-07-13 11:09:51 +020049 * @param[in,out] diff Validation diff.
Michal Vaskocde73ac2019-11-14 16:10:27 +010050 * @return LY_ERR value.
51 */
Michal Vasko9f96a052020-03-10 09:41:45 +010052LY_ERR lyd_validate_unres(struct lyd_node **tree, struct ly_set *node_when, struct ly_set *node_types, struct ly_set *meta_types,
Michal Vaskofeca4fb2020-10-05 08:58:40 +020053 struct lyd_node **diff);
Michal Vaskocde73ac2019-11-14 16:10:27 +010054
55/**
Michal Vaskob1b5c262020-03-05 14:29:47 +010056 * @brief Validate new siblings. Specifically, check duplicated instances, autodelete default values and cases.
Michal Vaskocde73ac2019-11-14 16:10:27 +010057 *
Michal Vaskob1b5c262020-03-05 14:29:47 +010058 * !! It is assumed autodeleted nodes cannot yet be in the unresolved node type set !!
59 *
60 * @param[in,out] first First sibling.
61 * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings.
62 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vasko8104fd42020-07-13 11:09:51 +020063 * @param[in,out] diff Validation diff.
Michal Vaskob1b5c262020-03-05 14:29:47 +010064 * @return LY_ERR value.
65 */
Michal Vasko8104fd42020-07-13 11:09:51 +020066LY_ERR lyd_validate_new(struct lyd_node **first, const struct lysc_node *sparent, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +020067 struct lyd_node **diff);
Michal Vaskob1b5c262020-03-05 14:29:47 +010068
69/**
70 * @brief Perform all remaining validation tasks, the data tree must be final when calling this function.
71 *
72 * @param[in] first First sibling.
73 * @param[in] sparent Schema parent of the siblings, NULL for top-level siblings.
74 * @param[in] mod Module of the siblings, NULL for nested siblings.
Michal Vaskof03ed032020-03-04 13:31:44 +010075 * @param[in] val_opts Validation options (@ref datavalidationoptions).
Radek Krejci7931b192020-06-25 17:05:03 +020076 * @param[in] op Operation to validate (@ref datavalidateop) or 0 for data tree
Michal Vaskocde73ac2019-11-14 16:10:27 +010077 * @return LY_ERR value.
78 */
Michal Vaskofea12c62020-03-30 11:00:15 +020079LY_ERR lyd_validate_final_r(struct lyd_node *first, const struct lysc_node *sparent, const struct lys_module *mod,
Radek Krejci1deb5be2020-08-26 16:43:36 +020080 uint32_t val_opts, LYD_VALIDATE_OP op);
Michal Vasko9b368d32020-02-14 13:53:31 +010081
Michal Vaskocde73ac2019-11-14 16:10:27 +010082#endif /* LY_VALIDATION_H_ */