123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- *
- * Gearmand client and server library.
- *
- * Copyright (C) 2011 Data Differential, http://datadifferential.com/
- * 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 <config.h>
- #include <libgearman/gearman.h>
- #include <cassert>
- #include <cstdlib>
- #include <cstring>
- #include <string>
- #include <tests/workers.h>
- #ifndef __INTEL_COMPILER
- #pragma GCC diagnostic ignored "-Wold-style-cast"
- #endif
- void *echo_or_react_worker(gearman_job_st *job, void *,
- size_t *result_size, gearman_return_t *ret_ptr)
- {
- const void *workload= gearman_job_workload(job);
- *result_size= gearman_job_workload_size(job);
- if (workload == NULL or *result_size == 0)
- {
- assert(workload == NULL and *result_size == 0);
- *ret_ptr= GEARMAN_SUCCESS;
- return NULL;
- }
- else if (*result_size == gearman_literal_param_size("fail") and (not memcmp(workload, gearman_literal_param("fail"))))
- {
- *ret_ptr= GEARMAN_WORK_FAIL;
- return NULL;
- }
- else if (*result_size == gearman_literal_param_size("exception") and (not memcmp(workload, gearman_literal_param("exception"))))
- {
- gearman_return_t rc= gearman_job_send_exception(job, gearman_literal_param("test exception"));
- if (gearman_failed(rc))
- {
- *ret_ptr= GEARMAN_WORK_FAIL;
- return NULL;
- }
- }
- else if (*result_size == gearman_literal_param_size("warning") and (not memcmp(workload, gearman_literal_param("warning"))))
- {
- gearman_return_t rc= gearman_job_send_warning(job, gearman_literal_param("test warning"));
- if (gearman_failed(rc))
- {
- *ret_ptr= GEARMAN_WORK_FAIL;
- return NULL;
- }
- }
- void *result= malloc(*result_size);
- assert(result);
- memcpy(result, workload, *result_size);
- *ret_ptr= GEARMAN_SUCCESS;
- return result;
- }
- void *echo_or_react_chunk_worker(gearman_job_st *job, void *,
- size_t *result_size, gearman_return_t *ret_ptr)
- {
- const char *workload;
- workload= (const char *)gearman_job_workload(job);
- size_t workload_size= gearman_job_workload_size(job);
- bool fail= false;
- if (workload_size == gearman_literal_param_size("fail") and (not memcmp(workload, gearman_literal_param("fail"))))
- {
- fail= true;
- }
- else if (workload_size == gearman_literal_param_size("exception") and (not memcmp(workload, gearman_literal_param("exception"))))
- {
- gearman_return_t rc= gearman_job_send_exception(job, gearman_literal_param("test exception"));
- if (gearman_failed(rc))
- {
- *ret_ptr= GEARMAN_WORK_FAIL;
- return NULL;
- }
- }
- else if (workload_size == gearman_literal_param_size("warning") and (not memcmp(workload, gearman_literal_param("warning"))))
- {
- gearman_return_t rc= gearman_job_send_warning(job, gearman_literal_param("test warning"));
- if (gearman_failed(rc))
- {
- *ret_ptr= GEARMAN_WORK_FAIL;
- return NULL;
- }
- }
- for (size_t x= 0; x < workload_size; x++)
- {
- // Chunk
- {
- *ret_ptr= gearman_job_send_data(job, &workload[x], 1);
- if (*ret_ptr != GEARMAN_SUCCESS)
- {
- return NULL;
- }
- }
- // report status
- {
- *ret_ptr= gearman_job_send_status(job, (uint32_t)x,
- (uint32_t)workload_size);
- assert(gearman_success(*ret_ptr));
- if (gearman_failed(*ret_ptr))
- {
- return NULL;
- }
- if (fail)
- {
- *ret_ptr= GEARMAN_WORK_FAIL;
- return NULL;
- }
- }
- }
- *ret_ptr= GEARMAN_SUCCESS;
- *result_size= 0;
- return NULL;
- }
- // payload is unique value
- void *unique_worker(gearman_job_st *job, void *,
- size_t *result_size, gearman_return_t *ret_ptr)
- {
- const void *workload= gearman_job_workload(job);
- assert(job->assigned.command == GEARMAN_COMMAND_JOB_ASSIGN_UNIQ);
- assert(gearman_job_unique(job));
- assert(gearman_job_workload_size(job));
- assert(not memcmp(workload, gearman_job_unique(job), gearman_job_workload_size(job)));
- if (gearman_job_workload_size(job) == strlen(gearman_job_unique(job)))
- {
- if (not memcmp(workload, gearman_job_unique(job), gearman_job_workload_size(job)))
- {
- void *result= malloc(gearman_job_workload_size(job));
- assert(result);
- memcpy(result, workload, gearman_job_workload_size(job));
- *result_size= gearman_job_workload_size(job);
- *ret_ptr= GEARMAN_SUCCESS;
- return result;
- }
- }
- *result_size= 0;
- *ret_ptr= GEARMAN_WORK_FAIL;
- return NULL;
- }
- gearman_return_t cat_aggregator_fn(gearman_aggregator_st *, gearman_task_st *task, gearman_result_st *result)
- {
- std::string string_value;
- do
- {
- assert(task);
- gearman_result_st *result_ptr= gearman_task_result(task);
- if (result_ptr)
- {
- if (not gearman_result_size(result_ptr))
- return GEARMAN_WORK_EXCEPTION;
- string_value.append(gearman_result_value(result_ptr), gearman_result_size(result_ptr));
- }
- } while ((task= gearman_next(task)));
- gearman_result_store_value(result, string_value.c_str(), string_value.size());
- return GEARMAN_SUCCESS;
- }
- gearman_worker_error_t split_worker(gearman_job_st *job, void *)
- {
- const char *workload= static_cast<const char *>(gearman_job_workload(job));
- size_t workload_size= gearman_job_workload_size(job);
- assert(job->assigned.command == GEARMAN_COMMAND_JOB_ASSIGN_ALL);
- const char *chunk_begin= workload;
- for (size_t x= 0; x < workload_size; x++)
- {
- if (int(workload[x]) == 0 or int(workload[x]) == int(' '))
- {
- if ((workload +x -chunk_begin) == 11 and not memcmp(chunk_begin, gearman_literal_param("mapper_fail")))
- {
- return GEARMAN_WORKER_FAILED;
- }
- // NULL Chunk
- gearman_return_t rc= gearman_job_send_data(job, chunk_begin, workload +x -chunk_begin);
- if (gearman_failed(rc))
- {
- return GEARMAN_WORKER_FAILED;
- }
- chunk_begin= workload +x +1;
- }
- }
- if (chunk_begin < workload +workload_size)
- {
- if ((size_t(workload +workload_size) -size_t(chunk_begin) ) == 11 and not memcmp(chunk_begin, gearman_literal_param("mapper_fail")))
- {
- return GEARMAN_WORKER_FAILED;
- }
- gearman_return_t rc= gearman_job_send_data(job, chunk_begin, size_t(workload +workload_size) -size_t(chunk_begin));
- if (gearman_failed(rc))
- {
- return GEARMAN_WORKER_FAILED;
- }
- }
- return GEARMAN_WORKER_SUCCESS;
- }
|