123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- /* 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 <libgearman/gearman.h>
- #include <boost/program_options.hpp>
- #include <boost/lexical_cast.hpp>
- #ifndef __INTEL_COMPILER
- #pragma GCC diagnostic ignored "-Wold-style-cast"
- #endif
- static void *wc(gearman_job_st *job, void *context, size_t *result_size,
- gearman_return_t *ret_ptr);
- int main(int args, char *argv[])
- {
- uint32_t count;
- int timeout;
- in_port_t port;
- std::string host;
- 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")
- ("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<uint32_t>(&count)->default_value(0), "Number of jobs to run before exiting")
- ("timeout,u", boost::program_options::value<int>(&timeout)->default_value(-1), "Timeout in milliseconds")
- ;
- 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;
- }
- gearman_worker_st worker;
- if (gearman_worker_create(&worker) == NULL)
- {
- std::cerr << "Memory allocation failure on worker creation." << std::endl;
- return EXIT_FAILURE;
- }
- if (timeout >= 0)
- gearman_worker_set_timeout(&worker, timeout);
- gearman_return_t ret;
- ret= gearman_worker_add_server(&worker, host.c_str(), port);
- if (ret != GEARMAN_SUCCESS)
- {
- std::cerr << gearman_worker_error(&worker) << std::endl;
- return EXIT_FAILURE;
- }
- ret= gearman_worker_add_function(&worker, "wc", 0, wc, NULL);
- if (ret != GEARMAN_SUCCESS)
- {
- std::cerr << gearman_worker_error(&worker) << std::endl;
- return EXIT_FAILURE;
- }
- while (1)
- {
- ret= gearman_worker_work(&worker);
- if (ret != GEARMAN_SUCCESS)
- {
- std::cerr << gearman_worker_error(&worker) << std::endl;
- break;
- }
- if (count > 0)
- {
- count--;
- if (count == 0)
- break;
- }
- }
- gearman_worker_free(&worker);
- return EXIT_SUCCESS;
- }
- static void *wc(gearman_job_st *job, void *context, size_t *result_size,
- gearman_return_t *ret_ptr)
- {
- (void)context;
- const char *workload;
- workload= (const char *)gearman_job_workload(job);
- *result_size= gearman_job_workload_size(job);
- uint64_t count= 0;
- if (workload != NULL)
- {
- if (workload[0] != ' ' && workload[0] != '\t' && workload[0] != '\n')
- count++;
- for (size_t x= 0; x < *result_size; x++)
- {
- if (workload[x] != ' ' && workload[x] != '\t' && workload[x] != '\n')
- continue;
- count++;
- while (workload[x] == ' ' || workload[x] == '\t' || workload[x] == '\n')
- {
- x++;
- if (x == *result_size)
- {
- count--;
- break;
- }
- }
- }
- }
- std::string result= boost::lexical_cast<std::string>(count);
- std::cerr << "Job= " << gearman_job_handle(job) << " Workload=";
- std::cerr.write(workload, *result_size);
- std::cerr << " Result=" << result << std::endl;
- *result_size= result.size();
- *ret_ptr= GEARMAN_SUCCESS;
- return strdup(result.c_str());
- }
|