fix
[oweals/gnunet.git] / src / include / gnunet_service_lib.h
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 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 include/gnunet_service_lib.h
23  * @brief functions related to starting services
24  * @author Christian Grothoff
25  */
26
27 #ifndef GNUNET_SERVICE_LIB_H
28 #define GNUNET_SERVICE_LIB_H
29
30 #ifdef __cplusplus
31 extern "C"
32 {
33 #if 0                           /* keep Emacsens' auto-indent happy */
34 }
35 #endif
36 #endif
37
38 #include "gnunet_configuration_lib.h"
39 #include "gnunet_server_lib.h"
40
41
42 /**
43  * Get the list of addresses that a server for the given service
44  * should bind to.
45  *
46  * @param serviceName name of the service
47  * @param cfg configuration (which specifies the addresses)
48  * @param addrs set (call by reference) to an array of pointers to the
49  *              addresses the server should bind to and listen on; the
50  *              array will be NULL-terminated (on success)
51  * @param addr_lens set (call by reference) to an array of the lengths
52  *              of the respective 'struct sockaddr' struct in the 'addrs'
53  *              array (on success)
54  * @return number of addresses found on success,
55  *              GNUNET_SYSERR if the configuration
56  *              did not specify reasonable finding information or
57  *              if it specified a hostname that could not be resolved;
58  *              GNUNET_NO if the number of addresses configured is
59  *              zero (in this case, '*addrs' and '*addr_lens' will be
60  *              set to NULL).
61  */
62 int
63 GNUNET_SERVICE_get_server_addresses (const char *serviceName,
64                                      const struct GNUNET_CONFIGURATION_Handle *cfg,
65                                      struct sockaddr ***addrs,
66                                      socklen_t **addr_lens);
67
68
69 /**
70  * Function called by the service's run
71  * method to run service-specific setup code.
72  *
73  * @param cls closure
74  * @param server the initialized server
75  * @param cfg configuration to use
76  */
77 typedef void (*GNUNET_SERVICE_Main) (void *cls,
78                                      struct GNUNET_SERVER_Handle * server,
79                                      const struct GNUNET_CONFIGURATION_Handle *
80                                      cfg);
81
82
83 /**
84  * Options for the service (bitmask).
85  */
86 enum GNUNET_SERVICE_Options
87   {
88     /**
89      * Use defaults.
90      */
91     GNUNET_SERVICE_OPTION_NONE = 0,
92
93     /**
94      * Do not trigger server shutdown on signals, allow for the user
95      * to terminate the server explicitly when needed.
96      */
97     GNUNET_SERVICE_OPTION_MANUAL_SHUTDOWN = 1
98   };
99
100
101 /**
102  * Run a standard GNUnet service startup sequence (initialize loggers
103  * and configuration, parse options).
104  *
105  * @param argc number of command line arguments
106  * @param argv command line arguments
107  * @param serviceName our service name
108  * @param opt service options
109  * @param task main task of the service
110  * @param task_cls closure for task
111  * @return GNUNET_SYSERR on error, GNUNET_OK
112  *         if we shutdown nicely
113  */
114 int GNUNET_SERVICE_run (int argc,
115                         char *const *argv,
116                         const char *serviceName,
117                         enum GNUNET_SERVICE_Options opt,
118                         GNUNET_SERVICE_Main task,
119                         void *task_cls);
120
121
122 struct GNUNET_SERVICE_Context;
123
124 /**
125  * Run a service startup sequence within an existing
126  * initialized system.
127  *
128  * @param serviceName our service name
129  * @param cfg configuration to use
130  * @return NULL on error, service handle
131  */
132 struct GNUNET_SERVICE_Context *GNUNET_SERVICE_start (const char *serviceName,
133                                                      const struct
134                                                      GNUNET_CONFIGURATION_Handle
135                                                      *cfg);
136
137
138 /**
139  * Obtain the server used by a service.  Note that the server must NOT
140  * be destroyed by the caller.
141  *
142  * @param ctx the service context returned from the start function
143  * @return handle to the server for this service, NULL if there is none
144  */
145 struct GNUNET_SERVER_Handle *GNUNET_SERVICE_get_server (struct
146                                                         GNUNET_SERVICE_Context
147                                                         *ctx);
148
149
150 /**
151  * Stop a service that was started with "GNUNET_SERVICE_start".
152  *
153  * @param sctx the service context returned from the start function
154  */
155 void GNUNET_SERVICE_stop (struct GNUNET_SERVICE_Context *sctx);
156
157
158 #if 0                           /* keep Emacsens' auto-indent happy */
159 {
160 #endif
161 #ifdef __cplusplus
162 }
163 #endif
164
165 /* ifndef GNUNET_SERVICE_LIB_H */
166 #endif
167 /* end of gnunet_service_lib.h */