/usr/include/libgearman-1.0/worker.h is in libgearman-dev 1.1.18+ds-1.
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 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
*
* Gearmand client and server library.
*
* Copyright (C) 2011 Data Differential, http://datadifferential.com/
* Copyright (C) 2008 Brian Aker, Eric Day
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
*
* * The names of its contributors may not be used to endorse or
* promote products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
/**
* @file
* @brief Worker Declarations
*/
#pragma once
#include <libgearman-1.0/interface/worker.h>
/** @addtogroup gearman_worker Worker Declarations
*
* This is the interface gearman workers should use.
*
* @ref main_page_worker "See Main Page for full details."
* @{
*/
enum gearman_worker_state_t {
GEARMAN_WORKER_STATE_START,
GEARMAN_WORKER_STATE_FUNCTION_SEND,
GEARMAN_WORKER_STATE_CONNECT,
GEARMAN_WORKER_STATE_GRAB_JOB_SEND,
GEARMAN_WORKER_STATE_GRAB_JOB_RECV,
GEARMAN_WORKER_STATE_PRE_SLEEP
};
enum gearman_worker_universal_t {
GEARMAN_WORKER_WORK_UNIVERSAL_GRAB_JOB,
GEARMAN_WORKER_WORK_UNIVERSAL_FUNCTION,
GEARMAN_WORKER_WORK_UNIVERSAL_COMPLETE,
GEARMAN_WORKER_WORK_UNIVERSAL_FAIL
};
#ifdef __cplusplus
#define gearman_has_reducer(A) (A) ? static_cast<bool>((A)->reducer.final_fn) : false
#else
#define gearman_has_reducer(A) (A) ? (bool)((A)->reducer.final_fn) : false
#endif
#ifdef __cplusplus
extern "C" {
#endif
/**
* Initialize a worker structure. Always check the return value even if passing
* in a pre-allocated structure. Some other initialization may have failed. It
* is not required to memset() a structure before providing it.
*
* @param[in] worker Caller allocated structure, or NULL to allocate one.
* @return On success, a pointer to the (possibly allocated) structure. On
* failure this will be NULL.
*/
GEARMAN_API
gearman_worker_st *gearman_worker_create(gearman_worker_st *worker);
/**
* Clone a worker structure.
*
* @param[in] worker Caller allocated structure, or NULL to allocate one.
* @param[in] from Structure to use as a source to clone from.
* @return Same return as gearman_worker_create().
*/
GEARMAN_API
gearman_worker_st *gearman_worker_clone(gearman_worker_st *worker,
const gearman_worker_st *from);
/**
* Free resources used by a worker structure.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
*/
GEARMAN_API
void gearman_worker_free(gearman_worker_st *worker);
/**
* See gearman_error() for details.
*/
GEARMAN_API
const char *gearman_worker_error(const gearman_worker_st *worker);
/**
* See gearman_errno() for details.
*/
GEARMAN_API
int gearman_worker_errno(gearman_worker_st *worker);
/**
* Get options for a worker structure.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @return Options set for the worker structure.
*/
GEARMAN_API
gearman_worker_options_t gearman_worker_options(const gearman_worker_st *worker);
/**
* Set options for a worker structure.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @param options Available options for worker structures.
*/
GEARMAN_API
void gearman_worker_set_options(gearman_worker_st *worker,
gearman_worker_options_t options);
/**
* Add options for a worker structure.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @param options Available options for worker structures.
*/
GEARMAN_API
void gearman_worker_add_options(gearman_worker_st *worker,
gearman_worker_options_t options);
/**
* Remove options for a worker structure.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @param options Available options for worker structures.
*/
GEARMAN_API
void gearman_worker_remove_options(gearman_worker_st *worker,
gearman_worker_options_t options);
/**
* See gearman_universal_timeout() for details.
*/
GEARMAN_API
int gearman_worker_timeout(gearman_worker_st *worker);
/**
* See gearman_universal_set_timeout() for details.
*/
GEARMAN_API
void gearman_worker_set_timeout(gearman_worker_st *worker, int timeout);
/**
* Get the application context for a worker.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @return Application context that was previously set, or NULL.
*/
GEARMAN_API
void *gearman_worker_context(const gearman_worker_st *worker);
/**
* Set the application context for a worker.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @param[in] context Application context to set.
*/
GEARMAN_API
void gearman_worker_set_context(gearman_worker_st *worker, void *context);
/**
* See gearman_set_log_fn() for details.
*/
GEARMAN_API
void gearman_worker_set_log_fn(gearman_worker_st *worker,
gearman_log_fn *function, void *context,
gearman_verbose_t verbose);
/**
* See gearman_set_workload_malloc_fn() for details.
*/
GEARMAN_API
void gearman_worker_set_workload_malloc_fn(gearman_worker_st *worker,
gearman_malloc_fn *function,
void *context);
/**
* Set custom memory free function for workloads. Normally gearman uses the
* standard system free to free memory used with workloads. The provided
* function will be used instead.
*
* @param[in] gearman Structure previously initialized with gearman_universal_create() or
* gearman_clone().
* @param[in] function Memory free function to use instead of free().
* @param[in] context Argument to pass into the callback function.
*/
GEARMAN_API
void gearman_worker_set_workload_free_fn(gearman_worker_st *worker,
gearman_free_fn *function,
void *context);
/**
* Add a job server to a worker. This goes into a list of servers that can be
* used to run tasks. No socket I/O happens here, it is just added to a list.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @param[in] host Hostname or IP address (IPv4 or IPv6) of the server to add.
* @param[in] port Port of the server to add.
* @return Standard gearman return value.
*/
GEARMAN_API
gearman_return_t gearman_worker_add_server(gearman_worker_st *worker,
const char *host, in_port_t port);
/**
* Add a list of job servers to a worker. The format for the server list is:
* SERVER[:PORT][,SERVER[:PORT]]...
* Some examples are:
* 10.0.0.1,10.0.0.2,10.0.0.3
* localhost234,jobserver2.domain.com:7003,10.0.0.3
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @param[in] servers Server list described above.
* @return Standard gearman return value.
*/
GEARMAN_API
gearman_return_t gearman_worker_add_servers(gearman_worker_st *worker,
const char *servers);
/**
* Remove all servers currently associated with the worker.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
*/
GEARMAN_API
void gearman_worker_remove_servers(gearman_worker_st *worker);
/**
* When in non-blocking I/O mode, wait for activity from one of the servers.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @return Standard gearman return value.
*/
GEARMAN_API
gearman_return_t gearman_worker_wait(gearman_worker_st *worker);
/**
* Register function with job servers with an optional timeout. The timeout
* specifies how many seconds the server will wait before marking a job as
* failed. If timeout is zero, there is no timeout.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @param[in] function_name Function name to register.
* @param[in] timeout Optional timeout (in seconds) that specifies the maximum
* time a job should. This is enforced on the job server. A value of 0 means
* an infinite time.
* @return Standard gearman return value.
*/
GEARMAN_API
gearman_return_t gearman_worker_register(gearman_worker_st *worker,
const char *function_name,
uint32_t timeout);
/**
* Unregister function with job servers.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @param[in] function_name Function name to unregister.
* @return Standard gearman return value.
*/
GEARMAN_API
gearman_return_t gearman_worker_unregister(gearman_worker_st *worker,
const char *function_name);
/**
* Unregister all functions with job servers.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @return Standard gearman return value.
*/
GEARMAN_API
gearman_return_t gearman_worker_unregister_all(gearman_worker_st *worker);
/**
* Get a job from one of the job servers. This does not used the callback
* interface below, which means results must be sent back to the job server
* manually. It is also the responsibility of the caller to free the job once
* it has been completed.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @param[in] job Caller allocated structure, or NULL to allocate one.
* @param[out] ret_ptr Standard gearman return value.
* @return On success, a pointer to the (possibly allocated) structure. On
* failure this will be NULL.
*/
GEARMAN_API
gearman_job_st *gearman_worker_grab_job(gearman_worker_st *worker,
gearman_job_st *job,
gearman_return_t *ret_ptr);
/**
* Free all jobs for a gearman structure.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
*/
GEARMAN_API
void gearman_job_free_all(gearman_worker_st *worker);
/**
* See if a function exists in the server. It will not return
* true if the function is currently being de-allocated.
* @param[in] worker gearman_worker_st that will be used.
* @param[in] function_name Function name for search.
* @param[in] function_length Length of function name.
* @return bool
*/
GEARMAN_API
bool gearman_worker_function_exist(gearman_worker_st *worker,
const char *function_name,
size_t function_length);
/**
* Register and add callback function for worker. To remove functions that have
* been added, call gearman_worker_unregister() or
* gearman_worker_unregister_all().
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @param[in] function_name Function name to register.
* @param[in] timeout Optional timeout (in seconds) that specifies the maximum
* time a job should. This is enforced on the job server. A value of 0 means
* an infinite time.
* @param[in] function Function to run when there is a job ready.
* @param[in] context Argument to pass into the callback function.
* @return Standard gearman return value.
*/
GEARMAN_API
gearman_return_t gearman_worker_add_function(gearman_worker_st *worker,
const char *function_name,
uint32_t timeout,
gearman_worker_fn *function,
void *context);
GEARMAN_API
gearman_return_t gearman_worker_define_function(gearman_worker_st *worker,
const char *function_name, const size_t function_name_length,
const gearman_function_t function,
const uint32_t timeout,
void *context);
/**
* Wait for a job and call the appropriate callback function when it gets one.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @return Standard gearman return value.
*/
GEARMAN_API
gearman_return_t gearman_worker_work(gearman_worker_st *worker);
/**
* Send data to all job servers to see if they echo it back. This is a test
* function to see if job servers are responding properly.
*
* @param[in] worker Structure previously initialized with
* gearman_worker_create() or gearman_worker_clone().
* @param[in] workload The workload to ask the server to echo back.
* @param[in] workload_size Size of the workload.
* @return Standard gearman return value.
*/
GEARMAN_API
gearman_return_t gearman_worker_echo(gearman_worker_st *worker,
const void *workload,
size_t workload_size);
GEARMAN_API
gearman_return_t gearman_worker_set_memory_allocators(gearman_worker_st *,
gearman_malloc_fn *malloc_fn,
gearman_free_fn *free_fn,
gearman_realloc_fn *realloc_fn,
gearman_calloc_fn *calloc_fn,
void *context);
GEARMAN_API
bool gearman_worker_set_server_option(gearman_worker_st *self, const char *option_arg, size_t option_arg_size);
GEARMAN_API
void gearman_worker_set_namespace(gearman_worker_st *self, const char *namespace_key, size_t namespace_key_size);
GEARMAN_API
const char *gearman_worker_namespace(gearman_worker_st *self);
GEARMAN_API
gearman_id_t gearman_worker_shutdown_handle(gearman_worker_st *self);
GEARMAN_API
gearman_id_t gearman_worker_id(gearman_worker_st *self);
GEARMAN_API
gearman_return_t gearman_worker_set_identifier(gearman_worker_st *worker,
const char *id, size_t id_size);
/** @} */
#ifdef __cplusplus
}
#endif
|