indentation
[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 /**
57  * Global handle of the configuration
58  */
59 static const struct GNUNET_CONFIGURATION_Handle *cfg;
60
61 /**
62  * Handle for the request
63  */
64 static struct GNUNET_DHT_FindPeerHandle *find_peer_handle;
65
66 /**
67  * Count of results found
68  */
69 static unsigned int result_count;
70
71 /**
72  * Global status value
73  */
74 static int ret;
75
76 static void
77 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
78 {
79   if (dht_handle != NULL)
80   {
81     GNUNET_DHT_disconnect (dht_handle);
82     dht_handle = NULL;
83   }
84   fprintf (stderr, _("Found %u peers\n"), result_count);
85 }
86
87
88 static void
89 cleanup_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
90 {
91   if (find_peer_handle != NULL)
92   {
93     GNUNET_DHT_find_peer_stop (find_peer_handle);
94     find_peer_handle = NULL;
95   }
96   GNUNET_SCHEDULER_add_now (&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 static void
107 find_peer_processor (void *cls, const struct GNUNET_HELLO_Message *hello)
108 {
109   struct GNUNET_PeerIdentity peer;
110
111   if (GNUNET_OK == GNUNET_HELLO_get_id (hello, &peer))
112   {
113     result_count++;
114     if (verbose)
115       fprintf (stderr, _("Found peer `%s'\n"), GNUNET_i2s (&peer));
116   }
117 }
118
119
120 /**
121  * Main function that will be run by the scheduler.
122  *
123  * @param cls closure
124  * @param args remaining command-line arguments
125  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
126  * @param c configuration
127  */
128 static void
129 run (void *cls,
130      char *const *args,
131      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *c)
132 {
133   struct GNUNET_TIME_Relative timeout;
134   GNUNET_HashCode key;
135
136   cfg = c;
137
138   if (query_key == NULL)
139   {
140     if (verbose)
141       fprintf (stderr, "Must provide key for DHT GET!\n");
142     ret = 1;
143     return;
144   }
145
146   dht_handle = GNUNET_DHT_connect (cfg, 1);
147
148   if (dht_handle == NULL)
149   {
150     if (verbose)
151       fprintf (stderr, "Couldn't connect to DHT service!\n");
152     ret = 1;
153     return;
154   }
155   else if (verbose)
156     fprintf (stderr, "Connected to DHT service!\n");
157
158   GNUNET_CRYPTO_hash (query_key, strlen (query_key), &key);
159
160   timeout =
161       GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, timeout_request);
162   absolute_timeout = GNUNET_TIME_relative_to_absolute (timeout);
163
164   if (verbose)
165     fprintf (stderr, "Issuing FIND PEER request for %s!\n", query_key);
166
167   find_peer_handle = GNUNET_DHT_find_peer_start (dht_handle,
168                                                  timeout,
169                                                  &key,
170                                                  GNUNET_DHT_RO_NONE,
171                                                  &find_peer_processor, NULL);
172   if (NULL == find_peer_handle)
173   {
174     GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
175     return;
176   }
177   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
178                                 (absolute_timeout), &cleanup_task, NULL);
179 }
180
181
182 /**
183  * gnunet-dht-get command line options
184  */
185 static struct GNUNET_GETOPT_CommandLineOption options[] = {
186   {'k', "key", "KEY",
187    gettext_noop ("the query key"),
188    1, &GNUNET_GETOPT_set_string, &query_key},
189   {'T', "timeout", "TIMEOUT",
190    gettext_noop ("how long to execute this query before giving up?"),
191    1, &GNUNET_GETOPT_set_ulong, &timeout_request},
192   {'V', "verbose", NULL,
193    gettext_noop ("be verbose (print progress information)"),
194    0, &GNUNET_GETOPT_set_one, &verbose},
195   GNUNET_GETOPT_OPTION_END
196 };
197
198
199 /**
200  * Entry point for gnunet-dht-get-peer
201  *
202  * @param argc number of arguments from the command line
203  * @param argv command line arguments
204  * @return 0 ok, 1 on error
205  */
206 int
207 main (int argc, char *const *argv)
208 {
209   return (GNUNET_OK ==
210           GNUNET_PROGRAM_run (argc,
211                               argv,
212                               "gnunet-dht-get-peer",
213                               gettext_noop
214                               ("Issue a GET PEER request to the GNUnet DHT, print results."),
215                               options, &run, NULL)) ? ret : 1;
216 }
217
218 /* end of gnunet-dht-get-peer */