bugfixes and redesigning scheduler API
[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  * Function called by the service's run
43  * method to run service-specific setup code.
44  *
45  * @param cls closure
46  * @param sched scheduler to use
47  * @param server the initialized server
48  * @param cfg configuration to use
49  */
50 typedef void (*GNUNET_SERVICE_Main) (void *cls,
51                                      struct GNUNET_SCHEDULER_Handle * sched,
52                                      struct GNUNET_SERVER_Handle * server,
53                                      const struct GNUNET_CONFIGURATION_Handle *
54                                      cfg);
55
56
57 /**
58  * Run a standard GNUnet service startup sequence (initialize loggers
59  * and configuration, parse options).
60  *
61  * @param argc number of command line arguments
62  * @param argv command line arguments
63  * @param serviceName our service name
64  * @param task main task of the service
65  * @param task_cls closure for task
66  * @return GNUNET_SYSERR on error, GNUNET_OK
67  *         if we shutdown nicely
68  */
69 int GNUNET_SERVICE_run (int argc,
70                         char *const *argv,
71                         const char *serviceName,
72                         GNUNET_SERVICE_Main task,
73                         void *task_cls);
74
75
76 struct GNUNET_SERVICE_Context;
77
78 /**
79  * Run a service startup sequence within an existing
80  * initialized system.
81  *
82  * @param serviceName our service name
83  * @param sched scheduler to use
84  * @param cfg configuration to use
85  * @return NULL on error, service handle
86  */
87 struct GNUNET_SERVICE_Context *GNUNET_SERVICE_start (const char *serviceName,
88                                                      struct
89                                                      GNUNET_SCHEDULER_Handle
90                                                      *sched,
91                                                      const struct
92                                                      GNUNET_CONFIGURATION_Handle
93                                                      *cfg);
94
95
96 /**
97  * Obtain the server used by a service.  Note that the server must NOT
98  * be destroyed by the caller.
99  *
100  * @param ctx the service context returned from the start function
101  * @return handle to the server for this service, NULL if there is none
102  */
103 struct GNUNET_SERVER_Handle *GNUNET_SERVICE_get_server (struct
104                                                         GNUNET_SERVICE_Context
105                                                         *ctx);
106
107
108 /**
109  * Stop a service that was started with "GNUNET_SERVICE_start".
110  *
111  * @param sctx the service context returned from the start function
112  */
113 void GNUNET_SERVICE_stop (struct GNUNET_SERVICE_Context *sctx);
114
115
116 #if 0                           /* keep Emacsens' auto-indent happy */
117 {
118 #endif
119 #ifdef __cplusplus
120 }
121 #endif
122
123 /* ifndef GNUNET_SERVICE_LIB_H */
124 #endif
125 /* end of gnunet_service_lib.h */