2 This file is part of GNUnet
3 (C) 2006, 2009 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 2, 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_sqlite.c
23 * @brief sqlite for an implementation of a database backend for the datacache
24 * @author Christian Grothoff
27 #include "gnunet_util_lib.h"
28 #include "plugin_datacache.h"
31 #define DEBUG_DATACACHE_SQLITE GNUNET_NO
34 * How much overhead do we assume per entry in the
37 #define OVERHEAD (sizeof(GNUNET_HashCode) + 32)
40 * Context for all functions in this plugin.
45 * Our execution environment.
47 struct GNUNET_DATACACHE_PluginEnvironment *env;
50 * Handle to the sqlite database.
55 * Filename used for the DB.
62 * Log an error message at log-level 'level' that indicates
63 * a failure of the command 'cmd' on file 'filename'
64 * with the message given by strerror(errno).
66 #define LOG_SQLITE(db, level, cmd) do { GNUNET_log(level, _("`%s' failed at %s:%d with error: %s\n"), cmd, __FILE__, __LINE__, sqlite3_errmsg(db)); } while(0)
69 #define SQLITE3_EXEC(db, cmd) do { emsg = NULL; if (SQLITE_OK != sqlite3_exec(db, cmd, NULL, NULL, &emsg)) { GNUNET_log(GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK, _("`%s' failed at %s:%d with error: %s\n"), "sqlite3_exec", __FILE__, __LINE__, emsg); sqlite3_free(emsg); } } while(0)
73 * @brief Prepare a SQL statement
76 sq_prepare (sqlite3 * dbh, const char *zSql, /* SQL statement, UTF-8 encoded */
77 sqlite3_stmt ** ppStmt)
78 { /* OUT: Statement handle */
80 return sqlite3_prepare (dbh,
82 strlen (zSql), ppStmt, (const char **) &dummy);
87 * Store an item in the datastore.
89 * @param cls closure (our "struct Plugin")
90 * @param key key to store data under
91 * @param size number of bytes in data
92 * @param data data to store
93 * @param type type of the value
94 * @param discard_time when to discard the value in any case
95 * @return 0 on error, number of bytes used otherwise
98 sqlite_plugin_put (void *cls,
99 const GNUNET_HashCode * key,
103 struct GNUNET_TIME_Absolute discard_time)
105 struct Plugin *plugin = cls;
108 #if DEBUG_DATACACHE_SQLITE
109 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
110 "Processing `%s' of %u bytes with key `%4s' and expiration %llums\n",
114 (unsigned long long) GNUNET_TIME_absolute_get_remaining (discard_time).value);
116 if (sq_prepare (plugin->dbh,
118 "(type, expire, key, value) "
119 "VALUES (?, ?, ?, ?)", &stmt) != SQLITE_OK)
121 GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
122 _("`%s' failed at %s:%d with error: %s\n"),
123 "sq_prepare", __FILE__, __LINE__,
124 sqlite3_errmsg (plugin->dbh));
127 if ( (SQLITE_OK != sqlite3_bind_int (stmt, 1, type)) ||
128 (SQLITE_OK != sqlite3_bind_int64 (stmt, 2, discard_time.value)) ||
129 (SQLITE_OK != sqlite3_bind_blob (stmt, 3, key, sizeof (GNUNET_HashCode),
130 SQLITE_TRANSIENT)) ||
131 (SQLITE_OK != sqlite3_bind_blob (stmt, 4, data, size, SQLITE_TRANSIENT)))
133 LOG_SQLITE (plugin->dbh,
134 GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
136 sqlite3_finalize (stmt);
139 if (SQLITE_DONE != sqlite3_step (stmt))
141 LOG_SQLITE (plugin->dbh,
142 GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
144 sqlite3_finalize (stmt);
147 if (SQLITE_OK != sqlite3_finalize (stmt))
148 LOG_SQLITE (plugin->dbh,
149 GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
151 return size + OVERHEAD;
156 * Iterate over the results for a particular key
159 * @param cls closure (our "struct Plugin")
161 * @param type entries of which type are relevant?
162 * @param iter maybe NULL (to just count)
163 * @param iter_cls closure for iter
164 * @return the number of results found
167 sqlite_plugin_get (void *cls,
168 const GNUNET_HashCode * key,
170 GNUNET_DATACACHE_Iterator iter,
173 struct Plugin *plugin = cls;
175 struct GNUNET_TIME_Absolute now;
176 struct GNUNET_TIME_Absolute exp;
184 now = GNUNET_TIME_absolute_get ();
185 #if DEBUG_DATACACHE_SQLITE
186 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
187 "Processing `%s' for key `%4s'\n",
191 if (sq_prepare (plugin->dbh,
192 "SELECT count(*) FROM ds090 WHERE key=? AND type=? AND expire >= ?",
195 GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
196 _("`%s' failed at %s:%d with error: %s\n"),
197 "sq_prepare", __FILE__, __LINE__,
198 sqlite3_errmsg (plugin->dbh));
201 sqlite3_bind_blob (stmt, 1, key, sizeof (GNUNET_HashCode),
203 sqlite3_bind_int (stmt, 2, type);
204 sqlite3_bind_int64 (stmt, 3, now.value);
205 if (SQLITE_ROW != sqlite3_step (stmt))
207 LOG_SQLITE (plugin->dbh,
208 GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
210 sqlite3_finalize (stmt);
213 total = sqlite3_column_int (stmt, 0);
214 sqlite3_finalize (stmt);
215 if ( (total == 0) || (iter == NULL) )
219 off = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, total);
222 off = (off + 1) % total;
223 GNUNET_snprintf (scratch,
225 "SELECT value,expire FROM ds090 WHERE key=? AND type=? AND expire >= ? LIMIT 1 OFFSET %u",
227 if (sq_prepare (plugin->dbh, scratch, &stmt) != SQLITE_OK)
229 GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
230 _("`%s' failed at %s:%d with error: %s\n"),
231 "sq_prepare", __FILE__, __LINE__,
232 sqlite3_errmsg (plugin->dbh));
235 sqlite3_bind_blob (stmt, 1, key, sizeof (GNUNET_HashCode),
237 sqlite3_bind_int (stmt, 2, type);
238 sqlite3_bind_int64 (stmt, 3, now.value);
239 if (sqlite3_step (stmt) != SQLITE_ROW)
241 size = sqlite3_column_bytes (stmt, 0);
242 dat = sqlite3_column_blob (stmt, 0);
243 exp.value = sqlite3_column_int64 (stmt, 1);
245 if (GNUNET_OK != iter (iter_cls,
252 sqlite3_finalize (stmt);
255 sqlite3_finalize (stmt);
262 * Delete the entry with the lowest expiration value
263 * from the datacache right now.
265 * @param cls closure (our "struct Plugin")
266 * @return GNUNET_OK on success, GNUNET_SYSERR on error
269 sqlite_plugin_del (void *cls)
271 struct Plugin *plugin = cls;
277 #if DEBUG_DATACACHE_SQLITE
278 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
284 if ((sq_prepare (plugin->dbh,
285 "SELECT type, key, value FROM ds090 ORDER BY expire ASC LIMIT 1",
286 &stmt) != SQLITE_OK) ||
287 (sq_prepare (plugin->dbh,
289 "WHERE key=? AND value=? AND type=?",
290 &dstmt) != SQLITE_OK))
292 GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
293 _("`%s' failed at %s:%d with error: %s\n"),
294 "sq_prepare", __FILE__, __LINE__, sqlite3_errmsg (plugin->dbh));
296 sqlite3_finalize (dstmt);
298 sqlite3_finalize (stmt);
299 return GNUNET_SYSERR;
301 if (SQLITE_ROW != sqlite3_step (stmt))
303 GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
304 _("`%s' failed at %s:%d with error: %s\n"),
305 "sqlite3_step", __FILE__, __LINE__,
306 sqlite3_errmsg (plugin->dbh));
307 sqlite3_finalize (dstmt);
308 sqlite3_finalize (stmt);
309 return GNUNET_SYSERR;
311 dtype = sqlite3_column_int (stmt, 0);
312 GNUNET_break (sqlite3_column_bytes (stmt, 1) == sizeof (GNUNET_HashCode));
313 dsize = sqlite3_column_bytes (stmt, 2);
314 sqlite3_bind_blob (dstmt,
315 1, sqlite3_column_blob (stmt, 1),
316 sizeof (GNUNET_HashCode),
318 sqlite3_bind_blob (dstmt,
319 2, sqlite3_column_blob (stmt, 2),
322 sqlite3_bind_int (dstmt, 3, dtype);
323 if (sqlite3_step (dstmt) != SQLITE_DONE)
325 GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
326 _("`%s' failed at %s:%d with error: %s\n"),
327 "sqlite3_step", __FILE__, __LINE__,
328 sqlite3_errmsg (plugin->dbh));
329 sqlite3_finalize (dstmt);
330 sqlite3_finalize (stmt);
331 return GNUNET_SYSERR;
333 plugin->env->delete_notify (plugin->env->cls,
334 sqlite3_column_blob (stmt, 1),
336 sqlite3_finalize (dstmt);
337 sqlite3_finalize (stmt);
343 * Entry point for the plugin.
345 * @param cls closure (the "struct GNUNET_DATACACHE_PluginEnvironmnet")
346 * @return the plugin's closure (our "struct Plugin")
349 libgnunet_plugin_datacache_sqlite_init (void *cls)
351 struct GNUNET_DATACACHE_PluginEnvironment *env = cls;
352 struct GNUNET_DATACACHE_PluginFunctions *api;
353 struct Plugin *plugin;
359 fn = GNUNET_DISK_mktemp ("gnunet-datacache");
365 fn_utf8 = GNUNET_STRINGS_to_utf8 (fn, strlen (fn),
367 nl_langinfo (CODESET)
369 "UTF-8" /* good luck */
372 if (SQLITE_OK != sqlite3_open (fn_utf8, &dbh))
375 GNUNET_free (fn_utf8);
380 SQLITE3_EXEC (dbh, "PRAGMA temp_store=MEMORY");
381 SQLITE3_EXEC (dbh, "PRAGMA synchronous=OFF");
382 SQLITE3_EXEC (dbh, "PRAGMA count_changes=OFF");
383 SQLITE3_EXEC (dbh, "PRAGMA page_size=4092");
385 "CREATE TABLE ds090 ("
386 " type INTEGER NOT NULL DEFAULT 0,"
387 " expire INTEGER NOT NULL DEFAULT 0,"
388 " key BLOB NOT NULL DEFAULT '',"
389 " value BLOB NOT NULL DEFAULT '')");
390 SQLITE3_EXEC (dbh, "CREATE INDEX idx_hashidx ON ds090 (key,type,expire)");
391 plugin = GNUNET_malloc (sizeof (struct Plugin));
394 plugin->fn = fn_utf8;
395 api = GNUNET_malloc (sizeof (struct GNUNET_DATACACHE_PluginFunctions));
397 api->get = &sqlite_plugin_get;
398 api->put = &sqlite_plugin_put;
399 api->del = &sqlite_plugin_del;
400 GNUNET_log_from (GNUNET_ERROR_TYPE_INFO,
401 "sqlite", _("Sqlite datacache running\n"));
407 * Exit point from the plugin.
409 * @param cls closure (our "struct Plugin")
413 libgnunet_plugin_datacache_sqlite_done (void *cls)
415 struct GNUNET_DATACACHE_PluginFunctions *api = cls;
416 struct Plugin *plugin = api->cls;
418 if (0 != UNLINK (plugin->fn))
419 GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING,
422 GNUNET_free (plugin->fn);
423 sqlite3_close (plugin->dbh);
424 GNUNET_free (plugin);
431 /* end of plugin_datacache_sqlite.c */