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