/usr/include/gnunet/gnunet_arm_service.h is in gnunet-dev 0.10.1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 | /*
This file is part of GNUnet
(C) 2009 Christian Grothoff (and other contributing authors)
GNUnet is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation; either version 3, or (at your
option) any later version.
GNUnet is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNUnet; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
/**
* @file include/gnunet_arm_service.h
* @brief API to access gnunet-arm
* @author Christian Grothoff
*/
#ifndef GNUNET_ARM_SERVICE_H
#define GNUNET_ARM_SERVICE_H
#ifdef __cplusplus
extern "C"
{
#if 0 /* keep Emacsens' auto-indent happy */
}
#endif
#endif
#include "gnunet_util_lib.h"
/**
* Version of the arm API.
*/
#define GNUNET_ARM_VERSION 0x00000002
/**
* Statuses of the requests that client can send to ARM.
*/
enum GNUNET_ARM_RequestStatus
{
/**
* Message was sent successfully.
*/
GNUNET_ARM_REQUEST_SENT_OK = 0,
/**
* Misconfiguration (can't connect to the ARM service).
*/
GNUNET_ARM_REQUEST_CONFIGURATION_ERROR = 1,
/**
* We disconnected from ARM, and request was not sent.
*/
GNUNET_ARM_REQUEST_DISCONNECTED = 2,
/**
* ARM API is busy (probably trying to connect to ARM),
* and request was not sent. Try again later.
*/
GNUNET_ARM_REQUEST_BUSY = 3,
/**
* It was discovered that the request would be too long to fit in a message,
* and thus it was not sent.
*/
GNUNET_ARM_REQUEST_TOO_LONG = 4,
/**
* Request time ran out before we had a chance to send it.
*/
GNUNET_ARM_REQUEST_TIMEOUT = 5
};
/**
* Statuses of services.
*/
enum GNUNET_ARM_ServiceStatus
{
/**
* Dummy message.
*/
GNUNET_ARM_SERVICE_MONITORING_STARTED = 0,
/**
* Service was stopped.
*/
GNUNET_ARM_SERVICE_STOPPED = 1,
/**
* Service starting was initiated
*/
GNUNET_ARM_SERVICE_STARTING = 2,
/**
* Service stopping was initiated
*/
GNUNET_ARM_SERVICE_STOPPING = 3
};
/**
* Replies to ARM requests
*/
enum GNUNET_ARM_Result
{
/**
* Service was stopped (never sent for ARM itself).
*/
GNUNET_ARM_RESULT_STOPPED = 0,
/**
* ARM stopping was initiated (there's no "stopped" for ARM itself).
*/
GNUNET_ARM_RESULT_STOPPING = 1,
/**
* Service starting was initiated
*/
GNUNET_ARM_RESULT_STARTING = 2,
/**
* Asked to start it, but it's already starting.
*/
GNUNET_ARM_RESULT_IS_STARTING_ALREADY = 3,
/**
* Asked to stop it, but it's already stopping.
*/
GNUNET_ARM_RESULT_IS_STOPPING_ALREADY = 4,
/**
* Asked to start it, but it's already started.
*/
GNUNET_ARM_RESULT_IS_STARTED_ALREADY = 5,
/**
* Asked to stop it, but it's already stopped.
*/
GNUNET_ARM_RESULT_IS_STOPPED_ALREADY = 6,
/**
* Asked to start or stop a service, but it's not known.
*/
GNUNET_ARM_RESULT_IS_NOT_KNOWN = 7,
/**
* Tried to start a service, but that failed for some reason.
*/
GNUNET_ARM_RESULT_START_FAILED = 8,
/**
* Asked to start something, but ARM is shutting down and can't comply.
*/
GNUNET_ARM_RESULT_IN_SHUTDOWN = 9
};
/**
* Handle for interacting with ARM.
*/
struct GNUNET_ARM_Handle;
/**
* Function called whenever we connect to or disconnect from ARM.
*
* @param cls closure
* @param connected GNUNET_YES if connected, GNUNET_NO if disconnected,
* GNUNET_SYSERR if there was an error.
*/
typedef void (*GNUNET_ARM_ConnectionStatusCallback) (void *cls,
int connected);
/**
* Function called in response to a start/stop request.
* Will be called when request was not sent successfully,
* or when a reply comes. If the request was not sent successfully,
* 'rs' will indicate that, and 'service' and 'result' will be undefined.
*
* @param cls closure
* @param rs status of the request
* @param service service name
* @param result result of the operation
*/
typedef void (*GNUNET_ARM_ResultCallback) (void *cls,
enum GNUNET_ARM_RequestStatus rs,
const char *service,
enum GNUNET_ARM_Result result);
/**
* Callback function invoked when list operation is complete.
* Will be called when request was not sent successfully,
* or when a reply comes. If the request was not sent successfully,
* 'rs' will indicate that, and 'count' and 'list' will be undefined.
*
* @param cls closure
* @param rs status of the request
* @param count number of strings in the list
* @param list list of running services
*/
typedef void (*GNUNET_ARM_ServiceListCallback) (void *cls,
enum GNUNET_ARM_RequestStatus rs,
unsigned int count,
const char *const*list);
/**
* Set up a context for communicating with ARM, then
* start connecting to the ARM service using that context.
*
* @param cfg configuration to use (needed to contact ARM;
* the ARM service may internally use a different
* configuration to determine how to start the service).
* @param conn_status will be called when connecting/disconnecting
* @param cls closure for conn_status
* @return context to use for further ARM operations, NULL on error.
*/
struct GNUNET_ARM_Handle *
GNUNET_ARM_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
GNUNET_ARM_ConnectionStatusCallback conn_status,
void *cls);
/**
* Disconnect from the ARM service and destroy the handle.
*
* @param h the handle that was being used
*/
void
GNUNET_ARM_disconnect_and_free (struct GNUNET_ARM_Handle *h);
/**
* Request a list of running services.
*
* @param h handle to ARM
* @param timeout how long to wait before failing for good
* @param cont callback to invoke after request is sent or is not sent
* @param cont_cls closure for callback
*/
void
GNUNET_ARM_request_service_list (struct GNUNET_ARM_Handle *h,
struct GNUNET_TIME_Relative timeout,
GNUNET_ARM_ServiceListCallback cont, void *cont_cls);
/**
* Request a service to be stopped.
* Stopping arm itself will not invalidate its handle, and
* ARM API will try to restore connection to the ARM service,
* even if ARM connection was lost because you asked for ARM to be stopped.
* Call GNUNET_ARM_disconnect_and_free () to free the handle and prevent
* further connection attempts.
*
* @param h handle to ARM
* @param service_name name of the service
* @param timeout how long to wait before failing for good
* @param cont callback to invoke after request is sent or is not sent
* @param cont_cls closure for callback
*/
void
GNUNET_ARM_request_service_stop (struct GNUNET_ARM_Handle *h,
const char *service_name,
struct GNUNET_TIME_Relative timeout,
GNUNET_ARM_ResultCallback cont, void *cont_cls);
/**
* Request for a service to be started.
*
* @param h handle to ARM
* @param service_name name of the service
* @param std_inheritance inheritance of std streams
* @param timeout how long to wait before failing for good
* @param cont callback to invoke after request is sent or not sent
* @param cont_cls closure for callback
*/
void
GNUNET_ARM_request_service_start (struct GNUNET_ARM_Handle *h,
const char *service_name,
enum GNUNET_OS_InheritStdioFlags std_inheritance,
struct GNUNET_TIME_Relative timeout,
GNUNET_ARM_ResultCallback cont,
void *cont_cls);
/**
* Handle for monitoring ARM.
*/
struct GNUNET_ARM_MonitorHandle;
/**
* Function called in when a status update arrives.
*
* @param cls closure
* @param arm handle to the arm connection
* @param service service name
* @param status status of the service
*/
typedef void (*GNUNET_ARM_ServiceStatusCallback) (void *cls,
const char *service,
enum GNUNET_ARM_ServiceStatus status);
/**
* Setup a context for monitoring ARM, then
* start connecting to the ARM service for monitoring using that context.
*
* @param cfg configuration to use (needed to contact ARM;
* the ARM service may internally use a different
* configuration to determine how to start the service).
* @param cont callback to invoke on status updates
* @param cont_cls closure
* @return context to use for further ARM monitor operations, NULL on error.
*/
struct GNUNET_ARM_MonitorHandle *
GNUNET_ARM_monitor (const struct GNUNET_CONFIGURATION_Handle *cfg,
GNUNET_ARM_ServiceStatusCallback cont,
void *cont_cls);
/**
* Disconnect from the ARM service and destroy the handle.
*
* @param h the handle that was being used
*/
void
GNUNET_ARM_monitor_disconnect_and_free (struct GNUNET_ARM_MonitorHandle *h);
#if 0 /* keep Emacsens' auto-indent happy */
{
#endif
#ifdef __cplusplus
}
#endif
#endif
|