testcase to connect daemons in a clique
[oweals/gnunet.git] / src / experimentation / gnunet-daemon-experimentation.c
1 /*
2      This file is part of GNUnet.
3      (C) 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 /**
22  * @file experimentation/gnunet-daemon-experimentation.c
23  * @brief experimentation daemon
24  * @author Christian Grothoff
25  * @author Matthias Wachs
26  */
27 #include "platform.h"
28 #include "gnunet_getopt_lib.h"
29 #include "gnunet_program_lib.h"
30 #include "gnunet_core_service.h"
31
32 static struct GNUNET_CORE_Handle *ch;
33
34
35 /**
36  * Task run during shutdown.
37  *
38  * @param cls unused
39  * @param tc unused
40  */
41 static void
42 cleanup_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
43 {
44   GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Experimentation daemon shutting down ...\n"));
45   if (NULL != ch)
46   {
47                 GNUNET_CORE_disconnect (ch);
48                 ch = NULL;
49   }
50
51 }
52
53 /**
54  * Method called whenever a given peer connects.
55  *
56  * @param cls closure
57  * @param peer peer identity this notification is about
58  */
59 void core_connect_handler (void *cls,
60                            const struct GNUNET_PeerIdentity * peer)
61 {
62         GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Connected to peer %s\n"),
63                         GNUNET_i2s (peer));
64         /* Send request */
65
66         /* TBD */
67 }
68
69
70 /**
71  * Method called whenever a given peer disconnects.
72  *
73  * @param cls closure
74  * @param peer peer identity this notification is about
75  */
76 void core_disconnect_handler (void *cls,
77                            const struct GNUNET_PeerIdentity * peer)
78 {
79         GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Disconnected from peer %s\n"),
80                         GNUNET_i2s (peer));
81
82 }
83
84 /**
85  * The main function for the experimentation daemon.
86  *
87  * @param argc number of arguments from the command line
88  * @param argv command line arguments
89  */
90 static void
91 run (void *cls, char *const *args, const char *cfgfile,
92      const struct GNUNET_CONFIGURATION_Handle *cfg)
93 {
94         GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Experimentation daemon starting ...\n"));
95
96         /* Connecting to core service to find partners */
97         ch = GNUNET_CORE_connect (cfg, NULL, NULL,
98                                                                                                                 &core_connect_handler,
99                                                                                                                 &core_disconnect_handler,
100                                                                                                                 NULL, GNUNET_NO, NULL, GNUNET_NO, NULL);
101         if (NULL == ch)
102         {
103                         GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Failed to connect to CORE service!\n"));
104                         return;
105         }
106
107   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &cleanup_task,
108                                 NULL);
109
110 }
111
112
113 /**
114  * The main function for the experimentation daemon.
115  *
116  * @param argc number of arguments from the command line
117  * @param argv command line arguments
118  * @return 0 ok, 1 on error
119  */
120 int
121 main (int argc, char *const *argv)
122 {
123   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
124     GNUNET_GETOPT_OPTION_END
125   };
126
127   return (GNUNET_OK ==
128           GNUNET_PROGRAM_run (argc, argv, "experimentation",
129                                                                                         _("GNUnet hostlist server and client"), options,
130                               &run, NULL)) ? 0 : 1;
131 }
132
133 /* end of gnunet-daemon-experimentation.c */