1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2016, Olivier MATZ <zer0@droids-corp.org>
8 * The parse operation is to check if an input (a string or vector of
9 * strings) matches the node tree. On success, the result is stored in a
10 * tree that describes which part of the input matches which node.
16 #include <sys/queue.h>
17 #include <sys/types.h>
25 * Create an empty parse tree.
28 * The empty parse tree.
30 struct ec_parse *ec_parse(const struct ec_node *node);
37 void ec_parse_free(struct ec_parse *parse);
44 void ec_parse_free_children(struct ec_parse *parse);
51 struct ec_parse *ec_parse_dup(const struct ec_parse *parse);
58 const struct ec_strvec *ec_parse_strvec(const struct ec_parse *parse);
60 /* a NULL return value is an error, with errno set
61 ENOTSUP: no ->parse() operation
68 struct ec_parse *ec_node_parse(const struct ec_node *node, const char *str);
75 struct ec_parse *ec_node_parse_strvec(const struct ec_node *node,
76 const struct ec_strvec *strvec);
83 #define EC_PARSE_NOMATCH INT_MAX
85 /* internal: used by nodes
87 * state is the current parse tree, which is built piece by piece while
88 * parsing the node tree: ec_node_parse_child() creates a new child in
89 * this state parse tree, and calls the parse() method for the child
90 * node, with state pointing to this new child. If it does not match,
91 * the child is removed in the state, else it is kept, with its
92 * possible descendants.
95 * EC_PARSE_NOMATCH (positive) if it does not match
96 * any other negative value (-errno) for other errors
97 * the number of matched strings in strvec
99 int ec_node_parse_child(const struct ec_node *node,
100 struct ec_parse *state,
101 const struct ec_strvec *strvec);
108 void ec_parse_link_child(struct ec_parse *parse,
109 struct ec_parse *child);
115 void ec_parse_unlink_child(struct ec_parse *parse,
116 struct ec_parse *child);
119 #define ec_parse_get_root(parse) ({ \
120 const struct ec_parse *p_ = parse; /* check type */ \
121 struct ec_parse *parse_ = (struct ec_parse *)parse; \
122 typeof(parse) res_; \
124 res_ = __ec_parse_get_root(parse_); \
133 struct ec_parse *__ec_parse_get_root(struct ec_parse *parse);
140 struct ec_parse *ec_parse_get_parent(const struct ec_parse *parse);
143 * Get the first child of a tree.
146 struct ec_parse *ec_parse_get_first_child(const struct ec_parse *parse);
153 struct ec_parse *ec_parse_get_last_child(const struct ec_parse *parse);
160 struct ec_parse *ec_parse_get_next(const struct ec_parse *parse);
167 #define EC_PARSE_FOREACH_CHILD(child, parse) \
168 for (child = ec_parse_get_first_child(parse); \
170 child = ec_parse_get_next(child)) \
177 bool ec_parse_has_child(const struct ec_parse *parse);
184 const struct ec_node *ec_parse_get_node(const struct ec_parse *parse);
191 void ec_parse_del_last_child(struct ec_parse *parse);
198 struct ec_keyval *ec_parse_get_attrs(struct ec_parse *parse);
205 void ec_parse_dump(FILE *out, const struct ec_parse *parse);
212 struct ec_parse *ec_parse_find_first(struct ec_parse *parse,
216 * Iterate among parse tree
219 * for (iter = state; iter != NULL; iter = ec_parse_iter_next(iter))
221 struct ec_parse *ec_parse_iter_next(struct ec_parse *parse);
228 size_t ec_parse_len(const struct ec_parse *parse);
235 size_t ec_parse_matches(const struct ec_parse *parse);