-comments
[oweals/gnunet.git] / src / set / gnunet-set.c
1 /*
2       This file is part of GNUnet
3       (C) 2012 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 2, 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 /**
22  * @file set/gnunet-set.c
23  * @brief profiling tool for the set service
24  * @author Florian Dold
25  */
26 #include "platform.h"
27 #include "gnunet_common.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_testbed_service.h"
30 #include "gnunet_set_service.h"
31
32
33 static struct GNUNET_HashCode app_id;
34 static struct GNUNET_SET_Handle *set1;
35 static struct GNUNET_SET_Handle *set2;
36 static struct GNUNET_SET_ListenHandle *listen_handle;
37
38
39 static void
40 listen_cb (void *cls,
41            const struct GNUNET_PeerIdentity *other_peer,
42            const struct GNUNET_MessageHeader *context_msg,
43            struct GNUNET_SET_Request *request)
44 {
45   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "listen cb called\n");
46 }
47
48
49 /**
50  * Main function that will be run.
51  *
52  * @param cls closure
53  * @param args remaining command-line arguments
54  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
55  * @param cfg configuration
56  */
57 static void
58 run (void *cls, char *const *args,
59      const char *cfgfile,
60      const struct GNUNET_CONFIGURATION_Handle *cfg)
61 {
62   static const char* app_str = "gnunet-set";
63   GNUNET_CRYPTO_hash (app_str, strlen (app_str), &app_id);
64
65   set1 = GNUNET_SET_create (cfg, GNUNET_SET_OPERATION_UNION);
66   set2 = GNUNET_SET_create (cfg, GNUNET_SET_OPERATION_UNION);
67   listen_handle = GNUNET_SET_listen (cfg, GNUNET_SET_OPERATION_UNION, &app_id,
68                                      listen_cb, NULL);
69 }
70
71
72
73 int
74 main (int argc, char **argv)
75 {
76    static const struct GNUNET_GETOPT_CommandLineOption options[] = {
77       GNUNET_GETOPT_OPTION_END
78   };
79   GNUNET_PROGRAM_run2 (argc, argv, "gnunet-set",
80                       "help",
81                       options, &run, NULL, GNUNET_NO);
82   return 0;
83 }
84