| Server IP : 216.92.14.13 / Your IP : 216.73.216.171 Web Server : Apache System : Linux vps4089.pairvps.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : rmlac2fmr ( 1040637) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/include/libgearman-1.0/ |
Upload File : |
/* 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
/** @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
};
/**
* @ingroup gearman_worker
*/
struct gearman_worker_st
{
struct {
bool allocated;
bool non_blocking;
bool packet_init;
bool change;
bool grab_uniq;
bool grab_all;
bool timeout_return;
} options;
enum gearman_worker_state_t state;
enum gearman_worker_universal_t work_state;
uint32_t function_count;
uint32_t job_count;
size_t work_result_size;
void *context;
gearman_connection_st *con;
gearman_job_st *job;
gearman_job_st *job_list;
struct _worker_function_st *function;
struct _worker_function_st *function_list;
struct _worker_function_st *work_function;
void *work_result;
struct gearman_universal_st universal;
gearman_packet_st grab_job;
gearman_packet_st pre_sleep;
gearman_job_st *work_job;
};
#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