use heap instead of DLL
[oweals/gnunet.git] / src / fs / test_fs_search_probes.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2012 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file fs/test_fs_search_probes.c
23  * @brief simple testcase for publish + search operation with probes
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_testing_lib.h"
29 #include "gnunet_fs_service.h"
30
31
32 /**
33  * File-size we use for testing.
34  */
35 #define FILESIZE 1024
36
37 /**
38  * How long until we give up on transmitting the message?
39  */
40 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
41
42 /**
43  * How long should our test-content live?
44  */
45 #define LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
46
47
48 static struct GNUNET_TIME_Absolute start;
49
50 static struct GNUNET_FS_Handle *fs;
51
52 static struct GNUNET_FS_SearchContext *search;
53
54 static struct GNUNET_FS_PublishContext *publish;
55
56 static struct GNUNET_SCHEDULER_Task * timeout_task;
57
58 static int err;
59
60
61 static void
62 abort_error (void *cls)
63 {
64   timeout_task = NULL;
65   fprintf (stderr,
66            "Timeout\n");
67   if (NULL != search)
68   {
69     GNUNET_FS_search_stop (search);
70     search = NULL;
71   }
72   if (NULL != publish)
73   {
74     GNUNET_FS_publish_stop (publish);
75     publish = NULL;
76   }
77   err = 1;
78 }
79
80
81 static void
82 abort_publish_task (void *cls)
83 {
84   if (NULL != publish)
85   {
86     GNUNET_FS_publish_stop (publish);
87     publish = NULL;
88   }
89   if (NULL != timeout_task)
90   {
91     GNUNET_SCHEDULER_cancel (timeout_task);
92     timeout_task = NULL;
93   }
94 }
95
96
97 static void
98 abort_search_task (void *cls)
99 {
100   if (search != NULL)
101     GNUNET_FS_search_stop (search);
102   search = NULL;
103 }
104
105
106 static void *
107 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event)
108 {
109   const char *keywords[] = {
110     "down_foo"
111   };
112   struct GNUNET_FS_Uri *kuri;
113
114   switch (event->status)
115   {
116   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
117     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
118                 "Publish is progressing (%llu/%llu at level %u off %llu)...\n",
119                 (unsigned long long) event->value.publish.completed,
120                 (unsigned long long) event->value.publish.size,
121                 event->value.publish.specifics.progress.depth,
122                 (unsigned long long) event->value.publish.specifics.
123                 progress.offset);
124     break;
125   case GNUNET_FS_STATUS_PUBLISH_PROGRESS_DIRECTORY:
126     break;
127   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
128     kuri = GNUNET_FS_uri_ksk_create_from_args (1, keywords);
129     start = GNUNET_TIME_absolute_get ();
130     search =
131         GNUNET_FS_search_start (fs, kuri, 1, GNUNET_FS_SEARCH_OPTION_NONE,
132                                 "search");
133     GNUNET_FS_uri_destroy (kuri);
134     GNUNET_assert (search != NULL);
135     break;
136   case GNUNET_FS_STATUS_SEARCH_RESULT:
137     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Search complete.\n");
138     break;
139   case GNUNET_FS_STATUS_PUBLISH_ERROR:
140     FPRINTF (stderr, "Error publishing file: %s\n",
141              event->value.publish.specifics.error.message);
142     GNUNET_break (0);
143     GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
144     break;
145   case GNUNET_FS_STATUS_SEARCH_ERROR:
146     FPRINTF (stderr, "Error searching file: %s\n",
147              event->value.search.specifics.error.message);
148     GNUNET_SCHEDULER_add_now (&abort_search_task, NULL);
149     break;
150   case GNUNET_FS_STATUS_PUBLISH_START:
151     GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
152     GNUNET_assert (NULL == event->value.publish.pctx);
153     GNUNET_assert (FILESIZE == event->value.publish.size);
154     GNUNET_assert (0 == event->value.publish.completed);
155     GNUNET_assert (1 == event->value.publish.anonymity);
156     break;
157   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
158     GNUNET_assert (publish == event->value.publish.pc);
159     GNUNET_assert (FILESIZE == event->value.publish.size);
160     GNUNET_assert (1 == event->value.publish.anonymity);
161     GNUNET_FS_stop (fs);
162     fs = NULL;
163     break;
164   case GNUNET_FS_STATUS_SEARCH_UPDATE:
165     if ( (0 < event->value.search.specifics.update.availability_rank) &&
166          (0 < event->value.search.specifics.update.availability_certainty) )
167       GNUNET_SCHEDULER_add_now (&abort_search_task, NULL);
168     break;
169   case GNUNET_FS_STATUS_SEARCH_START:
170     GNUNET_assert (search == NULL);
171     GNUNET_assert (0 == strcmp ("search", event->value.search.cctx));
172     GNUNET_assert (1 == event->value.search.anonymity);
173     break;
174   case GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED:
175     break;
176   case GNUNET_FS_STATUS_SEARCH_STOPPED:
177     GNUNET_assert (search == event->value.search.sc);
178     GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
179     break;
180   default:
181     FPRINTF (stderr,
182              "Unexpected event: %d\n",
183              event->status);
184     break;
185   }
186   return NULL;
187 }
188
189
190 static void
191 run (void *cls,
192      const struct GNUNET_CONFIGURATION_Handle *cfg,
193      struct GNUNET_TESTING_Peer *peer)
194 {
195   const char *keywords[] = {
196     "down_foo",
197     "down_bar"
198   };
199   char *buf;
200   struct GNUNET_CONTAINER_MetaData *meta;
201   struct GNUNET_FS_Uri *kuri;
202   struct GNUNET_FS_BlockOptions bo;
203   struct GNUNET_FS_FileInformation *fi;
204   size_t i;
205
206   fs = GNUNET_FS_start (cfg, "test-fs-search", &progress_cb, NULL,
207                         GNUNET_FS_FLAGS_DO_PROBES,
208                         GNUNET_FS_OPTIONS_END);
209   GNUNET_assert (NULL != fs);
210   buf = GNUNET_malloc (FILESIZE);
211   for (i = 0; i < FILESIZE; i++)
212     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
213   meta = GNUNET_CONTAINER_meta_data_create ();
214   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
215   bo.content_priority = 42;
216   bo.anonymity_level = 1;
217   bo.replication_level = 0;
218   bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
219   fi = GNUNET_FS_file_information_create_from_data (fs, "publish-context",
220                                                     FILESIZE, buf, kuri, meta,
221                                                     GNUNET_NO, &bo);
222   GNUNET_FS_uri_destroy (kuri);
223   GNUNET_CONTAINER_meta_data_destroy (meta);
224   GNUNET_assert (NULL != fi);
225   start = GNUNET_TIME_absolute_get ();
226   publish =
227       GNUNET_FS_publish_start (fs, fi, NULL, NULL, NULL,
228                                GNUNET_FS_PUBLISH_OPTION_NONE);
229   GNUNET_assert (publish != NULL);
230   timeout_task = GNUNET_SCHEDULER_add_delayed (LIFETIME,
231                                                &abort_error, NULL);
232 }
233
234
235 int
236 main (int argc, char *argv[])
237 {
238   if (0 != GNUNET_TESTING_peer_run ("test-fs-search-probes",
239                                     "test_fs_search_data.conf",
240                                     &run, NULL))
241     return 1;
242   return err;
243 }
244
245 /* end of test_fs_search_probes.c */