diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-06-20 08:32:50 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-06-20 08:32:50 +0000 |
commit | 21a2b4f95b4488645ba5a6254fcb8919c4915f73 (patch) | |
tree | 00c92cb7103cc14fba7e63e8dee99fe711856863 /src/regex/test_regex_iterate_api.c | |
parent | 5533b105943b4f6dd688c1758350cd83ebeab3b9 (diff) |
continuing refactoring of regex library structure, disambiguating symbol names between old regex library which is now internal and the public API; moving IP-to-regex conversion functions to tun library, as only vpn is using those to begin with
Diffstat (limited to 'src/regex/test_regex_iterate_api.c')
-rw-r--r-- | src/regex/test_regex_iterate_api.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/regex/test_regex_iterate_api.c b/src/regex/test_regex_iterate_api.c index 695bc30759..dd6c09347d 100644 --- a/src/regex/test_regex_iterate_api.c +++ b/src/regex/test_regex_iterate_api.c @@ -25,7 +25,7 @@ #include <regex.h> #include <time.h> #include "platform.h" -#include "gnunet_regex_lib.h" +#include "regex_internal_lib.h" #include "regex_internal.h" /** @@ -36,7 +36,7 @@ /** * Set to GNUNET_YES to save a debug graph. */ -#define GNUNET_REGEX_ITERATE_SAVE_DEBUG_GRAPH GNUNET_NO +#define REGEX_ITERNAL_ITERATE_SAVE_DEBUG_GRAPH GNUNET_NO static unsigned int transition_counter; @@ -61,7 +61,7 @@ struct RegexStringPair static void key_iterator (void *cls, const struct GNUNET_HashCode *key, const char *proof, int accepting, unsigned int num_edges, - const struct GNUNET_REGEX_Edge *edges) + const struct REGEX_ITERNAL_Edge *edges) { unsigned int i; struct IteratorContext *ctx = cls; @@ -101,7 +101,7 @@ key_iterator (void *cls, const struct GNUNET_HashCode *key, const char *proof, ctx->match_count++; } - if (GNUNET_OK != GNUNET_REGEX_check_proof (proof, key)) + if (GNUNET_OK != REGEX_ITERNAL_check_proof (proof, key)) { ctx->error++; GNUNET_log (GNUNET_ERROR_TYPE_ERROR, @@ -117,7 +117,7 @@ main (int argc, char *argv[]) GNUNET_log_setup ("test-regex", "WARNING", NULL); int error; - struct GNUNET_REGEX_Automaton *dfa; + struct REGEX_ITERNAL_Automaton *dfa; unsigned int i; unsigned int num_transitions; char *filename = NULL; @@ -161,7 +161,7 @@ main (int argc, char *argv[]) /* Create graph */ - if (GNUNET_YES == GNUNET_REGEX_ITERATE_SAVE_DEBUG_GRAPH) + if (GNUNET_YES == REGEX_ITERNAL_ITERATE_SAVE_DEBUG_GRAPH) { GNUNET_asprintf (&filename, "iteration_graph_%u.dot", i); ctx.graph_filep = fopen (filename, "w"); @@ -191,10 +191,10 @@ main (int argc, char *argv[]) ctx.strings = rxstr[i].strings; ctx.match_count = 0; dfa = - GNUNET_REGEX_construct_dfa (rxstr[i].regex, strlen (rxstr[i].regex), 0); - GNUNET_REGEX_iterate_all_edges (dfa, key_iterator, &ctx); + REGEX_ITERNAL_construct_dfa (rxstr[i].regex, strlen (rxstr[i].regex), 0); + REGEX_ITERNAL_iterate_all_edges (dfa, key_iterator, &ctx); num_transitions = - GNUNET_REGEX_get_transition_count (dfa) - dfa->start->transition_count; + REGEX_ITERNAL_get_transition_count (dfa) - dfa->start->transition_count; if (transition_counter < num_transitions) { @@ -218,7 +218,7 @@ main (int argc, char *argv[]) error += (ctx.string_count - ctx.match_count); } - GNUNET_REGEX_automaton_destroy (dfa); + REGEX_ITERNAL_automaton_destroy (dfa); /* Finish graph */ if (GNUNET_YES == ctx.should_save_graph) @@ -238,9 +238,9 @@ main (int argc, char *argv[]) ctx.match_count = 0; dfa = - GNUNET_REGEX_construct_dfa (rxstr[i].regex, strlen (rxstr[i].regex), 0); - GNUNET_REGEX_dfa_add_multi_strides (NULL, dfa, 2); - GNUNET_REGEX_iterate_all_edges (dfa, key_iterator, &ctx); + REGEX_ITERNAL_construct_dfa (rxstr[i].regex, strlen (rxstr[i].regex), 0); + REGEX_ITERNAL_dfa_add_multi_strides (NULL, dfa, 2); + REGEX_ITERNAL_iterate_all_edges (dfa, key_iterator, &ctx); if (ctx.match_count < ctx.string_count) { @@ -249,7 +249,7 @@ main (int argc, char *argv[]) error += (ctx.string_count - ctx.match_count); } - GNUNET_REGEX_automaton_destroy (dfa); + REGEX_ITERNAL_automaton_destroy (dfa); } error += ctx.error; |