123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- /* 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.
- *
- */
- #include "gear_config.h"
- #include <cerrno>
- #include <cstdio>
- #include <cstdlib>
- #include <cstring>
- #include <iostream>
- #include <signal.h>
- #include <libgearman/gearman.h>
- #include <boost/program_options.hpp>
- struct reverse_worker_options_t
- {
- bool chunk;
- bool status;
- bool unique;
- bool verbose;
- reverse_worker_options_t():
- chunk(false),
- status(false),
- unique(false),
- verbose(true)
- { }
- };
- #ifndef __INTEL_COMPILER
- #pragma GCC diagnostic ignored "-Wold-style-cast"
- #endif
- static gearman_return_t reverse_worker(gearman_job_st *job, void *context)
- {
- reverse_worker_options_t options= *((reverse_worker_options_t *)context);
- const char *workload= (const char *)gearman_job_workload(job);
- const size_t workload_size= gearman_job_workload_size(job);
- if (options.verbose)
- {
- std::cout << "Received " << workload_size << " bytes" << std::endl;
- }
- std::vector<char> result;
- result.resize(workload_size);
- // Copy workload
- for (size_t y= 0, x= workload_size; x; x--, y++)
- {
- result[y]= ((uint8_t *)workload)[x - 1];
- }
- if (options.chunk) // Chunk the result set
- {
- for (size_t y= 0, x= workload_size; x; x--, y++)
- {
- if (gearman_failed(gearman_job_send_data(job, &result[y], 1)))
- {
- return GEARMAN_ERROR;
- }
- if (options.status)
- {
- // Notice that we send based on y divided by zero.
- if (gearman_failed(gearman_job_send_status(job, (uint32_t)y, (uint32_t)workload_size)))
- {
- return GEARMAN_ERROR;
- }
- }
- }
- }
- else
- {
- if (options.status)
- {
- // Notice that we send based on y divided by zero.
- if (gearman_failed(gearman_job_send_status(job, (uint32_t)0, (uint32_t)workload_size)))
- {
- return GEARMAN_ERROR;
- }
- }
- if (gearman_failed(gearman_job_send_data(job, &result[0], workload_size)))
- {
- return GEARMAN_ERROR;
- }
- if (options.status)
- {
- // Notice that we send based on y divided by zero.
- if (gearman_failed(gearman_job_send_status(job, (uint32_t)workload_size, (uint32_t)workload_size)))
- {
- return GEARMAN_ERROR;
- }
- }
- }
- if (options.verbose)
- {
- std::cout << "Job=" << gearman_job_handle(job);
- }
- if (options.unique and options.verbose)
- {
- std::cout << "Unique=" << gearman_job_unique(job);
- }
- if (options.verbose)
- {
- std::cout << " Reversed=";
- std::cout.write(workload, workload_size);
- std::cout << std::endl;
- }
- return GEARMAN_SUCCESS;
- }
- int main(int args, char *argv[])
- {
- uint64_t limit;
- reverse_worker_options_t options;
- int timeout;
- in_port_t port;
- std::string host;
- std::string identifier;
- boost::program_options::options_description desc("Options");
- desc.add_options()
- ("help", "Options related to the program.")
- ("host,h", boost::program_options::value<std::string>(&host)->default_value("localhost"),"Connect to the host")
- ("identifier", boost::program_options::value<std::string>(&identifier),"Assign identifier")
- ("port,p", boost::program_options::value<in_port_t>(&port)->default_value(GEARMAN_DEFAULT_TCP_PORT), "Port number use for connection")
- ("count,c", boost::program_options::value<uint64_t>(&limit)->default_value(0), "Number of jobs to run before exiting")
- ("timeout,u", boost::program_options::value<int>(&timeout)->default_value(-1), "Timeout in milliseconds")
- ("chunk,d", boost::program_options::bool_switch(&options.chunk)->default_value(false), "Send result back in data chunks")
- ("status,s", boost::program_options::bool_switch(&options.status)->default_value(false), "Send status updates and sleep while running job")
- ("unique,u", boost::program_options::bool_switch(&options.unique)->default_value(false), "When grabbing jobs, grab the uniqie id")
- ("verbose", boost::program_options::bool_switch(&options.verbose)->default_value(true), "Print to stdout information as job is processed.")
- ;
- boost::program_options::variables_map vm;
- try
- {
- boost::program_options::store(boost::program_options::parse_command_line(args, argv, desc), vm);
- boost::program_options::notify(vm);
- }
- catch(std::exception &e)
- {
- std::cout << e.what() << std::endl;
- return EXIT_FAILURE;
- }
- if (vm.count("help"))
- {
- std::cout << desc << std::endl;
- return EXIT_SUCCESS;
- }
- if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
- {
- std::cerr << "signal:" << strerror(errno) << std::endl;
- return EXIT_FAILURE;
- }
- gearman_worker_st *worker;
- if ((worker= gearman_worker_create(NULL)) == NULL)
- {
- std::cerr << "Memory allocation failure on worker creation." << std::endl;
- return EXIT_FAILURE;
- }
- if (options.unique)
- {
- gearman_worker_add_options(worker, GEARMAN_WORKER_GRAB_UNIQ);
- }
- if (timeout >= 0)
- {
- gearman_worker_set_timeout(worker, timeout);
- }
- if (gearman_failed(gearman_worker_add_server(worker, host.c_str(), port)))
- {
- std::cerr << gearman_worker_error(worker) << std::endl;
- return EXIT_FAILURE;
- }
- if (identifier.empty() == false)
- {
- if (gearman_failed(gearman_worker_set_identifier(worker, identifier.c_str(), identifier.size())))
- {
- std::cerr << gearman_worker_error(worker) << std::endl;
- return EXIT_FAILURE;
- }
- }
- gearman_function_t worker_fn= gearman_function_create(reverse_worker);
- if (gearman_failed(gearman_worker_define_function(worker,
- gearman_literal_param("reverse"),
- worker_fn,
- 0,
- &options)))
- {
- std::cerr << gearman_worker_error(worker) << std::endl;
- return EXIT_FAILURE;
- }
- // Add one if count is not zero
- if (limit != 0)
- {
- limit++;
- }
- while (--limit)
- {
- if (gearman_failed(gearman_worker_work(worker)))
- {
- std::cerr << gearman_worker_error(worker) << std::endl;
- break;
- }
- }
- gearman_worker_free(worker);
- return EXIT_SUCCESS;
- }
|