123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454 |
- /* 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);
- /**
- * See gearman_universal_set_ssl() for details.
- */
- GEARMAN_API
- void gearman_worker_set_ssl(gearman_worker_st *worker, bool ssl,
- const char *ca_file, const char *certificate, const char *key_file);
- /**
- * 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
|