helper exception callback lesser parameters
[oweals/gnunet.git] / src / include / gnunet_regex_lib.h
1 /*
2      This file is part of GNUnet
3      (C) 2012 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20 /**
21  * @file include/gnunet_regex_lib.h
22  * @brief library to parse regular expressions into dfa
23  * @author Maximilian Szengel
24  *
25  */
26
27 #ifndef GNUNET_REGEX_LIB_H
28 #define GNUNET_REGEX_LIB_H
29
30 #include "gnunet_util_lib.h"
31
32 #ifdef __cplusplus
33 extern "C"
34 {
35 #if 0                           /* keep Emacsens' auto-indent happy */
36 }
37 #endif
38 #endif
39
40 /**
41  * Automaton (NFA/DFA) representation.
42  */
43 struct GNUNET_REGEX_Automaton;
44
45
46 /**
47  * Edge representation.
48  */
49 struct GNUNET_REGEX_Edge
50 {
51   /**
52    * Label of the edge.  FIXME: might want to not consume exactly multiples of 8 bits, need length?
53    */
54   const char *label;
55
56   /**
57    * Destionation of the edge.
58    */
59   struct GNUNET_HashCode destination;
60 };
61
62
63 /**
64  * Construct an NFA by parsing the regex string of length 'len'.
65  *
66  * @param regex regular expression string.
67  * @param len length of the string.
68  *
69  * @return NFA, needs to be freed using GNUNET_REGEX_destroy_automaton.
70  */
71 struct GNUNET_REGEX_Automaton *
72 GNUNET_REGEX_construct_nfa (const char *regex, const size_t len);
73
74
75 /**
76  * Construct DFA for the given 'regex' of length 'len'.
77  *
78  * @param regex regular expression string.
79  * @param len length of the regular expression.
80  *
81  * @return DFA, needs to be freed using GNUNET_REGEX_destroy_automaton.
82  */
83 struct GNUNET_REGEX_Automaton *
84 GNUNET_REGEX_construct_dfa (const char *regex, const size_t len);
85
86
87 /**
88  * Free the memory allocated by constructing the GNUNET_REGEX_Automaton.
89  * data structure.
90  *
91  * @param a automaton to be destroyed.
92  */
93 void
94 GNUNET_REGEX_automaton_destroy (struct GNUNET_REGEX_Automaton *a);
95
96
97 /**
98  * Save the given automaton as a GraphViz dot file
99  *
100  * @param a the automaton to be saved
101  * @param filename where to save the file
102  * @param verbose if set to GNUNET_YES the generated graph will include extra
103  *                information such as the NFA states that were used to generate
104  *                the DFA state etc.
105  */
106 void
107 GNUNET_REGEX_automaton_save_graph (struct GNUNET_REGEX_Automaton *a,
108                                    const char *filename,
109                                    int verbose);
110
111
112 /**
113  * Evaluates the given 'string' against the given compiled regex.
114  *
115  * @param a automaton.
116  * @param string string to check.
117  *
118  * @return 0 if string matches, non 0 otherwise.
119  */
120 int
121 GNUNET_REGEX_eval (struct GNUNET_REGEX_Automaton *a,
122                    const char *string);
123
124
125 /**
126  * Get the first key for the given 'input_string'. This hashes
127  * the first x bits of the 'input_string'.
128  *
129  * @param input_string string.
130  * @param string_len length of the 'input_string'.
131  * @param key pointer to where to write the hash code.
132  *
133  * @return number of bits of 'input_string' that have been consumed
134  *         to construct the key
135  */
136 size_t
137 GNUNET_REGEX_get_first_key (const char *input_string, size_t string_len,
138                             struct GNUNET_HashCode * key);
139
140
141 /**
142  * Check if the given 'proof' matches the given 'key'.
143  *
144  * @param proof partial regex of a state.
145  * @param key hash of a state.
146  *
147  * @return GNUNET_OK if the proof is valid for the given key.
148  */
149 int
150 GNUNET_REGEX_check_proof (const char *proof,
151                           const struct GNUNET_HashCode *key);
152
153
154 /**
155  * Iterator callback function.
156  *
157  * @param cls closure.
158  * @param key hash for current state.
159  * @param proof proof for current state.
160  * @param accepting GNUNET_YES if this is an accepting state, GNUNET_NO if not.
161  * @param num_edges number of edges leaving current state.
162  * @param edges edges leaving current state.
163  */
164 typedef void (*GNUNET_REGEX_KeyIterator)(void *cls,
165                                          const struct GNUNET_HashCode *key,
166                                          const char *proof,
167                                          int accepting,
168                                          unsigned int num_edges,
169                                          const struct GNUNET_REGEX_Edge *edges);
170
171
172 /**
173  * Iterate over all edges starting from start state of automaton 'a'. Calling
174  * iterator for each edge.
175  *
176  * @param a automaton.
177  * @param iterator iterator called for each edge.
178  * @param iterator_cls closure.
179  */
180 void
181 GNUNET_REGEX_iterate_all_edges (struct GNUNET_REGEX_Automaton *a,
182                                 GNUNET_REGEX_KeyIterator iterator,
183                                 void *iterator_cls);
184
185
186 #if 0                           /* keep Emacsens' auto-indent happy */
187 {
188 #endif
189 #ifdef __cplusplus
190 }
191 #endif
192
193 /* end of gnunet_regex_lib.h */
194 #endif
195