disable gauger on Windows for now
[oweals/gnunet.git] / src / include / gnunet_fs_service.h
1 /*
2      This file is part of GNUnet
3      (C) 2004, 2005, 2006, 2007, 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  * @file include/gnunet_fs_service.h
22  * @brief API for file-sharing via GNUnet 
23  * @author Christian Grothoff
24  */
25 #ifndef GNUNET_FS_LIB_H
26 #define GNUNET_FS_LIB_H
27
28 #include "gnunet_util_lib.h"
29
30 #ifdef __cplusplus
31 extern "C"
32 {
33 #if 0                           /* keep Emacsens' auto-indent happy */
34 }
35 #endif
36 #endif
37
38 /**
39  * Version number of the implementation.
40  * History:
41  *
42  * 1.x.x: initial version with triple GNUNET_hash and merkle tree
43  * 2.x.x: root node with mime-type, filename and version number
44  * 2.1.x: combined GNUNET_EC_ContentHashKey/3HASH encoding with 25:1 super-nodes
45  * 2.2.x: with directories
46  * 3.0.x: with namespaces
47  * 3.1.x: with namespace meta-data
48  * 3.2.x: with collections
49  * 4.0.x: with expiration, variable meta-data, kblocks
50  * 4.1.x: with new error and configuration handling
51  * 5.0.x: with location URIs
52  * 6.0.0: with support for OR in KSKs
53  * 6.1.x: with simplified namespace support
54  * 9.0.0: CPS-style integrated API
55  */
56 #define GNUNET_FS_VERSION 0x00090000
57
58
59 /* ******************** URI API *********************** */
60
61 #define GNUNET_FS_URI_PREFIX "gnunet://fs/"
62 #define GNUNET_FS_URI_KSK_INFIX "ksk/"
63 #define GNUNET_FS_URI_SKS_INFIX "sks/"
64 #define GNUNET_FS_URI_CHK_INFIX "chk/"
65 #define GNUNET_FS_URI_LOC_INFIX "loc/"
66
67
68 /**
69  * A Universal Resource Identifier (URI), opaque.
70  */
71 struct GNUNET_FS_Uri;
72
73
74 /**
75  * Iterator over keywords
76  *
77  * @param cls closure
78  * @param keyword the keyword
79  * @param is_mandatory is the keyword mandatory (in a search)
80  * @return GNUNET_OK to continue to iterate, GNUNET_SYSERR to abort
81  */
82 typedef int (*GNUNET_FS_KeywordIterator) (void *cls,
83                                           const char *keyword,
84                                           int is_mandatory);
85
86 /**
87  * Get a unique key from a URI.  This is for putting URIs
88  * into HashMaps.  The key may change between FS implementations.
89  *
90  * @param uri uri to convert to a unique key
91  * @param key wherer to store the unique key
92  */
93 void 
94 GNUNET_FS_uri_to_key (const struct GNUNET_FS_Uri *uri,
95                       GNUNET_HashCode * key);
96
97 /**
98  * Convert a URI to a UTF-8 String.
99  *
100  * @param uri uri to convert to a string
101  * @return the UTF-8 string
102  */
103 char *
104 GNUNET_FS_uri_to_string (const struct GNUNET_FS_Uri *uri);
105
106 /**
107  * Convert keyword URI to a human readable format
108  * (i.e. the search query that was used in the first place)
109  *
110  * @param uri ksk uri to convert to a string 
111  * @return string with the keywords
112  */
113 char *
114 GNUNET_FS_uri_ksk_to_string_fancy (const struct GNUNET_FS_Uri *uri);
115
116
117 /**
118  * Add the given keyword to the set of keywords represented by the URI.
119  * Does nothing if the keyword is already present.
120  *
121  * @param uri ksk uri to modify
122  * @param keyword keyword to add
123  * @param is_mandatory is this keyword mandatory?
124  */
125 void
126 GNUNET_FS_uri_ksk_add_keyword (struct GNUNET_FS_Uri *uri,
127                                const char *keyword,
128                                int is_mandatory);
129
130
131 /**
132  * Remove the given keyword from the set of keywords represented by the URI.
133  * Does nothing if the keyword is not present.
134  *
135  * @param uri ksk uri to modify
136  * @param keyword keyword to add
137  */
138 void
139 GNUNET_FS_uri_ksk_remove_keyword (struct GNUNET_FS_Uri *uri,
140                                   const char *keyword);
141
142
143 /**
144  * Convert a UTF-8 String to a URI.
145  *
146  * @param uri string to parse
147  * @param emsg where to store the parser error message (if any)
148  * @return NULL on error
149  */
150 struct GNUNET_FS_Uri *
151 GNUNET_FS_uri_parse (const char *uri,
152                      char **emsg);
153
154 /**
155  * Free URI.
156  *
157  * @param uri uri to free
158  */
159 void 
160 GNUNET_FS_uri_destroy (struct GNUNET_FS_Uri *uri);
161
162
163 /**
164  * How many keywords are ANDed in this keyword URI?
165  *
166  * @param uri ksk uri to get the number of keywords from
167  * @return 0 if this is not a keyword URI
168  */
169 unsigned int 
170 GNUNET_FS_uri_ksk_get_keyword_count (const struct GNUNET_FS_Uri *uri);
171
172
173 /**
174  * Iterate over all keywords in this keyword URI.
175  *
176  * @param uri ksk uri to get the keywords from
177  * @param iterator function to call on each keyword
178  * @param iterator_cls closure for iterator
179  * @return -1 if this is not a keyword URI, otherwise number of
180  *   keywords iterated over until iterator aborted
181  */
182 int 
183 GNUNET_FS_uri_ksk_get_keywords (const struct GNUNET_FS_Uri *uri,
184                                 GNUNET_FS_KeywordIterator iterator, 
185                                 void *iterator_cls);
186
187
188 /**
189  * Obtain the identity of the peer offering the data
190  *
191  * @param uri the location URI to inspect
192  * @param peer where to store the identify of the peer (presumably) offering the content
193  * @return GNUNET_SYSERR if this is not a location URI, otherwise GNUNET_OK
194  */
195 int
196 GNUNET_FS_uri_loc_get_peer_identity (const struct GNUNET_FS_Uri *uri,
197                                      struct GNUNET_PeerIdentity * peer);
198
199
200 /**
201  * Obtain the URI of the content itself.
202  *
203  * @param uri location URI to get the content URI from
204  * @return NULL if argument is not a location URI
205  */
206 struct GNUNET_FS_Uri *
207 GNUNET_FS_uri_loc_get_uri (const struct GNUNET_FS_Uri *uri);
208
209
210 /**
211  * Obtain the expiration of the LOC URI.
212  *
213  * @param uri location URI to get the expiration from
214  * @return expiration time of the URI
215  */
216 struct GNUNET_TIME_Absolute
217 GNUNET_FS_uri_loc_get_expiration (const struct GNUNET_FS_Uri *uri);
218
219
220 /**
221  * Construct a location URI (this peer will be used for the location).
222  *
223  * @param baseUri content offered by the sender
224  * @param cfg configuration information (used to find our hostkey)
225  * @param expiration_time how long will the content be offered?
226  * @return the location URI, NULL on error
227  */
228 struct GNUNET_FS_Uri *
229 GNUNET_FS_uri_loc_create (const struct GNUNET_FS_Uri *baseUri,
230                           const struct GNUNET_CONFIGURATION_Handle *cfg,
231                           struct GNUNET_TIME_Absolute expiration_time);
232
233
234 /**
235  * Canonicalize keyword URI.  Performs operations such
236  * as decapitalization and removal of certain characters.
237  * (useful for search).
238  *
239  * @param uri the URI to canonicalize 
240  * @return canonicalized version of the URI, NULL on error
241  */
242 struct GNUNET_FS_Uri *
243 GNUNET_FS_uri_ksk_canonicalize (const struct GNUNET_FS_Uri *uri);
244
245
246 /**
247  * Merge the sets of keywords from two KSK URIs.
248  * (useful for merging the canonicalized keywords with
249  * the original keywords for sharing).
250  *
251  * @param u1 first uri
252  * @param u2 second uri
253  * @return merged URI, NULL on error
254  */
255 struct GNUNET_FS_Uri *
256 GNUNET_FS_uri_ksk_merge (const struct GNUNET_FS_Uri *u1,
257                          const struct GNUNET_FS_Uri *u2);
258
259
260 /**
261  * Duplicate URI.
262  *
263  * @param uri the URI to duplicate
264  * @return copy of the URI
265  */
266 struct GNUNET_FS_Uri *
267 GNUNET_FS_uri_dup (const struct GNUNET_FS_Uri *uri);
268
269
270 /**
271  * Create an FS URI from a single user-supplied string of keywords.
272  * The string is broken up at spaces into individual keywords.
273  * Keywords that start with "+" are mandatory.  Double-quotes can
274  * be used to prevent breaking up strings at spaces (and also
275  * to specify non-mandatory keywords starting with "+").
276  *
277  * Keywords must contain a balanced number of double quotes and
278  * double quotes can not be used in the actual keywords (for
279  * example, the string '""foo bar""' will be turned into two
280  * "OR"ed keywords 'foo' and 'bar', not into '"foo bar"'.
281  *
282  * @param keywords the keyword string
283  * @param emsg where to store an error message
284  * @return an FS URI for the given keywords, NULL
285  *  if keywords is not legal (i.e. empty).
286  */
287 struct GNUNET_FS_Uri *
288 GNUNET_FS_uri_ksk_create (const char *keywords,
289                           char **emsg);
290
291
292 /**
293  * Create an FS URI from a user-supplied command line of keywords.
294  * Arguments should start with "+" to indicate mandatory
295  * keywords.
296  *
297  * @param argc number of keywords
298  * @param argv keywords (double quotes are not required for
299  *             keywords containing spaces; however, double
300  *             quotes are required for keywords starting with
301  *             "+"); there is no mechanism for having double
302  *             quotes in the actual keywords (if the user
303  *             did specifically specify double quotes, the
304  *             caller should convert each double quote
305  *             into two single quotes).
306  * @return an FS URI for the given keywords, NULL
307  *  if keywords is not legal (i.e. empty).
308  */
309 struct GNUNET_FS_Uri *
310 GNUNET_FS_uri_ksk_create_from_args (unsigned int argc,
311                                     const char **argv);
312
313
314 /**
315  * Test if two URIs are equal.
316  *
317  * @param u1 one of the URIs
318  * @param u2 the other URI
319  * @return GNUNET_YES if the URIs are equal
320  */
321 int 
322 GNUNET_FS_uri_test_equal (const struct GNUNET_FS_Uri *u1,
323                           const struct GNUNET_FS_Uri *u2);
324
325
326 /**
327  * Is this a namespace URI?
328  *
329  * @param uri the uri to check
330  * @return GNUNET_YES if this is an SKS uri
331  */
332 int
333 GNUNET_FS_uri_test_sks (const struct GNUNET_FS_Uri *uri);
334
335
336 /**
337  * Handle to one of our namespaces.
338  */
339 struct GNUNET_FS_Namespace;
340
341
342 /**
343  * Create an SKS URI from a namespace and an identifier.
344  *
345  * @param ns namespace
346  * @param id identifier
347  * @param emsg where to store an error message
348  * @return an FS URI for the given namespace and identifier
349  */
350 struct GNUNET_FS_Uri *
351 GNUNET_FS_uri_sks_create (struct GNUNET_FS_Namespace *ns,
352                           const char *id,
353                           char **emsg);
354
355
356 /**
357  * Create an SKS URI from a namespace ID and an identifier.
358  *
359  * @param nsid namespace ID
360  * @param id identifier
361  * @return an FS URI for the given namespace and identifier
362  */
363 struct GNUNET_FS_Uri *
364 GNUNET_FS_uri_sks_create_from_nsid (GNUNET_HashCode *nsid,
365                                     const char *id);
366
367
368 /**
369  * Get the ID of a namespace from the given
370  * namespace URI.
371  *
372  * @param uri the uri to get the namespace ID from
373  * @param nsid where to store the ID of the namespace
374  * @return GNUNET_OK on success
375  */
376 int 
377 GNUNET_FS_uri_sks_get_namespace (const struct GNUNET_FS_Uri *uri,
378                                  GNUNET_HashCode * nsid);
379
380
381 /**
382  * Get the content identifier of an SKS URI.
383  *
384  * @param uri the sks uri
385  * @return NULL on error (not a valid SKS URI)
386  */
387 char *
388 GNUNET_FS_uri_sks_get_content_id (const struct GNUNET_FS_Uri *uri);
389
390
391 /**
392  * Convert namespace URI to a human readable format
393  * (using the namespace description, if available).
394  *
395  * @param cfg configuration to use
396  * @param uri SKS uri to convert
397  * @return NULL on error (not an SKS URI)
398  */
399 char *
400 GNUNET_FS_uri_sks_to_string_fancy (struct GNUNET_CONFIGURATION_Handle *cfg,
401                                    const struct GNUNET_FS_Uri *uri);
402
403
404 /**
405  * Is this a keyword URI?
406  *
407  * @param uri the uri
408  * @return GNUNET_YES if this is a KSK uri
409  */
410 int 
411 GNUNET_FS_uri_test_ksk (const struct GNUNET_FS_Uri *uri);
412
413
414 /**
415  * Is this a file (or directory) URI?
416  *
417  * @param uri the uri to check
418  * @return GNUNET_YES if this is a CHK uri
419  */
420 int 
421 GNUNET_FS_uri_test_chk (const struct GNUNET_FS_Uri *uri);
422
423
424 /**
425  * What is the size of the file that this URI
426  * refers to?
427  *
428  * @param uri the CHK (or LOC) URI to inspect
429  * @return size of the file as specified in the CHK URI
430  */
431 uint64_t 
432 GNUNET_FS_uri_chk_get_file_size (const struct GNUNET_FS_Uri *uri);
433
434
435 /**
436  * Is this a location URI?
437  *
438  * @param uri the uri to check
439  * @return GNUNET_YES if this is a LOC uri
440  */
441 int 
442 GNUNET_FS_uri_test_loc (const struct GNUNET_FS_Uri *uri);
443
444
445 /**
446  * Construct a keyword-URI from meta-data (take all entries
447  * in the meta-data and construct one large keyword URI
448  * that lists all keywords that can be found in the meta-data).
449  *
450  * @param md metadata to use
451  * @return NULL on error, otherwise a KSK URI
452  */
453 struct GNUNET_FS_Uri *
454 GNUNET_FS_uri_ksk_create_from_meta_data (const struct GNUNET_CONTAINER_MetaData *md);
455
456
457 /* ******************** command-line option parsing API *********************** */
458
459 /**
460  * Command-line option parser function that allows the user
461  * to specify one or more '-k' options with keywords.  Each
462  * specified keyword will be added to the URI.  A pointer to
463  * the URI must be passed as the "scls" argument.
464  *
465  * @param ctx command line processor context
466  * @param scls must be of type "struct GNUNET_FS_Uri **"
467  * @param option name of the option (typically 'k')
468  * @param value command line argument given
469  * @return GNUNET_OK on success
470  */
471 int
472 GNUNET_FS_getopt_set_keywords (struct GNUNET_GETOPT_CommandLineProcessorContext* ctx, 
473                                          void *scls,
474                                          const char *option,
475                                          const char *value);
476
477
478 /**
479  * Command-line option parser function that allows the user to specify
480  * one or more '-m' options with metadata.  Each specified entry of
481  * the form "type=value" will be added to the metadata.  A pointer to
482  * the metadata must be passed as the "scls" argument.
483  *
484  * @param ctx command line processor context
485  * @param scls must be of type "struct GNUNET_CONTAINER_MetaData **"
486  * @param option name of the option (typically 'k')
487  * @param value command line argument given
488  * @return GNUNET_OK on success
489  */
490 int
491 GNUNET_FS_getopt_set_metadata (struct GNUNET_GETOPT_CommandLineProcessorContext* ctx, 
492                                void *scls,
493                                const char *option,
494                                const char *value);
495
496
497
498 /* ************************* sharing API ***************** */
499
500
501 /**
502  * Possible status codes used in the callback for the 
503  * various file-sharing operations.  On each file (or search),
504  * the callback is guaranteed to be called once with "START"
505  * and once with STOPPED; calls with PROGRESS, ERROR or COMPLETED
506  * are optional and depend on the circumstances; parent operations
507  * will be STARTED before child-operations and STOPPED after
508  * their respective child-operations.  START and STOP signals 
509  * are typically generated either due to explicit client requests
510  * or because of suspend/resume operations.
511  */
512 enum GNUNET_FS_Status
513 {
514   /**
515    * Notification that we have started to publish a file structure.
516    */
517   GNUNET_FS_STATUS_PUBLISH_START,
518
519   /**
520    * Notification that we have resumed sharing a file structure.
521    */
522   GNUNET_FS_STATUS_PUBLISH_RESUME,
523
524   /**
525    * Notification that we have suspended sharing a file structure.
526    */
527   GNUNET_FS_STATUS_PUBLISH_SUSPEND,
528
529   /**
530    * Notification that we are making progress sharing a file structure.
531    */
532   GNUNET_FS_STATUS_PUBLISH_PROGRESS,
533
534   /**
535    * Notification that an error was encountered  sharing a file structure.
536    * The application will continue to receive resume/suspend events for
537    * this structure until "GNUNET_FS_publish_stop" is called.
538    */
539   GNUNET_FS_STATUS_PUBLISH_ERROR,
540
541   /**
542    * Notification that we completed sharing a file structure.
543    * The application will continue to receive resume/suspend events for
544    * this structure until "GNUNET_FS_publish_stop" is called.
545    */
546   GNUNET_FS_STATUS_PUBLISH_COMPLETED,
547
548   /**
549    * Notification that we have stopped
550    * the process of uploading a file structure; no
551    * futher events will be generated for this action.
552    */
553   GNUNET_FS_STATUS_PUBLISH_STOPPED,
554
555   /**
556    * Notification that we have started this download.
557    */
558   GNUNET_FS_STATUS_DOWNLOAD_START,
559
560   /**
561    * Notification that this download is being resumed.
562    */
563   GNUNET_FS_STATUS_DOWNLOAD_RESUME,
564
565   /**
566    * Notification that this download was suspended.
567    */
568   GNUNET_FS_STATUS_DOWNLOAD_SUSPEND,
569
570   /**
571    * Notification about progress with this download.
572    */
573   GNUNET_FS_STATUS_DOWNLOAD_PROGRESS,
574
575   /**
576    * Notification that this download encountered an error.
577    */
578   GNUNET_FS_STATUS_DOWNLOAD_ERROR,
579
580   /**
581    * Notification that this download completed.  Note that for
582    * directories, completion does not imply completion of all files in
583    * the directory.
584    */
585   GNUNET_FS_STATUS_DOWNLOAD_COMPLETED,
586
587   /**
588    * Notification that this download was stopped
589    * (final event with respect to this action).
590    */
591   GNUNET_FS_STATUS_DOWNLOAD_STOPPED,
592
593   /**
594    * Notification that this download is now actively being
595    * pursued (as opposed to waiting in the queue).
596    */
597   GNUNET_FS_STATUS_DOWNLOAD_ACTIVE,
598
599   /**
600    * Notification that this download is no longer actively
601    * being pursued (back in the queue).
602    */
603   GNUNET_FS_STATUS_DOWNLOAD_INACTIVE,
604
605   /**
606    * Notification that this download is no longer part of a
607    * recursive download or search but now a 'stand-alone'
608    * download (and may thus need to be moved in the GUI
609    * into a different category).
610    */
611   GNUNET_FS_STATUS_DOWNLOAD_LOST_PARENT,
612
613   /**
614    * First event generated when a client requests 
615    * a search to begin or when a namespace result
616    * automatically triggers the search for updates.
617    */
618   GNUNET_FS_STATUS_SEARCH_START,
619
620   /**
621    * Last event when a search is being resumed;
622    * note that "GNUNET_FS_SEARCH_START" will not
623    * be generated in this case.
624    */
625   GNUNET_FS_STATUS_SEARCH_RESUME,
626
627   /**
628    * Event generated for each search result
629    * when the respective search is resumed.
630    */
631   GNUNET_FS_STATUS_SEARCH_RESUME_RESULT,
632
633   /**
634    * Last event when a search is being suspended;
635    * note that "GNUNET_FS_SEARCH_STOPPED" will not
636    * be generated in this case.
637    */
638   GNUNET_FS_STATUS_SEARCH_SUSPEND,
639   
640   /**
641    * This search has yielded a result.
642    */
643   GNUNET_FS_STATUS_SEARCH_RESULT,
644
645   /**
646    * We have discovered a new namespace.
647    */
648   GNUNET_FS_STATUS_SEARCH_RESULT_NAMESPACE,
649
650   /**
651    * We have additional data about the quality
652    * or availability of a search result.
653    */
654   GNUNET_FS_STATUS_SEARCH_UPDATE,
655
656   /**
657    * Signals a problem with this search.
658    */
659   GNUNET_FS_STATUS_SEARCH_ERROR,
660
661   /**
662    * Signals that this search was paused.
663    */
664   GNUNET_FS_STATUS_SEARCH_PAUSED,
665
666   /**
667    * Signals that this search was continued (unpaused).
668    */
669   GNUNET_FS_STATUS_SEARCH_CONTINUED,
670
671   /**
672    * Event generated for each search result
673    * when the respective search is stopped.
674    */
675   GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED,
676
677   /**
678    * Event generated for each search result
679    * when the respective search is suspended.
680    */
681   GNUNET_FS_STATUS_SEARCH_RESULT_SUSPEND,
682
683   /**
684    * Last message from a search; this signals
685    * that there will be no further events associated
686    * with this search.
687    */
688   GNUNET_FS_STATUS_SEARCH_STOPPED,
689
690   /**
691    * Notification that we started to unindex a file.
692    */ 
693   GNUNET_FS_STATUS_UNINDEX_START,
694
695   /**
696    * Notification that we resumed unindexing of a file.
697    */
698   GNUNET_FS_STATUS_UNINDEX_RESUME,
699
700   /**
701    * Notification that we suspended unindexing a file.
702    */
703   GNUNET_FS_STATUS_UNINDEX_SUSPEND,
704
705   /**
706    * Notification that we made progress unindexing a file.
707    */
708   GNUNET_FS_STATUS_UNINDEX_PROGRESS,
709
710   /**
711    * Notification that we encountered an error unindexing
712    * a file.
713    */
714   GNUNET_FS_STATUS_UNINDEX_ERROR,
715
716   /**
717    * Notification that the unindexing of this file
718    * was completed.
719    */
720   GNUNET_FS_STATUS_UNINDEX_COMPLETED,
721
722   /**
723    * Notification that the unindexing of this file
724    * was stopped (final event for this action).
725    */
726   GNUNET_FS_STATUS_UNINDEX_STOPPED
727
728 };
729
730
731 /**
732  * Handle for controlling an upload.
733  */
734 struct GNUNET_FS_PublishContext;
735
736
737 /**
738  * Handle for controlling an unindexing operation.
739  */
740 struct GNUNET_FS_UnindexContext;
741
742
743 /**
744  * Handle for controlling a search.
745  */
746 struct GNUNET_FS_SearchContext;
747
748
749 /**
750  * Result from a search.  Opaque handle to refer to the search
751  * (typically used when starting a download associated with the search
752  * result).
753  */
754 struct GNUNET_FS_SearchResult;
755
756
757 /**
758  * Context for controlling a download.
759  */
760 struct GNUNET_FS_DownloadContext;
761
762
763 /**
764  * Handle for detail information about a file that is being publishd.
765  * Specifies metadata, keywords, how to get the contents of the file
766  * (i.e. data-buffer in memory, filename on disk) and other options.
767  */
768 struct GNUNET_FS_FileInformation;
769
770
771 /**
772  * Argument given to the progress callback with
773  * information about what is going on.
774  */
775 struct GNUNET_FS_ProgressInfo
776 {  
777
778   /**
779    * Values that depend on the event type.
780    */
781   union {
782     
783     /**
784      * Values for all "GNUNET_FS_STATUS_PUBLISH_*" events.
785      */
786     struct {
787
788       /**
789        * Context for controlling the upload.
790        */
791       struct GNUNET_FS_PublishContext *pc;
792
793       /**
794        * Information about the file that is being publishd.
795        */
796       const struct GNUNET_FS_FileInformation *fi;
797
798       /**
799        * Client context pointer (set the last time by the client for
800        * this operation; initially NULL on START/RESUME events).
801        */
802       void *cctx;
803
804       /**
805        * Client context pointer for the parent operation
806        * (if this is a file in a directory or a subdirectory).
807        */
808       void *pctx;
809
810       /**
811        * Name of the file being published; can be NULL.
812        */
813       const char *filename;
814       
815       /**
816        * How large is the file overall?  For directories,
817        * this is only the size of the directory itself,
818        * not of the other files contained within the 
819        * directory.
820        */
821       uint64_t size;
822
823       /**
824        * At what time do we expect to finish the upload?
825        * (will be a value in the past for completed
826        * uploads).
827        */ 
828       struct GNUNET_TIME_Relative eta;
829
830       /**
831        * How long has this upload been actively running
832        * (excludes times where the upload was suspended).
833        */
834       struct GNUNET_TIME_Relative duration;
835
836       /**
837        * How many bytes have we completed?
838        */
839       uint64_t completed;
840
841       /**
842        * What anonymity level is used for this upload?
843        */
844       uint32_t anonymity;
845
846       /**
847        * Additional values for specific events.
848        */
849       union {
850
851         /**
852          * These values are only valid for
853          * GNUNET_FS_STATUS_PUBLISH_PROGRESS events.
854          */
855         struct {
856           
857           /**
858            * Data block we just published.
859            */
860           const void *data;
861           
862           /**
863            * At what offset in the file is "data"?
864            */
865           uint64_t offset;
866           
867           /**
868            * Length of the data block.
869            */
870           uint64_t data_len;
871
872           /**
873            * Depth of the given block in the tree; 
874            * 0 would be the lowest level (DBLOCKs).
875            */
876           unsigned int depth;
877
878         } progress;
879
880         /**
881          * These values are only valid for
882          * GNUNET_FS_STATUS_PUBLISH_RESUME events.
883          */
884         struct {
885           
886           /**
887            * Error message, NULL if no error was encountered so far.
888            */
889           const char *message;
890           
891           /**
892            * URI of the file (if the download had been completed)
893            */
894           const struct GNUNET_FS_Uri *chk_uri;
895
896         } resume;
897
898         /**
899          * These values are only valid for
900          * GNUNET_FS_STATUS_PUBLISH_COMPLETED events.
901          */
902         struct {
903           
904           /**
905            * URI of the file.
906            */
907           const struct GNUNET_FS_Uri *chk_uri;
908
909         } completed;
910
911         /**
912          * These values are only valid for
913          * GNUNET_FS_STATUS_PUBLISH_ERROR events.
914          */
915         struct {
916           
917           /**
918            * Error message, never NULL.
919            */
920           const char *message;
921
922         } error;
923
924       } specifics;
925
926     } publish;
927
928     
929     /**
930      * Values for all "GNUNET_FS_STATUS_DOWNLOAD_*" events.
931      */
932     struct {
933
934       /**
935        * Context for controlling the download.
936        */
937       struct GNUNET_FS_DownloadContext *dc;
938
939       /**
940        * Client context pointer (set the last time
941        * by the client for this operation; initially
942        * NULL on START/RESUME events).
943        */
944       void *cctx;
945
946       /**
947        * Client context pointer for the parent operation
948        * (if this is a file in a directory or a subdirectory).
949        */
950       void *pctx;
951
952       /**
953        * Client context pointer for the associated search operation
954        * (specifically, context pointer for the specific search
955        * result, not the overall search); only set if this 
956        * download was started from a search result.
957        */
958       void *sctx;
959       
960       /**
961        * URI used for this download.
962        */
963       const struct GNUNET_FS_Uri *uri;
964
965       /**
966        * Name of the file that we are downloading.
967        */
968       const char *filename;
969       
970       /**
971        * How large is the download overall?  This
972        * is NOT necessarily the size from the
973        * URI since we may be doing a partial download.
974        */
975       uint64_t size;
976
977       /**
978        * At what time do we expect to finish the download?
979        * (will be a value in the past for completed
980        * uploads).
981        */ 
982       struct GNUNET_TIME_Relative eta;
983
984       /**
985        * How long has this download been active?
986        */ 
987       struct GNUNET_TIME_Relative duration;
988
989       /**
990        * How many bytes have we completed?
991        */
992       uint64_t completed;
993
994       /**
995        * What anonymity level is used for this download?
996        */
997       uint32_t anonymity;
998
999       /**
1000        * Is the download currently active.
1001        */
1002       int is_active;
1003
1004       /**
1005        * Additional values for specific events.
1006        */
1007       union {
1008         
1009         /**
1010          * These values are only valid for
1011          * GNUNET_FS_STATUS_DOWNLOAD_PROGRESS events.
1012          */
1013         struct {
1014   
1015           /**
1016            * Data block we just obtained, can be NULL (even if
1017            * data_len > 0) if we found the entire block 'intact' on
1018            * disk.  In this case, it is also possible for 'data_len'
1019            * to be larger than an individual (32k) block.
1020            */
1021           const void *data;
1022           
1023           /**
1024            * At what offset in the file is "data"?
1025            */
1026           uint64_t offset;
1027           
1028           /**
1029            * Length of the data block.
1030            */
1031           uint64_t data_len;
1032
1033           /**
1034            * Depth of the given block in the tree; 
1035            * 0 would be the lowest level (DBLOCKS).
1036            */
1037           unsigned int depth;
1038
1039         } progress;
1040
1041         /**
1042          * These values are only valid for
1043          * GNUNET_FS_STATUS_DOWNLOAD_START events.
1044          */
1045         struct {
1046
1047           /**
1048            * Known metadata for the download.
1049            */
1050           const struct GNUNET_CONTAINER_MetaData *meta;
1051           
1052         } start;
1053
1054         /**
1055          * These values are only valid for
1056          * GNUNET_FS_STATUS_DOWNLOAD_RESUME events.
1057          */
1058         struct {
1059
1060           /**
1061            * Known metadata for the download.
1062            */
1063           const struct GNUNET_CONTAINER_MetaData *meta;
1064
1065           /**
1066            * Error message, NULL if we have not encountered any error yet.
1067            */
1068           const char *message;
1069
1070         } resume;
1071
1072         /**
1073          * These values are only valid for
1074          * GNUNET_FS_STATUS_DOWNLOAD_ERROR events.
1075          */
1076         struct {
1077
1078           /**
1079            * Error message.
1080            */
1081           const char *message;
1082
1083         } error;
1084
1085       } specifics;
1086
1087     } download;
1088
1089     /**
1090      * Values for all "GNUNET_FS_STATUS_SEARCH_*" events.
1091      */
1092     struct {
1093
1094       /**
1095        * Context for controlling the search, NULL for
1096        * searches that were not explicitly triggered
1097        * by the client (i.e., searches for updates in
1098        * namespaces).
1099        */
1100       struct GNUNET_FS_SearchContext *sc;
1101
1102       /**
1103        * Client context pointer (set the last time by the client for
1104        * this operation; initially NULL on START/RESUME events).  Note
1105        * that this value can only be set on START/RESUME; returning
1106        * non-NULL on RESULT/RESUME_RESULT will actually update the
1107        * private context for "UPDATE" events.
1108        */
1109       void *cctx;
1110
1111       /**
1112        * Client parent-context pointer; NULL for top-level searches,
1113        * refers to the client context of the associated search result
1114        * for automatically triggered searches for updates in
1115        * namespaces.  In this case, 'presult' refers to that search
1116        * result.
1117        */
1118       void *pctx;
1119
1120       /**
1121        * What query is used for this search
1122        * (list of keywords or SKS identifier).
1123        */
1124       const struct GNUNET_FS_Uri *query;
1125
1126       /**
1127        * How long has this search been actively running
1128        * (excludes times where the search was paused or
1129        * suspended).
1130        */
1131       struct GNUNET_TIME_Relative duration;
1132
1133       /**
1134        * What anonymity level is used for this search?
1135        */
1136       uint32_t anonymity;
1137
1138       /**
1139        * Additional values for specific events.
1140        */
1141       union {
1142         
1143         /**
1144          * These values are only valid for
1145          * GNUNET_FS_STATUS_SEARCH_RESULT events.
1146          */
1147         struct {
1148           
1149           /**
1150            * Metadata for the search result.
1151            */
1152           const struct GNUNET_CONTAINER_MetaData *meta;
1153
1154           /**
1155            * URI for the search result.
1156            */
1157           const struct GNUNET_FS_Uri *uri;
1158
1159           /**
1160            * Handle to the result (for starting downloads).
1161            */
1162           struct GNUNET_FS_SearchResult *result;
1163
1164           /**
1165            * Applicability rank (the larger, the better the result
1166            * fits the search criteria).
1167            */
1168           uint32_t applicability_rank;    
1169
1170         } result;
1171         
1172         /**
1173          * These values are only valid for
1174          * GNUNET_FS_STATUS_SEARCH_RESUME_RESULT events.
1175          */
1176         struct {
1177           
1178           /**
1179            * Metadata for the search result.
1180            */
1181           const struct GNUNET_CONTAINER_MetaData *meta;
1182
1183           /**
1184            * URI for the search result.
1185            */
1186           const struct GNUNET_FS_Uri *uri;
1187
1188           /**
1189            * Handle to the result (for starting downloads).
1190            */
1191           struct GNUNET_FS_SearchResult *result;
1192
1193           /**
1194            * Current availability rank (negative:
1195            * unavailable, positive: available)
1196            */
1197           int32_t availability_rank;
1198  
1199           /**
1200            * On how many total queries is the given
1201            * availability_rank based?
1202            */
1203           uint32_t availability_certainty;
1204
1205           /**
1206            * Updated applicability rank (the larger,
1207            * the better the result fits the search
1208            * criteria).
1209            */
1210           uint32_t applicability_rank;    
1211           
1212         } resume_result;
1213         
1214         /**
1215          * These values are only valid for
1216          * GNUNET_FS_STATUS_SEARCH_UPDATE events.
1217          */
1218         struct {
1219
1220           /**
1221            * Private context set for for this result
1222            * during the "RESULT" event.
1223            */
1224           void *cctx;
1225           
1226           /**
1227            * Metadata for the search result.
1228            */
1229           const struct GNUNET_CONTAINER_MetaData *meta;
1230
1231           /**
1232            * URI for the search result.
1233            */
1234           const struct GNUNET_FS_Uri *uri;
1235
1236           /**
1237            * Current availability rank (negative:
1238            * unavailable, positive: available)
1239            */
1240           int32_t availability_rank;
1241  
1242           /**
1243            * On how many total queries is the given
1244            * availability_rank based?
1245            */
1246           uint32_t availability_certainty;
1247
1248           /**
1249            * Updated applicability rank (the larger,
1250            * the better the result fits the search
1251            * criteria).
1252            */
1253           uint32_t applicability_rank;
1254
1255         } update;
1256         
1257         /**
1258          * These values are only valid for
1259          * GNUNET_FS_STATUS_SEARCH_RESULT_SUSPEND events.
1260          * These events are automatically triggered for
1261          * each search result before the 
1262          * GNUNET_FS_STATUS_SEARCH_SUSPEND event.  This
1263          * happens primarily to give the client a chance
1264          * to clean up the "cctx" (if needed).
1265          */
1266         struct {
1267
1268           /**
1269            * Private context set for for this result
1270            * during the "RESULT" event.
1271            */
1272           void *cctx;
1273           
1274           /**
1275            * Metadata for the search result.
1276            */
1277           const struct GNUNET_CONTAINER_MetaData *meta;
1278
1279           /**
1280            * URI for the search result.
1281            */
1282           const struct GNUNET_FS_Uri *uri;
1283
1284         } result_suspend;
1285         
1286         /**
1287          * These values are only valid for
1288          * GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED events.
1289          * These events are automatically triggered for
1290          * each search result before the 
1291          * GNUNET_FS_STATUS_SEARCH_STOPPED event.  This
1292          * happens primarily to give the client a chance
1293          * to clean up the "cctx" (if needed).
1294          */
1295         struct {
1296
1297           /**
1298            * Private context set for for this result
1299            * during the "RESULT" event.
1300            */
1301           void *cctx;
1302           
1303           /**
1304            * Metadata for the search result.
1305            */
1306           const struct GNUNET_CONTAINER_MetaData *meta;
1307
1308           /**
1309            * URI for the search result.
1310            */
1311           const struct GNUNET_FS_Uri *uri;
1312
1313         } result_stopped;
1314
1315         /**
1316          * These values are only valid for
1317          * GNUNET_FS_STATUS_SEARCH_RESUME events.
1318          */
1319         struct {
1320
1321           /**
1322            * Error message, NULL if we have not encountered any error yet.
1323            */
1324           const char *message;
1325
1326           /**
1327            * Is this search currently paused?
1328            */
1329           int is_paused;
1330
1331         } resume;
1332
1333         /**
1334          * These values are only valid for
1335          * GNUNET_FS_STATUS_SEARCH_ERROR events.
1336          */
1337         struct {
1338
1339           /**
1340            * Error message.
1341            */
1342           const char *message;
1343
1344         } error;
1345     
1346         /**
1347          * Values for all "GNUNET_FS_STATUS_SEARCH_RESULT_NAMESPACE" events.
1348          */
1349         struct {
1350           
1351           /**
1352            * Handle to the namespace (NULL if it is not a local
1353            * namespace).
1354            */
1355           struct GNUNET_FS_Namespace *ns;
1356           
1357           /**
1358            * Short, human-readable name of the namespace.
1359            */
1360           const char *name;
1361           
1362           /**
1363            * Root identifier for the namespace, can be NULL.
1364            */
1365           const char *root;
1366           
1367           /**
1368            * Metadata for the namespace.
1369            */
1370           const struct GNUNET_CONTAINER_MetaData *meta;
1371           
1372           /**
1373            * Hash-identifier for the namespace.
1374            */
1375           GNUNET_HashCode id;      
1376           
1377         } namespace;
1378
1379       } specifics;
1380
1381     } search;
1382
1383     /**
1384      * Values for all "GNUNET_FS_STATUS_UNINDEX_*" events.
1385      */
1386     struct {
1387
1388       /**
1389        * Context for controlling the unindexing.
1390        */
1391       struct GNUNET_FS_UnindexContext *uc;
1392
1393       /**
1394        * Client context pointer (set the last time
1395        * by the client for this operation; initially
1396        * NULL on START/RESUME events).
1397        */
1398       void *cctx;
1399
1400       /**
1401        * Name of the file that is being unindexed.
1402        */
1403       const char *filename;
1404
1405       /**
1406        * How large is the file overall?
1407        */
1408       uint64_t size;
1409
1410       /**
1411        * At what time do we expect to finish unindexing?
1412        * (will be a value in the past for completed
1413        * unindexing opeations).
1414        */ 
1415       struct GNUNET_TIME_Relative eta;
1416
1417       /**
1418        * How long has this upload been actively running
1419        * (excludes times where the upload was suspended).
1420        */
1421       struct GNUNET_TIME_Relative duration;
1422
1423       /**
1424        * How many bytes have we completed?
1425        */
1426       uint64_t completed;
1427
1428       /**
1429        * Additional values for specific events.
1430        */
1431       union {
1432
1433         /**
1434          * These values are only valid for
1435          * GNUNET_FS_STATUS_UNINDEX_PROGRESS events.
1436          */
1437         struct {
1438   
1439           /**
1440            * Data block we just unindexed.
1441            */
1442           const void *data;
1443           
1444           /**
1445            * At what offset in the file is "data"?
1446            */
1447           uint64_t offset;
1448           
1449           /**
1450            * Length of the data block.
1451            */
1452           uint64_t data_len;
1453
1454           /**
1455            * Depth of the given block in the tree; 
1456            * 0 would be the lowest level (DBLOCKS).
1457            */
1458           unsigned int depth;
1459
1460         } progress;
1461
1462         /**
1463          * These values are only valid for
1464          * GNUNET_FS_STATUS_UNINDEX_RESUME events.
1465          */
1466         struct {
1467
1468           /**
1469            * Error message, NULL if we have not encountered any error yet.
1470            */
1471           const char *message;
1472
1473         } resume;
1474
1475         /**
1476          * These values are only valid for
1477          * GNUNET_FS_STATUS_UNINDEX_ERROR events.
1478          */
1479         struct {
1480
1481           /**
1482            * Error message.
1483            */
1484           const char *message;
1485
1486         } error;
1487
1488       } specifics;
1489
1490     } unindex;
1491
1492   } value;
1493
1494   /**
1495    * Specific status code (determines the event type).
1496    */  
1497   enum GNUNET_FS_Status status;
1498
1499 };
1500
1501
1502 /**
1503  * Notification of FS to a client about the progress of an 
1504  * operation.  Callbacks of this type will be used for uploads,
1505  * downloads and searches.  Some of the arguments depend a bit 
1506  * in their meaning on the context in which the callback is used.
1507  *
1508  * @param cls closure
1509  * @param info details about the event, specifying the event type
1510  *        and various bits about the event
1511  * @return client-context (for the next progress call
1512  *         for this operation; should be set to NULL for
1513  *         SUSPEND and STOPPED events).  The value returned
1514  *         will be passed to future callbacks in the respective
1515  *         field in the GNUNET_FS_ProgressInfo struct.
1516  */
1517 typedef void* (*GNUNET_FS_ProgressCallback)
1518   (void *cls,
1519    const struct GNUNET_FS_ProgressInfo *info);
1520
1521
1522 /**
1523  * General (global) option flags for file-sharing.
1524  */
1525 enum GNUNET_FS_Flags
1526   {
1527     /**
1528      * No special flags set.
1529      */
1530     GNUNET_FS_FLAGS_NONE = 0,
1531
1532     /**
1533      * Is persistence of operations desired?
1534      * (will create SUSPEND/RESUME events).
1535      */
1536     GNUNET_FS_FLAGS_PERSISTENCE = 1,
1537
1538     /**
1539      * Should we automatically trigger probes for search results
1540      * to determine availability?
1541      * (will create GNUNET_FS_STATUS_SEARCH_UPDATE events).
1542      */
1543     GNUNET_FS_FLAGS_DO_PROBES = 2
1544
1545   };
1546
1547 /**
1548  * Options specified in the VARARGs portion of GNUNET_FS_start.
1549  */
1550 enum GNUNET_FS_OPTIONS
1551   {
1552     
1553     /**
1554      * Last option in the VARARG list.
1555      */
1556     GNUNET_FS_OPTIONS_END = 0,
1557
1558     /**
1559      * Select the desired amount of parallelism (this option should be
1560      * followed by an "unsigned int" giving the desired maximum number
1561      * of parallel downloads).
1562      */
1563     GNUNET_FS_OPTIONS_DOWNLOAD_PARALLELISM = 1,
1564
1565     /**
1566      * Maximum number of requests that should be pending at a given
1567      * point in time (invidivual downloads may go above this, but
1568      * if we are above this threshold, we should not activate any
1569      * additional downloads.
1570      */
1571     GNUNET_FS_OPTIONS_REQUEST_PARALLELISM = 2
1572
1573   };
1574
1575
1576 /**
1577  * Handle to the file-sharing service.
1578  */
1579 struct GNUNET_FS_Handle;
1580
1581
1582 /**
1583  * Setup a connection to the file-sharing service.
1584  *
1585  * @param cfg configuration to use
1586  * @param client_name unique identifier for this client 
1587  * @param upcb function to call to notify about FS actions
1588  * @param upcb_cls closure for upcb
1589  * @param flags specific attributes for fs-operations
1590  * @param ... list of optional options, terminated with GNUNET_FS_OPTIONS_END
1591  * @return NULL on error
1592  */
1593 struct GNUNET_FS_Handle *
1594 GNUNET_FS_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
1595                  const char *client_name,
1596                  GNUNET_FS_ProgressCallback upcb,
1597                  void *upcb_cls,
1598                  enum GNUNET_FS_Flags flags,
1599                  ...);
1600
1601
1602 /**
1603  * Close our connection with the file-sharing service.
1604  * The callback given to GNUNET_FS_start will no longer be
1605  * called after this function returns.
1606  *
1607  * @param h handle that was returned from GNUNET_FS_start
1608  */                    
1609 void 
1610 GNUNET_FS_stop (struct GNUNET_FS_Handle *h); 
1611
1612
1613 /**
1614  * Extract meta-data from a file.
1615  *
1616  * @param md metadata to set
1617  * @param filename name of file to inspect
1618  * @param extractors plugins to use
1619  * @return GNUNET_SYSERR on error, otherwise the number
1620  *   of meta-data items obtained
1621  */
1622 int 
1623 GNUNET_FS_meta_data_extract_from_file (struct
1624                                        GNUNET_CONTAINER_MetaData
1625                                        *md, const char *filename,
1626                                        struct EXTRACTOR_PluginList *
1627                                        extractors);
1628
1629
1630 /**
1631  * Function called on entries in a GNUNET_FS_FileInformation publish-structure.
1632  *
1633  * @param cls closure
1634  * @param fi the entry in the publish-structure
1635  * @param length length of the file or directory
1636  * @param meta metadata for the file or directory (can be modified)
1637  * @param uri pointer to the keywords that will be used for this entry (can be modified)
1638  * @param anonymity pointer to selected anonymity level (can be modified)
1639  * @param priority pointer to selected priority (can be modified)
1640  * @param do_index should we index (can be modified)
1641  * @param expirationTime pointer to selected expiration time (can be modified)
1642  * @param client_info pointer to client context set upon creation (can be modified)
1643  * @return GNUNET_OK to continue, GNUNET_NO to remove
1644  *         this entry from the directory, GNUNET_SYSERR
1645  *         to abort the iteration
1646  */
1647 typedef int (*GNUNET_FS_FileInformationProcessor)(void *cls,
1648                                                   struct GNUNET_FS_FileInformation *fi,
1649                                                   uint64_t length,
1650                                                   struct GNUNET_CONTAINER_MetaData *meta,
1651                                                   struct GNUNET_FS_Uri **uri,
1652                                                   uint32_t *anonymity,
1653                                                   uint32_t *priority,
1654                                                   int *do_index,
1655                                                   struct GNUNET_TIME_Absolute *expirationTime,
1656                                                   void **client_info);
1657
1658
1659 /**
1660  * Obtain the name under which this file information
1661  * structure is stored on disk.  Only works for top-level
1662  * file information structures.
1663  *
1664  * @param s structure to get the filename for
1665  * @return NULL on error, otherwise filename that
1666  *         can be passed to "GNUNET_FS_file_information_recover"
1667  *         to read this fi-struct from disk.
1668  */
1669 const char *
1670 GNUNET_FS_file_information_get_id (struct GNUNET_FS_FileInformation *s);
1671
1672
1673
1674 /**
1675  * Create an entry for a file in a publish-structure.
1676  *
1677  * @param h handle to the file sharing subsystem
1678  * @param client_info initial client-info value for this entry
1679  * @param filename name of the file or directory to publish
1680  * @param keywords under which keywords should this file be available
1681  *         directly; can be NULL
1682  * @param meta metadata for the file
1683  * @param do_index GNUNET_YES for index, GNUNET_NO for insertion,
1684  *                GNUNET_SYSERR for simulation
1685  * @param anonymity what is the desired anonymity level for sharing?
1686  * @param priority what is the priority for OUR node to
1687  *   keep this file available?  Use 0 for maximum anonymity and
1688  *   minimum reliability...
1689  * @param expirationTime when should this content expire?
1690  * @return publish structure entry for the file
1691  */
1692 struct GNUNET_FS_FileInformation *
1693 GNUNET_FS_file_information_create_from_file (struct GNUNET_FS_Handle *h,
1694                                              void *client_info,
1695                                              const char *filename,
1696                                              const struct GNUNET_FS_Uri *keywords,
1697                                              const struct GNUNET_CONTAINER_MetaData *meta,
1698                                              int do_index,
1699                                              uint32_t anonymity,
1700                                              uint32_t priority,
1701                                              struct GNUNET_TIME_Absolute expirationTime);
1702
1703
1704 /**
1705  * Create an entry for a file in a publish-structure.
1706  *
1707  * @param h handle to the file sharing subsystem
1708  * @param client_info initial client-info value for this entry
1709  * @param length length of the file
1710  * @param data data for the file (should not be used afterwards by
1711  *        the caller; callee will "free")
1712  * @param keywords under which keywords should this file be available
1713  *         directly; can be NULL
1714  * @param meta metadata for the file
1715  * @param do_index GNUNET_YES for index, GNUNET_NO for insertion,
1716  *                GNUNET_SYSERR for simulation
1717  * @param anonymity what is the desired anonymity level for sharing?
1718  * @param priority what is the priority for OUR node to
1719  *   keep this file available?  Use 0 for maximum anonymity and
1720  *   minimum reliability...
1721  * @param expirationTime when should this content expire?
1722  * @return publish structure entry for the file
1723  */
1724 struct GNUNET_FS_FileInformation *
1725 GNUNET_FS_file_information_create_from_data (struct GNUNET_FS_Handle *h,
1726                                              void *client_info,
1727                                              uint64_t length,
1728                                              void *data,
1729                                              const struct GNUNET_FS_Uri *keywords,
1730                                              const struct GNUNET_CONTAINER_MetaData *meta,
1731                                              int do_index,
1732                                              uint32_t anonymity,
1733                                              uint32_t priority,
1734                                              struct GNUNET_TIME_Absolute expirationTime);
1735
1736
1737 /**
1738  * Function that provides data.
1739  *
1740  * @param cls closure
1741  * @param offset offset to read from; it is possible
1742  *            that the caller might need to go backwards
1743  *            a bit at times
1744  * @param max maximum number of bytes that should be 
1745  *            copied to buf; readers are not allowed
1746  *            to provide less data unless there is an error;
1747  *            a value of "0" will be used at the end to allow
1748  *            the reader to clean up its internal state
1749  * @param buf where the reader should write the data
1750  * @param emsg location for the reader to store an error message
1751  * @return number of bytes written, usually "max", 0 on error
1752  */
1753 typedef size_t (*GNUNET_FS_DataReader)(void *cls, 
1754                                        uint64_t offset,
1755                                        size_t max, 
1756                                        void *buf,
1757                                        char **emsg);
1758
1759
1760 /**
1761  * Create an entry for a file in a publish-structure.
1762  *
1763  * @param h handle to the file sharing subsystem
1764  * @param client_info initial client-info value for this entry
1765  * @param length length of the file
1766  * @param reader function that can be used to obtain the data for the file 
1767  * @param reader_cls closure for "reader"
1768  * @param keywords under which keywords should this file be available
1769  *         directly; can be NULL
1770  * @param meta metadata for the file
1771  * @param do_index GNUNET_YES for index, GNUNET_NO for insertion,
1772  *                GNUNET_SYSERR for simulation
1773  * @param anonymity what is the desired anonymity level for sharing?
1774  * @param priority what is the priority for OUR node to
1775  *   keep this file available?  Use 0 for maximum anonymity and
1776  *   minimum reliability...
1777  * @param expirationTime when should this content expire?
1778  * @return publish structure entry for the file
1779  */
1780 struct GNUNET_FS_FileInformation *
1781 GNUNET_FS_file_information_create_from_reader (struct GNUNET_FS_Handle *h,
1782                                                void *client_info,
1783                                                uint64_t length,
1784                                                GNUNET_FS_DataReader reader,
1785                                                void *reader_cls,
1786                                                const struct GNUNET_FS_Uri *keywords,
1787                                                const struct GNUNET_CONTAINER_MetaData *meta,
1788                                                int do_index,
1789                                                uint32_t anonymity,
1790                                                uint32_t priority,
1791                                                struct GNUNET_TIME_Absolute expirationTime);
1792
1793
1794 /**
1795  * Function that a "GNUNET_FS_DirectoryScanner" should call
1796  * for each entry in the directory.
1797  *
1798  * @param cls closure
1799  * @param filename name of the file (including path); must end 
1800  *          in a "/" (even on W32) if this is a directory
1801  * @param fi information about the file (should not be
1802  *        used henceforth by the caller)
1803  */
1804 typedef void (*GNUNET_FS_FileProcessor)(void *cls,
1805                                         const char *filename,
1806                                         struct GNUNET_FS_FileInformation *fi);
1807
1808
1809 /**
1810  * Type of a function that will be used to scan a directory.
1811  * 
1812  * @param cls closure
1813  * @param h handle to the file sharing subsystem
1814  * @param dirname name of the directory to scan
1815  * @param do_index should files be indexed or inserted
1816  * @param anonymity desired anonymity level
1817  * @param priority priority for publishing
1818  * @param expirationTime expiration for publication
1819  * @param proc function to call on each entry
1820  * @param proc_cls closure for proc
1821  * @param emsg where to store an error message (on errors)
1822  * @return GNUNET_OK on success
1823  */
1824 typedef int (*GNUNET_FS_DirectoryScanner)(void *cls,
1825                                           struct GNUNET_FS_Handle *h,
1826                                           const char *dirname,
1827                                           int do_index,
1828                                           uint32_t anonymity,
1829                                           uint32_t priority,
1830                                           struct GNUNET_TIME_Absolute expirationTime,
1831                                           GNUNET_FS_FileProcessor proc,
1832                                           void *proc_cls,
1833                                           char **emsg);
1834
1835
1836
1837 /**
1838  * Simple, useful default implementation of a directory scanner
1839  * (GNUNET_FS_DirectoryScanner).  This implementation expects to get a
1840  * UNIX filename, will publish all files in the directory except hidden
1841  * files (those starting with a ".").  Metadata will be extracted
1842  * using GNU libextractor; the specific list of plugins should be
1843  * specified in "cls", passing NULL will disable (!)  metadata
1844  * extraction.  Keywords will be derived from the metadata and be
1845  * subject to default canonicalization.  This is strictly a
1846  * convenience function.
1847  *
1848  * @param cls must be of type "struct EXTRACTOR_Extractor*"
1849  * @param h handle to the file sharing subsystem
1850  * @param dirname name of the directory to scan
1851  * @param do_index should files be indexed or inserted
1852  * @param anonymity desired anonymity level
1853  * @param priority priority for publishing
1854  * @param expirationTime expiration for publication
1855  * @param proc function called on each entry
1856  * @param proc_cls closure for proc
1857  * @param emsg where to store an error message (on errors)
1858  * @return GNUNET_OK on success
1859  */
1860 int
1861 GNUNET_FS_directory_scanner_default (void *cls,
1862                                      struct GNUNET_FS_Handle *h,
1863                                      const char *dirname,
1864                                      int do_index,
1865                                      uint32_t anonymity,
1866                                      uint32_t priority,
1867                                      struct GNUNET_TIME_Absolute expirationTime,
1868                                      GNUNET_FS_FileProcessor proc,
1869                                      void *proc_cls,
1870                                      char **emsg);
1871
1872
1873 /**
1874  * Create a publish-structure from an existing file hierarchy, inferring
1875  * and organizing keywords and metadata as much as possible.  This
1876  * function primarily performs the recursive build and re-organizes
1877  * keywords and metadata; for automatically getting metadata
1878  * extraction, scanning of directories and creation of the respective
1879  * GNUNET_FS_FileInformation entries the default scanner should be
1880  * passed (GNUNET_FS_directory_scanner_default).  This is strictly a
1881  * convenience function.
1882  *
1883  * @param h handle to the file sharing subsystem
1884  * @param client_info initial client-info value for this entry
1885  * @param filename name of the top-level file or directory
1886  * @param scanner function used to get a list of files in a directory
1887  * @param scanner_cls closure for scanner
1888  * @param do_index should files in the hierarchy be indexed?
1889  * @param anonymity what is the desired anonymity level for sharing?
1890  * @param priority what is the priority for OUR node to
1891  *   keep this file available?  Use 0 for maximum anonymity and
1892  *   minimum reliability...
1893  * @param expirationTime when should this content expire?
1894  * @param emsg where to store an error message
1895  * @return publish structure entry for the directory, NULL on error
1896  */
1897 struct GNUNET_FS_FileInformation *
1898 GNUNET_FS_file_information_create_from_directory (struct GNUNET_FS_Handle *h,
1899                                                   void *client_info,
1900                                                   const char *filename,
1901                                                   GNUNET_FS_DirectoryScanner scanner,
1902                                                   void *scanner_cls,
1903                                                   int do_index,
1904                                                   uint32_t anonymity,
1905                                                   uint32_t priority,
1906                                                   struct GNUNET_TIME_Absolute expirationTime,
1907                                                   char **emsg);
1908
1909
1910 /**
1911  * Create an entry for an empty directory in a publish-structure.
1912  * This function should be used by applications for which the
1913  * use of "GNUNET_FS_file_information_create_from_directory"
1914  * is not appropriate.
1915  *
1916  * @param h handle to the file sharing subsystem
1917  * @param client_info initial client-info value for this entry
1918  * @param keywords under which keywords should this directory be available
1919  *         directly; can be NULL
1920  * @param meta metadata for the directory
1921  * @param anonymity what is the desired anonymity level for sharing?
1922  * @param priority what is the priority for OUR node to
1923  *   keep this file available?  Use 0 for maximum anonymity and
1924  *   minimum reliability...
1925  * @param expirationTime when should this content expire?
1926  * @return publish structure entry for the directory , NULL on error
1927  */
1928 struct GNUNET_FS_FileInformation *
1929 GNUNET_FS_file_information_create_empty_directory (struct GNUNET_FS_Handle *h,
1930                                                    void *client_info,
1931                                                    const struct GNUNET_FS_Uri *keywords,
1932                                                    const struct GNUNET_CONTAINER_MetaData *meta,
1933                                                    uint32_t anonymity,
1934                                                    uint32_t priority,
1935                                                    struct GNUNET_TIME_Absolute expirationTime);
1936
1937
1938 /**
1939  * Test if a given entry represents a directory.
1940  *
1941  * @param ent check if this FI represents a directory
1942  * @return GNUNET_YES if so, GNUNET_NO if not
1943  */
1944 int
1945 GNUNET_FS_file_information_is_directory (struct GNUNET_FS_FileInformation *ent);
1946
1947
1948 /**
1949  * Add an entry to a directory in a publish-structure.  Clients
1950  * should never modify publish structures that were passed to
1951  * "GNUNET_FS_publish_start" already.
1952  *
1953  * @param dir the directory
1954  * @param ent the entry to add; the entry must not have been
1955  *            added to any other directory at this point and 
1956  *            must not include "dir" in its structure
1957  * @return GNUNET_OK on success, GNUNET_SYSERR on error
1958  */
1959 int
1960 GNUNET_FS_file_information_add (struct GNUNET_FS_FileInformation *dir,
1961                                 struct GNUNET_FS_FileInformation *ent);
1962
1963
1964 /**
1965  * Inspect a file or directory in a publish-structure.  Clients
1966  * should never modify publish structures that were passed to
1967  * "GNUNET_FS_publish_start" already.  When called on a directory,
1968  * this function will FIRST call "proc" with information about
1969  * the directory itself and then for each of the files in the
1970  * directory (but not for files in subdirectories).  When called
1971  * on a file, "proc" will be called exactly once (with information
1972  * about the specific file).
1973  *
1974  * @param dir the directory
1975  * @param proc function to call on each entry
1976  * @param proc_cls closure for proc
1977  */
1978 void
1979 GNUNET_FS_file_information_inspect (struct GNUNET_FS_FileInformation *dir,
1980                                     GNUNET_FS_FileInformationProcessor proc,
1981                                     void *proc_cls);
1982
1983
1984 /**
1985  * Destroy publish-structure.  Clients should never destroy publish
1986  * structures that were passed to "GNUNET_FS_publish_start" already.
1987  *
1988  * @param fi structure to destroy
1989  * @param cleaner function to call on each entry in the structure
1990  *        (useful to clean up client_info); can be NULL; return
1991  *        values are ignored
1992  * @param cleaner_cls closure for cleaner
1993  */
1994 void
1995 GNUNET_FS_file_information_destroy (struct GNUNET_FS_FileInformation *fi,
1996                                     GNUNET_FS_FileInformationProcessor cleaner,
1997                                     void *cleaner_cls);
1998
1999
2000 /**
2001  * Options for publishing.  Compatible options
2002  * can be OR'ed together.
2003  */
2004 enum GNUNET_FS_PublishOptions 
2005   {
2006     /**
2007      * No options (use defaults for everything).
2008      */
2009     GNUNET_FS_PUBLISH_OPTION_NONE = 0,
2010     
2011     /**
2012      * Simulate publishing.  With this option, no data will be stored
2013      * in the datastore.  Useful for computing URIs from files.
2014      */
2015     GNUNET_FS_PUBLISH_OPTION_SIMULATE_ONLY = 1
2016   };
2017
2018 /**
2019  * Publish a file or directory.
2020  *
2021  * @param h handle to the file sharing subsystem
2022  * @param fi information about the file or directory structure to publish
2023  * @param namespace namespace to publish the file in, NULL for no namespace
2024  * @param nid identifier to use for the publishd content in the namespace
2025  *        (can be NULL, must be NULL if namespace is NULL)
2026  * @param nuid update-identifier that will be used for future updates 
2027  *        (can be NULL, must be NULL if namespace or nid is NULL)
2028  * @param options options for the publication 
2029  * @return context that can be used to control the publish operation
2030  */
2031 struct GNUNET_FS_PublishContext *
2032 GNUNET_FS_publish_start (struct GNUNET_FS_Handle *h,
2033                          struct GNUNET_FS_FileInformation *fi,
2034                          struct GNUNET_FS_Namespace *namespace,
2035                          const char *nid,
2036                          const char *nuid,
2037                          enum GNUNET_FS_PublishOptions options);
2038
2039
2040 /**
2041  * Stop a publication.  Will abort incomplete publications (but 
2042  * not remove blocks that have already been published) or
2043  * simply clean up the state for completed publications.
2044  * Must NOT be called from within the event callback!
2045  *
2046  * @param pc context for the publication to stop
2047  */
2048 void 
2049 GNUNET_FS_publish_stop (struct GNUNET_FS_PublishContext *pc);
2050
2051
2052 /**
2053  * Signature of a function called as the continuation of a KBlock or
2054  * SBlock publication.
2055  *
2056  * @param cls closure
2057  * @param uri URI under which the block is now available, NULL on error
2058  * @param emsg error message, NULL on success
2059  */
2060 typedef void (*GNUNET_FS_PublishContinuation)(void *cls,
2061                                               const struct GNUNET_FS_Uri *uri,
2062                                               const char *emsg);
2063                                       
2064
2065 /**
2066  * Publish a KBlock on GNUnet.
2067  *
2068  * @param h handle to the file sharing subsystem
2069  * @param ksk_uri keywords to use
2070  * @param meta metadata to use
2071  * @param uri URI to refer to in the KBlock
2072  * @param expirationTime when the KBlock expires
2073  * @param anonymity anonymity level for the KBlock
2074  * @param priority priority for the KBlock
2075  * @param cont continuation
2076  * @param cont_cls closure for cont
2077  */
2078 void
2079 GNUNET_FS_publish_ksk (struct GNUNET_FS_Handle *h,
2080                        const struct GNUNET_FS_Uri *ksk_uri,
2081                        const struct GNUNET_CONTAINER_MetaData *meta,
2082                        const struct GNUNET_FS_Uri *uri,
2083                        struct GNUNET_TIME_Absolute expirationTime,
2084                        uint32_t anonymity,
2085                        uint32_t priority,
2086                        enum GNUNET_FS_PublishOptions options,
2087                        GNUNET_FS_PublishContinuation cont,
2088                        void *cont_cls);
2089
2090
2091 /**
2092  * Publish an SBlock on GNUnet.
2093  *
2094  * @param h handle to the file sharing subsystem
2095  * @param namespace namespace to publish in
2096  * @param identifier identifier to use
2097  * @param update update identifier to use
2098  * @param meta metadata to use
2099  * @param uri URI to refer to in the SBlock
2100  * @param expirationTime when the SBlock expires
2101  * @param anonymity anonymity level for the SBlock
2102  * @param priority priority for the SBlock
2103  * @param cont continuation
2104  * @param cont_cls closure for cont
2105  */
2106 void
2107 GNUNET_FS_publish_sks (struct GNUNET_FS_Handle *h,
2108                        struct GNUNET_FS_Namespace *namespace,
2109                        const char *identifier,
2110                        const char *update,
2111                        const struct GNUNET_CONTAINER_MetaData *meta,
2112                        const struct GNUNET_FS_Uri *uri,
2113                        struct GNUNET_TIME_Absolute expirationTime,
2114                        uint32_t anonymity,
2115                        uint32_t priority,
2116                        enum GNUNET_FS_PublishOptions options,
2117                        GNUNET_FS_PublishContinuation cont,
2118                        void *cont_cls);
2119
2120
2121 /**
2122  * Type of a function called by "GNUNET_FS_get_indexed_files".
2123  *
2124  * @param cls closure
2125  * @param filename the name of the file
2126  * @param file_id hash of the contents of the indexed file
2127  * @return GNUNET_OK to continue iteration, GNUNET_SYSERR to abort
2128  */
2129 typedef int (*GNUNET_FS_IndexedFileProcessor) (void *cls,
2130                                                const char *filename,
2131                                                const GNUNET_HashCode *file_id);
2132
2133
2134 /**
2135  * Iterate over all indexed files.
2136  *
2137  * @param h handle to the file sharing subsystem
2138  * @param iterator function to call on each indexed file
2139  * @param iterator_cls closure for iterator
2140  * @param cont continuation to call when done;
2141  *             reason should be "TIMEOUT" (on
2142  *             error) or  "PREREQ_DONE" (on success)
2143  * @param cont_cls closure for cont
2144  */
2145 void 
2146 GNUNET_FS_get_indexed_files (struct GNUNET_FS_Handle *h,
2147                              GNUNET_FS_IndexedFileProcessor iterator,
2148                              void *iterator_cls,
2149                              GNUNET_SCHEDULER_Task cont,
2150                              void *cont_cls);
2151
2152
2153 /**
2154  * Unindex a file.
2155  *
2156  * @param h handle to the file sharing subsystem
2157  * @param filename file to unindex
2158  * @param cctx initial value for the client context
2159  * @return NULL on error, otherwise handle 
2160  */
2161 struct GNUNET_FS_UnindexContext *
2162 GNUNET_FS_unindex_start (struct GNUNET_FS_Handle *h,
2163                          const char *filename,
2164                          void *cctx);
2165
2166
2167 /**
2168  * Clean up after completion of an unindex operation.
2169  *
2170  * @param uc handle
2171  */
2172 void
2173 GNUNET_FS_unindex_stop (struct GNUNET_FS_UnindexContext *uc);
2174
2175
2176 /**
2177  * Publish an advertismement for a namespace.  
2178  *
2179  * @param h handle to the file sharing subsystem
2180  * @param ksk_uri keywords to use for advertisment
2181  * @param namespace handle for the namespace that should be advertised
2182  * @param meta meta-data for the namespace advertisement
2183  * @param anonymity for the namespace advertismement
2184  * @param priority for the namespace advertisement
2185  * @param expiration for the namespace advertisement
2186  * @param rootEntry name of the root of the namespace
2187  * @param cont continuation
2188  * @param cont_cls closure for cont
2189  */
2190 void
2191 GNUNET_FS_namespace_advertise (struct GNUNET_FS_Handle *h,
2192                                struct GNUNET_FS_Uri *ksk_uri,
2193                                struct GNUNET_FS_Namespace *namespace,
2194                                const struct GNUNET_CONTAINER_MetaData *meta,
2195                                uint32_t anonymity,
2196                                uint32_t priority,
2197                                struct GNUNET_TIME_Absolute expiration,
2198                                const char *rootEntry,
2199                                GNUNET_FS_PublishContinuation cont,
2200                                void *cont_cls);
2201
2202
2203 /**
2204  * Create a namespace with the given name; if one already
2205  * exists, return a handle to the existing namespace.
2206  *
2207  * @param h handle to the file sharing subsystem
2208  * @param name name to use for the namespace
2209  * @return handle to the namespace, NULL on error
2210  */
2211 struct GNUNET_FS_Namespace *
2212 GNUNET_FS_namespace_create (struct GNUNET_FS_Handle *h,
2213                             const char *name);
2214
2215
2216 /**
2217  * Delete a namespace handle.  Can be used for a clean shutdown (free
2218  * memory) or also to freeze the namespace to prevent further
2219  * insertions by anyone.
2220  *
2221  * @param namespace handle to the namespace that should be deleted / freed
2222  * @param freeze prevents future insertions; creating a namespace
2223  *        with the same name again will create a fresh namespace instead
2224  *
2225  * @return GNUNET_OK on success, GNUNET_SYSERR on error
2226  */
2227 int 
2228 GNUNET_FS_namespace_delete (struct GNUNET_FS_Namespace *namespace,
2229                             int freeze);
2230
2231
2232 /**
2233  * Callback with information about local (!) namespaces.
2234  * Contains the names of the local namespace and the global
2235  * ID.
2236  *
2237  * @param cls closure
2238  * @param name human-readable identifier of the namespace
2239  * @param id hash identifier for the namespace
2240  */
2241 typedef void (*GNUNET_FS_NamespaceInfoProcessor) (void *cls,
2242                                                   const char *name,
2243                                                   const GNUNET_HashCode *id);
2244
2245
2246 /**
2247  * Build a list of all available local (!) namespaces The returned
2248  * names are only the nicknames since we only iterate over the local
2249  * namespaces.
2250  *
2251  * @param h handle to the file sharing subsystem
2252  * @param cb function to call on each known namespace
2253  * @param cb_cls closure for cb
2254  */
2255 void 
2256 GNUNET_FS_namespace_list (struct GNUNET_FS_Handle *h,
2257                           GNUNET_FS_NamespaceInfoProcessor cb,
2258                           void *cb_cls);
2259
2260
2261 /**
2262  * Function called on updateable identifiers.
2263  *
2264  * @param cls closure
2265  * @param last_id last identifier 
2266  * @param last_uri uri used for the content published under the last_id
2267  * @param last_meta metadata associated with last_uri
2268  * @param next_id identifier that should be used for updates
2269  */
2270 typedef void 
2271 (*GNUNET_FS_IdentifierProcessor)(void *cls,
2272                                  const char *last_id, 
2273                                  const struct GNUNET_FS_Uri *last_uri,
2274                                  const struct GNUNET_CONTAINER_MetaData *last_meta,
2275                                  const char *next_id);
2276
2277
2278 /**
2279  * List all of the identifiers in the namespace for which we could
2280  * produce an update.  Namespace updates form a graph where each node
2281  * has a name.  Each node can have any number of URI/meta-data entries
2282  * which can each be linked to other nodes.  Cycles are possible.
2283  * 
2284  * Calling this function with "next_id" NULL will cause the library to
2285  * call "ip" with a root for each strongly connected component of the
2286  * graph (a root being a node from which all other nodes in the Scc
2287  * are reachable).
2288  * 
2289  * Calling this function with "next_id" being the name of a node will
2290  * cause the library to call "ip" with all children of the node.  Note
2291  * that cycles within an SCC are possible (including self-loops).
2292  *
2293  * @param namespace namespace to inspect for updateable content
2294  * @param next_id ID to look for; use NULL to look for SCC roots
2295  * @param ip function to call on each updateable identifier
2296  * @param ip_cls closure for ip
2297  */
2298 void
2299 GNUNET_FS_namespace_list_updateable (struct GNUNET_FS_Namespace *namespace,
2300                                      const char *next_id,
2301                                      GNUNET_FS_IdentifierProcessor ip, 
2302                                      void *ip_cls);
2303
2304
2305 /**
2306  * Options for searching.  Compatible options
2307  * can be OR'ed together.
2308  */
2309 enum GNUNET_FS_SearchOptions 
2310   {
2311     /**
2312      * No options (use defaults for everything).
2313      */
2314     GNUNET_FS_SEARCH_OPTION_NONE = 0,
2315
2316     /**
2317      * Only search the local host, do not search remote systems (no P2P)
2318      */
2319     GNUNET_FS_SEARCH_OPTION_LOOPBACK_ONLY = 1
2320
2321   };
2322
2323
2324 /**
2325  * Start search for content.
2326  *
2327  * @param h handle to the file sharing subsystem
2328  * @param uri specifies the search parameters; can be
2329  *        a KSK URI or an SKS URI.
2330  * @param anonymity desired level of anonymity
2331  * @param options options for the search
2332  * @param cctx initial value for the client context
2333  * @return context that can be used to control the search
2334  */
2335 struct GNUNET_FS_SearchContext *
2336 GNUNET_FS_search_start (struct GNUNET_FS_Handle *h,
2337                         const struct GNUNET_FS_Uri *uri,
2338                         uint32_t anonymity,
2339                         enum GNUNET_FS_SearchOptions options,
2340                         void *cctx);
2341
2342
2343 /**
2344  * Pause search.  
2345  *
2346  * @param sc context for the search that should be paused
2347  */
2348 void 
2349 GNUNET_FS_search_pause (struct GNUNET_FS_SearchContext *sc);
2350
2351
2352 /**
2353  * Continue paused search.
2354  *
2355  * @param sc context for the search that should be resumed
2356  */
2357 void 
2358 GNUNET_FS_search_continue (struct GNUNET_FS_SearchContext *sc);
2359
2360
2361 /**
2362  * Stop search for content.
2363  *
2364  * @param sc context for the search that should be stopped
2365  */
2366 void 
2367 GNUNET_FS_search_stop (struct GNUNET_FS_SearchContext *sc);
2368
2369
2370
2371
2372 /**
2373  * Options for downloading.  Compatible options
2374  * can be OR'ed together.
2375  */
2376 enum GNUNET_FS_DownloadOptions 
2377   {
2378     /**
2379      * No options (use defaults for everything).
2380      */
2381     GNUNET_FS_DOWNLOAD_OPTION_NONE = 0,
2382
2383     /**
2384      * Only download from the local host, do not access remote systems (no P2P)
2385      */
2386     GNUNET_FS_DOWNLOAD_OPTION_LOOPBACK_ONLY = 1,
2387     
2388     /**
2389      * Do a recursive download (that is, automatically trigger the
2390      * download of files in directories).
2391      */
2392     GNUNET_FS_DOWNLOAD_OPTION_RECURSIVE = 2,
2393
2394     /**
2395      * Do not append temporary data to
2396      * the target file (for the IBlocks).
2397      */
2398     GNUNET_FS_DOWNLOAD_NO_TEMPORARIES = 4,
2399
2400     /**
2401      * Internal option used to flag this download as a 'probe' for a
2402      * search result.  Impacts the priority with which the download is
2403      * run and causes signalling callbacks to be done differently.
2404      * Also, probe downloads are not serialized on suspension.  Normal
2405      * clients should not use this!
2406      */
2407     GNUNET_FS_DOWNLOAD_IS_PROBE = (1<<31)
2408
2409   };
2410
2411
2412
2413 /**
2414  * Download parts of a file.  Note that this will store
2415  * the blocks at the respective offset in the given file.  Also, the
2416  * download is still using the blocking of the underlying FS
2417  * encoding.  As a result, the download may *write* outside of the
2418  * given boundaries (if offset and length do not match the 32k FS
2419  * block boundaries). <p>
2420  *
2421  * The given range can be used to focus a download towards a
2422  * particular portion of the file (optimization), not to strictly
2423  * limit the download to exactly those bytes.
2424  *
2425  * @param h handle to the file sharing subsystem
2426  * @param uri the URI of the file (determines what to download); CHK or LOC URI
2427  * @param meta known metadata for the file (can be NULL)
2428  * @param filename where to store the file, maybe NULL (then no file is
2429  *        created on disk and data must be grabbed from the callbacks)
2430  * @param tempname where to store temporary file data, not used if filename is non-NULL;
2431  *        can be NULL (in which case we will pick a name if needed); the temporary file
2432  *        may already exist, in which case we will try to use the data that is there and
2433  *        if it is not what is desired, will overwrite it
2434  * @param offset at what offset should we start the download (typically 0)
2435  * @param length how many bytes should be downloaded starting at offset
2436  * @param anonymity anonymity level to use for the download
2437  * @param options various download options
2438  * @param cctx initial value for the client context for this download
2439  * @param parent parent download to associate this download with (use NULL
2440  *        for top-level downloads; useful for manually-triggered recursive downloads)
2441  * @return context that can be used to control this download
2442  */
2443 struct GNUNET_FS_DownloadContext *
2444 GNUNET_FS_download_start (struct GNUNET_FS_Handle *h,
2445                           const struct GNUNET_FS_Uri *uri,
2446                           const struct GNUNET_CONTAINER_MetaData *meta,
2447                           const char *filename,
2448                           const char *tempname,
2449                           uint64_t offset,
2450                           uint64_t length,
2451                           uint32_t anonymity,
2452                           enum GNUNET_FS_DownloadOptions options,
2453                           void *cctx,
2454                           struct GNUNET_FS_DownloadContext *parent);
2455
2456
2457 /**
2458  * Download parts of a file based on a search result.  The download
2459  * will be associated with the search result (and the association
2460  * will be preserved when serializing/deserializing the state).
2461  * If the search is stopped, the download will not be aborted but
2462  * be 'promoted' to a stand-alone download.
2463  *
2464  * As with the other download function, this will store
2465  * the blocks at the respective offset in the given file.  Also, the
2466  * download is still using the blocking of the underlying FS
2467  * encoding.  As a result, the download may *write* outside of the
2468  * given boundaries (if offset and length do not match the 32k FS
2469  * block boundaries). <p>
2470  *
2471  * The given range can be used to focus a download towards a
2472  * particular portion of the file (optimization), not to strictly
2473  * limit the download to exactly those bytes.
2474  *
2475  * @param h handle to the file sharing subsystem
2476  * @param sr the search result to use for the download (determines uri and
2477  *        meta data and associations)
2478  * @param filename where to store the file, maybe NULL (then no file is
2479  *        created on disk and data must be grabbed from the callbacks)
2480  * @param tempname where to store temporary file data, not used if filename is non-NULL;
2481  *        can be NULL (in which case we will pick a name if needed); the temporary file
2482  *        may already exist, in which case we will try to use the data that is there and
2483  *        if it is not what is desired, will overwrite it
2484  * @param offset at what offset should we start the download (typically 0)
2485  * @param length how many bytes should be downloaded starting at offset
2486  * @param anonymity anonymity level to use for the download
2487  * @param options various download options
2488  * @param cctx initial value for the client context for this download
2489  * @return context that can be used to control this download
2490  */
2491 struct GNUNET_FS_DownloadContext *
2492 GNUNET_FS_download_start_from_search (struct GNUNET_FS_Handle *h,
2493                                       struct GNUNET_FS_SearchResult *sr,
2494                                       const char *filename,
2495                                       const char *tempname,
2496                                       uint64_t offset,
2497                                       uint64_t length,
2498                                       uint32_t anonymity,
2499                                       enum GNUNET_FS_DownloadOptions options,
2500                                       void *cctx);
2501
2502
2503 /**
2504  * Stop a download (aborts if download is incomplete).
2505  *
2506  * @param dc handle for the download
2507  * @param do_delete delete files of incomplete downloads
2508  */
2509 void
2510 GNUNET_FS_download_stop (struct GNUNET_FS_DownloadContext *dc,
2511                          int do_delete);
2512
2513
2514
2515 /* ******************** Directory API *********************** */
2516
2517
2518 #define GNUNET_FS_DIRECTORY_MIME  "application/gnunet-directory"
2519 #define GNUNET_FS_DIRECTORY_MAGIC "\211GND\r\n\032\n"
2520 #define GNUNET_FS_DIRECTORY_EXT   ".gnd"
2521
2522 /**
2523  * Does the meta-data claim that this is a directory?
2524  * Checks if the mime-type is that of a GNUnet directory.
2525  *
2526  * @return GNUNET_YES if it is, GNUNET_NO if it is not, GNUNET_SYSERR if
2527  *  we have no mime-type information (treat as 'GNUNET_NO')
2528  */
2529 int 
2530 GNUNET_FS_meta_data_test_for_directory (const struct GNUNET_CONTAINER_MetaData *md);
2531
2532
2533 /**
2534  * Set the MIMETYPE information for the given
2535  * metadata to "application/gnunet-directory".
2536  * 
2537  * @param md metadata to add mimetype to
2538  */
2539 void
2540 GNUNET_FS_meta_data_make_directory (struct GNUNET_CONTAINER_MetaData *md);
2541
2542
2543 /**
2544  * Suggest a filename based on given metadata.
2545  * 
2546  * @param md given meta data
2547  * @return NULL if meta data is useless for suggesting a filename
2548  */
2549 char *
2550 GNUNET_FS_meta_data_suggest_filename (const struct GNUNET_CONTAINER_MetaData *md);
2551
2552
2553 /**
2554  * Function used to process entries in a directory.
2555  *
2556  * @param cls closure
2557  * @param filename name of the file in the directory
2558  * @param uri URI of the file
2559  * @param metadata metadata for the file; metadata for
2560  *        the directory if everything else is NULL/zero
2561  * @param length length of the available data for the file
2562  *           (of type size_t since data must certainly fit
2563  *            into memory; if files are larger than size_t
2564  *            permits, then they will certainly not be
2565  *            embedded with the directory itself).
2566  * @param data data available for the file (length bytes)
2567  */
2568 typedef void (*GNUNET_FS_DirectoryEntryProcessor)(void *cls,
2569                                                   const char *filename,
2570                                                   const struct GNUNET_FS_Uri *uri,
2571                                                   const struct GNUNET_CONTAINER_MetaData *meta,
2572                                                   size_t length,
2573                                                   const void *data);
2574
2575
2576 /**
2577  * Iterate over all entries in a directory.  Note that directories
2578  * are structured such that it is possible to iterate over the
2579  * individual blocks as well as over the entire directory.  Thus
2580  * a client can call this function on the buffer in the
2581  * GNUNET_FS_ProgressCallback.  Also, directories can optionally
2582  * include the contents of (small) files embedded in the directory
2583  * itself; for those files, the processor may be given the
2584  * contents of the file directly by this function.
2585  *
2586  * @param size number of bytes in data
2587  * @param data pointer to the beginning of the directory
2588  * @param offset offset of data in the directory
2589  * @param dep function to call on each entry
2590  * @param dep_cls closure for dep
2591  * @return GNUNET_OK if this could be a block in a directory,
2592  *         GNUNET_NO if this could be part of a directory (but not 100% OK)
2593  *         GNUNET_SYSERR if 'data' does not represent a directory
2594  */
2595 int 
2596 GNUNET_FS_directory_list_contents (size_t size,
2597                                    const void *data,
2598                                    uint64_t offset,
2599                                    GNUNET_FS_DirectoryEntryProcessor dep, 
2600                                    void *dep_cls);
2601
2602
2603 /**
2604  * Opaque handle to a directory builder.
2605  */
2606 struct GNUNET_FS_DirectoryBuilder;
2607
2608 /**
2609  * Create a directory builder.
2610  * 
2611  * @param mdir metadata for the directory
2612  */
2613 struct GNUNET_FS_DirectoryBuilder *
2614 GNUNET_FS_directory_builder_create (const struct GNUNET_CONTAINER_MetaData *mdir);
2615
2616
2617 /**
2618  * Add an entry to a directory.
2619  * 
2620  * @param bld directory to extend
2621  * @param uri uri of the entry (must not be a KSK)
2622  * @param md metadata of the entry
2623  * @param data raw data of the entry, can be NULL, otherwise
2624  *        data must point to exactly the number of bytes specified
2625  *        by the uri
2626  */
2627 void
2628 GNUNET_FS_directory_builder_add (struct GNUNET_FS_DirectoryBuilder *bld,
2629                                  const struct GNUNET_FS_Uri *uri,
2630                                  const struct GNUNET_CONTAINER_MetaData *md,
2631                                  const void *data);
2632                  
2633
2634 /**
2635  * Finish building the directory.  Frees the
2636  * builder context and returns the directory
2637  * in-memory.
2638  *
2639  * @param bld directory to finish
2640  * @param rsize set to the number of bytes needed
2641  * @param rdata set to the encoded directory
2642  * @return GNUNET_OK on success
2643  */
2644 int
2645 GNUNET_FS_directory_builder_finish (struct GNUNET_FS_DirectoryBuilder *bld,
2646                                     size_t *rsize,
2647                                     void **rdata);
2648
2649
2650 #if 0                           /* keep Emacsens' auto-indent happy */
2651 {
2652 #endif
2653 #ifdef __cplusplus
2654 }
2655 #endif
2656
2657
2658 #endif