no debug
[oweals/gnunet.git] / src / arm / mockup-service.c
1 /*
2      This file is part of GNUnet.
3      (C) 2007, 2008, 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 #include <stdlib.h>
22 #include "platform.h"
23 #include "gnunet_disk_lib.h"
24 #include "gnunet_getopt_lib.h"
25 #include "gnunet_protocols.h"
26 #include "gnunet_service_lib.h"
27 #include "gnunet_statistics_service.h"
28 #include "gnunet_strings_lib.h"
29 #include "gnunet_time_lib.h"
30
31 static struct GNUNET_SCHEDULER_Handle *sched;
32
33
34 static size_t
35 transmit_shutdown_ack (void *cls, size_t size, void *buf)
36 {
37   struct GNUNET_SERVER_Client *client = cls;
38   struct GNUNET_MessageHeader *msg;
39
40   if (size < sizeof (struct GNUNET_MessageHeader))
41     {
42       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
43                   _("Failed to transmit shutdown ACK.\n"));
44       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
45       return 0;                 /* client disconnected */
46     }
47
48   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
49               _("Transmitting shutdown ACK.\n"));
50
51   msg = (struct GNUNET_MessageHeader *) buf;
52   msg->type = htons (GNUNET_MESSAGE_TYPE_ARM_SHUTDOWN_ACK);
53   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
54   GNUNET_SERVER_receive_done (client, GNUNET_OK);
55   GNUNET_SERVER_client_drop(client);
56   return sizeof (struct GNUNET_MessageHeader);
57 }
58
59 /**
60  * Handler for SHUTDOWN message.
61  *
62  * @param cls closure (refers to service)
63  * @param client identification of the client
64  * @param message the actual message
65  */
66 static void
67 handle_shutdown (void *cls,
68                  struct GNUNET_SERVER_Client *client,
69                  const struct GNUNET_MessageHeader *message)
70 {
71   GNUNET_SERVER_client_keep(client);
72   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
73               _("Initiating shutdown as requested by client.\n"));
74
75   GNUNET_SERVER_notify_transmit_ready (client,
76                                        sizeof(struct GNUNET_MessageHeader),
77                                        GNUNET_TIME_UNIT_FOREVER_REL,
78                                        &transmit_shutdown_ack, client);
79   GNUNET_SERVER_client_persist_ (client);
80   GNUNET_SCHEDULER_shutdown (sched);
81 }
82
83
84 static void
85 run (void *cls,
86      struct GNUNET_SCHEDULER_Handle *s,
87      struct GNUNET_SERVER_Handle *server,
88      const struct GNUNET_CONFIGURATION_Handle *cfg)
89 {
90   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
91     {&handle_shutdown, NULL, GNUNET_MESSAGE_TYPE_ARM_SHUTDOWN,
92      sizeof (struct GNUNET_MessageHeader)},
93     {NULL, NULL, 0, 0}
94   };
95   sched = s;
96   /* process client requests */
97   GNUNET_SERVER_ignore_shutdown (server, GNUNET_YES);
98   GNUNET_SERVER_add_handlers (server, handlers);
99 }
100
101
102 int main(int argc, char *const *argv)
103 {
104   int ret;
105   
106   ret = (GNUNET_OK ==
107          GNUNET_SERVICE_run (argc,
108                              argv,
109                              "do-nothing", GNUNET_SERVICE_OPTION_NONE,
110                              &run, NULL)) ? 0 : 1;  
111   return ret;
112 }