2 This file is part of GNUnet
3 (C) 2012 Christian Grothoff (and other contributing authors)
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.
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.
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., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
22 * @file datacache/plugin_datacache_heap.c
23 * @brief heap-only implementation of a database backend for the datacache
24 * @author Christian Grothoff
27 #include "gnunet_util_lib.h"
28 #include "gnunet_datacache_plugin.h"
30 #define LOG(kind,...) GNUNET_log_from (kind, "datacache-heap", __VA_ARGS__)
32 #define LOG_STRERROR_FILE(kind,op,fn) GNUNET_log_from_strerror_file (kind, "datacache-heap", op, fn)
37 * Context for all functions in this plugin.
42 * Our execution environment.
44 struct GNUNET_DATACACHE_PluginEnvironment *env;
49 struct GNUNET_CONTAINER_MultiHashMap *map;
52 * Heap for expirations.
54 struct GNUNET_CONTAINER_Heap *heap;
60 * Entry in the hash map.
67 struct GNUNET_HashCode key;
72 struct GNUNET_TIME_Absolute discard_time;
75 * Corresponding node in the heap.
77 struct GNUNET_CONTAINER_HeapNode *hn;
82 struct GNUNET_PeerIdentity *path_info;
85 * Payload (actual payload follows this struct)
90 * Number of entries in 'path_info'.
92 unsigned int path_info_len;
97 enum GNUNET_BLOCK_Type type;
102 #define OVERHEAD (sizeof (struct Value) + 64)
106 * Closure for 'put_cb'.
111 * Expiration time for the new value.
113 struct GNUNET_TIME_Absolute discard_time;
116 * Data for the new value.
121 * Heap from the plugin.
123 struct GNUNET_CONTAINER_Heap *heap;
128 const struct GNUNET_PeerIdentity *path_info;
131 * Number of bytes in 'data'.
138 enum GNUNET_BLOCK_Type type;
141 * Number of entries in 'path_info'.
143 unsigned int path_info_len;
146 * Value to set to GNUNET_YES if an equivalent block was found.
153 * Function called during PUT to detect if an equivalent block
156 * @param cls the 'struct PutContext'
157 * @param key the key for the value(s)
158 * @param value an existing value
159 * @return #GNUNET_YES if not found (to continue to iterate)
163 const struct GNUNET_HashCode *key,
166 struct PutContext *put_ctx = cls;
167 struct Value *val = value;
169 if ( (val->size == put_ctx->size) &&
170 (val->type == put_ctx->type) &&
171 (0 == memcmp (&val[1], put_ctx->data, put_ctx->size)) )
173 put_ctx->found = GNUNET_YES;
174 val->discard_time = GNUNET_TIME_absolute_max (val->discard_time,
175 put_ctx->discard_time);
176 /* replace old path with new path */
177 GNUNET_array_grow (val->path_info,
179 put_ctx->path_info_len);
180 memcpy (val->path_info,
182 put_ctx->path_info_len * sizeof (struct GNUNET_PeerIdentity));
183 GNUNET_CONTAINER_heap_update_cost (put_ctx->heap,
185 val->discard_time.abs_value_us);
186 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
187 "Got same value for key %s and type %d (size %u vs %u)\n",
190 (unsigned int) val->size,
191 (unsigned int) put_ctx->size);
199 * Store an item in the datastore.
201 * @param cls closure (our `struct Plugin`)
202 * @param key key to store data under
203 * @param size number of bytes in data
204 * @param data data to store
205 * @param type type of the value
206 * @param discard_time when to discard the value in any case
207 * @param path_info_len number of entries in @a path_info
208 * @param path_info a path through the network
209 * @return 0 if duplicate, -1 on error, number of bytes used otherwise
212 heap_plugin_put (void *cls, const struct GNUNET_HashCode * key, size_t size,
213 const char *data, enum GNUNET_BLOCK_Type type,
214 struct GNUNET_TIME_Absolute discard_time,
215 unsigned int path_info_len,
216 const struct GNUNET_PeerIdentity *path_info)
218 struct Plugin *plugin = cls;
220 struct PutContext put_ctx;
222 put_ctx.found = GNUNET_NO;
223 put_ctx.heap = plugin->heap;
226 put_ctx.path_info = path_info;
227 put_ctx.path_info_len = path_info_len;
228 put_ctx.discard_time = discard_time;
230 GNUNET_CONTAINER_multihashmap_get_multiple (plugin->map,
234 if (GNUNET_YES == put_ctx.found)
236 val = GNUNET_malloc (sizeof (struct Value) + size);
237 memcpy (&val[1], data, size);
240 val->discard_time = discard_time;
242 GNUNET_array_grow (val->path_info,
245 memcpy (val->path_info, path_info,
246 path_info_len * sizeof (struct GNUNET_PeerIdentity));
247 (void) GNUNET_CONTAINER_multihashmap_put (plugin->map,
250 GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
251 val->hn = GNUNET_CONTAINER_heap_insert (plugin->heap,
253 val->discard_time.abs_value_us);
254 return size + OVERHEAD;
259 * Closure for 'get_cb'.
264 * Function to call for each result.
266 GNUNET_DATACACHE_Iterator iter;
269 * Closure for 'iter'.
274 * Number of results found.
279 * Block type requested.
281 enum GNUNET_BLOCK_Type type;
287 * Function called during GET to find matching blocks.
288 * Only matches by type.
290 * @param cls the 'struct GetContext'
291 * @param key the key for the value(s)
292 * @param value an existing value
293 * @return GNUNET_YES to continue to iterate
297 const struct GNUNET_HashCode *key,
300 struct GetContext *get_ctx = cls;
301 struct Value *val = value;
304 if ( (get_ctx->type != val->type) &&
305 (GNUNET_BLOCK_TYPE_ANY != get_ctx->type) )
307 if (NULL != get_ctx->iter)
308 ret = get_ctx->iter (get_ctx->iter_cls,
311 (const char *) &val[1],
324 * Iterate over the results for a particular key
327 * @param cls closure (our "struct Plugin")
329 * @param type entries of which type are relevant?
330 * @param iter maybe NULL (to just count)
331 * @param iter_cls closure for iter
332 * @return the number of results found
335 heap_plugin_get (void *cls, const struct GNUNET_HashCode * key,
336 enum GNUNET_BLOCK_Type type, GNUNET_DATACACHE_Iterator iter,
339 struct Plugin *plugin = cls;
340 struct GetContext get_ctx;
344 get_ctx.iter_cls = iter_cls;
346 GNUNET_CONTAINER_multihashmap_get_multiple (plugin->map,
355 * Delete the entry with the lowest expiration value
356 * from the datacache right now.
358 * @param cls closure (our "struct Plugin")
359 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
362 heap_plugin_del (void *cls)
364 struct Plugin *plugin = cls;
367 val = GNUNET_CONTAINER_heap_remove_root (plugin->heap);
369 return GNUNET_SYSERR;
370 GNUNET_assert (GNUNET_YES ==
371 GNUNET_CONTAINER_multihashmap_remove (plugin->map,
374 plugin->env->delete_notify (plugin->env->cls,
376 val->size + OVERHEAD);
377 GNUNET_free_non_null (val->path_info);
384 * Entry point for the plugin.
386 * @param cls closure (the `struct GNUNET_DATACACHE_PluginEnvironmnet`)
387 * @return the plugin's closure (our `struct Plugin`)
390 libgnunet_plugin_datacache_heap_init (void *cls)
392 struct GNUNET_DATACACHE_PluginEnvironment *env = cls;
393 struct GNUNET_DATACACHE_PluginFunctions *api;
394 struct Plugin *plugin;
396 plugin = GNUNET_malloc (sizeof (struct Plugin));
397 plugin->map = GNUNET_CONTAINER_multihashmap_create (1024, /* FIXME: base on quota! */
399 plugin->heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
401 api = GNUNET_malloc (sizeof (struct GNUNET_DATACACHE_PluginFunctions));
403 api->get = &heap_plugin_get;
404 api->put = &heap_plugin_put;
405 api->del = &heap_plugin_del;
406 LOG (GNUNET_ERROR_TYPE_INFO, _("Heap datacache running\n"));
412 * Exit point from the plugin.
414 * @param cls closure (our "struct Plugin")
418 libgnunet_plugin_datacache_heap_done (void *cls)
420 struct GNUNET_DATACACHE_PluginFunctions *api = cls;
421 struct Plugin *plugin = api->cls;
424 while (NULL != (val = GNUNET_CONTAINER_heap_remove_root (plugin->heap)))
426 GNUNET_assert (GNUNET_YES ==
427 GNUNET_CONTAINER_multihashmap_remove (plugin->map,
430 GNUNET_free_non_null (val->path_info);
433 GNUNET_CONTAINER_heap_destroy (plugin->heap);
434 GNUNET_CONTAINER_multihashmap_destroy (plugin->map);
435 GNUNET_free (plugin);
442 /* end of plugin_datacache_heap.c */