- move regex_from_file and combine to separate lib file
[oweals/gnunet.git] / src / regex / perf-regex.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 /**
22  * @file src/regex/prof-regex.c
23  * @brief Test how long it takes to create a automaton from a string regex.
24  * @author Bartlomiej Polot
25  */
26 #include <regex.h>
27 #include <time.h>
28 #include "platform.h"
29 #include "gnunet_regex_lib.h"
30 #include "regex_test_lib.h"
31
32 static const char *exe;
33
34 static void
35 usage(void)
36 {
37   fprintf (stderr, "Usage: %s REGEX_FILE COMPRESSION\n", exe);
38 }
39
40 /**
41  * The main function to obtain peer information.
42  *
43  * @param argc number of arguments from the command line
44  * @param argv command line arguments
45  * @return 0 ok, 1 on error
46  */
47 int
48 main (int argc, char *const *argv)
49 {
50   struct GNUNET_REGEX_Automaton* dfa;
51   char **regexes;
52   char *buffer;
53   char *regex;
54   unsigned int nr;
55   unsigned int i;
56   int compression;
57   long size;
58
59   GNUNET_log_setup ("perf-regex", "DEBUG", NULL);
60   exe = argv[0];
61   if (3 != argc)
62   {
63     usage();
64     return 1;
65   }
66   regexes = GNUNET_REGEX_read_from_file (argv[1]);
67
68   buffer = GNUNET_REGEX_combine (regexes);
69
70   GNUNET_asprintf (&regex, "GNVPN-0001-PAD(%s)(0|1)*", buffer);
71   size = strlen (regex);
72   
73   // fprintf (stderr, "Combined regex:\n%s\n", regex);
74   //   return 0;
75
76   compression = atoi (argv[2]);
77   dfa = GNUNET_REGEX_construct_dfa (regex, size, compression);
78   GNUNET_REGEX_automaton_destroy (dfa);
79   GNUNET_free (buffer);
80   for (i=0;i<nr;i++)
81     GNUNET_free_non_null (regexes[i]);
82   GNUNET_array_grow (regexes, nr, 0);
83   return 0;
84 }
85
86 /* end of prof-regex.c */