9ef205ca0269553a4466be870b93d58edd603686
[oweals/gnunet.git] / src / fs / fs_list_indexed.c
1 /*
2      This file is part of GNUnet.
3      (C) 2003, 2004, 2006, 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/fs_list_indexed.c
23  * @author Christian Grothoff
24  * @brief provide a list of all indexed files
25  */
26
27 #include "platform.h"
28 #include "gnunet_constants.h"
29 #include "gnunet_fs_service.h"
30 #include "gnunet_protocols.h"
31 #include "fs.h"
32
33
34 /**
35  * Context for "GNUNET_FS_get_indexed_files".
36  */
37 struct GetIndexedContext
38 {
39   /**
40    * Handle to global FS context.
41    */
42   struct GNUNET_FS_Handle *h;
43
44   /**
45    * Connection to the FS service.
46    */
47   struct GNUNET_CLIENT_Connection *client;
48
49   /**
50    * Function to call for each indexed file.
51    */
52   GNUNET_FS_IndexedFileProcessor iterator;
53
54   /**
55    * Closure for iterator.
56    */
57   void *iterator_cls;
58
59   /**
60    * Continuation to trigger at the end.
61    */
62   GNUNET_SCHEDULER_Task cont;
63
64   /**
65    * Closure for cont.
66    */
67   void *cont_cls;
68 };
69
70
71 /**
72  * Function called on each response from the FS
73  * service with information about indexed files.
74  *
75  * @param cls closure (of type "struct GetIndexedContext*")
76  * @param msg message with indexing information
77  */
78 static void
79 handle_index_info (void *cls,
80                    const struct GNUNET_MessageHeader *msg)
81 {
82   struct GetIndexedContext *gic = cls;
83   const struct IndexInfoMessage *iim;
84   uint16_t msize;
85   const char *filename;
86
87   if (NULL == msg)
88     {
89       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
90                   _("Failed to receive response for `%s' request from `%s' service.\n"),
91                   "GET_INDEXED",
92                   "fs");
93       GNUNET_SCHEDULER_add_continuation (gic->h->sched,
94                                          GNUNET_NO,
95                                          gic->cont,
96                                          gic->cont_cls,
97                                          GNUNET_SCHEDULER_REASON_TIMEOUT);
98       GNUNET_CLIENT_disconnect (gic->client);
99       GNUNET_free (gic);
100       return;
101     }
102   if (ntohs (msg->type) == GNUNET_MESSAGE_TYPE_FS_INDEX_LIST_END)
103     {
104       /* normal end-of-list */
105       GNUNET_SCHEDULER_add_continuation (gic->h->sched,
106                                          GNUNET_NO,
107                                          gic->cont,
108                                          gic->cont_cls,
109                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
110       GNUNET_CLIENT_disconnect (gic->client);
111       GNUNET_free (gic);
112       return;
113     }
114   msize = ntohs (msg->size);
115   iim = (const struct IndexInfoMessage*) msg;
116   filename = (const char*) &iim[1];
117   if ( (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_FS_INDEX_LIST_ENTRY) ||
118        (msize <= sizeof (struct IndexInfoMessage)) ||
119        (filename[msize-sizeof (struct IndexInfoMessage) -1] != '\0') )
120     {
121       /* bogus reply */
122       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
123                   _("Failed to receive valid response for `%s' request from `%s' service.\n"),
124                   "GET_INDEXED",
125                   "fs");
126       GNUNET_SCHEDULER_add_continuation (gic->h->sched,
127                                          GNUNET_NO,
128                                          gic->cont,
129                                          gic->cont_cls,
130                                          GNUNET_SCHEDULER_REASON_TIMEOUT);
131       GNUNET_CLIENT_disconnect (gic->client);
132       GNUNET_free (gic);
133       return;
134     }
135   if (GNUNET_OK !=
136       gic->iterator (gic->iterator_cls,
137                      filename,
138                      &iim->file_id))
139     {
140       GNUNET_SCHEDULER_add_continuation (gic->h->sched,
141                                          GNUNET_NO,
142                                          gic->cont,
143                                          gic->cont_cls,
144                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
145       GNUNET_CLIENT_disconnect (gic->client);
146       GNUNET_free (gic);
147       return;
148     }
149   /* get more */
150   GNUNET_CLIENT_receive (gic->client,
151                          &handle_index_info,
152                          gic,
153                          GNUNET_CONSTANTS_SERVICE_TIMEOUT);  
154 }
155
156
157 /**
158  * Iterate over all indexed files.
159  *
160  * @param h handle to the file sharing subsystem
161  * @param iterator function to call on each indexed file
162  * @param iterator_cls closure for iterator
163  * @param cont continuation to call when done;
164  *             reason should be "TIMEOUT" (on
165  *             error) or  "PREREQ_DONE" (on success)
166  * @param cont_cls closure for cont
167  */
168 void 
169 GNUNET_FS_get_indexed_files (struct GNUNET_FS_Handle *h,
170                              GNUNET_FS_IndexedFileProcessor iterator,
171                              void *iterator_cls,
172                              GNUNET_SCHEDULER_Task cont,
173                              void *cont_cls)
174 {
175   struct GNUNET_CLIENT_Connection *client;
176   struct GetIndexedContext *gic;
177   struct GNUNET_MessageHeader msg;
178
179   client = GNUNET_CLIENT_connect (h->sched,
180                                   "fs",
181                                   h->cfg);
182   if (NULL == client)
183     {
184       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
185                   _("Failed to not connect to `%s' service.\n"),
186                   "fs");
187       GNUNET_SCHEDULER_add_continuation (h->sched,
188                                          GNUNET_NO,
189                                          cont,
190                                          cont_cls,
191                                          GNUNET_SCHEDULER_REASON_TIMEOUT);
192       return;
193     }
194
195   gic = GNUNET_malloc (sizeof (struct GetIndexedContext));
196   gic->h = h;
197   gic->client = client;
198   gic->iterator = iterator;
199   gic->iterator_cls = iterator_cls;
200   gic->cont = cont;
201   gic->cont_cls = cont_cls;
202   msg.size = htons (sizeof (struct GNUNET_MessageHeader));
203   msg.type = htons (GNUNET_MESSAGE_TYPE_FS_INDEX_LIST_GET);
204   GNUNET_assert (GNUNET_OK ==
205                  GNUNET_CLIENT_transmit_and_get_response (client,
206                                                           &msg,
207                                                           GNUNET_CONSTANTS_SERVICE_TIMEOUT,
208                                                           GNUNET_YES,
209                                                           &handle_index_info,
210                                                           gic));
211 }
212
213 /* end of fs_list_indexed.c */