regex: iterating over the initial states
[oweals/gnunet.git] / src / regex / test_regex_iterate_api.c
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 regex/test_regex_iterate_api.c
22  * @brief test for regex.c
23  * @author Maximilian Szengel
24  */
25 #include <regex.h>
26 #include <time.h>
27 #include "platform.h"
28 #include "gnunet_regex_lib.h"
29
30 void
31 key_iterator (void *cls, const struct GNUNET_HashCode *key, const char *proof,
32               int accepting, unsigned int num_edges,
33               const struct GNUNET_REGEX_Edge *edges)
34 {
35   unsigned int i;
36   int *error = cls;
37
38   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Iterating... (accepting: %i)\n",
39               accepting);
40   for (i = 0; i < num_edges; i++)
41   {
42     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Edge %i: %s\n", i, edges[i].label);
43   }
44
45   *error += (GNUNET_OK == GNUNET_REGEX_check_proof (proof, key)) ? 0 : 1;
46
47   if (NULL != proof)
48     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Proof: %s\n", proof);
49 }
50
51 int
52 main (int argc, char *argv[])
53 {
54   GNUNET_log_setup ("test-regex",
55 #if VERBOSE
56                     "DEBUG",
57 #else
58                     "WARNING",
59 #endif
60                     NULL);
61
62   int error;
63   int i;
64   struct GNUNET_REGEX_Automaton *dfa;
65
66   error = 0;
67
68   const char *regex[17] = {
69     "ab(c|d)+c*(a(b|c)+d)+(bla)+",
70     "(bla)*",
71     "b(lab)*la",
72     "(ab)*",
73     "ab(c|d)+c*(a(b|c)+d)+(bla)(bla)*",
74     "z(abc|def)?xyz",
75     "1*0(0|1)*",
76     "a*b*",
77     "a+X*y+c|p|R|Z*K*y*R+w|Y*6+n+h*k*w+V*F|W*B*e*",
78     "abcd:(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1):(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)(0|1)",
79     "abc(1|0)*def",
80     "ab|ac",
81     "(ab)(ab)*",
82     "ab|cd|ef|gh",
83     "a|b|c|d|e|f|g",
84     "(ab)|(ac)",
85     "a(b|c)"
86   };
87
88   for (i = 0; i < 17; i++)
89   {
90     dfa = GNUNET_REGEX_construct_dfa (regex[i], strlen (regex[i]));
91     GNUNET_REGEX_iterate_all_edges (dfa, key_iterator, &error);
92     GNUNET_REGEX_automaton_destroy (dfa);
93   }
94   
95   return error;
96 }