Merge branch 'master' of git+ssh://gnunet.org/gnunet
[oweals/gnunet.git] / src / include / gnunet_namestore_plugin.h
1 /*
2      This file is part of GNUnet
3      Copyright (C) 2012, 2013 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 /**
22  * @author Christian Grothoff
23  *
24  * @file
25  * Plugin API for the namestore database backend
26  *
27  * @defgroup namestore-plugin  Name Store service plugin API
28  * Plugin API for the namestore database backend
29  * @{
30  */
31 #ifndef GNUNET_NAMESTORE_PLUGIN_H
32 #define GNUNET_NAMESTORE_PLUGIN_H
33
34 #include "gnunet_util_lib.h"
35 #include "gnunet_namestore_service.h"
36
37 #ifdef __cplusplus
38 extern "C"
39 {
40 #if 0                           /* keep Emacsens' auto-indent happy */
41 }
42 #endif
43 #endif
44
45
46 /**
47  * Function called by for each matching record.
48  *
49  * @param cls closure
50  * @param zone_key private key of the zone
51  * @param label name that is being mapped (at most 255 characters long)
52  * @param rd_count number of entries in @a rd array
53  * @param rd array of records with data to store
54  */
55 typedef void
56 (*GNUNET_NAMESTORE_RecordIterator) (void *cls,
57                                     const struct GNUNET_CRYPTO_EcdsaPrivateKey *private_key,
58                                     const char *label,
59                                     unsigned int rd_count,
60                                     const struct GNUNET_GNSRECORD_Data *rd);
61
62
63 /**
64  * @brief struct returned by the initialization function of the plugin
65  */
66 struct GNUNET_NAMESTORE_PluginFunctions
67 {
68
69   /**
70    * Closure to pass to all plugin functions.
71    */
72   void *cls;
73
74   /**
75    * Store a record in the datastore for which we are the authority.
76    * Removes any existing record in the same zone with the same name.
77    *
78    * @param cls closure (internal context for the plugin)
79    * @param zone private key of the zone
80    * @param label name of the record in the zone
81    * @param rd_count number of entries in @a rd array, 0 to delete all records
82    * @param rd array of records with data to store
83    * @return #GNUNET_OK on success, else #GNUNET_SYSERR
84    */
85   int
86   (*store_records) (void *cls,
87                     const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
88                     const char *label,
89                     unsigned int rd_count,
90                     const struct GNUNET_GNSRECORD_Data *rd);
91   
92   /**
93    * Lookup records in the datastore for which we are the authority.
94    *
95    * @param cls closure (internal context for the plugin)
96    * @param zone private key of the zone
97    * @param label name of the record in the zone
98    * @param iter function to call with the result
99    * @param iter_cls closure for @a iter
100    * @return #GNUNET_OK on success, else #GNUNET_SYSERR
101    */
102   int
103   (*lookup_records) (void *cls,
104                      const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
105                      const char *label,
106                      GNUNET_NAMESTORE_RecordIterator iter,
107                      void *iter_cls);
108
109
110   /**
111    * Iterate over the results for a particular zone in the
112    * datastore.  Will return at most one result to the iterator.
113    *
114    * @param cls closure (internal context for the plugin)
115    * @param zone private key of the zone, NULL for all zones
116    * @param offset offset in the list of all matching records
117    * @param iter function to call with the result
118    * @param iter_cls closure for @a iter
119    * @return #GNUNET_OK on success, #GNUNET_NO if there were no results, #GNUNET_SYSERR on error
120    */
121   int
122   (*iterate_records) (void *cls,
123                       const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
124                       uint64_t offset,
125                       GNUNET_NAMESTORE_RecordIterator iter,
126                       void *iter_cls);
127
128
129   /**
130    * Look for an existing PKEY delegation record for a given public key.
131    * Returns at most one result to the iterator.
132    *
133    * @param cls closure (internal context for the plugin)
134    * @param zone private key of the zone to look up in, never NULL
135    * @param value_zone public key of the target zone (value), never NULL
136    * @param iter function to call with the result
137    * @param iter_cls closure for @a iter
138    * @return #GNUNET_OK on success, #GNUNET_NO if there were no results, #GNUNET_SYSERR on error
139    */
140   int
141   (*zone_to_name) (void *cls,
142                    const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
143                    const struct GNUNET_CRYPTO_EcdsaPublicKey *value_zone,
144                    GNUNET_NAMESTORE_RecordIterator iter,
145                    void *iter_cls);
146
147
148 };
149
150
151 #if 0                           /* keep Emacsens' auto-indent happy */
152 {
153 #endif
154 #ifdef __cplusplus
155 }
156 #endif
157
158 #endif
159
160 /** @} */  /* end of group */