debug output
[oweals/gnunet.git] / src / peerinfo / perf_peerinfo_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2004, 2009, 2010 Christian Grothoff (and other contributing authors)
4
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.
9
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.
14
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.
19 */
20
21 /**
22  * @file peerinfo/test_peerinfo_hammer.c
23  * @brief testcase for peerinfo_api.c, hopefully hammer the peerinfo service
24  * @author Nathan Evans
25  */
26
27 #include "platform.h"
28 #include "gnunet_hello_lib.h"
29 #include "gnunet_getopt_lib.h"
30 #include "gnunet_os_lib.h"
31 #include "gnunet_peerinfo_service.h"
32 #include "gnunet_program_lib.h"
33 #include "gnunet_time_lib.h"
34 #include "peerinfo.h"
35 #include <gauger.h>
36
37 #define START_SERVICE 1
38
39 #define NUM_REQUESTS 5000
40
41 static const struct GNUNET_CONFIGURATION_Handle *cfg;
42
43 static struct GNUNET_PEERINFO_IteratorContext *ic[NUM_REQUESTS];
44
45 static struct GNUNET_PEERINFO_Handle *h;
46
47 static unsigned int numpeers;
48
49 static int
50 check_it (void *cls,
51           const char *tname,
52           struct GNUNET_TIME_Absolute expiration,
53           const void *addr, uint16_t addrlen)
54 {
55 #if DEBUG
56   if (addrlen > 0)
57     {
58       fprintf (stderr,
59                "name: %s, addr: %s\n", 
60                tname, 
61                (const char*) addr);
62     }
63 #endif
64   return GNUNET_OK;
65 }
66
67
68 static size_t
69 address_generator (void *cls, size_t max, void *buf)
70 {
71   size_t *agc = cls;
72   size_t ret;
73   char *address;
74
75   if (*agc == 0)
76     return 0;
77
78   GNUNET_asprintf(&address, "Address%d", *agc);
79
80   ret = GNUNET_HELLO_add_address ("peerinfotest",
81                                   GNUNET_TIME_relative_to_absolute
82                                   (GNUNET_TIME_UNIT_HOURS), 
83                                   address, strlen(address) + 1,
84                                   buf, max);
85   GNUNET_free (address);
86   *agc = 0;
87   return ret;
88 }
89
90
91 static void
92 add_peer (size_t i)
93 {
94   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pkey;
95   struct GNUNET_PeerIdentity pid;
96   struct GNUNET_HELLO_Message *h2;
97
98   memset (&pkey, i, sizeof (pkey));
99   GNUNET_CRYPTO_hash (&pkey, sizeof (pkey), &pid.hashPubKey);
100   h2 = GNUNET_HELLO_create (&pkey, &address_generator, &i);
101   GNUNET_PEERINFO_add_peer (h, h2);
102   GNUNET_free (h2);
103 }
104
105
106 static void
107 process (void *cls,
108          const struct GNUNET_PeerIdentity *peer,
109          const struct GNUNET_HELLO_Message *hello,
110          const char * err_msg)
111 {
112   if (peer == NULL)
113     {
114 #if DEBUG
115       fprintf(stderr, "Process received NULL response\n");
116 #endif
117     }
118   else
119     {
120 #if DEBUG
121       fprintf(stderr, "Processed a peer\n");
122 #endif
123       numpeers++;
124       if (0 && (hello != NULL))
125         GNUNET_HELLO_iterate_addresses (hello, GNUNET_NO, &check_it, NULL);
126
127     }
128 }
129
130
131 static void
132 run (void *cls,
133      char *const *args,
134      const char *cfgfile, 
135      const struct GNUNET_CONFIGURATION_Handle *c)
136 {
137   size_t i;
138   cfg = c;
139   h = GNUNET_PEERINFO_connect (cfg);
140   GNUNET_assert (h != NULL);
141   for (i = 0; i < NUM_REQUESTS; i++)
142     {
143       add_peer (i);
144       ic[i] = GNUNET_PEERINFO_iterate (h,
145                                        NULL,
146                                        GNUNET_TIME_relative_multiply
147                                        (GNUNET_TIME_UNIT_SECONDS, 30),
148                                        &process, cls);
149     }
150 }
151
152 static int
153 check ()
154 {
155   int ok = 0;
156   char *const argv[] = { "perf-peerinfo-api",
157     "-c",
158     "test_peerinfo_api_data.conf",
159 #if DEBUG_PEERINFO
160     "-L", "DEBUG",
161 #else
162     "-L", "ERROR",
163 #endif
164     NULL
165   };
166 #if START_SERVICE
167   struct GNUNET_OS_Process *proc;
168   struct GNUNET_GETOPT_CommandLineOption options[] = {
169     GNUNET_GETOPT_OPTION_END
170   };
171   proc = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-peerinfo",
172                                  "gnunet-service-peerinfo",
173 #if DEBUG_PEERINFO
174                                  "-L", "DEBUG",
175 #else
176                                 "-L", "ERROR",
177 #endif
178                                  "-c", "test_peerinfo_api_data.conf", NULL);
179 #endif
180   GNUNET_assert (NULL != proc);
181   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
182                       argv, "perf-peerinfo-api", "nohelp",
183                       options, &run, &ok);
184   fprintf (stderr,
185            "Received %u/%u calls before timeout\n",
186            numpeers,
187            NUM_REQUESTS * NUM_REQUESTS / 2);
188   GAUGER ("PEERINFO", "Peerinfo lookups", numpeers / 30, "peers/s");
189 #if START_SERVICE
190   if (0 != GNUNET_OS_process_kill (proc, SIGTERM))
191     {
192       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
193       ok = 1;
194     }
195   GNUNET_OS_process_wait (proc);
196   GNUNET_OS_process_close (proc);
197   proc = NULL;
198
199 #endif
200   return ok;
201 }
202
203
204 int
205 main (int argc, char *argv[])
206 {
207   int ret = 0;
208
209   GNUNET_log_setup ("perf_peerinfo_api",
210 #if DEBUG_PEERINFO
211                     "DEBUG",
212 #else
213                     "ERROR",
214 #endif
215                     NULL);
216   ret = check ();
217   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-peerinfo");
218   return ret;
219 }
220
221 /* end of perf_peerinfo_api.c */