small API change: do no longer pass rarely needed GNUNET_SCHEDULER_TaskContext to...
[oweals/gnunet.git] / src / testbed / gnunet-service-testbed-logger.c
1 /*
2   This file is part of GNUnet.
3   Copyright (C) 2008--2013 GNUnet e.V.
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 testbed/gnunet-service-testbed-logger.c
23  * @brief service for collecting messages and writing to a file
24  * @author Sree Harsha Totakura
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29
30 /**
31  * Generic logging shorthand
32  */
33 #define LOG(type, ...)                         \
34   GNUNET_log (type, __VA_ARGS__)
35
36 /**
37  * Debug logging shorthand
38  */
39 #define LOG_DEBUG(...)                          \
40   LOG (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
41
42 /**
43  * The message queue for sending messages to clients
44  */
45 struct MessageQueue
46 {
47   /**
48    * The message to be sent
49    */
50   struct GNUNET_MessageHeader *msg;
51
52   /**
53    * The client to send the message to
54    */
55   struct GNUNET_SERVER_Client *client;
56
57   /**
58    * next pointer for DLL
59    */
60   struct MessageQueue *next;
61
62   /**
63    * prev pointer for DLL
64    */
65   struct MessageQueue *prev;
66 };
67
68 /**
69  * The message queue head
70  */
71 static struct MessageQueue *mq_head;
72
73 /**
74  * The message queue tail
75  */
76 static struct MessageQueue *mq_tail;
77
78 /**
79  * Handle for buffered writing.
80  */
81 struct GNUNET_BIO_WriteHandle *bio;
82
83 /**
84  * The shutdown task handle
85  */
86 static struct GNUNET_SCHEDULER_Task * shutdown_task_id;
87
88 /**
89  * The number of connections we have
90  */
91 static unsigned int nconn;
92
93 /**
94  * Are we shutting down?
95  */
96 static int in_shutdown;
97
98 /**
99  * Message handler for GNUNET_MESSAGE_TYPE_TESTBED_ADDHOST messages
100  *
101  * @param cls NULL
102  * @param client identification of the client
103  * @param msg the actual message
104  */
105 static void
106 handle_log_msg (void *cls, struct GNUNET_SERVER_Client *client,
107                 const struct GNUNET_MessageHeader *msg)
108 {
109   uint16_t ms;
110
111   ms = ntohs (msg->size);
112   ms -= sizeof (struct GNUNET_MessageHeader);
113   GNUNET_BIO_write (bio, &msg[1], ms);
114   GNUNET_SERVER_receive_done (client, GNUNET_OK);
115 }
116
117
118 /**
119  * Task to clean up and shutdown nicely
120  *
121  * @param cls NULL
122  */
123 static void
124 shutdown_task (void *cls)
125 {
126   struct MessageQueue *mq_entry;
127
128   shutdown_task_id = NULL;
129   in_shutdown = GNUNET_YES;
130   if (0 != nconn)
131   {
132     /* Delay shutdown if there are active connections */
133     shutdown_task_id = GNUNET_SCHEDULER_add_delayed
134         (GNUNET_TIME_UNIT_FOREVER_REL,
135          &shutdown_task, NULL);
136     return;
137   }
138   while (NULL != (mq_entry = mq_head))
139   {
140     GNUNET_free (mq_entry->msg);
141     GNUNET_SERVER_client_drop (mq_entry->client);
142     GNUNET_CONTAINER_DLL_remove (mq_head, mq_tail, mq_entry);
143     GNUNET_free (mq_entry);
144   }
145   GNUNET_break (GNUNET_OK == GNUNET_BIO_write_close (bio));
146 }
147
148
149 /**
150  * Functions with this signature are called whenever a client
151  * is disconnected on the network level.
152  *
153  * @param cls closure
154  * @param client identification of the client; NULL
155  *        for the last call when the server is destroyed
156  */
157 static void
158 client_disconnected (void *cls, struct GNUNET_SERVER_Client *client)
159 {
160   if (NULL == client)
161   {
162     GNUNET_break (0 == nconn);
163     return;
164   }
165   nconn--;
166   if (GNUNET_YES != in_shutdown)
167     return;
168   GNUNET_assert (NULL != shutdown_task_id);
169   GNUNET_SCHEDULER_cancel (shutdown_task_id);
170   shutdown_task_id = GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
171 }
172
173
174 /**
175  * Functions with this signature are called whenever a client
176  * is connected on the network level.
177  *
178  * @param cls closure
179  * @param client identification of the client
180  */
181 static void
182 client_connected (void *cls, struct GNUNET_SERVER_Client *client)
183 {
184   if (NULL == client)
185   {
186     GNUNET_break (0 == nconn);
187     return;
188   }
189   GNUNET_SERVER_client_persist_ (client);
190   nconn++;
191 }
192
193
194 /**
195  * Testbed setup
196  *
197  * @param cls closure
198  * @param server the initialized server
199  * @param cfg configuration to use
200  */
201 static void
202 logger_run (void *cls, struct GNUNET_SERVER_Handle *server,
203              const struct GNUNET_CONFIGURATION_Handle *cfg)
204 {
205   static const struct GNUNET_SERVER_MessageHandler message_handlers[] = {
206     {&handle_log_msg, NULL, GNUNET_MESSAGE_TYPE_TESTBED_LOGGER_MSG, 0},
207     {NULL, NULL, 0, 0}
208   };
209   char *dir;
210   char *fn;
211   char *hname;
212   size_t hname_len;
213   pid_t pid;
214
215   if (GNUNET_OK !=
216       GNUNET_CONFIGURATION_get_value_filename (cfg, "TESTBED-LOGGER", "DIR",
217                                                &dir))
218   {
219     LOG (GNUNET_ERROR_TYPE_ERROR, "Not logging directory definied.  Exiting\n");
220     GNUNET_SCHEDULER_shutdown ();
221     return;
222   }
223   pid = getpid ();
224   hname_len = GNUNET_OS_get_hostname_max_length ();
225   hname = GNUNET_malloc (hname_len);
226   if (0 != gethostname (hname, hname_len))
227   {
228     LOG (GNUNET_ERROR_TYPE_ERROR, "Cannot get hostname.  Exiting\n");
229     GNUNET_free (hname);
230     GNUNET_free (dir);
231     GNUNET_SCHEDULER_shutdown ();
232     return;
233   }
234   (void) GNUNET_asprintf (&fn, "%s/%.*s_%jd.dat", dir, hname_len, hname,
235                           (intmax_t) pid);
236   GNUNET_free (hname);
237   GNUNET_free (dir);
238   if (NULL == (bio = GNUNET_BIO_write_open (fn)))
239   {
240     GNUNET_free (fn);
241     GNUNET_SCHEDULER_shutdown ();
242     return;
243   }
244   GNUNET_free (fn);
245   GNUNET_SERVER_add_handlers (server, message_handlers);
246   GNUNET_SERVER_connect_notify (server, &client_connected, NULL);
247   GNUNET_SERVER_disconnect_notify (server, &client_disconnected, NULL);
248   shutdown_task_id =
249       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
250                                     &shutdown_task, NULL);
251   LOG_DEBUG ("TESTBED-LOGGER startup complete\n");
252 }
253
254
255 /**
256  * The starting point of execution
257  */
258 int
259 main (int argc, char *const *argv)
260 {
261   //sleep (15);                 /* Debugging */
262   return (GNUNET_OK ==
263           GNUNET_SERVICE_run (argc, argv, "testbed-logger",
264                               GNUNET_SERVICE_OPTION_NONE,
265                               &logger_run, NULL)) ? 0 : 1;
266 }
267
268 /* end of gnunet-service-testbed.c */