-doxygen fixes
[oweals/gnunet.git] / src / identity / gnunet-identity.c
1 /*
2      This file is part of GNUnet.
3      (C) 2013 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 identity/gnunet-identity.c
22  * @brief IDENTITY management command line tool
23  * @author Christian Grothoff
24  *
25  * Todo:
26  * - add options to get/set default egos
27  * - print short hashes of egos when printing
28  */
29 #include "platform.h"
30 #include "gnunet_util_lib.h"
31 #include "gnunet_identity_service.h"
32
33 /**
34  * Handle to IDENTITY service.
35  */
36 static struct GNUNET_IDENTITY_Handle *sh;
37
38 /**
39  * Was "list" specified?
40  */
41 static int list;
42
43 /**
44  * Was "monitor" specified?
45  */
46 static int monitor;
47
48 /**
49  * -C option
50  */
51 static char *create_ego;
52
53 /**
54  * -D option
55  */
56 static char *delete_ego;
57
58 /**
59  * Handle for create operation.
60  */
61 static struct GNUNET_IDENTITY_Operation *create_op;
62
63 /**
64  * Handle for delete operation.
65  */
66 static struct GNUNET_IDENTITY_Operation *delete_op;
67
68
69 /**
70  * Task run on shutdown.
71  *
72  * @param cls NULL
73  * @param tc unused
74  */
75 static void
76 shutdown_task (void *cls,
77                const struct GNUNET_SCHEDULER_TaskContext *tc)
78 {
79   GNUNET_IDENTITY_disconnect (sh);
80   sh = NULL;
81 }
82
83
84
85 /**
86  * Test if we are finished yet.
87  */
88 static void
89 test_finished ()
90 {
91   if ( (NULL == create_op) &&
92        (NULL == delete_op) &&
93        (! list) &&
94        (! monitor) )  
95     GNUNET_SCHEDULER_shutdown ();
96 }
97
98
99 /**
100  * Deletion operation finished.
101  *
102  * @param cls pointer to operation handle
103  * @param emsg NULL on success, otherwise an error message
104  */
105 static void
106 delete_finished (void *cls,
107                  const char *emsg)
108 {
109   struct GNUNET_IDENTITY_Operation **op = cls;
110
111   *op = NULL;
112   if (NULL != emsg)
113     fprintf (stderr,
114              "%s\n",
115              gettext (emsg));
116   test_finished ();
117 }
118
119
120 /**
121  * Creation operation finished.
122  *
123  * @param cls pointer to operation handle
124  * @param emsg error message, NULL on success
125  */
126 static void
127 create_finished (void *cls,
128                  const char *emsg)
129 {
130   struct GNUNET_IDENTITY_Operation **op = cls;
131
132   *op = NULL;
133   if (NULL != emsg)
134     fprintf (stderr,
135              _("Failed to create ego: %s\n"),
136              emsg);
137   test_finished ();
138 }
139
140
141 /**
142  * If listing is enabled, prints information about the egos.
143  *
144  * This function is initially called for all egos and then again
145  * whenever a ego's identifier changes or if it is deleted.  At the
146  * end of the initial pass over all egos, the function is once called
147  * with 'NULL' for 'ego'. That does NOT mean that the callback won't
148  * be invoked in the future or that there was an error.
149  *
150  * When used with 'GNUNET_IDENTITY_create' or 'GNUNET_IDENTITY_get',
151  * this function is only called ONCE, and 'NULL' being passed in
152  * 'ego' does indicate an error (i.e. name is taken or no default
153  * value is known).  If 'ego' is non-NULL and if '*ctx'
154  * is set in those callbacks, the value WILL be passed to a subsequent
155  * call to the identity callback of 'GNUNET_IDENTITY_connect' (if 
156  * that one was not NULL).
157  *
158  * When an identity is renamed, this function is called with the
159  * (known) ego but the NEW identifier.  
160  *
161  * When an identity is deleted, this function is called with the
162  * (known) ego and "NULL" for the 'identifier'.  In this case,
163  * the 'ego' is henceforth invalid (and the 'ctx' should also be
164  * cleaned up).
165  *
166  * @param cls closure
167  * @param ego ego handle
168  * @param ctx context for application to store data for this ego
169  *                 (during the lifetime of this process, initially NULL)
170  * @param identifier identifier assigned by the user for this ego,
171  *                   NULL if the user just deleted the ego and it
172  *                   must thus no longer be used
173 */
174 static void
175 print_ego (void *cls,
176            struct GNUNET_IDENTITY_Ego *ego,
177            void **ctx,
178            const char *identifier)
179 {  
180
181   if (! (list | monitor))
182     return;
183   if ( (NULL == ego) && (! monitor) )
184   {
185     GNUNET_SCHEDULER_shutdown ();
186     return;
187   }
188   fprintf (stderr, "%s\n", identifier);
189 }
190
191
192 /**
193  * Main function that will be run by the scheduler.
194  *
195  * @param cls closure
196  * @param args remaining command-line arguments
197  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
198  * @param cfg configuration
199  */
200 static void
201 run (void *cls, char *const *args, const char *cfgfile,
202      const struct GNUNET_CONFIGURATION_Handle *cfg)
203 {
204   sh = GNUNET_IDENTITY_connect (cfg, &print_ego, NULL);
205   if (NULL != delete_ego)
206     delete_op = GNUNET_IDENTITY_delete (sh,
207                                         delete_ego,
208                                         &delete_finished,
209                                         &delete_op);
210   if (NULL != create_ego)
211     create_op = GNUNET_IDENTITY_create (sh,
212                                         create_ego,
213                                         &create_finished,
214                                         &create_op);
215   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
216                                 &shutdown_task, NULL);
217   test_finished ();
218 }
219
220
221 /**
222  * The main function.
223  *
224  * @param argc number of arguments from the command line
225  * @param argv command line arguments
226  * @return 0 ok, 1 on error
227  */
228 int
229 main (int argc, char *const *argv)
230 {
231   int res;
232
233   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
234     {'C', "create", "NAME",
235      gettext_noop ("create ego NAME"),
236      1, &GNUNET_GETOPT_set_string, &create_ego},
237     {'D', "delete", "NAME",
238      gettext_noop ("delete ego NAME "),
239      1, &GNUNET_GETOPT_set_string, &delete_ego},
240     {'L', "list", NULL,
241      gettext_noop ("list all egos"),
242      0, &GNUNET_GETOPT_set_one, &list},
243     {'m', "monitor", NULL,
244      gettext_noop ("run in monitor mode egos"),
245      0, &GNUNET_GETOPT_set_one, &monitor},
246     GNUNET_GETOPT_OPTION_END
247   };
248
249   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
250     return 2;
251
252   res = GNUNET_PROGRAM_run (argc, argv, "gnunet-identity",
253                             gettext_noop ("Maintain egos"), 
254                             options, &run,
255                             NULL);
256   GNUNET_free ((void *) argv);
257
258   if (GNUNET_OK != res)
259     return 1;
260   return 0;
261 }
262
263 /* end of gnunet-identity.c */