fixing drq code
[oweals/gnunet.git] / src / fs / test_fs_download.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 2, 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_download.c
23  * @brief simple testcase for simple publish + download 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 * 1024 * 2)
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 #if START_ARM
55   pid_t arm_pid;
56 #endif
57 };
58
59 static struct PeerContext p1;
60
61 static struct GNUNET_TIME_Absolute start;
62
63 static struct GNUNET_SCHEDULER_Handle *sched;
64
65 static struct GNUNET_FS_Handle *fs;
66
67 static struct GNUNET_FS_DownloadContext *download;
68
69 static struct GNUNET_FS_PublishContext *publish;
70
71 static char *fn;
72
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_download_task (void *cls,
85                      const struct GNUNET_SCHEDULER_TaskContext *tc)
86 {
87   uint64_t size;
88   
89   GNUNET_FS_download_stop (download, GNUNET_YES);
90   download = NULL;
91   GNUNET_assert (GNUNET_OK == GNUNET_DISK_file_size (fn, &size, GNUNET_YES));
92   GNUNET_assert (size == FILESIZE); 
93   GNUNET_DISK_directory_remove (fn);
94   GNUNET_free (fn);
95   fn = NULL;
96 }
97
98
99 static void *
100 progress_cb (void *cls, 
101              const struct GNUNET_FS_ProgressInfo *event)
102 {
103
104   switch (event->status)
105     {
106     case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
107 #if VERBOSE
108       printf ("Publish is progressing (%llu/%llu at level %u off %llu)...\n",
109               (unsigned long long) event->value.publish.completed,
110               (unsigned long long) event->value.publish.size,
111               event->value.publish.specifics.progress.depth,
112               (unsigned long long) event->value.publish.specifics.progress.offset);
113 #endif      
114       break;
115     case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
116       printf ("Publishing complete, %llu kbps.\n",
117               (unsigned long long) (FILESIZE * 1000 / (1+GNUNET_TIME_absolute_get_duration (start).value) / 1024));
118       fn = GNUNET_DISK_mktemp ("gnunet-download-test-dst");
119       start = GNUNET_TIME_absolute_get ();
120       download = GNUNET_FS_download_start (fs,
121                                            event->value.publish.specifics.completed.chk_uri,
122                                            NULL,
123                                            fn,
124                                            0,
125                                            FILESIZE,
126                                            1,
127                                            GNUNET_FS_DOWNLOAD_OPTION_NONE,
128                                            "download",
129                                            NULL);
130       GNUNET_assert (download != NULL);
131       break;
132     case GNUNET_FS_STATUS_DOWNLOAD_COMPLETED:
133       printf ("Download complete,  %llu kbps.\n",
134               (unsigned long long) (FILESIZE * 1000 / (1+GNUNET_TIME_absolute_get_duration (start).value) / 1024));
135       GNUNET_SCHEDULER_add_continuation (sched,
136                                          &abort_download_task,
137                                          NULL,
138                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
139       break;
140     case GNUNET_FS_STATUS_DOWNLOAD_PROGRESS:
141       GNUNET_assert (download == event->value.download.dc);
142 #if VERBOSE
143       printf ("Download is progressing (%llu/%llu at level %u off %llu)...\n",
144               (unsigned long long) event->value.download.completed,
145               (unsigned long long) event->value.download.size,
146               event->value.download.specifics.progress.depth,
147               (unsigned long long) event->value.download.specifics.progress.offset);
148 #endif
149       break;
150     case GNUNET_FS_STATUS_PUBLISH_ERROR:
151       fprintf (stderr,
152                "Error publishing file: %s\n",
153                event->value.publish.specifics.error.message);
154       GNUNET_break (0);
155       GNUNET_SCHEDULER_add_continuation (sched,
156                                          &abort_publish_task,
157                                          NULL,
158                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
159       break;
160     case GNUNET_FS_STATUS_DOWNLOAD_ERROR:
161       fprintf (stderr,
162                "Error downloading file: %s\n",
163                event->value.download.specifics.error.message);
164       GNUNET_SCHEDULER_add_continuation (sched,
165                                          &abort_download_task,
166                                          NULL,
167                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
168       break;
169     case GNUNET_FS_STATUS_PUBLISH_START:
170       GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
171       GNUNET_assert (NULL == event->value.publish.pctx);
172       GNUNET_assert (FILESIZE == event->value.publish.size);
173       GNUNET_assert (0 == event->value.publish.completed);
174       GNUNET_assert (1 == event->value.publish.anonymity);
175       break;
176     case GNUNET_FS_STATUS_PUBLISH_STOPPED:
177       GNUNET_assert (publish == event->value.publish.sc);
178       GNUNET_assert (FILESIZE == event->value.publish.size);
179       GNUNET_assert (1 == event->value.publish.anonymity);
180       GNUNET_FS_stop (fs);
181       fs = NULL;
182       break;
183     case GNUNET_FS_STATUS_DOWNLOAD_START:
184       GNUNET_assert (download == NULL);
185       GNUNET_assert (0 == strcmp ("download", event->value.download.cctx));
186       GNUNET_assert (NULL == event->value.download.pctx);
187       GNUNET_assert (NULL != event->value.download.uri);
188       GNUNET_assert (0 == strcmp (fn, event->value.download.filename));
189       GNUNET_assert (FILESIZE == event->value.download.size);
190       GNUNET_assert (0 == event->value.download.completed);
191       GNUNET_assert (1 == event->value.download.anonymity);
192       break;
193     case GNUNET_FS_STATUS_DOWNLOAD_STOPPED:
194       GNUNET_assert (download == event->value.download.dc);
195       GNUNET_SCHEDULER_add_continuation (sched,
196                                          &abort_publish_task,
197                                          NULL,
198                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
199       break;
200     default:
201       printf ("Unexpected event: %d\n", 
202               event->status);
203       break;
204     }
205   return NULL;
206 }
207
208
209 static void
210 setup_peer (struct PeerContext *p, const char *cfgname)
211 {
212   p->cfg = GNUNET_CONFIGURATION_create ();
213 #if START_ARM
214   p->arm_pid = GNUNET_OS_start_process ("gnunet-service-arm",
215                                         "gnunet-service-arm",
216 #if VERBOSE
217                                         "-L", "DEBUG",
218 #endif
219                                         "-c", cfgname, NULL);
220 #endif
221   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
222   GNUNET_ARM_start_services (p->cfg, sched, "core", NULL);
223 }
224
225
226 static void
227 stop_arm (struct PeerContext *p)
228 {
229 #if START_ARM
230   if (0 != PLIBC_KILL (p->arm_pid, SIGTERM))
231     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
232   if (GNUNET_OS_process_wait(p->arm_pid) != GNUNET_OK)
233     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
234   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
235               "ARM process %u stopped\n", p->arm_pid);
236 #endif
237   GNUNET_CONFIGURATION_destroy (p->cfg);
238 }
239
240
241 static void
242 run (void *cls,
243      struct GNUNET_SCHEDULER_Handle *s,
244      char *const *args,
245      const char *cfgfile,
246      const struct GNUNET_CONFIGURATION_Handle *cfg)
247 {
248   const char *keywords[] = {
249     "down_foo",
250     "down_bar",
251   };
252   char *buf;
253   struct GNUNET_CONTAINER_MetaData *meta;
254   struct GNUNET_FS_Uri *kuri;
255   struct GNUNET_FS_FileInformation *fi;
256   size_t i;
257
258   sched = s;
259   setup_peer (&p1, "test_fs_download_data.conf");
260   fs = GNUNET_FS_start (sched,
261                         cfg,
262                         "test-fs-download",
263                         &progress_cb,
264                         NULL,
265                         GNUNET_FS_FLAGS_NONE,
266                         GNUNET_FS_OPTIONS_END);
267   GNUNET_assert (NULL != fs); 
268   buf = GNUNET_malloc (FILESIZE);
269   for (i = 0; i < FILESIZE; i++)
270     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
271   meta = GNUNET_CONTAINER_meta_data_create ();
272   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
273   fi = GNUNET_FS_file_information_create_from_data ("publish-context",
274                                                     FILESIZE,
275                                                     buf,
276                                                     kuri,
277                                                     meta,
278                                                     GNUNET_NO,
279                                                     1,
280                                                     42,
281                                                     GNUNET_TIME_relative_to_absolute (LIFETIME)); 
282   GNUNET_FS_uri_destroy (kuri);
283   GNUNET_CONTAINER_meta_data_destroy (meta);
284   GNUNET_assert (NULL != fi);
285   start = GNUNET_TIME_absolute_get ();
286   publish = GNUNET_FS_publish_start (fs,
287                                     fi,
288                                     NULL, NULL, NULL,
289                                     GNUNET_FS_PUBLISH_OPTION_NONE);
290   GNUNET_assert (publish != NULL);
291 }
292
293
294 int
295 main (int argc, char *argv[])
296 {
297   char *const argvx[] = { 
298     "test-fs-download",
299     "-c",
300     "test_fs_download_data.conf",
301 #if VERBOSE
302     "-L", "DEBUG",
303 #endif
304     NULL
305   };
306   struct GNUNET_GETOPT_CommandLineOption options[] = {
307     GNUNET_GETOPT_OPTION_END
308   };
309
310   GNUNET_log_setup ("test_fs_download", 
311 #if VERBOSE
312                     "DEBUG",
313 #else
314                     "WARNING",
315 #endif
316                     NULL);
317   GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1,
318                       argvx, "test-fs-download",
319                       "nohelp", options, &run, NULL);
320   stop_arm (&p1);
321   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-download/");
322   return 0;
323 }
324
325 /* end of test_fs_download.c */