forked from arnaud-lb/php-rdkafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata_broker.c
219 lines (170 loc) · 6.04 KB
/
metadata_broker.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/*
+----------------------------------------------------------------------+
| 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 "ext/spl/spl_iterators.h"
#include "Zend/zend_interfaces.h"
#include "Zend/zend_exceptions.h"
#include "zeval.h"
typedef struct _object_intern {
#if PHP_MAJOR_VERSION < 7
zend_object std;
#endif
zval zmetadata;
const rd_kafka_metadata_broker_t *metadata_broker;
#if PHP_MAJOR_VERSION >= 7
zend_object std;
#endif
} object_intern;
static HashTable *get_debug_info(zval *object, int *is_temp TSRMLS_DC);
static zend_class_entry * ce;
static zend_object_handlers handlers;
static void free_object(zend_object *object TSRMLS_DC) /* {{{ */
{
object_intern *intern = get_custom_object(object_intern, object);
if (intern->metadata_broker) {
zval_dtor(&intern->zmetadata);
}
zend_object_std_dtor(&intern->std TSRMLS_CC);
free_custom_object(intern);
}
/* }}} */
static zend_object_value create_object(zend_class_entry *class_type TSRMLS_DC) /* {{{ */
{
zend_object_value retval;
object_intern *intern;
intern = alloc_object(intern, class_type);
zend_object_std_init(&intern->std, class_type TSRMLS_CC);
object_properties_init(&intern->std, class_type);
STORE_OBJECT(retval, intern, (zend_objects_store_dtor_t) zend_objects_destroy_object, free_object, NULL);
SET_OBJECT_HANDLERS(retval, &handlers);
return retval;
}
/* }}} */
static object_intern * get_object(zval *zmt TSRMLS_DC)
{
object_intern *omt = get_custom_object_zval(object_intern, zmt);
if (!omt->metadata_broker) {
zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "RdKafka\\Metadata\\Broker::__construct() has not been called");
return NULL;
}
return omt;
}
static HashTable *get_debug_info(zval *object, int *is_temp TSRMLS_DC) /* {{{ */
{
zval ary;
object_intern *intern;
*is_temp = 1;
array_init(&ary);
intern = get_object(object TSRMLS_CC);
if (!intern) {
return Z_ARRVAL(ary);
}
add_assoc_long(&ary, "id", intern->metadata_broker->id);
rdkafka_add_assoc_string(&ary, "host", intern->metadata_broker->host);
add_assoc_long(&ary, "port", intern->metadata_broker->port);
return Z_ARRVAL(ary);
}
/* }}} */
/* {{{ proto int RdKafka\Metadata\Broker::getId()
Broker id */
ZEND_BEGIN_ARG_INFO_EX(arginfo_kafka_metadata_get_id, 0, 0, 0)
ZEND_END_ARG_INFO()
PHP_METHOD(RdKafka__Metadata__Broker, getId)
{
object_intern *intern;
if (zend_parse_parameters_none() == FAILURE) {
return;
}
intern = get_object(getThis() TSRMLS_CC);
if (!intern) {
return;
}
RETURN_LONG(intern->metadata_broker->id);
}
/* }}} */
/* {{{ proto string RdKafka\Metadata\Broker::getHost()
Broker hostname */
ZEND_BEGIN_ARG_INFO_EX(arginfo_kafka_metadata_get_host, 0, 0, 0)
ZEND_END_ARG_INFO()
PHP_METHOD(RdKafka__Metadata__Broker, getHost)
{
object_intern *intern;
if (zend_parse_parameters_none() == FAILURE) {
return;
}
intern = get_object(getThis() TSRMLS_CC);
if (!intern) {
return;
}
RDKAFKA_RETURN_STRING(intern->metadata_broker->host);
}
/* }}} */
/* {{{ proto int RdKafka\Metadata\Broker::getPort()
Broker port */
ZEND_BEGIN_ARG_INFO_EX(arginfo_kafka_metadata_get_port, 0, 0, 0)
ZEND_END_ARG_INFO()
PHP_METHOD(RdKafka__Metadata__Broker, getPort)
{
object_intern *intern;
if (zend_parse_parameters_none() == FAILURE) {
return;
}
intern = get_object(getThis() TSRMLS_CC);
if (!intern) {
return;
}
RETURN_LONG(intern->metadata_broker->port);
}
/* }}} */
static const zend_function_entry fe[] = {
PHP_ME(RdKafka__Metadata__Broker, getId, arginfo_kafka_metadata_get_id, ZEND_ACC_PUBLIC)
PHP_ME(RdKafka__Metadata__Broker, getHost, arginfo_kafka_metadata_get_host, ZEND_ACC_PUBLIC)
PHP_ME(RdKafka__Metadata__Broker, getPort, arginfo_kafka_metadata_get_port, ZEND_ACC_PUBLIC)
PHP_FE_END
};
void kafka_metadata_broker_minit(TSRMLS_D)
{
zend_class_entry tmpce;
INIT_NS_CLASS_ENTRY(tmpce, "RdKafka", "Metadata\\Broker", fe);
ce = zend_register_internal_class(&tmpce TSRMLS_CC);
ce->create_object = create_object;
handlers = kafka_default_object_handlers;
handlers.get_debug_info = get_debug_info;
set_object_handler_free_obj(&handlers, free_object);
set_object_handler_offset(&handlers, XtOffsetOf(object_intern, std));
}
void kafka_metadata_broker_ctor(zval *return_value, zval *zmetadata, const void *data TSRMLS_DC)
{
rd_kafka_metadata_broker_t *metadata_broker = (rd_kafka_metadata_broker_t*)data;
object_intern *intern;
if (object_init_ex(return_value, ce) != SUCCESS) {
return;
}
intern = get_custom_object_zval(object_intern, return_value);
if (!intern) {
return;
}
ZVAL_ZVAL(&intern->zmetadata, zmetadata, 1, 0);
intern->metadata_broker = metadata_broker;
}