refactor DHT for new service API
[oweals/gnunet.git] / src / arm / mockup-service.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2007, 2008, 2009 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 #include <stdlib.h>
22 #include "platform.h"
23 #include "gnunet_util_lib.h"
24 #include "gnunet_protocols.h"
25
26
27 static int special_ret = 0;
28
29 /**
30  * Handler for STOP message.
31  *
32  * @param cls closure (refers to service)
33  * @param client identification of the client
34  * @param message the actual message
35  */
36 static void
37 handle_stop (void *cls,
38              struct GNUNET_SERVER_Client *client,
39              const struct GNUNET_MessageHeader *message)
40 {
41   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
42               _("Initiating shutdown as requested by client.\n"));
43   GNUNET_SERVER_client_persist_ (client);
44   GNUNET_SCHEDULER_shutdown ();
45   /* ARM won't exponentially increase restart delay if we
46    * terminate normally. This changes the return code.
47    */
48   special_ret = 1;
49 }
50
51
52 static void
53 run (void *cls,
54      struct GNUNET_SERVER_Handle *server,
55      const struct GNUNET_CONFIGURATION_Handle *cfg)
56 {
57   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
58     {&handle_stop, NULL, GNUNET_MESSAGE_TYPE_ARM_STOP,
59      sizeof (struct GNUNET_MessageHeader)},
60     {NULL, NULL, 0, 0}
61   };
62   /* process client requests */
63   GNUNET_SERVER_add_handlers (server, handlers);
64 }
65
66
67 int
68 main (int argc, char *const *argv)
69 {
70   int ret;
71
72   ret =
73       (GNUNET_OK ==
74        GNUNET_SERVICE_run (argc, argv, "do-nothing", GNUNET_SERVICE_OPTION_NONE,
75                            &run, NULL)) ? 0 : 1;
76   if (0 != special_ret)
77     return special_ret;
78   return ret;
79 }