-fix
[oweals/gnunet.git] / src / fs / gnunet-download.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2004, 2005, 2006, 2007, 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 fs/gnunet-download.c
22  * @brief downloading for 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 int delete_incomplete;
36
37 static const struct GNUNET_CONFIGURATION_Handle *cfg;
38
39 static struct GNUNET_FS_Handle *ctx;
40
41 static struct GNUNET_FS_DownloadContext *dc;
42
43 static unsigned int anonymity = 1;
44
45 static unsigned int parallelism = 16;
46
47 static unsigned int request_parallelism = 4092;
48
49 static int do_recursive;
50
51 static char *filename;
52
53 static int local_only;
54
55 static void
56 cleanup_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
57 {
58   GNUNET_FS_stop (ctx);
59   ctx = NULL;
60 }
61
62
63 static void
64 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
65 {
66   struct GNUNET_FS_DownloadContext *d;
67
68   if (dc != NULL)
69   {
70     d = dc;
71     dc = NULL;
72     GNUNET_FS_download_stop (d, delete_incomplete);
73   }
74 }
75
76
77 /**
78  * Called by FS client to give information about the progress of an
79  * operation.
80  *
81  * @param cls closure
82  * @param info details about the event, specifying the event type
83  *        and various bits about the event
84  * @return client-context (for the next progress call
85  *         for this operation; should be set to NULL for
86  *         SUSPEND and STOPPED events).  The value returned
87  *         will be passed to future callbacks in the respective
88  *         field in the GNUNET_FS_ProgressInfo struct.
89  */
90 static void *
91 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *info)
92 {
93   char *s;
94   char *t;
95
96   switch (info->status)
97   {
98   case GNUNET_FS_STATUS_DOWNLOAD_START:
99     if (verbose > 1)
100       fprintf (stderr, _("Starting download `%s'.\n"),
101                info->value.download.filename);
102     break;
103   case GNUNET_FS_STATUS_DOWNLOAD_PROGRESS:
104     if (verbose)
105     {
106       s = GNUNET_STRINGS_relative_time_to_string (info->value.download.eta);
107       t = GNUNET_STRINGS_byte_size_fancy (info->value.download.completed *
108                                           1000LL /
109                                           (info->value.download.
110                                            duration.rel_value + 1));
111       fprintf (stdout,
112                _("Downloading `%s' at %llu/%llu (%s remaining, %s/s)\n"),
113                info->value.download.filename,
114                (unsigned long long) info->value.download.completed,
115                (unsigned long long) info->value.download.size, s, t);
116       GNUNET_free (s);
117       GNUNET_free (t);
118     }
119     break;
120   case GNUNET_FS_STATUS_DOWNLOAD_ERROR:
121     fprintf (stderr, _("Error downloading: %s.\n"),
122              info->value.download.specifics.error.message);
123     GNUNET_SCHEDULER_shutdown ();
124     break;
125   case GNUNET_FS_STATUS_DOWNLOAD_COMPLETED:
126     s = GNUNET_STRINGS_byte_size_fancy (info->value.download.completed * 1000 /
127                                         (info->value.download.
128                                          duration.rel_value + 1));
129     fprintf (stdout, _("Downloading `%s' done (%s/s).\n"),
130              info->value.download.filename, s);
131     GNUNET_free (s);
132     if (info->value.download.dc == dc)
133       GNUNET_SCHEDULER_shutdown ();
134     break;
135   case GNUNET_FS_STATUS_DOWNLOAD_STOPPED:
136     if (info->value.download.dc == dc)
137       GNUNET_SCHEDULER_add_continuation (&cleanup_task, NULL,
138                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
139     break;
140   case GNUNET_FS_STATUS_DOWNLOAD_ACTIVE:
141   case GNUNET_FS_STATUS_DOWNLOAD_INACTIVE:
142     break;
143   default:
144     fprintf (stderr, _("Unexpected status: %d\n"), info->status);
145     break;
146   }
147   return NULL;
148 }
149
150
151 /**
152  * Main function that will be run by the scheduler.
153  *
154  * @param cls closure
155  * @param args remaining command-line arguments
156  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
157  * @param c configuration
158  */
159 static void
160 run (void *cls, char *const *args, const char *cfgfile,
161      const struct GNUNET_CONFIGURATION_Handle *c)
162 {
163   struct GNUNET_FS_Uri *uri;
164   char *emsg;
165   enum GNUNET_FS_DownloadOptions options;
166
167   if (NULL == args[0])
168   {
169     fprintf (stderr, _("You need to specify a URI argument.\n"));
170     return;
171   }
172   uri = GNUNET_FS_uri_parse (args[0], &emsg);
173   if (NULL == uri)
174   {
175     fprintf (stderr, _("Failed to parse URI: %s\n"), emsg);
176     GNUNET_free (emsg);
177     ret = 1;
178     return;
179   }
180   if ((!GNUNET_FS_uri_test_chk (uri)) && (!GNUNET_FS_uri_test_loc (uri)))
181   {
182     fprintf (stderr, _("Only CHK or LOC URIs supported.\n"));
183     ret = 1;
184     GNUNET_FS_uri_destroy (uri);
185     return;
186   }
187   if (NULL == filename)
188   {
189     fprintf (stderr, _("Target filename must be specified.\n"));
190     ret = 1;
191     GNUNET_FS_uri_destroy (uri);
192     return;
193   }
194   cfg = c;
195   ctx =
196       GNUNET_FS_start (cfg, "gnunet-download", &progress_cb, NULL,
197                        GNUNET_FS_FLAGS_NONE,
198                        GNUNET_FS_OPTIONS_DOWNLOAD_PARALLELISM, parallelism,
199                        GNUNET_FS_OPTIONS_REQUEST_PARALLELISM,
200                        request_parallelism, GNUNET_FS_OPTIONS_END);
201   if (NULL == ctx)
202   {
203     fprintf (stderr, _("Could not initialize `%s' subsystem.\n"), "FS");
204     GNUNET_FS_uri_destroy (uri);
205     ret = 1;
206     return;
207   }
208   options = GNUNET_FS_DOWNLOAD_OPTION_NONE;
209   if (do_recursive)
210     options |= GNUNET_FS_DOWNLOAD_OPTION_RECURSIVE;
211   if (local_only)
212     options |= GNUNET_FS_DOWNLOAD_OPTION_LOOPBACK_ONLY;
213   dc = GNUNET_FS_download_start (ctx, uri, NULL, filename, NULL, 0,
214                                  GNUNET_FS_uri_chk_get_file_size (uri),
215                                  anonymity, options, NULL, NULL);
216   GNUNET_FS_uri_destroy (uri);
217   if (dc == NULL)
218   {
219     GNUNET_FS_stop (ctx);
220     ctx = NULL;
221     return;
222   }
223   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
224                                 NULL);
225 }
226
227
228 /**
229  * The main function to download GNUnet.
230  *
231  * @param argc number of arguments from the command line
232  * @param argv command line arguments
233  * @return 0 ok, 1 on error
234  */
235 int
236 main (int argc, char *const *argv)
237 {
238   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
239     {'a', "anonymity", "LEVEL",
240      gettext_noop ("set the desired LEVEL of receiver-anonymity"),
241      1, &GNUNET_GETOPT_set_uint, &anonymity},
242     {'D', "delete-incomplete", NULL,
243      gettext_noop ("delete incomplete downloads (when aborted with CTRL-C)"),
244      0, &GNUNET_GETOPT_set_one, &delete_incomplete},
245     {'n', "no-network", NULL,
246      gettext_noop ("only search the local peer (no P2P network search)"),
247      1, &GNUNET_GETOPT_set_uint, &local_only},
248     {'o', "output", "FILENAME",
249      gettext_noop ("write the file to FILENAME"),
250      1, &GNUNET_GETOPT_set_string, &filename},
251     {'p', "parallelism", "DOWNLOADS",
252      gettext_noop
253      ("set the maximum number of parallel downloads that is allowed"),
254      1, &GNUNET_GETOPT_set_uint, &parallelism},
255     {'r', "request-parallelism", "REQUESTS",
256      gettext_noop
257      ("set the maximum number of parallel requests for blocks that is allowed"),
258      1, &GNUNET_GETOPT_set_uint, &request_parallelism},
259     {'R', "recursive", NULL,
260      gettext_noop ("download a GNUnet directory recursively"),
261      0, &GNUNET_GETOPT_set_one, &do_recursive},
262     {'V', "verbose", NULL,
263      gettext_noop ("be verbose (print progress information)"),
264      0, &GNUNET_GETOPT_increment_value, &verbose},
265     GNUNET_GETOPT_OPTION_END
266   };
267   return (GNUNET_OK ==
268           GNUNET_PROGRAM_run (argc, argv, "gnunet-download [OPTIONS] URI",
269                               gettext_noop
270                               ("Download files from GNUnet using a GNUnet CHK or LOC URI (gnunet://fs/chk/...)"),
271                               options, &run, NULL)) ? ret : 1;
272 }
273
274 /* end of gnunet-download.c */