curl: fix linking against libgnurl/libcurl
[oweals/gnunet.git] / src / rps / gnunet-rps.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C)
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file rps/gnunet-rps.c
23  * @brief random peer sampling
24  * @author Julius Bünger
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_rps_service.h"
29
30 static int ret;
31
32 /**
33  * RPS handle
34  */
35 static struct GNUNET_RPS_Handle *rps_handle;
36
37 /**
38  * Request handle
39  */
40 static struct GNUNET_RPS_Request_Handle *req_handle;
41
42 /**
43  * PeerID (Option --seed)
44  */
45 static struct GNUNET_PeerIdentity *peer_id;
46
47
48 /**
49  * Set an option of type 'struct GNUNET_PeerIdentity *' from the command line.
50  * A pointer to this function should be passed as part of the
51  * 'struct GNUNET_GETOPT_CommandLineOption' array to initialize options
52  * of this type.  It should be followed by a pointer to a value of
53  * type 'struct GNUNET_PeerIdentity *', which will be allocated with the requested string.
54  *
55  * @param ctx command line processing context
56  * @param scls additional closure (will point to the 'char *',
57  *             which will be allocated)
58  * @param option name of the option
59  * @param value actual value of the option (a PeerID)
60  * @return #GNUNET_OK
61  */
62 static int
63 GNUNET_GETOPT_set_peerid (struct GNUNET_GETOPT_CommandLineProcessorContext *ctx,
64                           void *scls, const char *option, const char *value)
65 {
66   struct GNUNET_PeerIdentity **val = (struct GNUNET_PeerIdentity **) scls;
67
68   GNUNET_assert (NULL != value);
69   GNUNET_free_non_null (*val);
70   /* Not quite sure whether that is a sane way */
71   *val = GNUNET_new (struct GNUNET_PeerIdentity);
72   if (GNUNET_OK !=
73       GNUNET_CRYPTO_eddsa_public_key_from_string (value,
74                                                   strlen (value),
75                                                   &((*val)->public_key)))
76   {
77     FPRINTF (stderr, "Invalid peer ID %s\n", value);
78     return GNUNET_SYSERR;
79   }
80   return GNUNET_OK;
81 }
82
83
84 /**
85  * Task run when user presses CTRL-C to abort.
86  * Cancels pending request and disconnects.
87  *
88  * @param cls NULL
89  */
90 static void
91 do_shutdown (void *cls)
92 {
93   if (NULL != req_handle)
94     GNUNET_RPS_request_cancel (req_handle);
95   GNUNET_RPS_disconnect (rps_handle);
96 }
97
98
99 /**
100  * Callback called on receipt of reply.
101  * Prints replied PeerIDs.
102  *
103  * @param cls closure
104  * @param n number of peers
105  * @param recv_peers the received peers
106  */
107 static void
108 reply_handle (void *cls,
109               uint64_t n,
110               const struct GNUNET_PeerIdentity *recv_peers)
111 {
112   uint64_t i;
113
114   req_handle = NULL;
115   for (i = 0; i < n; i++)
116   {
117     FPRINTF (stdout, "%s\n",
118         GNUNET_i2s_full (&recv_peers[i]));
119   }
120   ret = 0;
121
122   GNUNET_SCHEDULER_shutdown ();
123 }
124
125
126 /**
127  * Main function that will be run by the scheduler.
128  *
129  * @param cls closure
130  * @param args remaining command-line arguments
131  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
132  * @param cfg configuration
133  */
134 static void
135 run (void *cls,
136      char *const *args,
137      const char *cfgfile,
138      const struct GNUNET_CONFIGURATION_Handle *cfg)
139 {
140   static uint64_t num_peers;
141
142   rps_handle = GNUNET_RPS_connect (cfg);
143
144   if (NULL == peer_id)
145   { /* Request n PeerIDs */
146     /* If number was specified use it, else request single peer. */
147     num_peers = (NULL == args[0]) ? 1 : atoi (args[0]);
148     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
149         "Requesting %u PeerIDs\n", num_peers);
150     req_handle = GNUNET_RPS_request_peers (rps_handle, num_peers, reply_handle, NULL);
151     GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL);
152   }
153   else
154   { /* Seed PeerID */
155     GNUNET_RPS_seed_ids (rps_handle, 1, peer_id);
156     FPRINTF (stdout, "Seeded PeerID %s\n", GNUNET_i2s_full (peer_id));
157     ret = 0;
158     GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
159   }
160 }
161
162 /**
163  * The main function to rps.
164  *
165  * @param argc number of arguments from the command line
166  * @param argv command line arguments
167  * @return 0 ok, 1 on error
168  */
169 int
170 main (int argc, char *const *argv)
171 {
172   const char helpstr[] =
173     "Get random GNUnet peers. If none is specified a single is requested.";
174   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
175     {'s', "seed", "PEER_ID",
176       gettext_noop ("Seed a PeerID"),
177       GNUNET_YES, &GNUNET_GETOPT_set_peerid, &peer_id},
178     GNUNET_GETOPT_OPTION_END
179   };
180   return (GNUNET_OK ==
181           GNUNET_PROGRAM_run (argc,
182                               argv,
183                               "gnunet-rps [NUMBER_OF_PEERS]",
184                               gettext_noop
185                               (helpstr),
186                               options, &run, NULL)) ? ret : 1;
187 }
188
189 /* end of gnunet-rps.c */