-
Notifications
You must be signed in to change notification settings - Fork 2
/
shapefile.c
516 lines (421 loc) · 16.1 KB
/
shapefile.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
/**********************************************************************
* $Id: php_mapscript.c 9765 2010-01-28 15:32:10Z aboudreault $
*
* 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_shapefile;
#if PHP_VERSION_ID >= 70000
zend_object_handlers mapscript_shapefile_object_handlers;
#endif
ZEND_BEGIN_ARG_INFO_EX(shapefile___construct_args, 0, 0, 2)
ZEND_ARG_INFO(0, filename)
ZEND_ARG_INFO(0, type)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(shapefile___get_args, 0, 0, 1)
ZEND_ARG_INFO(0, property)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(shapefile___set_args, 0, 0, 2)
ZEND_ARG_INFO(0, property)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(shapefile_getShape_args, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(shapefile_getPoint_args, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(shapefile_getExtent_args, 0, 0, 1)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(shapefile_addShape_args, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, shape, shapeObj, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(shapefile_addPoint_args, 0, 0, 1)
ZEND_ARG_OBJ_INFO(0, point, pointObj, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(shapefile_getTransformed_args, 0, 0, 2)
ZEND_ARG_OBJ_INFO(0, map, mapObj, 0)
ZEND_ARG_INFO(0, index)
ZEND_END_ARG_INFO()
/* {{{ proto shapefile __construct(string filename, int type)
Create a new shapeFileObj instance. */
PHP_METHOD(shapeFileObj, __construct)
{
zval *zobj = getThis();
php_shapefile_object *php_shapefile;
char *filename;
long filename_len = 0;
long type;
PHP_MAPSCRIPT_ERROR_HANDLING(TRUE);
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl",
&filename, &filename_len, &type) == FAILURE) {
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
return;
}
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
php_shapefile = MAPSCRIPT_OBJ_P(php_shapefile_object, zobj);
php_shapefile->shapefile = shapefileObj_new(filename, type);
if (php_shapefile->shapefile == NULL) {
mapscript_throw_mapserver_exception("Failed to open shapefile %s" TSRMLS_CC, filename);
return;
}
}
/* }}} */
PHP_METHOD(shapeFileObj, __get)
{
char *property;
long property_len = 0;
zval *zobj = getThis();
php_shapefile_object *php_shapefile;
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_shapefile = MAPSCRIPT_OBJ_P(php_shapefile_object, zobj);
IF_GET_LONG("numshapes", php_shapefile->shapefile->numshapes)
else IF_GET_LONG("type", php_shapefile->shapefile->type)
else IF_GET_LONG("isopen", php_shapefile->shapefile->isopen)
else IF_GET_LONG("lastshape", php_shapefile->shapefile->lastshape)
else IF_GET_STRING("source", php_shapefile->shapefile->source)
else IF_GET_OBJECT("bounds", mapscript_ce_rect, php_shapefile->bounds, &php_shapefile->shapefile->bounds)
else {
mapscript_throw_exception("Property '%s' does not exist in this object." TSRMLS_CC, property);
}
}
PHP_METHOD(shapeFileObj, __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("numshapes", property)) ||
(STRING_EQUAL("type", property)) ||
(STRING_EQUAL("source", property)) ||
(STRING_EQUAL("isopen", property)) ||
(STRING_EQUAL("lastshape", property)) ||
(STRING_EQUAL("bounds", 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);
}
}
/* {{{ proto int shapefile.getShape(int i)
Retrieve shape by index. */
PHP_METHOD(shapeFileObj, getShape)
{
zval *zobj = getThis();
long index;
shapeObj *shape;
php_shapefile_object *php_shapefile;
parent_object parent;
PHP_MAPSCRIPT_ERROR_HANDLING(TRUE);
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l",
&index) == FAILURE) {
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
return;
}
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
php_shapefile = MAPSCRIPT_OBJ_P(php_shapefile_object, zobj);
/* Create a new shapeObj to hold the result
* Note that the type used to create the shape (MS_NULL) does not matter
* at this point since it will be set by SHPReadShape().
*/
if ((shape = shapeObj_new(MS_SHAPE_NULL)) == NULL) {
mapscript_throw_mapserver_exception("Failed creating new shape (out of memory?)" TSRMLS_CC);
return;
}
if (shapefileObj_get(php_shapefile->shapefile, index, shape) != MS_SUCCESS) {
shapeObj_destroy(shape);
mapscript_throw_mapserver_exception("Failed reading shape %ld." TSRMLS_CC, index);
return;
}
MAPSCRIPT_MAKE_PARENT(NULL, NULL);
mapscript_create_shape(shape, parent, NULL, return_value TSRMLS_CC);
}
/* }}} */
/* {{{ proto int shapefile.getPoint(int i)
Retrieve a point by index. */
PHP_METHOD(shapeFileObj, getPoint)
{
zval *zobj = getThis();
long index;
pointObj *point;
php_shapefile_object *php_shapefile;
parent_object parent;
PHP_MAPSCRIPT_ERROR_HANDLING(TRUE);
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l",
&index) == FAILURE) {
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
return;
}
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
php_shapefile = MAPSCRIPT_OBJ_P(php_shapefile_object, zobj);
/* Create a new shapeObj to hold the result
* Note that the type used to create the shape (MS_NULL) does not matter
* at this point since it will be set by SHPReadShape().
*/
/* Create a new PointObj to hold the result */
if ((point = pointObj_new()) == NULL) {
mapscript_throw_mapserver_exception("Failed creating new point (out of memory?)" TSRMLS_CC);
return;
}
/* Read from the file */
if (shapefileObj_getPoint(php_shapefile->shapefile, index, point) != MS_SUCCESS) {
pointObj_destroy(point);
mapscript_throw_mapserver_exception("Failed reading point %ld." TSRMLS_CC, index);
return;
}
MAPSCRIPT_MAKE_PARENT(NULL, NULL);
mapscript_create_point(point, parent, return_value TSRMLS_CC);
}
/* }}} */
/* {{{ proto int shapefile.getExtent(int i)
Retrieve a shape's bounding box by index. */
PHP_METHOD(shapeFileObj, getExtent)
{
zval *zobj = getThis();
long index;
rectObj *rect;
php_shapefile_object *php_shapefile;
parent_object p;
PHP_MAPSCRIPT_ERROR_HANDLING(TRUE);
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l",
&index) == FAILURE) {
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
return;
}
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
php_shapefile = MAPSCRIPT_OBJ_P(php_shapefile_object, zobj);
/* Create a new rectObj to hold the result */
if ((rect = rectObj_new()) == NULL) {
mapscript_throw_mapserver_exception("Failed creating new rectObj (out of memory?)" TSRMLS_CC);
return;
}
/* Read from the file
* shapefileObj_getExtent() has no return value! How do we catch errors?
*/
shapefileObj_getExtent(php_shapefile->shapefile, index, rect);
/* Return rectObj */
MAPSCRIPT_INIT_PARENT(p);
mapscript_create_rect(rect, p, return_value TSRMLS_CC);
}
/* }}} */
/* {{{ proto int shapefile.addShape(shapeObj shape)
Appends a shape to an open shapefile. */
PHP_METHOD(shapeFileObj, addShape)
{
zval *zobj = getThis();
zval *zshape;
php_shapefile_object *php_shapefile;
php_shape_object *php_shape;
int retval = MS_FAILURE;
PHP_MAPSCRIPT_ERROR_HANDLING(TRUE);
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O",
&zshape, mapscript_ce_shape) == FAILURE) {
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
return;
}
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
php_shapefile = MAPSCRIPT_OBJ_P(php_shapefile_object, zobj);
php_shape = MAPSCRIPT_OBJ_P(php_shape_object, zshape);
retval = shapefileObj_add(php_shapefile->shapefile, php_shape->shape);
RETURN_LONG(retval);
}
/* }}} */
/* {{{ proto int shapefile.addPoint(pointObj point)
Appends a point to a poin layer. */
PHP_METHOD(shapeFileObj, addPoint)
{
zval *zobj = getThis();
zval *zpoint;
php_shapefile_object *php_shapefile;
php_point_object *php_point;
int retval = MS_FAILURE;
PHP_MAPSCRIPT_ERROR_HANDLING(TRUE);
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O",
&zpoint, mapscript_ce_point) == FAILURE) {
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
return;
}
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
php_shapefile = MAPSCRIPT_OBJ_P(php_shapefile_object, zobj);
php_point = MAPSCRIPT_OBJ_P(php_point_object, zpoint);
retval = shapefileObj_addPoint(php_shapefile->shapefile, php_point->point);
RETURN_LONG(retval);
}
/* }}} */
/* {{{ proto int shapefile.getTransformed(mapObj map, int index)
Retrieve shape by index. */
PHP_METHOD(shapeFileObj, getTransformed)
{
zval *zobj = getThis();
zval *zmap;
long index;
php_shapefile_object *php_shapefile;
php_map_object *php_map;
shapeObj *shape = NULL;
parent_object parent;
PHP_MAPSCRIPT_ERROR_HANDLING(TRUE);
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Ol",
&zmap, mapscript_ce_map, &index) == FAILURE) {
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
return;
}
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
php_shapefile = MAPSCRIPT_OBJ_P(php_shapefile_object, zobj);
php_map = MAPSCRIPT_OBJ_P(php_map_object, zmap);
/* Create a new shapeObj to hold the result
* Note that the type used to create the shape (MS_NULL) does not matter
* at this point since it will be set by SHPReadShape().
*/
if ((shape = shapeObj_new(MS_SHAPE_NULL)) == NULL) {
mapscript_throw_mapserver_exception("Failed creating new shape (out of memory?)" TSRMLS_CC);
return;
}
/* Read from the file */
if (shapefileObj_getTransformed(php_shapefile->shapefile, php_map->map,
index, shape) != MS_SUCCESS) {
shapeObj_destroy(shape);
mapscript_throw_mapserver_exception("Failed reading shape %ld." TSRMLS_CC, index);
return;
}
/* Return shape object */
MAPSCRIPT_MAKE_PARENT(NULL, NULL);
mapscript_create_shape(shape, parent, NULL, return_value TSRMLS_CC);
}
/* }}} */
/* {{{ proto void shapefile.free()
Free the object */
PHP_METHOD(shapeFileObj, free)
{
zval *zobj = getThis();
php_shapefile_object *php_shapefile;
PHP_MAPSCRIPT_ERROR_HANDLING(TRUE);
if (zend_parse_parameters_none() == FAILURE) {
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
return;
}
PHP_MAPSCRIPT_RESTORE_ERRORS(TRUE);
php_shapefile = MAPSCRIPT_OBJ_P(php_shapefile_object, zobj);
MAPSCRIPT_DELREF(php_shapefile->bounds);
}
/* }}} */
zend_function_entry shapefile_functions[] = {
PHP_ME(shapeFileObj, __construct, shapefile___construct_args, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(shapeFileObj, __get, shapefile___get_args, ZEND_ACC_PUBLIC)
PHP_ME(shapeFileObj, __set, shapefile___set_args, ZEND_ACC_PUBLIC)
PHP_ME(shapeFileObj, getShape, shapefile_getShape_args, ZEND_ACC_PUBLIC)
PHP_ME(shapeFileObj, getPoint, shapefile_getPoint_args, ZEND_ACC_PUBLIC)
PHP_ME(shapeFileObj, getExtent, shapefile_getExtent_args, ZEND_ACC_PUBLIC)
PHP_ME(shapeFileObj, addShape, shapefile_addShape_args, ZEND_ACC_PUBLIC)
PHP_ME(shapeFileObj, addPoint, shapefile_addPoint_args, ZEND_ACC_PUBLIC)
PHP_ME(shapeFileObj, getTransformed, shapefile_getTransformed_args, ZEND_ACC_PUBLIC)
PHP_ME(shapeFileObj, free, NULL, ZEND_ACC_PUBLIC) {
NULL, NULL, NULL
}
};
void mapscript_create_shapefile(shapefileObj *shapefile, zval *return_value TSRMLS_DC)
{
php_shapefile_object * php_shapefile;
object_init_ex(return_value, mapscript_ce_shapefile);
php_shapefile = MAPSCRIPT_OBJ_P(php_shapefile_object, return_value);
php_shapefile->shapefile = shapefile;
}
#if PHP_VERSION_ID >= 70000
/* PHP7 - Modification by Bjoern Boldt <mapscript@pixaweb.net> */
static zend_object *mapscript_shapefile_create_object(zend_class_entry *ce TSRMLS_DC)
{
php_shapefile_object *php_shapefile;
php_shapefile = ecalloc(1, sizeof(*php_shapefile) + zend_object_properties_size(ce));
zend_object_std_init(&php_shapefile->zobj, ce TSRMLS_CC);
object_properties_init(&php_shapefile->zobj, ce);
php_shapefile->zobj.handlers = &mapscript_shapefile_object_handlers;
ZVAL_UNDEF(&php_shapefile->bounds);
return &php_shapefile->zobj;
}
static void mapscript_shapefile_free_object(zend_object *object)
{
php_shapefile_object *php_shapefile;
php_shapefile = (php_shapefile_object *)((char *)object - XtOffsetOf(php_shapefile_object, zobj));
MAPSCRIPT_DELREF(php_shapefile->bounds);
shapefileObj_destroy(php_shapefile->shapefile);
zend_object_std_dtor(object);
}
PHP_MINIT_FUNCTION(shapefile)
{
zend_class_entry ce;
INIT_CLASS_ENTRY(ce, "shapefileObj", shapefile_functions);
mapscript_ce_shapefile = zend_register_internal_class(&ce TSRMLS_CC);
mapscript_ce_shapefile->create_object = mapscript_shapefile_create_object;
mapscript_ce_shapefile->ce_flags |= ZEND_ACC_FINAL;
memcpy(&mapscript_shapefile_object_handlers, &mapscript_std_object_handlers, sizeof(mapscript_shapefile_object_handlers));
mapscript_shapefile_object_handlers.free_obj = mapscript_shapefile_free_object;
mapscript_shapefile_object_handlers.offset = XtOffsetOf(php_shapefile_object, zobj);
return SUCCESS;
}
#else
/* PHP5 */
static void mapscript_shapefile_object_destroy(void *object TSRMLS_DC)
{
php_shapefile_object *php_shapefile = (php_shapefile_object *)object;
MAPSCRIPT_FREE_OBJECT(php_shapefile);
MAPSCRIPT_DELREF(php_shapefile->bounds);
shapefileObj_destroy(php_shapefile->shapefile);
efree(object);
}
static zend_object_value mapscript_shapefile_object_new(zend_class_entry *ce TSRMLS_DC)
{
zend_object_value retval;
php_shapefile_object *php_shapefile;
MAPSCRIPT_ALLOC_OBJECT(php_shapefile, php_shapefile_object);
retval = mapscript_object_new(&php_shapefile->std, ce,
&mapscript_shapefile_object_destroy TSRMLS_CC);
php_shapefile->bounds = NULL;
return retval;
}
PHP_MINIT_FUNCTION(shapefile)
{
zend_class_entry ce;
MAPSCRIPT_REGISTER_CLASS("shapeFileObj",
shapefile_functions,
mapscript_ce_shapefile,
mapscript_shapefile_object_new);
mapscript_ce_shapefile->ce_flags |= ZEND_ACC_FINAL_CLASS;
return SUCCESS;
}
#endif