From: Christian Grothoff Date: Sat, 25 Jul 2009 21:31:57 +0000 (+0000) Subject: dcl X-Git-Tag: initial-import-from-subversion-38251~23630 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ed5a799335a4746725430551b5ad1b0b6f2a40f0;p=oweals%2Fgnunet.git dcl --- diff --git a/src/include/Makefile.am b/src/include/Makefile.am index 8118ad0d7..201deeb4f 100644 --- a/src/include/Makefile.am +++ b/src/include/Makefile.am @@ -20,6 +20,8 @@ gnunetinclude_HEADERS = \ gnunet_container_lib.h \ gnunet_core_service.h \ gnunet_crypto_lib.h \ + gnunet_datacache_lib.h \ + gnunet_datastore_service.h \ gnunet_disk_lib.h \ gnunet_fragmentation_lib.h \ gnunet_fs_service.h \ diff --git a/src/include/gnunet_datacache_lib.h b/src/include/gnunet_datacache_lib.h new file mode 100644 index 000000000..64d1d4883 --- /dev/null +++ b/src/include/gnunet_datacache_lib.h @@ -0,0 +1,130 @@ +/* + This file is part of GNUnet + (C) 2006, 2009 Christian Grothoff (and other contributing authors) + + GNUnet is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published + by the Free Software Foundation; either version 2, or (at your + option) any later version. + + GNUnet is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GNUnet; see the file COPYING. If not, write to the + Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. +*/ + +/** + * @file include/gnunet_datacache_lib.h + * @brief datacache is a simple, transient hash table + * of bounded size with content expiration. + * In contrast to the sqstore there is + * no prioritization, deletion or iteration. + * All of the data is discarded when the peer shuts down! + * @author Christian Grothoff + */ + +#ifndef GNUNET_DATACACHE_LIB_H +#define GNUNET_DATACACHE_LIB_H + +#include "gnunet_util_lib.h" + +#ifdef __cplusplus +extern "C" +{ +#if 0 /* keep Emacsens' auto-indent happy */ +} +#endif +#endif + + +/** + * Handle to the cache. + */ +struct GNUNET_DATACACHE_Handle; + + +/** + * Create a data cache. + * + * @param cfg configuration to use + * @param section section in the configuration that contains our options + * @return handle to use to access the service + */ +struct GNUNET_DATACACHE_Handle * +GNUNET_DATACACHE_create (struct GNUNET_CONFIGURATION_Handle *cfg, + const char *section); + + +/** + * Destroy a data cache (and free associated resources). + * + * @param h handle to the datastore + */ +void GNUNET_DATACACHE_destroy (struct GNUNET_DATACACHE_Handle *h); + + +/** + * An iterator over a set of items stored in the datacache. + * + * @param cls closure + * @param key key for the content + * @param size number of bytes in data + * @param data content stored + * @param type type of the content + */ +typedef void (*GNUNET_DATACACHE_Iterator) (void *cls, + const GNUNET_HashCode * key, + uint32_t size, + const char *data, + uint32_t type); + + +/** + * Store an item in the datastore. + * + * @param key key to store data under + * @param size number of bytes in data + * @param data data to store + * @param type type of the value + * @param discard_time when to discard the value in any case + * @return GNUNET_OK on success, GNUNET_SYSERR on error (full, etc.) + */ +int +GNUNET_DATACACHE_put (const GNUNET_HashCode * key, + uint32_t size, + const char *data, + unsigned int type, + struct GNUNET_TIME_Absolute discard_time); + + +/** + * Iterate over the results for a particular key + * in the datastore. + * + * @param key what to look up + * @param type entries of which type are relevant? + * @param iter maybe NULL (to just count) + * @param iter_cls closure for iter + * @return the number of results found + */ +unsigned int +GNUNET_DATACACHE_get (const GNUNET_HashCode * key, + unsigned int type, + GNUNET_DATACACHE_Iterator iter, + void *iter_cls); + + +#if 0 /* keep Emacsens' auto-indent happy */ +{ +#endif +#ifdef __cplusplus +} +#endif + +/* end of gnunet_datacache_lib.h */ +#endif