original patch from Mantis 1614
[oweals/gnunet.git] / src / fs / test_fs_search_persistence.c
1 /*
2      This file is part of GNUnet.
3      (C) 2004, 2005, 2006, 2008, 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 fs/test_fs_search_persistence.c
23  * @brief simple testcase for persistence of search operation
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_arm_service.h"
30 #include "gnunet_fs_service.h"
31
32 #define VERBOSE GNUNET_NO
33
34 #define START_ARM GNUNET_YES
35
36 /**
37  * File-size we use for testing.
38  */
39 #define FILESIZE 1024
40
41 /**
42  * How long until we give up on transmitting the message?
43  */
44 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
45
46 /**
47  * How long should our test-content live?
48  */ 
49 #define LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
50
51 struct PeerContext
52 {
53   struct GNUNET_CONFIGURATION_Handle *cfg;
54   struct GNUNET_PeerIdentity id;   
55 #if START_ARM
56   GNUNET_OS_Process *arm_proc;
57 #endif
58 };
59
60 static struct PeerContext p1;
61
62 static struct GNUNET_TIME_Absolute start;
63
64 static struct GNUNET_SCHEDULER_Handle *sched;
65
66 static struct GNUNET_FS_Handle *fs;
67
68 static struct GNUNET_FS_SearchContext *search;
69
70 static struct GNUNET_FS_PublishContext *publish;
71
72 static const struct GNUNET_CONFIGURATION_Handle *cfg;
73
74 static void
75 abort_publish_task (void *cls,
76                      const struct GNUNET_SCHEDULER_TaskContext *tc)
77 {
78   GNUNET_FS_publish_stop (publish);
79   publish = NULL;
80 }
81
82
83 static void
84 abort_search_task (void *cls,
85                      const struct GNUNET_SCHEDULER_TaskContext *tc)
86 {
87   if (search != NULL)
88     GNUNET_FS_search_stop (search);
89   search = NULL;
90 }
91
92
93 static void *
94 progress_cb (void *cls, 
95              const struct GNUNET_FS_ProgressInfo *event);
96
97
98 static void
99 restart_fs_task (void *cls,
100                  const struct GNUNET_SCHEDULER_TaskContext *tc)
101 {
102   GNUNET_FS_stop (fs);
103   fs = GNUNET_FS_start (sched,
104                         cfg,
105                         "test-fs-search-persistence",
106                         &progress_cb,
107                         NULL,
108                         GNUNET_FS_FLAGS_PERSISTENCE,
109                         GNUNET_FS_OPTIONS_END);
110 }
111
112
113
114
115 /**
116  * Consider scheduling the restart-task. 
117  * Only runs the restart task once per event 
118  * category.
119  *
120  * @param ev type of the event to consider
121  */
122 static void
123 consider_restart (int ev)
124 {
125   static int prev[32];
126   static int off;
127   int i;
128   for (i=0;i<off;i++)
129     if (prev[i] == ev)
130       return;
131   prev[off++] = ev;
132   GNUNET_SCHEDULER_add_with_priority (sched,
133                                       GNUNET_SCHEDULER_PRIORITY_URGENT,
134                                       &restart_fs_task,
135                                       NULL);
136 }
137
138
139 static void *
140 progress_cb (void *cls, 
141              const struct GNUNET_FS_ProgressInfo *event)
142 {  
143   const char *keywords[] = {
144     "down_foo"
145   };
146   struct GNUNET_FS_Uri *kuri;
147
148   switch (event->status)
149     {
150     case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
151 #if VERBOSE
152       printf ("Publish is progressing (%llu/%llu at level %u off %llu)...\n",
153               (unsigned long long) event->abs_value.publish.completed,
154               (unsigned long long) event->abs_value.publish.size,
155               event->abs_value.publish.specifics.progress.depth,
156               (unsigned long long) event->abs_value.publish.specifics.progress.offset);
157 #endif      
158       break;
159     case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
160       kuri = GNUNET_FS_uri_ksk_create_from_args (1, keywords);
161       start = GNUNET_TIME_absolute_get ();
162       GNUNET_FS_search_start (fs,
163                               kuri,
164                               1,
165                               GNUNET_FS_SEARCH_OPTION_NONE,
166                               "search");
167       GNUNET_FS_uri_destroy (kuri);
168       GNUNET_assert (search != NULL);
169       break;
170     case GNUNET_FS_STATUS_PUBLISH_SUSPEND:
171       if  (event->value.publish.pc == publish)
172         publish = NULL;
173       break;
174     case GNUNET_FS_STATUS_PUBLISH_RESUME:
175       if (NULL == publish)
176         publish = event->value.publish.pc;
177       break;
178     case GNUNET_FS_STATUS_SEARCH_RESULT:
179       /* FIXME: consider_restart (event->status); cannot be tested with
180          search result since we exit here after the first one... */
181 #if VERBOSE
182       printf ("Search complete.\n");
183 #endif
184       GNUNET_SCHEDULER_add_continuation (sched,
185                                          &abort_search_task,
186                                          NULL,
187                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
188       break;
189     case GNUNET_FS_STATUS_PUBLISH_ERROR:
190       fprintf (stderr,
191                "Error publishing file: %s\n",
192                event->value.publish.specifics.error.message);
193       GNUNET_break (0);
194       GNUNET_SCHEDULER_add_continuation (sched,
195                                          &abort_publish_task,
196                                          NULL,
197                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
198       break;
199     case GNUNET_FS_STATUS_SEARCH_ERROR:
200       fprintf (stderr,
201                "Error searching file: %s\n",
202                event->value.search.specifics.error.message);
203       GNUNET_SCHEDULER_add_continuation (sched,
204                                          &abort_search_task,
205                                          NULL,
206                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
207       break;
208     case GNUNET_FS_STATUS_SEARCH_SUSPEND:
209       if  (event->value.search.sc == search)
210         search = NULL;
211       break;
212     case GNUNET_FS_STATUS_SEARCH_RESUME:
213       if (NULL == search)
214         {
215           search = event->value.search.sc;
216           return "search";
217         }
218       break;
219     case GNUNET_FS_STATUS_PUBLISH_START:
220       GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
221       GNUNET_assert (NULL == event->value.publish.pctx);
222       GNUNET_assert (FILESIZE == event->value.publish.size);
223       GNUNET_assert (0 == event->value.publish.completed);
224       GNUNET_assert (1 == event->value.publish.anonymity);
225       break;
226     case GNUNET_FS_STATUS_PUBLISH_STOPPED:
227       GNUNET_assert (publish == event->value.publish.pc);
228       GNUNET_assert (FILESIZE == event->value.publish.size);
229       GNUNET_assert (1 == event->value.publish.anonymity);
230       GNUNET_FS_stop (fs);
231       fs = NULL;
232       break;
233     case GNUNET_FS_STATUS_SEARCH_START:
234       consider_restart (event->status);
235       GNUNET_assert (search == NULL);
236       search = event->value.search.sc;
237       GNUNET_assert (0 == strcmp ("search", event->value.search.cctx));
238       GNUNET_assert (1 == event->value.search.anonymity);
239       break;
240     case GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED:
241       break;
242     case GNUNET_FS_STATUS_SEARCH_STOPPED:
243       GNUNET_assert (search == event->value.search.sc);
244       GNUNET_SCHEDULER_add_continuation (sched,
245                                          &abort_publish_task,
246                                          NULL,
247                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
248       search = NULL;
249       break;
250     default:
251       fprintf (stderr,
252                "Unexpected event: %d\n", 
253                event->status);
254       break;
255     }
256   return NULL;
257 }
258
259
260 static void
261 setup_peer (struct PeerContext *p, const char *cfgname)
262 {
263   p->cfg = GNUNET_CONFIGURATION_create ();
264 #if START_ARM
265   p->arm_proc = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
266                                         "gnunet-service-arm",
267 #if VERBOSE
268                                         "-L", "DEBUG",
269 #endif
270                                         "-c", cfgname, NULL);
271 #endif
272   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
273 }
274
275
276 static void
277 stop_arm (struct PeerContext *p)
278 {
279 #if START_ARM
280   if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
281     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
282   if (GNUNET_OS_process_wait(p->arm_proc) != GNUNET_OK)
283     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
284   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
285               "ARM process %u stopped\n", GNUNET_OS_process_get_pid (p->arm_proc));
286   GNUNET_OS_process_close (p->arm_proc);
287   p->arm_proc = NULL;
288 #endif
289   GNUNET_CONFIGURATION_destroy (p->cfg);
290 }
291
292
293 static void
294 run (void *cls,
295      struct GNUNET_SCHEDULER_Handle *s,
296      char *const *args,
297      const char *cfgfile,
298      const struct GNUNET_CONFIGURATION_Handle *c)
299 {
300   const char *keywords[] = {
301     "down_foo",
302     "down_bar"
303   };
304   char *buf;
305   struct GNUNET_CONTAINER_MetaData *meta;
306   struct GNUNET_FS_Uri *kuri;
307   struct GNUNET_FS_FileInformation *fi;
308   size_t i;
309
310   sched = s;
311   cfg = c;
312   setup_peer (&p1, "test_fs_search_data.conf");
313   fs = GNUNET_FS_start (sched,
314                         cfg,
315                         "test-fs-search-persistence",
316                         &progress_cb,
317                         NULL,
318                         GNUNET_FS_FLAGS_PERSISTENCE,
319                         GNUNET_FS_OPTIONS_END);
320   GNUNET_assert (NULL != fs); 
321   buf = GNUNET_malloc (FILESIZE);
322   for (i = 0; i < FILESIZE; i++)
323     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
324   meta = GNUNET_CONTAINER_meta_data_create ();
325   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
326   fi = GNUNET_FS_file_information_create_from_data (fs,
327                                                     "publish-context",
328                                                     FILESIZE,
329                                                     buf,
330                                                     kuri,
331                                                     meta,
332                                                     GNUNET_NO,
333                                                     1,
334                                                     42,
335                                                     GNUNET_TIME_relative_to_absolute (LIFETIME)); 
336   GNUNET_FS_uri_destroy (kuri);
337   GNUNET_CONTAINER_meta_data_destroy (meta);
338   GNUNET_assert (NULL != fi);
339   start = GNUNET_TIME_absolute_get ();
340   publish = GNUNET_FS_publish_start (fs,
341                                     fi,
342                                     NULL, NULL, NULL,
343                                     GNUNET_FS_PUBLISH_OPTION_NONE);
344   GNUNET_assert (publish != NULL);
345 }
346
347
348 int
349 main (int argc, char *argv[])
350 {
351   char *const argvx[] = { 
352     "test-fs-search-persistence",
353     "-c",
354     "test_fs_search_data.conf",
355 #if VERBOSE
356     "-L", "DEBUG",
357 #endif
358     NULL
359   };
360   struct GNUNET_GETOPT_CommandLineOption options[] = {
361     GNUNET_GETOPT_OPTION_END
362   };
363
364   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-search/");
365   GNUNET_log_setup ("test_fs_search_persistence", 
366 #if VERBOSE
367                     "DEBUG",
368 #else
369                     "WARNING",
370 #endif
371                     NULL);
372   GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1,
373                       argvx, "test-fs-search-persistence",
374                       "nohelp", options, &run, NULL);
375   stop_arm (&p1);
376   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-search/");
377   return 0;
378 }
379
380 /* end of test_fs_search_persistence.c */