b214d6a931de9168927befbdbc897f372e5eab1d
[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 GNUNET_HashCode * key, const char *proof,
32               int accepting, unsigned int num_edges,
33               const struct GNUNET_REGEX_Edge *edges)
34 {
35   int i;
36
37   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Iterating...\n");
38   for (i = 0; i < num_edges; i++)
39   {
40     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Edge %i: %s\n", i, edges[i].label);
41   }
42
43   if (NULL != proof)
44     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Proof: %s\n", proof);
45 }
46
47 int
48 main (int argc, char *argv[])
49 {
50   GNUNET_log_setup ("test-regex",
51 #if VERBOSE
52                     "DEBUG",
53 #else
54                     "WARNING",
55 #endif
56                     NULL);
57
58   int error;
59   const char *regex;
60   struct GNUNET_REGEX_Automaton *dfa;
61
62   error = 0;
63   regex = "ab(c|d)+c*(a(b|c)d)+";
64
65   dfa = GNUNET_REGEX_construct_dfa (regex, strlen (regex));
66   GNUNET_REGEX_automaton_save_graph (dfa, "dfa.dot");
67   GNUNET_REGEX_iterate_all_edges (dfa, key_iterator, NULL);
68   GNUNET_REGEX_automaton_destroy (dfa);
69
70   return error;
71 }