-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlabelleader.c
210 lines (165 loc) · 7 KB
/
labelleader.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
/**********************************************************************
* Project: MapServer
* Purpose: PHP/MapScript extension for MapServer. External interface
* functions
* Author: Daniel Morissette, DM Solutions Group (dmorissette@dmsolutions.ca)
* Alan Boudreault, Mapgears
*
**********************************************************************
* Copyright (c) 2000-2010, Daniel Morissette, DM Solutions Group Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies of this Software or works derived from this Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
**********************************************************************/
#include "php_mapscript.h"
zend_class_entry *mapscript_ce_labelleader;
#if PHP_VERSION_ID >= 70000
zend_object_handlers mapscript_labelleader_object_handlers;
#endif
ZEND_BEGIN_ARG_INFO_EX(labelleader___get_args, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(labelleader___set_args, 0, 0, 2)
ZEND_ARG_INFO(0, property)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
/* {{{ proto labelleader __construct()
labelLeaderObj CANNOT be instanciated, this will throw an exception on use */
PHP_METHOD(labelLeaderObj, __construct)
{
mapscript_throw_exception("labelLeaderObj cannot be constructed" TSRMLS_CC);
}
/* }}} */
PHP_METHOD(labelLeaderObj, __get)
{
char *property;
long property_len = 0;
zval *zobj = getThis();
php_labelleader_object *php_labelleader;
PHP_MAPSCRIPT_ERROR_HANDLING(TRUE);
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s",
&property, &property_len) == FAILURE) {
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
return;
}
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
php_labelleader = MAPSCRIPT_OBJ_P(php_labelleader_object, zobj);
IF_GET_LONG("maxdistance", php_labelleader->labelleader->maxdistance)
else IF_GET_LONG("gridstep", php_labelleader->labelleader->gridstep)
else {
mapscript_throw_exception("Property '%s' does not exist in this object." TSRMLS_CC, property);
}
}
PHP_METHOD(labelLeaderObj, __set)
{
char *property;
long property_len = 0;
zval *value;
PHP_MAPSCRIPT_ERROR_HANDLING(TRUE);
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz",
&property, &property_len, &value) == FAILURE) {
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
return;
}
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
if ( (STRING_EQUAL("maxdistance", property)) ||
(STRING_EQUAL("gridstep", property)) ) {
mapscript_throw_exception("Property '%s' is read-only and cannot be set." TSRMLS_CC, property);
} else {
mapscript_throw_exception("Property '%s' does not exist in this object." TSRMLS_CC, property);
}
}
zend_function_entry labelleader_functions[] = {
PHP_ME(labelLeaderObj, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(labelLeaderObj, __get, labelleader___get_args, ZEND_ACC_PUBLIC)
PHP_ME(labelLeaderObj, __set, labelleader___set_args, ZEND_ACC_PUBLIC) {
NULL, NULL, NULL
}
};
void mapscript_create_labelleader(labelLeaderObj *labelleader, parent_object parent, zval *return_value TSRMLS_DC)
{
php_labelleader_object * php_labelleader;
object_init_ex(return_value, mapscript_ce_labelleader);
php_labelleader = MAPSCRIPT_OBJ_P(php_labelleader_object, return_value);
php_labelleader->labelleader = labelleader;
php_labelleader->parent = parent;
MAPSCRIPT_ADDREF(parent.val);
}
#if PHP_VERSION_ID >= 70000
/* PHP7 - Modification by Bjoern Boldt <mapscript@pixaweb.net> */
static zend_object *mapscript_labelleader_create_object(zend_class_entry *ce TSRMLS_DC)
{
php_labelleader_object *php_labelleader;
php_labelleader = ecalloc(1, sizeof(*php_labelleader) + zend_object_properties_size(ce));
zend_object_std_init(&php_labelleader->zobj, ce TSRMLS_CC);
object_properties_init(&php_labelleader->zobj, ce);
php_labelleader->zobj.handlers = &mapscript_labelleader_object_handlers;
MAPSCRIPT_INIT_PARENT(php_labelleader->parent);
return &php_labelleader->zobj;
}
static void mapscript_labelleader_free_object(zend_object *object)
{
php_labelleader_object *php_labelleader;
php_labelleader = (php_labelleader_object *)((char *)object - XtOffsetOf(php_labelleader_object, zobj));
MAPSCRIPT_FREE_PARENT(php_labelleader->parent);
/* We don't need to free the labelLeaderObj */
zend_object_std_dtor(object);
}
PHP_MINIT_FUNCTION(labelleader)
{
zend_class_entry ce;
INIT_CLASS_ENTRY(ce, "labelLeaderObj", labelleader_functions);
mapscript_ce_labelleader = zend_register_internal_class(&ce TSRMLS_CC);
mapscript_ce_labelleader->create_object = mapscript_labelleader_create_object;
mapscript_ce_labelleader->ce_flags |= ZEND_ACC_FINAL;
memcpy(&mapscript_labelleader_object_handlers, &mapscript_std_object_handlers, sizeof(mapscript_labelleader_object_handlers));
mapscript_labelleader_object_handlers.free_obj = mapscript_labelleader_free_object;
mapscript_labelleader_object_handlers.offset = XtOffsetOf(php_labelleader_object, zobj);
return SUCCESS;
}
#else
/* PHP5 */
static void mapscript_labelleader_object_destroy(void *object TSRMLS_DC)
{
php_labelleader_object *php_labelleader = (php_labelleader_object *)object;
MAPSCRIPT_FREE_OBJECT(php_labelleader);
MAPSCRIPT_FREE_PARENT(php_labelleader->parent);
/* We don't need to free the labelLeaderObj */
efree(object);
}
static zend_object_value mapscript_labelleader_object_new(zend_class_entry *ce TSRMLS_DC)
{
zend_object_value retval;
php_labelleader_object *php_labelleader;
MAPSCRIPT_ALLOC_OBJECT(php_labelleader, php_labelleader_object);
retval = mapscript_object_new(&php_labelleader->std, ce,
&mapscript_labelleader_object_destroy TSRMLS_CC);
MAPSCRIPT_INIT_PARENT(php_labelleader->parent);
return retval;
}
PHP_MINIT_FUNCTION(labelleader)
{
zend_class_entry ce;
MAPSCRIPT_REGISTER_CLASS("labelLeaderObj",
labelleader_functions,
mapscript_ce_labelleader,
mapscript_labelleader_object_new);
mapscript_ce_labelleader->ce_flags |= ZEND_ACC_FINAL_CLASS;
return SUCCESS;
}
#endif