Refactoring gnunet time
[oweals/gnunet.git] / src / dht / gnunet-dht-get.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 dht/gnunet-dht-get.c
22  * @brief search for data in DHT
23  * @author Christian Grothoff
24  * @author Nathan Evans
25  */
26 #include "platform.h"
27 #include "gnunet_dht_service.h"
28
29 /**
30  * The type of the query
31  */
32 static unsigned int query_type;
33
34 /**
35  * The key for the query
36  */
37 static char *query_key;
38
39 /**
40  * User supplied timeout value (in seconds)
41  */
42 static unsigned long long timeout_request = 5;
43
44 /**
45  * When this request should really die
46  */
47 struct GNUNET_TIME_Absolute absolute_timeout;
48
49 /**
50  * Be verbose
51  */
52 static int verbose;
53
54 /**
55  * Handle to the DHT
56  */
57 static struct GNUNET_DHT_Handle *dht_handle;
58
59 /**
60  * Global handle of the scheduler
61  */
62 static struct GNUNET_SCHEDULER_Handle *sched;
63
64 /**
65  * Global handle of the configuration
66  */
67 static const struct GNUNET_CONFIGURATION_Handle *cfg;
68
69 /**
70  * Handle for the get request
71  */
72 static struct GNUNET_DHT_GetHandle *get_handle;
73
74 /**
75  * Count of results found
76  */
77 static unsigned int result_count;
78
79 /**
80  * Global status value
81  */
82 static int ret;
83
84
85 static void
86 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
87 {
88   if (dht_handle != NULL)
89     {
90       GNUNET_DHT_disconnect (dht_handle);
91       dht_handle = NULL;
92     }
93 }
94
95
96 static void
97 cleanup_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
98 {
99   if (get_handle != NULL)
100     {
101       GNUNET_DHT_get_stop (get_handle);
102       get_handle = NULL;
103     }
104   GNUNET_SCHEDULER_add_now (sched, &shutdown_task, NULL);
105 }
106
107
108 /**
109  * Iterator called on each result obtained for a DHT
110  * operation that expects a reply
111  *
112  * @param cls closure
113  * @param exp when will this value expire
114  * @param key key of the result
115  * @param get_path NULL-terminated array of pointers
116  *                 to the peers on reverse GET path (or NULL if not recorded)
117  * @param put_path NULL-terminated array of pointers
118  *                 to the peers on the PUT path (or NULL if not recorded)
119  * @param type type of the result
120  * @param size number of bytes in data
121  * @param data pointer to the result data
122  */
123 void
124 get_result_iterator (void *cls,
125                      struct GNUNET_TIME_Absolute exp,
126                      const GNUNET_HashCode * key,
127                      const struct GNUNET_PeerIdentity * const *get_path,
128                      const struct GNUNET_PeerIdentity * const *put_path,
129                      enum GNUNET_BLOCK_Type type,
130                      size_t size, 
131                      const void *data)
132 {
133   fprintf (stdout, "Result %d, type %d:\n%.*s\n",
134            result_count, type, 
135            (unsigned int) size,
136            (char *) data);
137   result_count++;
138 }
139
140
141 /**
142  * Main function that will be run by the scheduler.
143  *
144  * @param cls closure
145  * @param s the scheduler to use
146  * @param args remaining command-line arguments
147  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
148  * @param c configuration
149  */
150 static void
151 run (void *cls,
152      struct GNUNET_SCHEDULER_Handle *s,
153      char *const *args,
154      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *c)
155 {
156   struct GNUNET_TIME_Relative timeout;
157   GNUNET_HashCode key;
158   sched = s;
159   cfg = c;
160
161   if (query_key == NULL)
162     {
163       if (verbose)
164         fprintf (stderr, "Must provide key for DHT GET!\n");
165       ret = 1;
166       return;
167     }
168
169   dht_handle = GNUNET_DHT_connect (sched, cfg, 1);
170
171   if (dht_handle == NULL)
172     {
173       if (verbose)
174         fprintf (stderr, "Couldn't connect to DHT service!\n");
175       ret = 1;
176       return;
177     }
178   else if (verbose)
179     fprintf (stderr, "Connected to DHT service!\n");
180
181   GNUNET_CRYPTO_hash (query_key, strlen (query_key), &key);
182
183   timeout =
184     GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, timeout_request);
185   absolute_timeout = GNUNET_TIME_relative_to_absolute (timeout);
186
187   if (verbose)
188     fprintf (stderr, "Issuing GET request for %s!\n", query_key);
189   GNUNET_SCHEDULER_add_delayed (sched,
190                                 GNUNET_TIME_absolute_get_remaining
191                                 (absolute_timeout), &cleanup_task, NULL);
192   get_handle = GNUNET_DHT_get_start (dht_handle,
193                                      timeout, 
194                                      query_type, 
195                                      &key,
196                                      GNUNET_DHT_RO_NONE,
197                                      NULL, 0,
198                                      NULL, 0,
199                                      &get_result_iterator, NULL);
200
201 }
202
203
204 /**
205  * gnunet-dht-get command line options
206  */
207 static struct GNUNET_GETOPT_CommandLineOption options[] = {
208   {'k', "key", "KEY",
209    gettext_noop ("the query key"),
210    1, &GNUNET_GETOPT_set_string, &query_key},
211   {'t', "type", "TYPE",
212    gettext_noop ("the type of data to look for"),
213    1, &GNUNET_GETOPT_set_uint, &query_type},
214   {'T', "timeout", "TIMEOUT",
215    gettext_noop ("how long to execute this query before giving up?"),
216    1, &GNUNET_GETOPT_set_ulong, &timeout_request},
217   {'V', "verbose", NULL,
218    gettext_noop ("be verbose (print progress information)"),
219    0, &GNUNET_GETOPT_set_one, &verbose},
220   GNUNET_GETOPT_OPTION_END
221 };
222
223
224 /**
225  * Entry point for gnunet-dht-get
226  *
227  * @param argc number of arguments from the command line
228  * @param argv command line arguments
229  * @return 0 ok, 1 on error
230  */
231 int
232 main (int argc, char *const *argv)
233 {
234   return (GNUNET_OK ==
235           GNUNET_PROGRAM_run (argc,
236                               argv,
237                               "gnunet-dht-get",
238                               gettext_noop
239                               ("Issue a GET request to the GNUnet DHT, prints results."),
240                               options, &run, NULL)) ? ret : 1;
241 }
242
243 /* end of gnunet-dht-get.c */