make all (?) asynchronously operating FS operations actually cancel-able
[oweals/gnunet.git] / src / fs / gnunet-publish.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2004, 2005, 2006, 2007, 2009, 2010, 2011 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 fs/gnunet-publish.c
22  * @brief publishing files on GNUnet
23  * @author Christian Grothoff
24  * @author Krista Bennett
25  * @author James Blackwell
26  * @author Igor Wronsky
27  */
28 #include "platform.h"
29 #include "gnunet_fs_service.h"
30
31 static int ret;
32
33 static int verbose;
34
35 static const struct GNUNET_CONFIGURATION_Handle *cfg;
36
37 static struct GNUNET_FS_Handle *ctx;
38
39 static struct GNUNET_FS_PublishContext *pc;
40
41 static struct GNUNET_CONTAINER_MetaData *meta;
42
43 static struct GNUNET_FS_Uri *topKeywords;
44
45 static struct GNUNET_FS_Uri *uri;
46
47 static struct GNUNET_FS_BlockOptions bo = { {0LL}, 1, 365, 1 };
48
49 static char *uri_string;
50
51 static char *next_id;
52
53 static char *this_id;
54
55 static char *pseudonym;
56
57 static int do_insert;
58
59 static int disable_extractor;
60
61 static int do_simulate;
62
63 static int extract_only;
64
65 static int do_disable_creation_time;
66
67 static GNUNET_SCHEDULER_TaskIdentifier kill_task;
68
69 static struct GNUNET_FS_DirScanner *ds;
70
71 static struct GNUNET_FS_ShareTreeItem * directory_scan_result;
72
73 static struct GNUNET_FS_Namespace *namespace;
74
75 /**
76  * FIXME: docu
77  */
78 static void
79 do_stop_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
80 {
81   struct GNUNET_FS_PublishContext *p;
82
83   kill_task = GNUNET_SCHEDULER_NO_TASK;
84   if (pc != NULL)
85   {
86     p = pc;
87     pc = NULL;
88     GNUNET_FS_publish_stop (p);
89   }
90   if (NULL != meta)
91   {
92     GNUNET_CONTAINER_meta_data_destroy (meta);
93     meta = NULL;
94   }  
95 }
96
97
98 /**
99  * Stop the directory scanner (we had an error).
100  *
101  * @param cls closure
102  * @param tc scheduler context
103  */
104 static void
105 stop_scanner_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
106 {
107   kill_task = GNUNET_SCHEDULER_NO_TASK;
108   GNUNET_FS_directory_scan_abort (ds);
109   ds = NULL;
110   if (namespace != NULL)
111   {
112     GNUNET_FS_namespace_delete (namespace, GNUNET_NO);
113     namespace = NULL;
114   }
115   GNUNET_FS_stop (ctx);
116   ctx = NULL;
117   ret = 1;
118 }
119
120
121 /**
122  * Called by FS client to give information about the progress of an
123  * operation.
124  *
125  * @param cls closure
126  * @param info details about the event, specifying the event type
127  *        and various bits about the event
128  * @return client-context (for the next progress call
129  *         for this operation; should be set to NULL for
130  *         SUSPEND and STOPPED events).  The value returned
131  *         will be passed to future callbacks in the respective
132  *         field in the GNUNET_FS_ProgressInfo struct.
133  */
134 static void *
135 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *info)
136 {
137   char *s;
138
139   switch (info->status)
140   {
141   case GNUNET_FS_STATUS_PUBLISH_START:
142     break;
143   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
144     if (verbose)
145     {
146       s = GNUNET_STRINGS_relative_time_to_string (info->value.publish.eta);
147       FPRINTF (stdout, _("Publishing `%s' at %llu/%llu (%s remaining)\n"),
148                info->value.publish.filename,
149                (unsigned long long) info->value.publish.completed,
150                (unsigned long long) info->value.publish.size, s);
151       GNUNET_free (s);
152     }
153     break;
154   case GNUNET_FS_STATUS_PUBLISH_ERROR:
155     FPRINTF (stderr, _("Error publishing: %s.\n"),
156              info->value.publish.specifics.error.message);
157     if (kill_task != GNUNET_SCHEDULER_NO_TASK)
158     {
159       GNUNET_SCHEDULER_cancel (kill_task);
160       kill_task = GNUNET_SCHEDULER_NO_TASK;
161     }
162     kill_task = GNUNET_SCHEDULER_add_now (&do_stop_task, NULL);
163     break;
164   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
165     FPRINTF (stdout, _("Publishing `%s' done.\n"),
166              info->value.publish.filename);
167     s = GNUNET_FS_uri_to_string (info->value.publish.specifics.
168                                  completed.chk_uri);
169     FPRINTF (stdout, _("URI is `%s'.\n"), s);
170     GNUNET_free (s);
171     if (info->value.publish.pctx == NULL)
172     {
173       if (kill_task != GNUNET_SCHEDULER_NO_TASK)
174       {
175         GNUNET_SCHEDULER_cancel (kill_task);
176         kill_task = GNUNET_SCHEDULER_NO_TASK;
177       }
178       kill_task = GNUNET_SCHEDULER_add_now (&do_stop_task, NULL);
179     }
180     break;
181   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
182     GNUNET_break (NULL == pc);
183     return NULL;
184   case GNUNET_FS_STATUS_UNINDEX_PROGRESS:
185     return NULL;
186   case GNUNET_FS_STATUS_UNINDEX_COMPLETED:
187     FPRINTF (stderr, "%s",  _("Cleanup after abort complete.\n"));
188     return NULL;
189   default:
190     FPRINTF (stderr, _("Unexpected status: %d\n"), info->status);
191     return NULL;
192   }
193   return "";                    /* non-null */
194 }
195
196
197 /**
198  * Print metadata entries (except binary
199  * metadata and the filename).
200  *
201  * @param cls closure
202  * @param plugin_name name of the plugin that generated the meta data
203  * @param type type of the meta data
204  * @param format format of data
205  * @param data_mime_type mime type of data
206  * @param data value of the meta data
207  * @param data_size number of bytes in data
208  * @return always 0
209  */
210 static int
211 meta_printer (void *cls, const char *plugin_name, enum EXTRACTOR_MetaType type,
212               enum EXTRACTOR_MetaFormat format, const char *data_mime_type,
213               const char *data, size_t data_size)
214 {
215   if ((format != EXTRACTOR_METAFORMAT_UTF8) &&
216       (format != EXTRACTOR_METAFORMAT_C_STRING))
217     return 0;
218   if (type == EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME)
219     return 0;
220   FPRINTF (stdout, "\t%s - %s\n", EXTRACTOR_metatype_to_string (type), data);
221   return 0;
222 }
223
224
225 /**
226  * Iterator printing keywords
227  *
228  * @param cls closure
229  * @param keyword the keyword
230  * @param is_mandatory is the keyword mandatory (in a search)
231  * @return GNUNET_OK to continue to iterate, GNUNET_SYSERR to abort
232  */
233 static int
234 keyword_printer (void *cls, const char *keyword, int is_mandatory)
235 {
236   FPRINTF (stdout, "\t%s\n", keyword);
237   return GNUNET_OK;
238 }
239
240
241 /**
242  * Function called on all entries before the publication.  This is
243  * where we perform modifications to the default based on command-line
244  * options.
245  *
246  * @param cls closure
247  * @param fi the entry in the publish-structure
248  * @param length length of the file or directory
249  * @param m metadata for the file or directory (can be modified)
250  * @param uri pointer to the keywords that will be used for this entry (can be modified)
251  * @param bo block options
252  * @param do_index should we index?
253  * @param client_info pointer to client context set upon creation (can be modified)
254  * @return GNUNET_OK to continue, GNUNET_NO to remove
255  *         this entry from the directory, GNUNET_SYSERR
256  *         to abort the iteration
257  */
258 static int
259 publish_inspector (void *cls, struct GNUNET_FS_FileInformation *fi,
260                    uint64_t length, struct GNUNET_CONTAINER_MetaData *m,
261                    struct GNUNET_FS_Uri **uri,
262                    struct GNUNET_FS_BlockOptions *bo, int *do_index,
263                    void **client_info)
264 {
265   char *fn;
266   char *fs;
267   struct GNUNET_FS_Uri *new_uri;
268
269   if (cls == fi)
270     return GNUNET_OK;
271   if (NULL != topKeywords)
272   {
273     if (*uri != NULL)
274     {
275       new_uri = GNUNET_FS_uri_ksk_merge (topKeywords, *uri);
276       GNUNET_FS_uri_destroy (*uri);
277       *uri = new_uri;
278       GNUNET_FS_uri_destroy (topKeywords);
279     }
280     else
281     {
282       *uri = topKeywords;
283     }
284     topKeywords = NULL;
285   }
286   if (NULL != meta)
287   {
288     GNUNET_CONTAINER_meta_data_merge (m, meta);
289     GNUNET_CONTAINER_meta_data_destroy (meta);
290     meta = NULL;
291   }
292   if (!do_disable_creation_time)
293     GNUNET_CONTAINER_meta_data_add_publication_date (m);
294   if (extract_only)
295   {
296     fn = GNUNET_CONTAINER_meta_data_get_by_type (m,
297                                                  EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME);
298     fs = GNUNET_STRINGS_byte_size_fancy (length);
299     FPRINTF (stdout, _("Meta data for file `%s' (%s)\n"), fn, fs);
300     GNUNET_CONTAINER_meta_data_iterate (m, &meta_printer, NULL);
301     FPRINTF (stdout, _("Keywords for file `%s' (%s)\n"), fn, fs);
302     GNUNET_free (fn);
303     GNUNET_free (fs);
304     if (NULL != *uri)
305       GNUNET_FS_uri_ksk_get_keywords (*uri, &keyword_printer, NULL);
306     FPRINTF (stdout, "%s",  "\n");
307   }
308   if (GNUNET_YES == GNUNET_FS_meta_data_test_for_directory (m))
309     GNUNET_FS_file_information_inspect (fi, &publish_inspector, fi);
310   return GNUNET_OK;
311 }
312
313
314 /**
315  * FIXME: docu
316  */
317 static void
318 uri_sks_continuation (void *cls, const struct GNUNET_FS_Uri *ksk_uri,
319                       const char *emsg)
320 {
321   if (emsg != NULL)
322   {
323     FPRINTF (stderr, "%s\n", emsg);
324     ret = 1;
325   }
326   GNUNET_FS_uri_destroy (uri);
327   uri = NULL;
328   GNUNET_FS_stop (ctx);
329   ctx = NULL;
330 }
331
332
333 /**
334  * FIXME: docu
335  */
336 static void
337 uri_ksk_continuation (void *cls, const struct GNUNET_FS_Uri *ksk_uri,
338                       const char *emsg)
339 {
340   struct GNUNET_FS_Namespace *ns;
341
342   if (emsg != NULL)
343   {
344     FPRINTF (stderr, "%s\n", emsg);
345     ret = 1;
346   }
347   if (pseudonym != NULL)
348   {
349     ns = GNUNET_FS_namespace_create (ctx, pseudonym);
350     if (ns == NULL)
351     {
352       FPRINTF (stderr, _("Failed to create namespace `%s'\n"), pseudonym);
353       ret = 1;
354     }
355     else
356     {
357       GNUNET_FS_publish_sks (ctx, ns, this_id, next_id, meta, uri, &bo,
358                              GNUNET_FS_PUBLISH_OPTION_NONE,
359                              &uri_sks_continuation, NULL);
360       GNUNET_assert (GNUNET_OK == GNUNET_FS_namespace_delete (ns, GNUNET_NO));
361       return;
362     }
363   }
364   GNUNET_FS_uri_destroy (uri);
365   uri = NULL;
366   GNUNET_FS_stop (ctx);
367   ctx = NULL;
368 }
369
370
371 /**
372  * FIXME: docu
373  */
374 static struct GNUNET_FS_FileInformation *
375 get_file_information (struct GNUNET_FS_ShareTreeItem *item)
376 {
377   struct GNUNET_FS_FileInformation *fi;
378   struct GNUNET_FS_FileInformation *fic;
379   struct GNUNET_FS_ShareTreeItem *child;
380
381   if (item->is_directory)
382   {
383     GNUNET_CONTAINER_meta_data_delete (item->meta,
384         EXTRACTOR_METATYPE_MIMETYPE, NULL, 0);
385     GNUNET_FS_meta_data_make_directory (item->meta);
386     if (NULL == item->ksk_uri)
387     {
388       const char *mime = GNUNET_FS_DIRECTORY_MIME;
389       item->ksk_uri = GNUNET_FS_uri_ksk_create_from_args (1, &mime);
390     }
391     else
392       GNUNET_FS_uri_ksk_add_keyword (item->ksk_uri, GNUNET_FS_DIRECTORY_MIME,
393         GNUNET_NO);
394     fi = GNUNET_FS_file_information_create_empty_directory (
395         ctx, NULL, item->ksk_uri,
396         item->meta, &bo, item->filename);
397     for (child = item->children_head; child; child = child->next)
398     {
399       fic = get_file_information (child);
400       GNUNET_break (GNUNET_OK == GNUNET_FS_file_information_add (fi, fic));
401     }
402   }
403   else
404   {
405     fi = GNUNET_FS_file_information_create_from_file (
406         ctx, NULL, item->filename,
407         item->ksk_uri, item->meta, !do_insert,
408         &bo);
409   }
410   return fi;
411 }
412
413
414 /**
415  * FIXME: docu
416  */
417 static void
418 directory_trim_complete ()
419 {
420   struct GNUNET_FS_FileInformation *fi;
421
422   fi = get_file_information (directory_scan_result);
423   GNUNET_FS_share_tree_free (directory_scan_result);
424   directory_scan_result = NULL;
425   if (fi == NULL)
426   {
427     FPRINTF (stderr, "%s", _("Could not publish\n"));
428     if (namespace != NULL)
429       GNUNET_FS_namespace_delete (namespace, GNUNET_NO);
430     GNUNET_FS_stop (ctx);
431     ret = 1;
432     return;
433   }
434   GNUNET_FS_file_information_inspect (fi, &publish_inspector, NULL);
435   if (extract_only)
436   {
437     if (namespace != NULL)
438       GNUNET_FS_namespace_delete (namespace, GNUNET_NO);
439     GNUNET_FS_file_information_destroy (fi, NULL, NULL);
440     GNUNET_FS_stop (ctx);
441     if (kill_task != GNUNET_SCHEDULER_NO_TASK)
442     {
443       GNUNET_SCHEDULER_cancel (kill_task);
444       kill_task = GNUNET_SCHEDULER_NO_TASK;
445     }
446     return;
447   }
448   pc = GNUNET_FS_publish_start (ctx, fi, namespace, this_id, next_id,
449                                 (do_simulate) ?
450                                 GNUNET_FS_PUBLISH_OPTION_SIMULATE_ONLY :
451                                 GNUNET_FS_PUBLISH_OPTION_NONE);
452   if (NULL == pc)
453   {
454     FPRINTF (stderr, "%s",  _("Could not start publishing.\n"));
455     GNUNET_FS_stop (ctx);
456     ret = 1;
457     return;
458   }
459 }
460
461
462 /**
463  * Function called by the directory scanner as we build the tree
464  * that we will need to publish later.
465  *
466  * @param cls closure
467  * @param filename which file we are making progress on
468  * @param is_directory GNUNET_YES if this is a directory,
469  *                     GNUNET_NO if this is a file
470  *                     GNUNET_SYSERR if it is neither (or unknown)
471  * @param reason kind of progress we are making
472  */
473 static void
474 directory_scan_cb (void *cls, 
475                    const char *filename, 
476                    int is_directory,
477                    enum GNUNET_FS_DirScannerProgressUpdateReason reason)
478 {
479   switch (reason)
480   {
481   case GNUNET_FS_DIRSCANNER_FILE_START:
482     if (verbose > 1)
483     {
484       if (is_directory)
485         FPRINTF (stdout, _("Scanning directory `%s'.\n"), filename);
486       else
487         FPRINTF (stdout, _("Scanning file `%s'.\n"), filename);      
488     }
489     break;
490   case GNUNET_FS_DIRSCANNER_FILE_IGNORED:
491     FPRINTF (stderr, 
492              _("There was trouble processing file `%s', skipping it.\n"),
493              filename);
494     break;
495   case GNUNET_FS_DIRSCANNER_ALL_COUNTED:
496     if (verbose)
497       FPRINTF (stdout, "%s", _("Preprocessing complete.\n"));      
498     break;
499   case GNUNET_FS_DIRSCANNER_EXTRACT_FINISHED:
500     if (verbose > 2)
501       FPRINTF (stdout, _("Extracting meta data from file `%s' complete.\n"), filename);      
502     break;
503   case GNUNET_FS_DIRSCANNER_FINISHED:
504     if (verbose > 1)
505       FPRINTF (stdout, "%s", _("Meta data extraction has finished.\n"));
506     directory_scan_result = GNUNET_FS_directory_scan_get_result (ds);
507     ds = NULL;
508     GNUNET_FS_share_tree_trim (directory_scan_result);
509     directory_trim_complete ();
510     break;
511   case GNUNET_FS_DIRSCANNER_INTERNAL_ERROR:
512     FPRINTF (stdout, "%s", _("Internal error scanning directory.\n"));
513     if (kill_task != GNUNET_SCHEDULER_NO_TASK)
514     {
515       GNUNET_SCHEDULER_cancel (kill_task);
516       kill_task = GNUNET_SCHEDULER_NO_TASK;
517     }
518     kill_task = GNUNET_SCHEDULER_add_now (&stop_scanner_task, NULL);
519     break;
520   default:
521     GNUNET_assert (0);
522     break;
523   }
524   fflush (stdout);
525 }
526
527
528 /**
529  * Main function that will be run by the scheduler.
530  *
531  * @param cls closure
532  * @param args remaining command-line arguments
533  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
534  * @param c configuration
535  */
536 static void
537 run (void *cls, char *const *args, const char *cfgfile,
538      const struct GNUNET_CONFIGURATION_Handle *c)
539 {
540   char *ex;
541   char *emsg;
542
543   /* check arguments */
544   if ((uri_string != NULL) && (extract_only))
545   {
546     printf (_("Cannot extract metadata from a URI!\n"));
547     ret = -1;
548     return;
549   }
550   if (((uri_string == NULL) || (extract_only)) &&
551       ((args[0] == NULL) || (args[1] != NULL)))
552   {
553     printf (_("You must specify one and only one filename for insertion.\n"));
554     ret = -1;
555     return;
556   }
557   if ((uri_string != NULL) && (args[0] != NULL))
558   {
559     printf (_("You must NOT specify an URI and a filename.\n"));
560     ret = -1;
561     return;
562   }
563   if (pseudonym != NULL)
564   {
565     if (NULL == this_id)
566     {
567       FPRINTF (stderr, _("Option `%s' is required when using option `%s'.\n"),
568                "-t", "-P");
569       ret = -1;
570       return;
571     }
572   }
573   else
574   {                             /* ordinary insertion checks */
575     if (NULL != next_id)
576     {
577       FPRINTF (stderr, _("Option `%s' makes no sense without option `%s'.\n"),
578                "-N", "-P");
579       ret = -1;
580       return;
581     }
582     if (NULL != this_id)
583     {
584       FPRINTF (stderr, _("Option `%s' makes no sense without option `%s'.\n"),
585                "-t", "-P");
586       ret = -1;
587       return;
588     }
589   }
590   cfg = c;
591   ctx =
592       GNUNET_FS_start (cfg, "gnunet-publish", &progress_cb, NULL,
593                        GNUNET_FS_FLAGS_NONE, GNUNET_FS_OPTIONS_END);
594   if (NULL == ctx)
595   {
596     FPRINTF (stderr, _("Could not initialize `%s' subsystem.\n"), "FS");
597     ret = 1;
598     return;
599   }
600   namespace = NULL;
601   if (NULL != pseudonym)
602   {
603     namespace = GNUNET_FS_namespace_create (ctx, pseudonym);
604     if (NULL == namespace)
605     {
606       FPRINTF (stderr, _("Could not create namespace `%s'\n"), pseudonym);
607       GNUNET_FS_stop (ctx);
608       ret = 1;
609       return;
610     }
611   }
612   if (NULL != uri_string)
613   {
614     emsg = NULL;
615     uri = GNUNET_FS_uri_parse (uri_string, &emsg);
616     if (uri == NULL)
617     {
618       FPRINTF (stderr, _("Failed to parse URI: %s\n"), emsg);
619       GNUNET_free (emsg);
620       if (namespace != NULL)
621         GNUNET_FS_namespace_delete (namespace, GNUNET_NO);
622       GNUNET_FS_stop (ctx);
623       ret = 1;
624       return;
625     }
626     GNUNET_FS_publish_ksk (ctx, topKeywords, meta, uri, &bo,
627                            GNUNET_FS_PUBLISH_OPTION_NONE, &uri_ksk_continuation,
628                            NULL);
629     if (namespace != NULL)
630       GNUNET_FS_namespace_delete (namespace, GNUNET_NO);
631     return;
632   }
633   if (GNUNET_OK !=
634       GNUNET_CONFIGURATION_get_value_string (cfg, "FS", "EXTRACTORS", &ex))
635     ex = NULL;
636   if (0 != ACCESS (args[0], R_OK))
637   {
638     FPRINTF (stderr,
639              _("Failed to access `%s': %s\n"),
640              args[0],
641              STRERROR (errno));
642     return;
643   }
644   ds = GNUNET_FS_directory_scan_start (args[0],
645                                        disable_extractor, 
646                                        ex, 
647                                        &directory_scan_cb, NULL);
648   if (NULL == ds)
649   {
650     FPRINTF (stderr,
651              "%s", _("Failed to start meta directory scanner.  Is gnunet-helper-publish-fs installed?\n"));
652     return;
653   }
654   kill_task =
655       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &do_stop_task,
656                                     NULL);
657 }
658
659
660 /**
661  * The main function to publish content to GNUnet.
662  *
663  * @param argc number of arguments from the command line
664  * @param argv command line arguments
665  * @return 0 ok, 1 on error
666  */
667 int
668 main (int argc, char *const *argv)
669 {
670   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
671     {'a', "anonymity", "LEVEL",
672      gettext_noop ("set the desired LEVEL of sender-anonymity"),
673      1, &GNUNET_GETOPT_set_uint, &bo.anonymity_level},
674     {'d', "disable-creation-time", NULL,
675      gettext_noop
676      ("disable adding the creation time to the metadata of the uploaded file"),
677      0, &GNUNET_GETOPT_set_one, &do_disable_creation_time},
678     {'D', "disable-extractor", NULL,
679      gettext_noop ("do not use libextractor to add keywords or metadata"),
680      0, &GNUNET_GETOPT_set_one, &disable_extractor},
681     {'e', "extract", NULL,
682      gettext_noop
683      ("print list of extracted keywords that would be used, but do not perform upload"),
684      0, &GNUNET_GETOPT_set_one, &extract_only},
685     {'k', "key", "KEYWORD",
686      gettext_noop
687      ("add an additional keyword for the top-level file or directory"
688       " (this option can be specified multiple times)"),
689      1, &GNUNET_FS_getopt_set_keywords, &topKeywords},
690     {'m', "meta", "TYPE:VALUE",
691      gettext_noop ("set the meta-data for the given TYPE to the given VALUE"),
692      1, &GNUNET_FS_getopt_set_metadata, &meta},
693     {'n', "noindex", NULL,
694      gettext_noop ("do not index, perform full insertion (stores entire "
695                    "file in encrypted form in GNUnet database)"),
696      0, &GNUNET_GETOPT_set_one, &do_insert},
697     {'N', "next", "ID",
698      gettext_noop
699      ("specify ID of an updated version to be published in the future"
700       " (for namespace insertions only)"),
701      1, &GNUNET_GETOPT_set_string, &next_id},
702     {'p', "priority", "PRIORITY",
703      gettext_noop ("specify the priority of the content"),
704      1, &GNUNET_GETOPT_set_uint, &bo.content_priority},
705     {'P', "pseudonym", "NAME",
706      gettext_noop
707      ("publish the files under the pseudonym NAME (place file into namespace)"),
708      1, &GNUNET_GETOPT_set_string, &pseudonym},
709     {'r', "replication", "LEVEL",
710      gettext_noop ("set the desired replication LEVEL"),
711      1, &GNUNET_GETOPT_set_uint, &bo.replication_level},
712     {'s', "simulate-only", NULL,
713      gettext_noop ("only simulate the process but do not do any "
714                    "actual publishing (useful to compute URIs)"),
715      0, &GNUNET_GETOPT_set_one, &do_simulate},
716     {'t', "this", "ID",
717      gettext_noop ("set the ID of this version of the publication"
718                    " (for namespace insertions only)"),
719      1, &GNUNET_GETOPT_set_string, &this_id},
720     {'u', "uri", "URI",
721      gettext_noop ("URI to be published (can be used instead of passing a "
722                    "file to add keywords to the file with the respective URI)"),
723      1, &GNUNET_GETOPT_set_string, &uri_string},
724     {'V', "verbose", NULL,
725      gettext_noop ("be verbose (print progress information)"),
726      0, &GNUNET_GETOPT_set_one, &verbose},
727     GNUNET_GETOPT_OPTION_END
728   };
729   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
730               "GNUnet publish starts\n");
731   bo.expiration_time =
732       GNUNET_FS_year_to_time (GNUNET_FS_get_current_year () + 2);
733   return (GNUNET_OK ==
734           GNUNET_PROGRAM_run (argc, argv, "gnunet-publish [OPTIONS] FILENAME",
735                               gettext_noop
736                               ("Publish a file or directory on GNUnet"),
737                               options, &run, NULL)) ? ret : 1;
738 }
739
740 /* end of gnunet-publish.c */