1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/*
This file is part of GNUnet.
Copyright (C)
GNUnet is free software: you can redistribute it and/or modify it
under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License,
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
Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @file peerstore/perf_peerstore_store.c
* @brief performance test for peerstore store operation
*/
#include "platform.h"
#include "gnunet_util_lib.h"
#include "gnunet_testing_lib.h"
#include "gnunet_peerstore_service.h"
#define STORES 10000
static int ok = 1;
static struct GNUNET_PEERSTORE_Handle *h;
static char *ss = "test_peerstore_stress";
static struct GNUNET_PeerIdentity p;
static char *k = "test_peerstore_stress_key";
static char *v = "test_peerstore_stress_val";
static int count = 0;
static void
disconnect ()
{
if (NULL != h)
GNUNET_PEERSTORE_disconnect (h, GNUNET_YES);
GNUNET_SCHEDULER_shutdown ();
}
static void
store ()
{
GNUNET_PEERSTORE_store (h, ss, &p, k, v, strlen (v) + 1,
GNUNET_TIME_UNIT_FOREVER_ABS,
(count ==
0) ? GNUNET_PEERSTORE_STOREOPTION_REPLACE :
GNUNET_PEERSTORE_STOREOPTION_MULTIPLE, NULL, NULL);
count++;
}
static void
watch_cb (void *cls, const struct GNUNET_PEERSTORE_Record *record,
const char *emsg)
{
GNUNET_assert (NULL == emsg);
if (STORES == count)
{
ok = 0;
disconnect ();
}
else
store ();
}
static void
run (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg,
struct GNUNET_TESTING_Peer *peer)
{
memset (&p, 5, sizeof (p));
h = GNUNET_PEERSTORE_connect (cfg);
GNUNET_assert (NULL != h);
GNUNET_PEERSTORE_watch (h, ss, &p, k, &watch_cb, NULL);
store ();
}
int
main (int argc, char *argv[])
{
struct GNUNET_TIME_Absolute start;
struct GNUNET_TIME_Relative diff;
start = GNUNET_TIME_absolute_get ();
if (0 !=
GNUNET_TESTING_service_run ("perf-peerstore-store", "peerstore",
"test_peerstore_api_data.conf", &run, NULL))
return 1;
diff = GNUNET_TIME_absolute_get_duration (start);
fprintf (stderr, "Stored and retrieved %d records in %s (%s).\n", STORES,
GNUNET_STRINGS_relative_time_to_string (diff, GNUNET_YES),
GNUNET_STRINGS_relative_time_to_string (diff, GNUNET_NO));
return ok;
}
/* end of perf_peerstore_store.c */
|