even nicer indentation, thanks to LRN's indent patch
[oweals/gnunet.git] / src / fs / test_fs_search.c
1 /*
2      This file is part of GNUnet.
3      (C) 2004, 2005, 2006, 2008, 2009 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.c
23  * @brief simple testcase for simple publish + 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   struct 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_FS_Handle *fs;
65
66 static struct GNUNET_FS_SearchContext *search;
67
68 static struct GNUNET_FS_PublishContext *publish;
69
70
71 static void
72 abort_publish_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
73 {
74   GNUNET_FS_publish_stop (publish);
75   publish = NULL;
76 }
77
78
79 static void
80 abort_search_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
81 {
82   if (search != NULL)
83     GNUNET_FS_search_stop (search);
84   search = NULL;
85 }
86
87
88 static void *
89 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event)
90 {
91   const char *keywords[] = {
92     "down_foo"
93   };
94   struct GNUNET_FS_Uri *kuri;
95
96   switch (event->status)
97   {
98   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
99 #if VERBOSE
100     printf ("Publish is progressing (%llu/%llu at level %u off %llu)...\n",
101             (unsigned long long) event->value.publish.completed,
102             (unsigned long long) event->value.publish.size,
103             event->value.publish.specifics.progress.depth,
104             (unsigned long long) event->value.publish.specifics.
105             progress.offset);
106 #endif
107     break;
108   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
109     kuri = GNUNET_FS_uri_ksk_create_from_args (1, keywords);
110     start = GNUNET_TIME_absolute_get ();
111     search =
112         GNUNET_FS_search_start (fs, kuri, 1, GNUNET_FS_SEARCH_OPTION_NONE,
113                                 "search");
114     GNUNET_FS_uri_destroy (kuri);
115     GNUNET_assert (search != NULL);
116     break;
117   case GNUNET_FS_STATUS_SEARCH_RESULT:
118 #if VERBOSE
119     printf ("Search complete.\n");
120 #endif
121     GNUNET_SCHEDULER_add_continuation (&abort_search_task, NULL,
122                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
123     break;
124   case GNUNET_FS_STATUS_PUBLISH_ERROR:
125     fprintf (stderr, "Error publishing file: %s\n",
126              event->value.publish.specifics.error.message);
127     GNUNET_break (0);
128     GNUNET_SCHEDULER_add_continuation (&abort_publish_task, NULL,
129                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
130     break;
131   case GNUNET_FS_STATUS_SEARCH_ERROR:
132     fprintf (stderr, "Error searching file: %s\n",
133              event->value.search.specifics.error.message);
134     GNUNET_SCHEDULER_add_continuation (&abort_search_task, NULL,
135                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
136     break;
137   case GNUNET_FS_STATUS_PUBLISH_START:
138     GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
139     GNUNET_assert (NULL == event->value.publish.pctx);
140     GNUNET_assert (FILESIZE == event->value.publish.size);
141     GNUNET_assert (0 == event->value.publish.completed);
142     GNUNET_assert (1 == event->value.publish.anonymity);
143     break;
144   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
145     GNUNET_assert (publish == event->value.publish.pc);
146     GNUNET_assert (FILESIZE == event->value.publish.size);
147     GNUNET_assert (1 == event->value.publish.anonymity);
148     GNUNET_FS_stop (fs);
149     fs = NULL;
150     break;
151   case GNUNET_FS_STATUS_SEARCH_START:
152     GNUNET_assert (search == NULL);
153     GNUNET_assert (0 == strcmp ("search", event->value.search.cctx));
154     GNUNET_assert (1 == event->value.search.anonymity);
155     break;
156   case GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED:
157     break;
158   case GNUNET_FS_STATUS_SEARCH_STOPPED:
159     GNUNET_assert (search == event->value.search.sc);
160     GNUNET_SCHEDULER_add_continuation (&abort_publish_task, NULL,
161                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
162     break;
163   default:
164     fprintf (stderr, "Unexpected event: %d\n", event->status);
165     break;
166   }
167   return NULL;
168 }
169
170
171 static void
172 setup_peer (struct PeerContext *p, const char *cfgname)
173 {
174   p->cfg = GNUNET_CONFIGURATION_create ();
175 #if START_ARM
176   p->arm_proc =
177       GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
178                                "gnunet-service-arm",
179 #if VERBOSE
180                                "-L", "DEBUG",
181 #endif
182                                "-c", cfgname, NULL);
183 #endif
184   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
185 }
186
187
188 static void
189 stop_arm (struct PeerContext *p)
190 {
191 #if START_ARM
192   if (NULL != p->arm_proc)
193   {
194     if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
195       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
196     if (GNUNET_OS_process_wait (p->arm_proc) != GNUNET_OK)
197       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
198     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ARM process %u stopped\n",
199                 GNUNET_OS_process_get_pid (p->arm_proc));
200     GNUNET_OS_process_close (p->arm_proc);
201     p->arm_proc = NULL;
202   }
203 #endif
204   GNUNET_CONFIGURATION_destroy (p->cfg);
205 }
206
207
208 static void
209 run (void *cls, char *const *args, const char *cfgfile,
210      const struct GNUNET_CONFIGURATION_Handle *cfg)
211 {
212   const char *keywords[] = {
213     "down_foo",
214     "down_bar"
215   };
216   char *buf;
217   struct GNUNET_CONTAINER_MetaData *meta;
218   struct GNUNET_FS_Uri *kuri;
219   struct GNUNET_FS_BlockOptions bo;
220   struct GNUNET_FS_FileInformation *fi;
221   size_t i;
222
223   setup_peer (&p1, "test_fs_search_data.conf");
224   fs = GNUNET_FS_start (cfg, "test-fs-search", &progress_cb, NULL,
225                         GNUNET_FS_FLAGS_NONE, GNUNET_FS_OPTIONS_END);
226   GNUNET_assert (NULL != fs);
227   buf = GNUNET_malloc (FILESIZE);
228   for (i = 0; i < FILESIZE; i++)
229     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
230   meta = GNUNET_CONTAINER_meta_data_create ();
231   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
232   bo.content_priority = 42;
233   bo.anonymity_level = 1;
234   bo.replication_level = 0;
235   bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
236   fi = GNUNET_FS_file_information_create_from_data (fs, "publish-context",
237                                                     FILESIZE, buf, kuri, meta,
238                                                     GNUNET_NO, &bo);
239   GNUNET_FS_uri_destroy (kuri);
240   GNUNET_CONTAINER_meta_data_destroy (meta);
241   GNUNET_assert (NULL != fi);
242   start = GNUNET_TIME_absolute_get ();
243   publish =
244       GNUNET_FS_publish_start (fs, fi, NULL, NULL, NULL,
245                                GNUNET_FS_PUBLISH_OPTION_NONE);
246   GNUNET_assert (publish != NULL);
247 }
248
249
250 int
251 main (int argc, char *argv[])
252 {
253   char *const argvx[] = {
254     "test-fs-search",
255     "-c",
256     "test_fs_search_data.conf",
257 #if VERBOSE
258     "-L", "DEBUG",
259 #endif
260     NULL
261   };
262   struct GNUNET_GETOPT_CommandLineOption options[] = {
263     GNUNET_GETOPT_OPTION_END
264   };
265
266   GNUNET_log_setup ("test_fs_search",
267 #if VERBOSE
268                     "DEBUG",
269 #else
270                     "WARNING",
271 #endif
272                     NULL);
273   GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1, argvx,
274                       "test-fs-search", "nohelp", options, &run, NULL);
275   stop_arm (&p1);
276   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-search/");
277   return 0;
278 }
279
280 /* end of test_fs_search.c */