/* 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. * */ #pragma once #include "libgearman/interface/client.hpp" // Get next connection that is ready for I/O. gearman_connection_st *gearman_ready(gearman_universal_st&); void gearman_universal_clone(gearman_universal_st &destination, const gearman_universal_st &source); void gearman_universal_free(gearman_universal_st &gearman); void gearman_free_all_packets(gearman_universal_st &gearman); gearman_return_t gearman_universal_set_option(gearman_universal_st &self, universal_options_t option, bool value); void gearman_set_log_fn(gearman_universal_st &self, gearman_log_fn *function, void *context, gearman_verbose_t verbose); void gearman_universal_set_timeout(gearman_universal_st &self, int timeout); int gearman_universal_timeout(gearman_universal_st &self); void gearman_universal_set_ssl(gearman_universal_st &self, bool ssl, const char *ca_file, const char *certificate, const char *key_file); void gearman_universal_set_namespace(gearman_universal_st &self, const char *namespace_key, size_t namespace_key_size); gearman_return_t cancel_job(gearman_universal_st& universal, gearman_job_handle_t job_handle); /** * Set custom memory allocation function for workloads. Normally gearman uses * the standard system malloc to allocate memory used with workloads. The * provided function will be used instead. */ void gearman_set_workload_malloc_fn(gearman_universal_st&, 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. */ void gearman_set_workload_free_fn(gearman_universal_st&, gearman_free_fn *function, void *context); // Free all connections for a gearman structure. void gearman_free_all_cons(gearman_universal_st&); // Test echo with all connections. gearman_return_t gearman_echo(gearman_universal_st&, const void *workload, size_t workload_size); /** * Wait for I/O on connections. * */ gearman_return_t gearman_wait(gearman_universal_st&); void gearman_nap(gearman_universal_st &self); void gearman_nap(int arg); static inline void gearman_universal_add_options(gearman_universal_st &self, universal_options_t options) { (void)gearman_universal_set_option(self, options, true); } static inline void gearman_universal_remove_options(gearman_universal_st &self, universal_options_t options) { (void)gearman_universal_set_option(self, options, false); } gearman_id_t gearman_universal_id(gearman_universal_st &universal); gearman_return_t gearman_set_identifier(gearman_universal_st& universal, const char *id, size_t id_size); const char *gearman_univeral_namespace(gearman_universal_st& universal); gearman_return_t gearman_server_option(gearman_universal_st&, gearman_string_t&);