dead
[oweals/gnunet.git] / src / dht / gnunet-dht-get-peer.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-peer.c
22  * @brief search for peers close to key using the DHT
23  * @author Christian Grothoff
24  * @author Nathan Evans
25  */
26 #include "platform.h"
27 #include "gnunet_dht_service.h"
28 #include "gnunet_hello_lib.h"
29
30 /**
31  * The key for the query
32  */
33 static char *query_key;
34
35 /**
36  * User supplied timeout value (in seconds)
37  */
38 static unsigned long long timeout_request = 5;
39
40 /**
41  * When this request should really die
42  */
43 struct GNUNET_TIME_Absolute absolute_timeout;
44
45 /**
46  * Be verbose
47  */
48 static int verbose;
49
50 /**
51  * Handle to the DHT
52  */
53 static struct GNUNET_DHT_Handle *dht_handle;
54
55 /**
56  * Global handle of the scheduler
57  */
58 static struct GNUNET_SCHEDULER_Handle *sched;
59
60 /**
61  * Global handle of the configuration
62  */
63 static const struct GNUNET_CONFIGURATION_Handle *cfg;
64
65 /**
66  * Handle for the request
67  */
68 static struct GNUNET_DHT_FindPeerHandle *find_peer_handle;
69
70 /**
71  * Count of results found
72  */
73 static unsigned int result_count;
74
75 /**
76  * Global status value
77  */
78 static int ret;
79
80 static void
81 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
82 {
83
84   if (dht_handle != NULL)
85     GNUNET_DHT_disconnect (dht_handle);
86
87   dht_handle = NULL;
88 }
89
90 static void
91 cleanup_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
92 {
93   if (find_peer_handle != NULL)
94     GNUNET_DHT_find_peer_stop (find_peer_handle, &shutdown_task, NULL);
95   else
96     GNUNET_SCHEDULER_add_now (sched, &shutdown_task, NULL);
97 }
98
99 /**
100  * Iterator called on each result obtained from a find peer
101  * operation
102  *
103  * @param cls closure (NULL)
104  * @param hello the response message, a HELLO
105  */
106 void find_peer_processor (void *cls,
107                           const struct GNUNET_HELLO_Message *hello)
108 {
109   struct GNUNET_PeerIdentity peer;
110   if (GNUNET_OK == GNUNET_HELLO_get_id(hello, &peer))
111     {
112       result_count++;
113       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
114                   "test_find_peer_processor called (peer `%s'), total results %d!\n", GNUNET_i2s(&peer), result_count);
115     }
116 }
117
118
119 /**
120  * Signature of the main function of a task.
121  *
122  * @param cls closure
123  * @param tc context information (why was this task triggered now)
124  */
125 void
126 message_sent_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
127 {
128   if (tc->reason == GNUNET_SCHEDULER_REASON_TIMEOUT)
129     {
130       if (verbose)
131         fprintf (stderr,
132                  "Failed to send FIND PEER request to service, quitting.\n");
133       ret = 1;
134       GNUNET_SCHEDULER_add_now (sched, &shutdown_task, NULL);
135     }
136   else
137     {
138       if (verbose)
139         fprintf (stderr, "FIND PEER request sent, awaiting results!\n");
140       GNUNET_SCHEDULER_add_delayed (sched,
141                                     GNUNET_TIME_absolute_get_remaining
142                                     (absolute_timeout), &cleanup_task, NULL);
143     }
144 }
145
146 /**
147  * Main function that will be run by the scheduler.
148  *
149  * @param cls closure
150  * @param s the scheduler to use
151  * @param args remaining command-line arguments
152  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
153  * @param c configuration
154  */
155 static void
156 run (void *cls,
157      struct GNUNET_SCHEDULER_Handle *s,
158      char *const *args,
159      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *c)
160 {
161   struct GNUNET_TIME_Relative timeout;
162   GNUNET_HashCode key;
163   sched = s;
164   cfg = c;
165
166   if (query_key == NULL)
167     {
168       if (verbose)
169         fprintf (stderr, "Must provide key for DHT GET!\n");
170       ret = 1;
171       return;
172     }
173
174   dht_handle = GNUNET_DHT_connect (sched, cfg, 1);
175
176   if (dht_handle == NULL)
177     {
178       if (verbose)
179         fprintf (stderr, "Couldn't connect to DHT service!\n");
180       ret = 1;
181       return;
182     }
183   else if (verbose)
184     fprintf (stderr, "Connected to DHT service!\n");
185
186   GNUNET_CRYPTO_hash (query_key, strlen (query_key), &key);
187
188   timeout =
189     GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, timeout_request);
190   absolute_timeout = GNUNET_TIME_relative_to_absolute (timeout);
191
192   if (verbose)
193     fprintf (stderr, "Issuing FIND PEER request for %s!\n", query_key);
194
195   find_peer_handle = GNUNET_DHT_find_peer_start (dht_handle,
196                                                  timeout,
197                                                  0,
198                                                  &key,
199                                                  &find_peer_processor,
200                                                  NULL,
201                                                  &message_sent_cont,
202                                                  NULL);
203
204 }
205
206
207 /**
208  * gnunet-dht-get command line options
209  */
210 static struct GNUNET_GETOPT_CommandLineOption options[] = {
211   {'k', "key", "KEY",
212    gettext_noop ("the query key"),
213    1, &GNUNET_GETOPT_set_string, &query_key},
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-peer
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 }