missing changes to headers
[oweals/gnunet.git] / src / include / gnunet_namestore_service.h
1 /*
2      This file is part of GNUnet
3      Copyright (C) 2012, 2013 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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file include/gnunet_namestore_service.h
23  * @brief API that can be used to store naming information on a GNUnet node;
24  *        Naming information can either be records for which this peer/user
25  *        is authoritative, or blocks which are cached, encrypted naming
26  *        data from other peers.
27  * @author Christian Grothoff
28  */
29 #ifndef GNUNET_NAMESTORE_SERVICE_H
30 #define GNUNET_NAMESTORE_SERVICE_H
31
32 #include "gnunet_util_lib.h"
33 #include "gnunet_block_lib.h"
34 #include "gnunet_gnsrecord_lib.h"
35
36 #ifdef __cplusplus
37 extern "C"
38 {
39 #if 0                           /* keep Emacsens' auto-indent happy */
40 }
41 #endif
42 #endif
43
44
45 /**
46  * Entry in the queue.
47  */
48 struct GNUNET_NAMESTORE_QueueEntry;
49
50 /**
51  * Handle to the namestore service.
52  */
53 struct GNUNET_NAMESTORE_Handle;
54
55 /**
56  * Handle to the namestore zone iterator.
57  */
58 struct GNUNET_NAMESTORE_ZoneIterator;
59
60
61 /**
62  * Connect to the namestore service.
63  *
64  * @param cfg configuration to use
65  * @return handle to use to access the service
66  */
67 struct GNUNET_NAMESTORE_Handle *
68 GNUNET_NAMESTORE_connect (const struct GNUNET_CONFIGURATION_Handle *cfg);
69
70
71 /**
72  * Disconnect from the namestore service (and free associated
73  * resources).  Must not be called from within operation callbacks of
74  * the API.
75  *
76  * @param h handle to the namestore
77  */
78 void
79 GNUNET_NAMESTORE_disconnect (struct GNUNET_NAMESTORE_Handle *h);
80
81
82 /**
83  * Continuation called to notify client about result of the
84  * operation.
85  *
86  * @param cls closure
87  * @param success #GNUNET_SYSERR on failure (including timeout/queue drop/failure to validate)
88  *                #GNUNET_NO if content was already there or not found
89  *                #GNUNET_YES (or other positive value) on success
90  * @param emsg NULL on success, otherwise an error message
91  */
92 typedef void
93 (*GNUNET_NAMESTORE_ContinuationWithStatus) (void *cls,
94                                             int32_t success,
95                                             const char *emsg);
96
97
98 /**
99  * Store an item in the namestore.  If the item is already present,
100  * it is replaced with the new record.  Use an empty array to
101  * remove all records under the given name.
102  *
103  * @param h handle to the namestore
104  * @param pkey private key of the zone
105  * @param label name that is being mapped
106  * @param rd_count number of records in the 'rd' array
107  * @param rd array of records with data to store
108  * @param cont continuation to call when done
109  * @param cont_cls closure for @a cont
110  * @return handle to abort the request
111  */
112 struct GNUNET_NAMESTORE_QueueEntry *
113 GNUNET_NAMESTORE_records_store (struct GNUNET_NAMESTORE_Handle *h,
114                                 const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey,
115                                 const char *label,
116                                 unsigned int rd_count,
117                                 const struct GNUNET_GNSRECORD_Data *rd,
118                                 GNUNET_NAMESTORE_ContinuationWithStatus cont,
119                                 void *cont_cls);
120
121
122
123 /**
124  * Process a record that was stored in the namestore.
125  *
126  * @param cls closure
127  * @param zone private key of the zone; NULL on disconnect
128  * @param label label of the records; NULL on disconnect
129  * @param rd_count number of entries in @a rd array, 0 if label was deleted
130  * @param rd array of records with data to store
131  */
132 typedef void
133 (*GNUNET_NAMESTORE_RecordMonitor) (void *cls,
134                                    const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
135                                    const char *label,
136                                    unsigned int rd_count,
137                                    const struct GNUNET_GNSRECORD_Data *rd);
138
139
140 /**
141  * Set the desired nick name for a zone
142  *
143  * @param h handle to the namestore
144  * @param pkey private key of the zone
145  * @param nick the nick name to set
146  * @param cont continuation to call when done
147  * @param cont_cls closure for 'cont'
148  * @return handle to abort the request
149  */
150 struct GNUNET_NAMESTORE_QueueEntry *
151 GNUNET_NAMESTORE_set_nick (struct GNUNET_NAMESTORE_Handle *h,
152                            const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey,
153                            const char *nick,
154                            GNUNET_NAMESTORE_ContinuationWithStatus cont,
155                            void *cont_cls);
156
157
158 /**
159  * Lookup an item in the namestore.
160  *
161  * @param h handle to the namestore
162  * @param pkey private key of the zone
163  * @param label name that is being mapped
164  * @param rm function to call with the result (with 0 records if we don't have that label)
165  * @param rm_cls closure for @a rm
166  * @return handle to abort the request
167  */
168 struct GNUNET_NAMESTORE_QueueEntry *
169 GNUNET_NAMESTORE_records_lookup (struct GNUNET_NAMESTORE_Handle *h,
170                                  const struct GNUNET_CRYPTO_EcdsaPrivateKey *pkey,
171                                  const char *label,
172                                  GNUNET_NAMESTORE_RecordMonitor rm,
173                                  void *rm_cls);
174
175
176 /**
177  * Look for an existing PKEY delegation record for a given public key.
178  * Returns at most one result to the processor.
179  *
180  * @param h handle to the namestore
181  * @param zone public key of the zone to look up in, never NULL
182  * @param value_zone public key of the target zone (value), never NULL
183  * @param proc function to call on the matching records, or with
184  *        NULL (rd_count == 0) if there are no matching records
185  * @param proc_cls closure for @a proc
186  * @return a handle that can be used to
187  *         cancel
188  */
189 struct GNUNET_NAMESTORE_QueueEntry *
190 GNUNET_NAMESTORE_zone_to_name (struct GNUNET_NAMESTORE_Handle *h,
191                                const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
192                                const struct GNUNET_CRYPTO_EcdsaPublicKey *value_zone,
193                                GNUNET_NAMESTORE_RecordMonitor proc, void *proc_cls);
194
195
196 /**
197  * Cancel a namestore operation.  The final callback from the
198  * operation must not have been done yet.  Must be called on any
199  * namestore operation that has not yet completed prior to calling
200  * #GNUNET_NAMESTORE_disconnect.
201  *
202  * @param qe operation to cancel
203  */
204 void
205 GNUNET_NAMESTORE_cancel (struct GNUNET_NAMESTORE_QueueEntry *qe);
206
207
208 /**
209  * Starts a new zone iteration (used to periodically PUT all of our
210  * records into our DHT). This MUST lock the struct GNUNET_NAMESTORE_Handle
211  * for any other calls than #GNUNET_NAMESTORE_zone_iterator_next and
212  * #GNUNET_NAMESTORE_zone_iteration_stop. @a proc will be called once
213  * immediately, and then again after
214  * #GNUNET_NAMESTORE_zone_iterator_next is invoked.
215  *
216  * @param h handle to the namestore
217  * @param zone zone to access, NULL for all zones
218  * @param proc function to call on each name from the zone; it
219  *        will be called repeatedly with a value (if available)
220  *        and always once at the end with a label of NULL.
221  * @param proc_cls closure for @a proc
222  * @return an iterator handle to use for iteration
223  */
224 struct GNUNET_NAMESTORE_ZoneIterator *
225 GNUNET_NAMESTORE_zone_iteration_start (struct GNUNET_NAMESTORE_Handle *h,
226                                        const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
227                                        GNUNET_NAMESTORE_RecordMonitor proc,
228                                        void *proc_cls);
229
230
231 /**
232  * Calls the record processor specified in #GNUNET_NAMESTORE_zone_iteration_start
233  * for the next record.
234  *
235  * @param it the iterator
236  */
237 void
238 GNUNET_NAMESTORE_zone_iterator_next (struct GNUNET_NAMESTORE_ZoneIterator *it);
239
240
241 /**
242  * Stops iteration and releases the namestore handle for further calls.  Must
243  * be called on any iteration that has not yet completed prior to calling
244  * #GNUNET_NAMESTORE_disconnect.
245  *
246  * @param it the iterator
247  */
248 void
249 GNUNET_NAMESTORE_zone_iteration_stop (struct GNUNET_NAMESTORE_ZoneIterator *it);
250
251
252 /**
253  * Handle for a monitoring activity.
254  */
255 struct GNUNET_NAMESTORE_ZoneMonitor;
256
257
258 /**
259  * Function called once the monitor has caught up with the current
260  * state of the database.  Will be called AGAIN after each disconnect
261  * (record monitor called with 'NULL' for zone_key) once we're again
262  * in sync.
263  *
264  * @param cls closure
265  */
266 typedef void
267 (*GNUNET_NAMESTORE_RecordsSynchronizedCallback)(void *cls);
268
269
270 /**
271  * Begin monitoring a zone for changes.  Will first call the @a
272  * monitor function on all existing records in the selected zone(s) if
273  * @a iterate_first is #GNUNET_YES.  In any case, we will then call @a
274  * sync_cb, and then afterwards call the @a monitor whenever a record
275  * changes.  If the namestore disconnects, the @a monitor function is
276  * called with a disconnect event; if the connection is
277  * re-established, the process begins from the start (depending on @a
278  * iterate_first, we first do all existing records, then @a sync, then
279  * updates).
280  *
281  * @param cfg configuration to use to connect to namestore
282  * @param zone zone to monitor, NULL for all zones
283  * @param iterate_first #GNUNET_YES to first iterate over all existing records,
284  *                      #GNUNET_NO to only return changes that happen from now on
285  * @param monitor function to call on zone changes
286  * @param sync_cb function called when we're in sync with the namestore
287  * @param cls closure for @a monitor and @a sync_cb
288  * @return handle to stop monitoring
289  */
290 struct GNUNET_NAMESTORE_ZoneMonitor *
291 GNUNET_NAMESTORE_zone_monitor_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
292                                      const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
293                                      int iterate_first,
294                                      GNUNET_NAMESTORE_RecordMonitor monitor,
295                                      GNUNET_NAMESTORE_RecordsSynchronizedCallback sync_cb,
296                                      void *cls);
297
298
299 /**
300  * Stop monitoring a zone for changes.
301  *
302  * @param zm handle to the monitor activity to stop
303  */
304 void
305 GNUNET_NAMESTORE_zone_monitor_stop (struct GNUNET_NAMESTORE_ZoneMonitor *zm);
306
307
308
309 #if 0                           /* keep Emacsens' auto-indent happy */
310 {
311 #endif
312 #ifdef __cplusplus
313 }
314 #endif
315
316 /* end of gnunet_namestore_service.h */
317 #endif