aboutsummaryrefslogtreecommitdiff
path: root/src/regex
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-06-23 17:48:40 +0000
committerChristian Grothoff <christian@grothoff.org>2016-06-23 17:48:40 +0000
commitecae86479af22f233fec7a8c499976c0882b163f (patch)
treeeb1c0e2dce2909062216dad0f9df7d6e99fe2dab /src/regex
parente440229c4d9c0c51e72e84e562b98c47d6da437a (diff)
downloadgnunet-ecae86479af22f233fec7a8c499976c0882b163f.tar.gz
gnunet-ecae86479af22f233fec7a8c499976c0882b163f.zip
migrate first half of regex API to MQ lib
Diffstat (limited to 'src/regex')
-rw-r--r--src/regex/Makefile.am4
-rw-r--r--src/regex/regex_api_announce.c186
-rw-r--r--src/regex/regex_api_search.c (renamed from src/regex/regex_api.c)143
3 files changed, 193 insertions, 140 deletions
diff --git a/src/regex/Makefile.am b/src/regex/Makefile.am
index 43555cf72..6204a47d8 100644
--- a/src/regex/Makefile.am
+++ b/src/regex/Makefile.am
@@ -62,7 +62,9 @@ libgnunetregex_internal_a_DEPENDENCIES = \
62 62
63 63
64libgnunetregex_la_SOURCES = \ 64libgnunetregex_la_SOURCES = \
65 regex_api.c regex_ipc.h 65 regex_api_announce.c \
66 regex_api_search.c \
67 regex_ipc.h
66libgnunetregex_la_LIBADD = \ 68libgnunetregex_la_LIBADD = \
67 $(top_builddir)/src/util/libgnunetutil.la 69 $(top_builddir)/src/util/libgnunetutil.la
68libgnunetregex_la_LDFLAGS = \ 70libgnunetregex_la_LDFLAGS = \
diff --git a/src/regex/regex_api_announce.c b/src/regex/regex_api_announce.c
new file mode 100644
index 000000000..8953436a1
--- /dev/null
+++ b/src/regex/regex_api_announce.c
@@ -0,0 +1,186 @@
1/*
2 This file is part of GNUnet
3 Copyright (C) 2012, 2013, 2016 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
19*/
20/**
21 * @file regex/regex_api_announce.c
22 * @brief access regex service to advertise capabilities via regex
23 * @author Maximilian Szengel
24 * @author Christian Grothoff
25 */
26#include "platform.h"
27#include "gnunet_protocols.h"
28#include "gnunet_util_lib.h"
29#include "gnunet_regex_service.h"
30#include "regex_ipc.h"
31
32#define LOG(kind,...) GNUNET_log_from (kind, "regex-api",__VA_ARGS__)
33
34/**
35 * Handle to store cached data about a regex announce.
36 */
37struct GNUNET_REGEX_Announcement
38{
39 /**
40 * Connection to the regex service.
41 */
42 struct GNUNET_MQ_Handle *mq;
43
44 /**
45 * Our configuration.
46 */
47 const struct GNUNET_CONFIGURATION_Handle *cfg;
48
49 /**
50 * Message we're sending to the service.
51 */
52 char *regex;
53
54 /**
55 * Frequency of announcements.
56 */
57 struct GNUNET_TIME_Relative refresh_delay;
58
59 /**
60 * Number of characters per edge.
61 */
62 uint16_t compression;
63};
64
65
66
67/**
68 * (Re)connect to the REGEX service with the given announcement @a a.
69 *
70 * @param a REGEX to announce.
71 */
72static void
73announce_reconnect (struct GNUNET_REGEX_Announcement *a);
74
75
76/**
77 * We got a disconnect after asking regex to do the announcement.
78 * Retry.
79 *
80 * @param cls the `struct GNUNET_REGEX_Announcement` to retry
81 * @param error error code
82 */
83static void
84announce_mq_error_handler (void *cls,
85 enum GNUNET_MQ_Error error)
86{
87 struct GNUNET_REGEX_Announcement *a = cls;
88
89 GNUNET_MQ_destroy (a->mq);
90 a->mq = NULL;
91 announce_reconnect (a);
92}
93
94
95/**
96 * (Re)connect to the REGEX service with the given announcement @a a.
97 *
98 * @param a REGEX to announce.
99 */
100static void
101announce_reconnect (struct GNUNET_REGEX_Announcement *a)
102{
103 struct GNUNET_MQ_Envelope *env;
104 struct AnnounceMessage *am;
105 size_t slen;
106
107 a->mq = GNUNET_CLIENT_connecT (a->cfg,
108 "regex",
109 NULL,
110 &announce_mq_error_handler,
111 a);
112 if (NULL == a->mq)
113 return;
114 slen = strlen (a->regex) + 1;
115 env = GNUNET_MQ_msg_extra (am,
116 slen,
117 GNUNET_MESSAGE_TYPE_REGEX_ANNOUNCE);
118 am->compression = htons (a->compression);
119 am->reserved = htons (0);
120 am->refresh_delay = GNUNET_TIME_relative_hton (a->refresh_delay);
121 memcpy (&am[1],
122 a->regex,
123 slen);
124 GNUNET_MQ_send (a->mq,
125 env);
126}
127
128
129/**
130 * Announce the given peer under the given regular expression.
131 *
132 * @param cfg configuration to use
133 * @param regex Regular expression to announce.
134 * @param refresh_delay after what delay should the announcement be repeated?
135 * @param compression How many characters per edge can we squeeze?
136 * @return Handle to reuse o free cached resources.
137 * Must be freed by calling #GNUNET_REGEX_announce_cancel().
138 */
139struct GNUNET_REGEX_Announcement *
140GNUNET_REGEX_announce (const struct GNUNET_CONFIGURATION_Handle *cfg,
141 const char *regex,
142 struct GNUNET_TIME_Relative refresh_delay,
143 uint16_t compression)
144{
145 struct GNUNET_REGEX_Announcement *a;
146 size_t slen;
147
148 slen = strlen (regex) + 1;
149 if (slen + sizeof (struct AnnounceMessage) >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
150 {
151 GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
152 _("Regex `%s' is too long!\n"),
153 regex);
154 GNUNET_break (0);
155 return NULL;
156 }
157 a = GNUNET_new (struct GNUNET_REGEX_Announcement);
158 a->cfg = cfg;
159 a->refresh_delay = refresh_delay;
160 a->compression = compression;
161 a->regex = GNUNET_strdup (regex);
162 announce_reconnect (a);
163 if (NULL == a->mq)
164 {
165 GNUNET_free (a->regex);
166 GNUNET_free (a);
167 return NULL;
168 }
169 return a;
170}
171
172
173/**
174 * Stop announcing the regex specified by the given handle.
175 *
176 * @param a handle returned by a previous #GNUNET_REGEX_announce() call.
177 */
178void
179GNUNET_REGEX_announce_cancel (struct GNUNET_REGEX_Announcement *a)
180{
181 GNUNET_MQ_destroy (a->mq);
182 GNUNET_free (a->regex);
183 GNUNET_free (a);
184}
185
186/* end of regex_api_announce.c */
diff --git a/src/regex/regex_api.c b/src/regex/regex_api_search.c
index c3be2020f..728e12beb 100644
--- a/src/regex/regex_api.c
+++ b/src/regex/regex_api_search.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet 2 This file is part of GNUnet
3 Copyright (C) 2012, 2013 GNUnet e.V. 3 Copyright (C) 2012, 2013, 2016 GNUnet e.V.
4 4
5 GNUnet is free software; you can redistribute it and/or modify 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 6 it under the terms of the GNU General Public License as published
@@ -18,9 +18,9 @@
18 Boston, MA 02110-1301, USA. 18 Boston, MA 02110-1301, USA.
19*/ 19*/
20/** 20/**
21 * @file regex/regex_api.c 21 * @file regex/regex_api_search.c
22 * @brief access regex service to advertise capabilities via regex and discover 22 * @brief access regex service to discover
23 * respective peers using matching strings 23 * peers using matching strings
24 * @author Maximilian Szengel 24 * @author Maximilian Szengel
25 * @author Christian Grothoff 25 * @author Christian Grothoff
26 */ 26 */
@@ -32,141 +32,6 @@
32 32
33#define LOG(kind,...) GNUNET_log_from (kind, "regex-api",__VA_ARGS__) 33#define LOG(kind,...) GNUNET_log_from (kind, "regex-api",__VA_ARGS__)
34 34
35/**
36 * Handle to store cached data about a regex announce.
37 */
38struct GNUNET_REGEX_Announcement
39{
40 /**
41 * Connection to the regex service.
42 */
43 struct GNUNET_CLIENT_Connection *client;
44
45 /**
46 * Our configuration.
47 */
48 const struct GNUNET_CONFIGURATION_Handle *cfg;
49
50 /**
51 * Message we're sending to the service.
52 */
53 struct AnnounceMessage msg;
54};
55
56
57/**
58 * We got a response (!?) or disconnect after asking regex
59 * to do the announcement. Retry.
60 *
61 * @param cls the 'struct GNUNET_REGEX_Announcement' to retry
62 * @param msg NULL on disconnect
63 */
64static void
65handle_a_reconnect (void *cls,
66 const struct GNUNET_MessageHeader *msg);
67
68
69/**
70 * Try sending the announcement request to regex. On
71 * errors (i.e. regex died), try again.
72 *
73 * @param a the announcement to retry
74 */
75static void
76retry_announcement (struct GNUNET_REGEX_Announcement *a)
77{
78 GNUNET_assert (NULL != a->client);
79 GNUNET_assert (GNUNET_OK ==
80 GNUNET_CLIENT_transmit_and_get_response (a->client,
81 &a->msg.header,
82 GNUNET_TIME_UNIT_FOREVER_REL,
83 GNUNET_YES,
84 &handle_a_reconnect,
85 a));
86}
87
88
89/**
90 * We got a response (!?) or disconnect after asking regex
91 * to do the announcement. Retry.
92 *
93 * @param cls the 'struct GNUNET_REGEX_Announcement' to retry
94 * @param msg NULL on disconnect
95 */
96static void
97handle_a_reconnect (void *cls,
98 const struct GNUNET_MessageHeader *msg)
99{
100 struct GNUNET_REGEX_Announcement *a = cls;
101
102 GNUNET_CLIENT_disconnect (a->client);
103 a->client = GNUNET_CLIENT_connect ("regex", a->cfg);
104 retry_announcement (a);
105}
106
107
108/**
109 * Announce the given peer under the given regular expression.
110 *
111 * @param cfg configuration to use
112 * @param regex Regular expression to announce.
113 * @param refresh_delay after what delay should the announcement be repeated?
114 * @param compression How many characters per edge can we squeeze?
115 * @return Handle to reuse o free cached resources.
116 * Must be freed by calling #GNUNET_REGEX_announce_cancel().
117 */
118struct GNUNET_REGEX_Announcement *
119GNUNET_REGEX_announce (const struct GNUNET_CONFIGURATION_Handle *cfg,
120 const char *regex,
121 struct GNUNET_TIME_Relative refresh_delay,
122 uint16_t compression)
123{
124 struct GNUNET_REGEX_Announcement *a;
125 size_t slen;
126
127 slen = strlen (regex) + 1;
128 if (slen + sizeof (struct AnnounceMessage) >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
129 {
130 GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
131 _("Regex `%s' is too long!\n"),
132 regex);
133 GNUNET_break (0);
134 return NULL;
135 }
136 LOG (GNUNET_ERROR_TYPE_DEBUG,
137 "Starting REGEX announcement %s\n",
138 regex);
139 a = GNUNET_malloc (sizeof (struct GNUNET_REGEX_Announcement) + slen);
140 a->cfg = cfg;
141 a->client = GNUNET_CLIENT_connect ("regex", cfg);
142 if (NULL == a->client)
143 {
144 GNUNET_free (a);
145 return NULL;
146 }
147 a->msg.header.type = htons (GNUNET_MESSAGE_TYPE_REGEX_ANNOUNCE);
148 a->msg.header.size = htons (slen + sizeof (struct AnnounceMessage));
149 a->msg.compression = htons (compression);
150 a->msg.reserved = htons (0);
151 a->msg.refresh_delay = GNUNET_TIME_relative_hton (refresh_delay);
152 memcpy (&a[1], regex, slen);
153 retry_announcement (a);
154 return a;
155}
156
157
158/**
159 * Stop announcing the regex specified by the given handle.
160 *
161 * @param a handle returned by a previous GNUNET_REGEX_announce call.
162 */
163void
164GNUNET_REGEX_announce_cancel (struct GNUNET_REGEX_Announcement *a)
165{
166 GNUNET_CLIENT_disconnect (a->client);
167 GNUNET_free (a);
168}
169
170 35
171/** 36/**
172 * Handle to store data about a regex search. 37 * Handle to store data about a regex search.