2 This file is part of GNUnet.
3 (C) 2004, 2005, 2006, 2007, 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.
21 * @file perf_plugin_datastore.c
22 * @brief Profile database plugin directly, focusing on iterators.
23 * @author Christian Grothoff
27 #include "gnunet_util_lib.h"
28 #include "gnunet_protocols.h"
29 #include "plugin_datastore.h"
31 #define VERBOSE GNUNET_NO
34 * Target datastore size (in bytes). Realistic sizes are
35 * more like 16 GB (not the default of 16 MB); however,
36 * those take too long to run them in the usual "make check"
37 * sequence. Hence the value used for shipping is tiny.
39 #define MAX_SIZE 1024LL * 1024 * 128
44 * Number of put operations equivalent to 1/10th of MAX_SIZE
46 #define PUT_10 (MAX_SIZE / 32 / 1024 / ITERATIONS)
48 static unsigned long long stored_bytes;
50 static unsigned long long stored_entries;
52 static unsigned long long stored_ops;
71 struct GNUNET_TIME_Absolute start;
72 struct GNUNET_TIME_Absolute end;
73 struct GNUNET_SCHEDULER_Handle *sched;
74 const struct GNUNET_CONFIGURATION_Handle *cfg;
75 struct GNUNET_DATASTORE_PluginFunctions * api;
84 putValue (struct GNUNET_DATASTORE_PluginFunctions * api, int i, int k)
88 static GNUNET_HashCode key;
93 /* most content is 32k */
96 if (GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 16) == 0) /* but some of it is less! */
97 size = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 32 * 1024);
98 size = size - (size & 7); /* always multiple of 8 */
100 /* generate random key */
101 key.bits[0] = (unsigned int) GNUNET_TIME_absolute_get ().value;
102 GNUNET_CRYPTO_hash (&key, sizeof (GNUNET_HashCode), &key);
103 memset (value, i, size);
105 memset (value, i - 255, size / 2);
108 prio = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 100);
109 if (GNUNET_OK != api->put (api->cls,
116 GNUNET_TIME_relative_to_absolute
117 (GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS,
118 60 * 60 * 60 * 1000 +
119 GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 1000))),
122 fprintf (stderr, "ERROR: `%s'\n", msg);
123 GNUNET_free_non_null (msg);
127 stored_bytes += size;
134 const struct GNUNET_SCHEDULER_TaskContext *tc);
138 iterateDummy (void *cls,
140 const GNUNET_HashCode * key,
143 enum GNUNET_BLOCK_Type type,
146 struct GNUNET_TIME_Absolute
150 struct CpsRunContext *crc = cls;
154 crc->end = GNUNET_TIME_absolute_get();
157 (unsigned long long) (crc->end.value - crc->start.value),
159 if (crc->phase != RP_AN_GET)
165 if (crc->i == ITERATIONS)
166 crc->phase = RP_DONE;
170 GNUNET_SCHEDULER_add_after (crc->sched,
171 GNUNET_SCHEDULER_NO_TASK,
176 fprintf (stderr, "Found result type=%u, priority=%u, size=%u, expire=%llu\n",
177 type, priority, size,
178 (unsigned long long) expiration.value);
181 crc->api->next_request (next_cls,
189 * Function called when the service shuts
190 * down. Unloads our datastore plugin.
192 * @param api api to unload
193 * @param cfg configuration to use
196 unload_plugin (struct GNUNET_DATASTORE_PluginFunctions * api,
197 const struct GNUNET_CONFIGURATION_Handle *cfg)
203 GNUNET_CONFIGURATION_get_value_string (cfg,
204 "DATASTORE", "DATABASE", &name))
206 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
207 _("No `%s' specified for `%s' in configuration!\n"),
212 GNUNET_asprintf (&libname, "libgnunet_plugin_datastore_%s", name);
213 GNUNET_break (NULL == GNUNET_PLUGIN_unload (libname, api));
214 GNUNET_free (libname);
221 * Last task run during shutdown. Disconnects us from
222 * the transport and core.
225 cleaning_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
227 struct CpsRunContext *crc = cls;
229 unload_plugin (crc->api, crc->cfg);
236 const struct GNUNET_SCHEDULER_TaskContext *tc)
238 struct CpsRunContext *crc = cls;
244 crc->start = GNUNET_TIME_absolute_get ();
245 for (j=0;j<PUT_10;j++)
246 putValue (crc->api, j, crc->i);
247 crc->end = GNUNET_TIME_absolute_get ();
248 printf ("%3u insertion took %20llums for %u\n",
250 (unsigned long long) (crc->end.value - crc->start.value),
251 (unsigned int) PUT_10);
253 crc->phase = RP_LP_GET;
254 GNUNET_SCHEDULER_add_after (crc->sched,
255 GNUNET_SCHEDULER_NO_TASK,
260 crc->start = GNUNET_TIME_absolute_get ();
261 crc->msg = "%3u low priority iteration took %20llums for %u\n";
262 crc->api->iter_low_priority (crc->api->cls, 0,
268 crc->start = GNUNET_TIME_absolute_get ();
269 crc->msg = "%3u ascending expiration iteration took %20llums for %u\n";
270 crc->api->iter_ascending_expiration (crc->api->cls, 0,
276 crc->start = GNUNET_TIME_absolute_get ();
277 crc->msg = "%3u zero anonymity iteration took %20llums for %u\n";
278 crc->api->iter_zero_anonymity (crc->api->cls, 0,
284 crc->start = GNUNET_TIME_absolute_get ();
285 crc->msg = "%3u migration order iteration took %20llums for %u\n";
286 crc->api->iter_migration_order (crc->api->cls, 0,
292 crc->start = GNUNET_TIME_absolute_get ();
293 crc->msg = "%3u all now iteration took %20llums for %u\n";
294 crc->api->iter_all_now (crc->api->cls, 0,
299 crc->api->drop (crc->api->cls);
300 GNUNET_SCHEDULER_add_with_priority (crc->sched,
301 GNUNET_SCHEDULER_PRIORITY_IDLE,
302 &cleaning_task, crc);
309 * Load the datastore plugin.
311 static struct GNUNET_DATASTORE_PluginFunctions *
312 load_plugin (const struct GNUNET_CONFIGURATION_Handle *cfg,
313 struct GNUNET_SCHEDULER_Handle *sched)
315 static struct GNUNET_DATASTORE_PluginEnvironment env;
316 struct GNUNET_DATASTORE_PluginFunctions * ret;
321 GNUNET_CONFIGURATION_get_value_string (cfg,
322 "DATASTORE", "DATABASE", &name))
324 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
325 _("No `%s' specified for `%s' in configuration!\n"),
332 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
333 _("Loading `%s' datastore plugin\n"), name);
334 GNUNET_asprintf (&libname, "libgnunet_plugin_datastore_%s", name);
335 GNUNET_assert (NULL != (ret = GNUNET_PLUGIN_load (libname, &env)));
336 GNUNET_free (libname);
344 struct GNUNET_SCHEDULER_Handle *s,
347 const struct GNUNET_CONFIGURATION_Handle *c)
349 struct GNUNET_DATASTORE_PluginFunctions *api;
350 struct CpsRunContext *crc;
352 api = load_plugin (c, s);
353 GNUNET_assert (api != NULL);
354 crc = GNUNET_malloc(sizeof(struct CpsRunContext));
359 GNUNET_SCHEDULER_add_after (s,
360 GNUNET_SCHEDULER_NO_TASK,
368 char *const argv[] = {
369 "perf-plugin-datastore",
371 "perf_plugin_datastore_data.conf",
377 struct GNUNET_GETOPT_CommandLineOption options[] = {
378 GNUNET_GETOPT_OPTION_END
380 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
381 argv, "perf-plugin-datastore", "nohelp",
382 options, &run, NULL);
384 fprintf (stderr, "Missed some testcases: %u\n", ok);
390 main (int argc, char *argv[])
394 GNUNET_DISK_directory_remove ("/tmp/perf-gnunet-datastore");
395 GNUNET_log_setup ("perf-plugin-datastore",
403 GNUNET_DISK_directory_remove ("/tmp/perf-gnunet-datastore");
409 /* end of perf_plugin_datastore.c */