- distribute peers equally among island nodes on SuperMUC
[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_PeerIdentity local_id;
34
35 static struct GNUNET_HashCode app_id;
36 static struct GNUNET_SET_Handle *set1;
37 static struct GNUNET_SET_Handle *set2;
38 static struct GNUNET_SET_ListenHandle *listen_handle;
39
40
41 static void
42 listen_cb (void *cls,
43            const struct GNUNET_PeerIdentity *other_peer,
44            const struct GNUNET_MessageHeader *context_msg,
45            struct GNUNET_SET_Request *request)
46 {
47   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "listen cb called\n");
48 }
49
50 static void
51 result_cb (void *cls, struct GNUNET_SET_Element *element,
52            enum GNUNET_SET_Status status)
53 {
54   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "got result\n");
55 }
56
57
58 /**
59  * Main function that will be run.
60  *
61  * @param cls closure
62  * @param args remaining command-line arguments
63  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
64  * @param cfg configuration
65  */
66 static void
67 run (void *cls, char *const *args,
68      const char *cfgfile,
69      const struct GNUNET_CONFIGURATION_Handle *cfg)
70 {
71   static const char* app_str = "gnunet-set";
72   
73   GNUNET_CRYPTO_hash (app_str, strlen (app_str), &app_id);
74
75   GNUNET_CRYPTO_get_host_identity (cfg, &local_id);
76
77   set1 = GNUNET_SET_create (cfg, GNUNET_SET_OPERATION_UNION);
78   set2 = GNUNET_SET_create (cfg, GNUNET_SET_OPERATION_UNION);
79   listen_handle = GNUNET_SET_listen (cfg, GNUNET_SET_OPERATION_UNION,
80                                      &app_id, listen_cb, NULL);
81
82   GNUNET_SET_evaluate (set1, &local_id, &app_id, NULL, 42,
83                        GNUNET_TIME_UNIT_FOREVER_REL, GNUNET_SET_RESULT_ADDED,
84                        result_cb, NULL);
85 }
86
87
88
89 int
90 main (int argc, char **argv)
91 {
92    static const struct GNUNET_GETOPT_CommandLineOption options[] = {
93       GNUNET_GETOPT_OPTION_END
94   };
95   GNUNET_PROGRAM_run2 (argc, argv, "gnunet-set",
96                       "help",
97                       options, &run, NULL, GNUNET_NO);
98   return 0;
99 }
100