pass state to completed api
[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 #ifndef ECOLI_NODE_
29 #define ECOLI_NODE_
30
31 #include <sys/queue.h>
32 #include <sys/types.h>
33 #include <stdio.h>
34
35 #define EC_NODE_ENDLIST ((void *)1)
36
37 struct ec_node;
38 struct ec_parsed;
39 struct ec_completed;
40 struct ec_strvec;
41 struct ec_keyval;
42
43 #define EC_NODE_TYPE_REGISTER(t)                                                \
44         static void ec_node_init_##t(void);                             \
45         static void __attribute__((constructor, used))                  \
46         ec_node_init_##t(void)                                          \
47         {                                                               \
48                 if (ec_node_type_register(&t) < 0)                      \
49                         fprintf(stderr, "cannot register %s\n", t.name); \
50         }
51
52 TAILQ_HEAD(ec_node_type_list, ec_node_type);
53
54 /* return 0 on success, else -errno. */
55 typedef int (*ec_node_build_t)(struct ec_node *node);
56
57 typedef int (*ec_node_parse_t)(const struct ec_node *node,
58                         struct ec_parsed *state,
59                         const struct ec_strvec *strvec);
60 typedef struct ec_completed *(*ec_node_complete_t)(const struct ec_node *node,
61                                                 struct ec_parsed *state,
62                                                 const struct ec_strvec *strvec);
63 typedef const char * (*ec_node_desc_t)(const struct ec_node *);
64 typedef void (*ec_node_init_priv_t)(struct ec_node *);
65 typedef void (*ec_node_free_priv_t)(struct ec_node *);
66
67 /**
68  * A structure describing a node type.
69  */
70 struct ec_node_type {
71         TAILQ_ENTRY(ec_node_type) next;  /**< Next in list. */
72         const char *name;              /**< Node type name. */
73         ec_node_build_t build; /* (re)build the node, called by generic parse */
74         ec_node_parse_t parse;
75         ec_node_complete_t complete;
76         ec_node_desc_t desc;
77         size_t size;
78         ec_node_init_priv_t init_priv;
79         ec_node_free_priv_t free_priv;
80 };
81
82 /**
83  * Register a node type.
84  *
85  * @param type
86  *   A pointer to a ec_test structure describing the test
87  *   to be registered.
88  * @return
89  *   0 on success, negative value on error.
90  */
91 int ec_node_type_register(struct ec_node_type *type);
92
93 /**
94  * Lookup node type by name
95  *
96  * @param name
97  *   The name of the node type to search.
98  * @return
99  *   The node type if found, or NULL on error.
100  */
101 struct ec_node_type *ec_node_type_lookup(const char *name);
102
103 /**
104  * Dump registered log types
105  */
106 void ec_node_type_dump(FILE *out);
107
108 TAILQ_HEAD(ec_node_list, ec_node);
109
110 struct ec_node {
111         const struct ec_node_type *type;
112         char *id;
113         char *desc;
114         struct ec_keyval *attrs;
115         /* XXX ensure parent and child are properly set in all nodes */
116         struct ec_node *parent;
117         unsigned int refcnt;
118 #define EC_NODE_F_BUILT 0x0001 /** set if configuration is built */
119         unsigned int flags;
120
121         TAILQ_ENTRY(ec_node) next;
122         struct ec_node_list children;
123 };
124
125 /* create a new node when the type is known, typically called from the node
126  * code */
127 struct ec_node *__ec_node(const struct ec_node_type *type, const char *id);
128
129 /* create a_new node node */
130 struct ec_node *ec_node(const char *typename, const char *id);
131
132 struct ec_node *ec_node_clone(struct ec_node *node);
133 void ec_node_free(struct ec_node *node);
134
135 /* XXX add more accessors */
136 struct ec_keyval *ec_node_attrs(const struct ec_node *node);
137 struct ec_node *ec_node_parent(const struct ec_node *node);
138 const char *ec_node_id(const struct ec_node *node);
139 const char *ec_node_desc(const struct ec_node *node);
140
141 void ec_node_dump(FILE *out, const struct ec_node *node);
142 struct ec_node *ec_node_find(struct ec_node *node, const char *id);
143
144 #endif