1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
/*
* Gearman PHP Extension
*
* Copyright (C) 2008 James M. Luedke <contact@jamesluedke.com>,
* Eric Day <eday@oddments.org>
* All rights reserved.
*
* Use and distribution licensed under the PHP license. See
* the LICENSE file in this directory for full text.
*/
#ifndef __PHP_GEARMAN_CLIENT_H
#define __PHP_GEARMAN_CLIENT_H
#include "php.h"
#include "php_ini.h"
#include "ext/standard/info.h"
#include "zend_exceptions.h"
#include "zend_interfaces.h"
#include "php_gearman.h"
#include <libgearman-1.0/gearman.h>
#include <libgearman-1.0/interface/status.h>
#include <libgearman-1.0/status.h>
extern zend_class_entry *gearman_client_ce;
extern zend_object_handlers gearman_client_obj_handlers;
void gearman_client_free_obj(zend_object *object);
zend_object *gearman_client_obj_new(zend_class_entry *ce);
typedef enum {
GEARMAN_CLIENT_OBJ_CREATED = (1 << 0)
} gearman_client_obj_flags_t;
typedef struct {
gearman_return_t ret;
gearman_client_obj_flags_t flags;
gearman_client_st client;
/* used for keeping track of task interface callbacks */
zval zworkload_fn;
zval zcreated_fn;
zval zdata_fn;
zval zwarning_fn;
zval zstatus_fn;
zval zcomplete_fn;
zval zexception_fn;
zval zfail_fn;
zend_ulong created_tasks;
zval task_list;
zend_object std;
} gearman_client_obj;
gearman_client_obj *gearman_client_fetch_object(zend_object *obj);
#define Z_GEARMAN_CLIENT_P(zv) gearman_client_fetch_object(Z_OBJ_P((zv)))
/* NOTE: It seems kinda weird that GEARMAN_WORK_FAIL is a valid
* return code, however it is required for a worker to pass status
* back to the client about a failed job, other return codes can
* be passed back but they will cause a docref Warning. Might
* want to think of a better solution XXX */
#define PHP_GEARMAN_CLIENT_RET_OK(__ret) ((__ret) == GEARMAN_SUCCESS || \
(__ret) == GEARMAN_PAUSE || \
(__ret) == GEARMAN_IO_WAIT || \
(__ret) == GEARMAN_WORK_STATUS || \
(__ret) == GEARMAN_WORK_DATA || \
(__ret) == GEARMAN_WORK_EXCEPTION || \
(__ret) == GEARMAN_WORK_WARNING || \
(__ret) == GEARMAN_WORK_FAIL)
#endif /* __PHP_GEARMAN_CLIENT_H */
|