use namestore API for zone import instead of using plugin directly
[oweals/gnunet.git] / src / include / gnunet_datacache_plugin.h
1 /*
2      This file is part of GNUnet
3      Copyright (C) 2006, 2009, 2015 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  * API for database backends for the datacache
26  *
27  * @defgroup datacache-plugin  Data Cache plugin API
28  * API for database backends for the datacache
29  * @{
30  */
31 #ifndef PLUGIN_DATACACHE_H
32 #define PLUGIN_DATACACHE_H
33
34 #include "gnunet_datacache_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  * Function called by plugins to notify the datacache
47  * about content deletions.
48  *
49  * @param cls closure
50  * @param key key of the content that was deleted
51  * @param size number of bytes that were made available
52  */
53 typedef void
54 (*GNUNET_DATACACHE_DeleteNotifyCallback) (void *cls,
55                                           const struct GNUNET_HashCode *key,
56                                           size_t size);
57
58
59 /**
60  * The datastore service will pass a pointer to a struct
61  * of this type as the first and only argument to the
62  * entry point of each datastore plugin.
63  */
64 struct GNUNET_DATACACHE_PluginEnvironment
65 {
66
67   /**
68    * Configuration to use.
69    */
70   const struct GNUNET_CONFIGURATION_Handle *cfg;
71
72   /**
73    * Configuration section to use.
74    */
75   const char *section;
76
77   /**
78    * Closure to use for callbacks.
79    */
80   void *cls;
81
82   /**
83    * Function to call whenever the plugin needs to
84    * discard content that it was asked to store.
85    */
86   GNUNET_DATACACHE_DeleteNotifyCallback delete_notify;
87
88   /**
89    * How much space are we allowed to use?
90    */
91   unsigned long long quota;
92
93 };
94
95
96 /**
97  * @brief struct returned by the initialization function of the plugin
98  */
99 struct GNUNET_DATACACHE_PluginFunctions
100 {
101
102   /**
103    * Closure to pass to all plugin functions.
104    */
105   void *cls;
106
107   /**
108    * Store an item in the datastore.
109    *
110    * @param cls closure (internal context for the plugin)
111    * @param key key to store the value under
112    * @param size number of bytes in @a data
113    * @param data data to store
114    * @param type type of the value
115    * @param discard_time when to discard the value in any case
116    * @param path_info_len number of entries in @a path_info
117    * @param path_info a path through the network
118    * @return 0 if duplicate, -1 on error, number of bytes used otherwise
119    */
120   ssize_t (*put) (void *cls,
121                   const struct GNUNET_HashCode *key,
122                   size_t size,
123                   const char *data,
124                   enum GNUNET_BLOCK_Type type,
125                   struct GNUNET_TIME_Absolute discard_time,
126                   unsigned int path_info_len,
127                   const struct GNUNET_PeerIdentity *path_info);
128
129   /**
130    * Iterate over the results for a particular key
131    * in the datastore.
132    *
133    * @param cls closure (internal context for the plugin)
134    * @param key key to look for
135    * @param type entries of which type are relevant?
136    * @param iter maybe NULL (to just count)
137    * @param iter_cls closure for @a iter
138    * @return the number of results found
139    */
140   unsigned int (*get) (void *cls,
141                        const struct GNUNET_HashCode *key,
142                        enum GNUNET_BLOCK_Type type,
143                        GNUNET_DATACACHE_Iterator iter,
144                        void *iter_cls);
145
146   /**
147    * Delete the entry with the lowest expiration value
148    * from the datacache right now.
149    *
150    * @param cls closure (internal context for the plugin)
151    * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
152    */
153   int (*del) (void *cls);
154
155   /**
156    * Return a random value from the datastore.
157    *
158    * @param cls closure (internal context for the plugin)
159    * @param iter maybe NULL (to just count)
160    * @param iter_cls closure for @a iter
161    * @return the number of results found (zero or one)
162    */
163   unsigned int (*get_random) (void *cls,
164                               GNUNET_DATACACHE_Iterator iter,
165                               void *iter_cls);
166
167
168   /**
169    * Iterate over the results that are "close" to a particular key in
170    * the datacache.  "close" is defined as numerically larger than @a
171    * key (when interpreted as a circular address space), with small
172    * distance.
173    *
174    * @param cls closure (internal context for the plugin)
175    * @param key area of the keyspace to look into
176    * @param num_results number of results that should be returned to @a iter
177    * @param iter maybe NULL (to just count)
178    * @param iter_cls closure for @a iter
179    * @return the number of results found
180    */
181   unsigned int (*get_closest) (void *cls,
182                                const struct GNUNET_HashCode *key,
183                                unsigned int num_results,
184                                GNUNET_DATACACHE_Iterator iter,
185                                void *iter_cls);
186
187 };
188
189
190 #if 0                           /* keep Emacsens' auto-indent happy */
191 {
192 #endif
193 #ifdef __cplusplus
194 }
195 #endif
196
197 #endif
198
199 /** @} */  /* end of group */