forked from yunnian/php-nsq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage.c
101 lines (87 loc) · 3.73 KB
/
message.c
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
+----------------------------------------------------------------------+
| Copyright (c) 1997-2017 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Zhenyu Wu <[email protected]> |
+----------------------------------------------------------------------+
*/
#include <php.h>
#include "ext/standard/php_var.h"
#include "message.h"
#include <event2/bufferevent.h>
#include "command.h"
zend_class_entry *nsq_message_ce;
extern int le_bufferevent;
PHP_METHOD(NsqMessage,touch)
{
zval *bev_zval;
zval *message_id;
ZEND_PARSE_PARAMETERS_START(2,2)
Z_PARAM_RESOURCE(bev_zval)
Z_PARAM_ZVAL(message_id)
ZEND_PARSE_PARAMETERS_END();
struct bufferevent *bev = (struct bufferevent*)zend_fetch_resource(Z_RES_P(bev_zval), "buffer event", le_bufferevent);
nsq_touch(bev, Z_STRVAL_P(message_id));
}
//undo: don't finish agin after requeue
PHP_METHOD(NsqMessage,requeue)
{
zval *bev_zval;
zval *message_id;
zval *time_ms;
ZEND_PARSE_PARAMETERS_START(3,3)
Z_PARAM_RESOURCE(bev_zval)
Z_PARAM_ZVAL(message_id)
Z_PARAM_ZVAL(time_ms)
ZEND_PARSE_PARAMETERS_END();
struct bufferevent *bev = (struct bufferevent*)zend_fetch_resource(Z_RES_P(bev_zval), "buffer event", le_bufferevent);
nsq_requeue(bev, Z_STRVAL_P(message_id), Z_LVAL_P(time_ms));
}
PHP_METHOD(NsqMessage,finish)
{
zval *bev_zval;
zval *message_id;
ZEND_PARSE_PARAMETERS_START(2,2)
Z_PARAM_RESOURCE(bev_zval)
Z_PARAM_ZVAL(message_id)
ZEND_PARSE_PARAMETERS_END();
struct bufferevent *bev = (struct bufferevent*)zend_fetch_resource(Z_RES_P(bev_zval), "buffer event", le_bufferevent);
nsq_finish(bev, Z_STRVAL_P(message_id));
}
ZEND_BEGIN_ARG_INFO_EX(arginfo_nsq_requeue, 0, 0, -1)
ZEND_ARG_INFO(0, bev_zval)
ZEND_ARG_INFO(0, message_id)
ZEND_ARG_INFO(0, time_ms)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_nsq_touch, 0, 0, -1)
ZEND_ARG_INFO(0, bev_zval)
ZEND_ARG_INFO(0, message_id)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_nsq_finish, 0, 0, -1)
ZEND_ARG_INFO(0, bev_zval)
ZEND_ARG_INFO(0, message_id)
ZEND_END_ARG_INFO()
static const zend_function_entry nsq_message_functions[] = {
PHP_ME(NsqMessage, touch, arginfo_nsq_touch, ZEND_ACC_PUBLIC)
PHP_ME(NsqMessage, requeue, arginfo_nsq_requeue, ZEND_ACC_PUBLIC)
PHP_ME(NsqMessage, finish, arginfo_nsq_finish, ZEND_ACC_PUBLIC)
PHP_FE_END /* Must be the last line in nsq_functions[] */
};
void nsq_message_init() {
zend_class_entry nsq_message;
INIT_CLASS_ENTRY(nsq_message,"NsqMessage",nsq_message_functions);
nsq_message_ce = zend_register_internal_class(&nsq_message);
zend_declare_property_null(nsq_message_ce,ZEND_STRL("message_id"),ZEND_ACC_PUBLIC);
zend_declare_property_null(nsq_message_ce,ZEND_STRL("messageId"),ZEND_ACC_PUBLIC);
zend_declare_property_null(nsq_message_ce,ZEND_STRL("timestamp"),ZEND_ACC_PUBLIC);
zend_declare_property_null(nsq_message_ce,ZEND_STRL("attempts"),ZEND_ACC_PUBLIC);
zend_declare_property_null(nsq_message_ce,ZEND_STRL("payload"),ZEND_ACC_PUBLIC);
}