8fe2d769ed962fa08e61f7b9f0903d6ed5f237c1
[protos/libecoli.git] / lib / ecoli_node.h
1 /*
2  * Copyright (c) 2016, Olivier MATZ <zer0@droids-corp.org>
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  *     * Redistributions of source code must retain the above copyright
8  *       notice, this list of conditions and the following disclaimer.
9  *     * Redistributions in binary form must reproduce the above copyright
10  *       notice, this list of conditions and the following disclaimer in the
11  *       documentation and/or other materials provided with the distribution.
12  *     * Neither the name of the University of California, Berkeley nor the
13  *       names of its contributors may be used to endorse or promote products
14  *       derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 /**
29  * Interface to manage the ecoli nodes.
30  *
31  * A node is a main structure of the ecoli library, used to define how
32  * to match and complete the input tokens. A node is a generic object
33  * that implements:
34  * - a parse(node, input) method: check if an input matches
35  * - a complete(node, input) method: return possible completions for
36  *   a given input
37  * - some other methods to initialize, free, ...
38  *
39  * One basic example is the string node (ec_node_str). A node
40  * ec_node_str("foo") will match any token list starting with "foo",
41  * for example:
42  * - ["foo"]
43  * - ["foo", "bar", ...]
44  * But will not match:
45  * - []
46  * - ["bar", ...]
47  *
48  * A node ec_node_str("foo") will complete with "foo" if the input
49  * contains one token, with the same beginning than "foo":
50  * - [""]
51  * - ["f"]
52  * - ["fo"]
53  * - ["foo"]
54  * But it will not complete:
55  * - []
56  * - ["bar"]
57  * - ["f", ""]
58  * - ["", "f"]
59  *
60  * A node can have child nodes. For instance, a sequence node
61  * ec_node_seq(ec_node_str("foo"), ec_node_str("bar")) will match
62  * ["foo", "bar"].
63  */
64
65 #ifndef ECOLI_NODE_
66 #define ECOLI_NODE_
67
68 #include <sys/queue.h>
69 #include <sys/types.h>
70 #include <stdio.h>
71
72 #define EC_NODE_ENDLIST ((void *)1)
73
74 struct ec_node;
75 struct ec_parsed;
76 struct ec_completed;
77 struct ec_strvec;
78 struct ec_keyval;
79
80 #define EC_NODE_TYPE_REGISTER(t)                                                \
81         static void ec_node_init_##t(void);                             \
82         static void __attribute__((constructor, used))                  \
83         ec_node_init_##t(void)                                          \
84         {                                                               \
85                 if (ec_node_type_register(&t) < 0)                      \
86                         fprintf(stderr, "cannot register %s\n", t.name); \
87         }
88
89 TAILQ_HEAD(ec_node_type_list, ec_node_type);
90
91 /* return 0 on success, else -errno. */
92 typedef int (*ec_node_build_t)(struct ec_node *node);
93
94 typedef int (*ec_node_parse_t)(const struct ec_node *node,
95                         struct ec_parsed *state,
96                         const struct ec_strvec *strvec);
97 typedef int (*ec_node_complete_t)(const struct ec_node *node,
98                                 struct ec_completed *completed_state,
99                                 const struct ec_strvec *strvec);
100 typedef size_t (*ec_node_get_max_parse_len_t)(const struct ec_node *node);
101 typedef const char * (*ec_node_desc_t)(const struct ec_node *);
102 typedef void (*ec_node_init_priv_t)(struct ec_node *);
103 typedef void (*ec_node_free_priv_t)(struct ec_node *);
104
105 /**
106  * A structure describing a node type.
107  */
108 struct ec_node_type {
109         TAILQ_ENTRY(ec_node_type) next;  /**< Next in list. */
110         const char *name;                /**< Node type name. */
111         ec_node_build_t build;           /**< (Re)build the node */
112         ec_node_parse_t parse;
113         ec_node_complete_t complete;
114         ec_node_get_max_parse_len_t get_max_parse_len;
115         ec_node_desc_t desc;
116         size_t size;
117         ec_node_init_priv_t init_priv;
118         ec_node_free_priv_t free_priv;
119 };
120
121 /**
122  * Register a node type.
123  *
124  * @param type
125  *   A pointer to a ec_test structure describing the test
126  *   to be registered.
127  * @return
128  *   0 on success, negative value on error.
129  */
130 int ec_node_type_register(struct ec_node_type *type);
131
132 /**
133  * Lookup node type by name
134  *
135  * @param name
136  *   The name of the node type to search.
137  * @return
138  *   The node type if found, or NULL on error.
139  */
140 struct ec_node_type *ec_node_type_lookup(const char *name);
141
142 /**
143  * Dump registered log types
144  */
145 void ec_node_type_dump(FILE *out);
146
147 TAILQ_HEAD(ec_node_list, ec_node);
148
149 struct ec_node {
150         const struct ec_node_type *type;
151         char *id;
152         char *desc;
153         struct ec_keyval *attrs;
154         /* XXX ensure parent and child are properly set in all nodes */
155         struct ec_node *parent;
156         unsigned int refcnt;
157 #define EC_NODE_F_BUILT 0x0001 /** set if configuration is built */
158         unsigned int flags;
159
160         TAILQ_ENTRY(ec_node) next;
161         struct ec_node_list children;
162 };
163
164 /* create a new node when the type is known, typically called from the node
165  * code */
166 struct ec_node *__ec_node(const struct ec_node_type *type, const char *id);
167
168 /* create a_new node node */
169 struct ec_node *ec_node(const char *typename, const char *id);
170
171 struct ec_node *ec_node_clone(struct ec_node *node);
172 void ec_node_free(struct ec_node *node);
173
174 /**
175  * Get the max len of strvec that can be parsed by this node
176  *
177  * If there is no maximum, return SIZE_MAX.
178  */
179 size_t ec_node_get_max_parse_len(const struct ec_node *node);
180
181 /* XXX add more accessors */
182 struct ec_keyval *ec_node_attrs(const struct ec_node *node);
183 struct ec_node *ec_node_parent(const struct ec_node *node);
184 const char *ec_node_id(const struct ec_node *node);
185 const char *ec_node_desc(const struct ec_node *node);
186
187 void ec_node_dump(FILE *out, const struct ec_node *node);
188 struct ec_node *ec_node_find(struct ec_node *node, const char *id);
189
190 #endif