forked from arnaud-lb/php-rdkafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fun.c
191 lines (160 loc) · 5.18 KB
/
fun.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/*
+----------------------------------------------------------------------+
| php-rdkafka |
+----------------------------------------------------------------------+
| Copyright (c) 2016 Arnaud Le Blanc |
+----------------------------------------------------------------------+
| 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: Arnaud Le Blanc <[email protected]> |
+----------------------------------------------------------------------+
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "php_rdkafka.h"
#include "php_rdkafka_priv.h"
#include "librdkafka/rdkafka.h"
#include "Zend/zend_exceptions.h"
#include "ext/spl/spl_exceptions.h"
#include "zeval.h"
/* {{{ arginfo */
ZEND_BEGIN_ARG_INFO_EX(arginfo_kafka_get_err_descs, 0, 0, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_kafka_err2str, 0, 0, 1)
ZEND_ARG_INFO(0, err)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_kafka_errno2err, 0, 0, 1)
ZEND_ARG_INFO(0, errnox)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_kafka_errno, 0, 0, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_kafka_thread_cnt, 0, 0, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_kafka_offset_tail, 0, 0, 1)
ZEND_ARG_INFO(0, cnt)
ZEND_END_ARG_INFO()
/* }}} */
#ifdef HAVE_RD_KAFKA_GET_ERR_DESCS
/* {{{ proto array rd_kafka_get_err_descs()
* Returns the full list of error codes.
*/
PHP_FUNCTION(rd_kafka_get_err_descs)
{
const struct rd_kafka_err_desc *errdescs;
size_t cnt;
size_t i;
int seen_zero = 0;
if (zend_parse_parameters_none() == FAILURE) {
return;
}
rd_kafka_get_err_descs(&errdescs, &cnt);
array_init_size(return_value, cnt);
for (i = 0; i < cnt; i++) {
const struct rd_kafka_err_desc *desc = &errdescs[i];
zeval el;
if (desc->code == 0) {
if (seen_zero) {
continue;
}
seen_zero = 1;
}
MAKE_STD_ZEVAL(el);
array_init(P_ZEVAL(el));
add_assoc_long(P_ZEVAL(el), "code", desc->code);
if (desc->name) {
rdkafka_add_assoc_string(P_ZEVAL(el), "name", (char*) desc->name);
} else {
add_assoc_null(P_ZEVAL(el), "name");
}
if (desc->desc) {
rdkafka_add_assoc_string(P_ZEVAL(el), "desc", (char*) desc->desc);
}else {
add_assoc_null(P_ZEVAL(el), "desc");
}
add_next_index_zval(return_value, P_ZEVAL(el));
}
}
/* }}} */
#endif
/* {{{ proto string rd_kafka_err2str(int $err)
* Returns a human readable representation of a kafka error.
*/
PHP_FUNCTION(rd_kafka_err2str)
{
long err;
const char *errstr;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &err) == FAILURE) {
return;
}
errstr = rd_kafka_err2str(err);
if (errstr) {
RDKAFKA_RETURN_STRING(errstr);
}
}
/* }}} */
/* {{{ proto int rd_kafka_errno()
* Returns `errno` */
PHP_FUNCTION(rd_kafka_errno)
{
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "") == FAILURE) {
return;
}
RETURN_LONG(errno);
}
/* }}} */
/* {{{ proto int rd_kafka_errno2err(int $errnox)
* Converts `errno` to a rdkafka error code */
PHP_FUNCTION(rd_kafka_errno2err)
{
long errnox;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &errnox) == FAILURE) {
return;
}
RETURN_LONG(rd_kafka_errno2err(errnox));
}
/* }}} */
/* {{{ proto int rd_kafka_thread_cnt()
* Retrieve the current number of threads in use by librdkafka.
*/
PHP_FUNCTION(rd_kafka_thread_cnt)
{
if (zend_parse_parameters_none() == FAILURE) {
return;
}
RETURN_LONG(rd_kafka_thread_cnt());
}
/* }}} */
/* {{{ proto int rd_kafka_offset_tail(int $cnt)
* Start consuming `$cnt` messages from topic's current `.._END` offset.
*/
PHP_FUNCTION(rd_kafka_offset_tail)
{
long cnt;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &cnt) == FAILURE) {
return;
}
RETURN_LONG(RD_KAFKA_OFFSET_TAIL(cnt));
}
/* }}} */
/* {{{ rdkafka_functions[]
*/
const zend_function_entry rdkafka_functions[] = {
#ifdef HAVE_RD_KAFKA_GET_ERR_DESCS
PHP_FE(rd_kafka_get_err_descs, arginfo_kafka_get_err_descs)
#endif
PHP_FE(rd_kafka_err2str, arginfo_kafka_err2str)
PHP_FE(rd_kafka_errno2err, arginfo_kafka_errno2err)
PHP_FE(rd_kafka_errno, arginfo_kafka_errno)
PHP_FE(rd_kafka_offset_tail, arginfo_kafka_offset_tail)
PHP_FE(rd_kafka_thread_cnt, arginfo_kafka_thread_cnt)
PHP_FE_END /* Must be the last line in rdkafka_functions[] */
};
/* }}} */