Moved regex profiler and profiler daemon from mesh to regex, adaped to regex dht lib
[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   int compression;
55   long size;
56
57   GNUNET_log_setup ("perf-regex", "DEBUG", NULL);
58   exe = argv[0];
59   if (3 != argc)
60   {
61     usage();
62     return 1;
63   }
64   regexes = GNUNET_REGEX_read_from_file (argv[1]);
65
66   if (NULL == regexes)
67   {
68     usage();
69     return 2;
70   }
71   buffer = GNUNET_REGEX_combine (regexes);
72
73   GNUNET_asprintf (&regex, "GNVPN-0001-PAD(%s)(0|1)*", buffer);
74   size = strlen (regex);
75
76   // fprintf (stderr, "Combined regex (%ld bytes):\n%s\n", size, regex);
77   //   return 0;
78
79   compression = atoi (argv[2]);
80   dfa = GNUNET_REGEX_construct_dfa (regex, size, compression);
81   GNUNET_REGEX_automaton_destroy (dfa);
82   GNUNET_free (buffer);
83   GNUNET_REGEX_free_from_file (regexes);
84   return 0;
85 }
86
87 /* end of prof-regex.c */