Restrict update to positive priority deltas
[oweals/gnunet.git] / src / datastore / plugin_datastore_template.c
1 /*
2      This file is part of GNUnet
3      Copyright (C) 2009, 2011 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  * @file datastore/plugin_datastore_template.c
23  * @brief template-based datastore backend
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_datastore_plugin.h"
29
30
31 /**
32  * Context for all functions in this plugin.
33  */
34 struct Plugin
35 {
36   /**
37    * Our execution environment.
38    */
39   struct GNUNET_DATASTORE_PluginEnvironment *env;
40 };
41
42
43 /**
44  * Get an estimate of how much space the database is
45  * currently using.
46  *
47  * @param cls our "struct Plugin*"
48  * @return number of bytes used on disk
49  */
50 static void
51 template_plugin_estimate_size (void *cls, unsigned long long *estimate)
52 {
53   if (NULL == estimate)
54     return;
55   GNUNET_break (0);
56   *estimate = 0;
57 }
58
59
60 /**
61  * Store an item in the datastore.
62  *
63  * @param cls closure
64  * @param key key for the item
65  * @param size number of bytes in data
66  * @param data content stored
67  * @param type type of the content
68  * @param priority priority of the content
69  * @param anonymity anonymity-level for the content
70  * @param replication replication-level for the content
71  * @param expiration expiration time for the content
72  * @param cont continuation called with success or failure status
73  * @param cont_cls continuation closure
74  */
75 static void
76 template_plugin_put (void *cls, const struct GNUNET_HashCode * key, uint32_t size,
77                      const void *data, enum GNUNET_BLOCK_Type type,
78                      uint32_t priority, uint32_t anonymity,
79                      uint32_t replication,
80                      struct GNUNET_TIME_Absolute expiration, PluginPutCont cont,
81                      void *cont_cls)
82 {
83   GNUNET_break (0);
84   cont (cont_cls, key, size, GNUNET_SYSERR, "not implemented");
85 }
86
87
88 /**
89  * Get one of the results for a particular key in the datastore.
90  *
91  * @param cls closure
92  * @param offset offset of the result (modulo num-results);
93  *               specific ordering does not matter for the offset
94  * @param key maybe NULL (to match all entries)
95  * @param vhash hash of the value, maybe NULL (to
96  *        match all values that have the right key).
97  *        Note that for DBlocks there is no difference
98  *        betwen key and vhash, but for other blocks
99  *        there may be!
100  * @param type entries of which type are relevant?
101  *     Use 0 for any type.
102  * @param proc function to call on each matching value;
103  *        will be called with NULL if nothing matches
104  * @param proc_cls closure for proc
105  */
106 static void
107 template_plugin_get_key (void *cls, uint64_t offset,
108                          const struct GNUNET_HashCode * key,
109                          const struct GNUNET_HashCode * vhash,
110                          enum GNUNET_BLOCK_Type type, PluginDatumProcessor proc,
111                          void *proc_cls)
112 {
113   GNUNET_break (0);
114 }
115
116
117
118 /**
119  * Get a random item for replication.  Returns a single, not expired,
120  * random item from those with the highest replication counters.  The
121  * item's replication counter is decremented by one IF it was positive
122  * before.  Call 'proc' with all values ZERO or NULL if the datastore
123  * is empty.
124  *
125  * @param cls closure
126  * @param proc function to call the value (once only).
127  * @param proc_cls closure for proc
128  */
129 static void
130 template_plugin_get_replication (void *cls, PluginDatumProcessor proc,
131                                  void *proc_cls)
132 {
133   GNUNET_break (0);
134 }
135
136
137 /**
138  * Get a random item for expiration.  Call 'proc' with all values ZERO
139  * or NULL if the datastore is empty.
140  *
141  * @param cls closure
142  * @param proc function to call the value (once only).
143  * @param proc_cls closure for proc
144  */
145 static void
146 template_plugin_get_expiration (void *cls, PluginDatumProcessor proc,
147                                 void *proc_cls)
148 {
149   GNUNET_break (0);
150 }
151
152
153 /**
154  * Update the priority for a particular key in the datastore.  If
155  * the expiration time in value is different than the time found in
156  * the datastore, the higher value should be kept.  For the
157  * anonymity level, the lower value is to be used.  The specified
158  * priority should be added to the existing priority, ignoring the
159  * priority in value.
160  *
161  * Note that it is possible for multiple values to match this put.
162  * In that case, all of the respective values are updated.
163  *
164  * @param cls our "struct Plugin*"
165  * @param uid unique identifier of the datum
166  * @param delta by how much should the priority
167  *     change?
168  * @param expire new expiration time should be the
169  *     MAX of any existing expiration time and
170  *     this value
171  * @param cont continuation called with success or failure status
172  * @param cons_cls continuation closure
173  */
174 static void
175 template_plugin_update (void *cls, uint64_t uid, uint32_t delta,
176                         struct GNUNET_TIME_Absolute expire,
177                         PluginUpdateCont cont, void *cont_cls)
178 {
179   GNUNET_break (0);
180   cont (cont_cls, GNUNET_SYSERR, "not implemented");
181 }
182
183
184 /**
185  * Call the given processor on an item with zero anonymity.
186  *
187  * @param cls our "struct Plugin*"
188  * @param offset offset of the result (modulo num-results);
189  *               specific ordering does not matter for the offset
190  * @param type entries of which type should be considered?
191  *        Use 0 for any type.
192  * @param proc function to call on each matching value;
193  *        will be called  with NULL if no value matches
194  * @param proc_cls closure for proc
195  */
196 static void
197 template_plugin_get_zero_anonymity (void *cls, uint64_t offset,
198                                     enum GNUNET_BLOCK_Type type,
199                                     PluginDatumProcessor proc, void *proc_cls)
200 {
201   GNUNET_break (0);
202 }
203
204
205 /**
206  * Drop database.
207  */
208 static void
209 template_plugin_drop (void *cls)
210 {
211   GNUNET_break (0);
212 }
213
214
215 /**
216  * Get all of the keys in the datastore.
217  *
218  * @param cls closure
219  * @param proc function to call on each key
220  * @param proc_cls closure for proc
221  */
222 static void
223 template_get_keys (void *cls,
224                    PluginKeyProcessor proc,
225                    void *proc_cls)
226 {
227   proc (proc_cls, NULL, 0);
228 }
229
230
231 /**
232  * Entry point for the plugin.
233  *
234  * @param cls the "struct GNUNET_DATASTORE_PluginEnvironment*"
235  * @return our "struct Plugin*"
236  */
237 void *
238 libgnunet_plugin_datastore_template_init (void *cls)
239 {
240   struct GNUNET_DATASTORE_PluginEnvironment *env = cls;
241   struct GNUNET_DATASTORE_PluginFunctions *api;
242   struct Plugin *plugin;
243
244   plugin = GNUNET_new (struct Plugin);
245   plugin->env = env;
246   api = GNUNET_new (struct GNUNET_DATASTORE_PluginFunctions);
247   api->cls = plugin;
248   api->estimate_size = &template_plugin_estimate_size;
249   api->put = &template_plugin_put;
250   api->update = &template_plugin_update;
251   api->get_key = &template_plugin_get_key;
252   api->get_replication = &template_plugin_get_replication;
253   api->get_expiration = &template_plugin_get_expiration;
254   api->get_zero_anonymity = &template_plugin_get_zero_anonymity;
255   api->drop = &template_plugin_drop;
256   api->get_keys = &template_get_keys;
257   GNUNET_log_from (GNUNET_ERROR_TYPE_INFO, "template",
258                    _("Template database running\n"));
259   return api;
260 }
261
262
263 /**
264  * Exit point from the plugin.
265  * @param cls our "struct Plugin*"
266  * @return always NULL
267  */
268 void *
269 libgnunet_plugin_datastore_template_done (void *cls)
270 {
271   struct GNUNET_DATASTORE_PluginFunctions *api = cls;
272   struct Plugin *plugin = api->cls;
273
274   GNUNET_free (plugin);
275   GNUNET_free (api);
276   return NULL;
277 }
278
279 /* end of plugin_datastore_template.c */