-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsend_result.c
72 lines (61 loc) · 2.65 KB
/
send_result.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
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "send_result.h"
#define GET_SEND_RESULT_OBJ() ROCKETMQ_ZVAL_GET_OBJECT(send_result_obj, getThis())
zend_object_handlers send_result_object_handlers;
static zend_object* send_result_object_create(zend_class_entry *type )
{
send_result_obj *obj = (send_result_obj *) ecalloc(1, sizeof(send_result_obj) + zend_object_properties_size(type));
zend_object_std_init(&obj->std, type);
object_properties_init(&obj->std, type);
obj->std.handlers = &send_result_object_handlers;
return &obj->std;
}
void send_result_object_free_storage(zend_object *object)
{
DEBUG_DESTROY(CLASS_NAME_SEND_RESULT);
send_result_obj *intern = ROCKETMQ_GET_OBJECT(send_result_obj, object);
zend_object_std_dtor(&intern->std);
}
PHP_METHOD(send_result, getMsgId)
{
RETURN_STRING(GET_SEND_RESULT_OBJ()->send_result.msgId);
}
PHP_METHOD(send_result, getSendStatus)
{
RETURN_LONG(GET_SEND_RESULT_OBJ()->send_result.sendStatus);
}
PHP_METHOD(send_result, getOffset)
{
RETURN_LONG(GET_SEND_RESULT_OBJ()->send_result.offset);
}
const zend_function_entry send_result_methods[] = {
ZEND_ME(send_result, getMsgId, arg_input_void, ZEND_ACC_PUBLIC)
ZEND_ME(send_result, getSendStatus, arg_input_void, ZEND_ACC_PUBLIC)
ZEND_ME(send_result, getOffset, arg_input_void, ZEND_ACC_PUBLIC)
{NULL, NULL, NULL}
};
static zend_class_entry *send_result_ce;
void minit_send_result(){
zend_class_entry ce;
INIT_CLASS_ENTRY(ce, CLASS_NAME_SEND_RESULT, send_result_methods);
send_result_ce = zend_register_internal_class_ex(&ce, NULL);
send_result_ce->create_object = send_result_object_create;
memcpy(&send_result_object_handlers, zend_get_std_object_handlers(), sizeof(send_result_object_handlers));
send_result_object_handlers.offset = XtOffsetOf(send_result_obj, std);
send_result_object_handlers.free_obj = send_result_object_free_storage;
}