123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- *
- * Gearmand client and server library.
- *
- * Copyright (C) 2012 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.
- *
- */
- #pragma once
- #define TASK_MAGIC 134
- #define TASK_ANTI_MAGIC 157
- struct Task
- {
- struct Options {
- bool allocated;
- bool send_in_use;
- bool is_known;
- bool is_running;
- bool was_reduced;
- bool is_paused;
- bool is_initialized;
- Options() :
- allocated(true),
- send_in_use(false),
- is_known(false),
- is_running(false),
- was_reduced(false),
- is_paused(false),
- is_initialized(true)
- { }
- } options;
- enum gearman_task_kind_t type;
- enum gearman_task_state_t state;
- uint32_t magic_;
- uint32_t created_id;
- uint32_t numerator;
- uint32_t denominator;
- uint32_t client_count;
- gearman_client_st *client;
- gearman_task_st *next;
- gearman_task_st *prev;
- void *context;
- gearman_connection_st *con;
- gearman_packet_st *recv;
- gearman_packet_st send;
- struct gearman_actions_t func;
- gearman_return_t result_rc;
- struct gearman_result_st *result_ptr;
- gearman_task_st* _shell;
- char job_handle[GEARMAN_JOB_HANDLE_SIZE];
- size_t unique_length;
- char unique[GEARMAN_MAX_UNIQUE_SIZE];
- gearman_task_st* shell()
- {
- return _shell;
- }
- Task(gearman_client_st& client_, gearman_task_st* shell_) :
- type(GEARMAN_TASK_KIND_ADD_TASK),
- state(GEARMAN_TASK_STATE_NEW),
- magic_(TASK_MAGIC),
- created_id(0),
- numerator(0),
- denominator(0),
- client_count(0),
- client(&client_),
- next(NULL),
- prev(NULL),
- context(NULL),
- con(NULL),
- recv(NULL),
- func(client_.actions),
- result_rc(GEARMAN_UNKNOWN_STATE),
- result_ptr(NULL),
- _shell(shell_),
- unique_length(0)
- {
- job_handle[0]= 0;
- unique[0]= 0;
- // Add the task to the client
- {
- if (client_.task_list)
- {
- client_.task_list->impl()->prev= shell_;
- }
- next= client_.task_list;
- prev= NULL;
- client_.task_list= shell_;
- client_.task_count++;
- }
- shell_->impl(this);
- }
- };
|