forked from CloCkWeRX/sdo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SDO_Model_Type.cpp
executable file
·566 lines (481 loc) · 15 KB
/
SDO_Model_Type.cpp
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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
/*
+----------------------------------------------------------------------+
| (c) Copyright IBM Corporation 2005. |
| All Rights Reserved. |
+----------------------------------------------------------------------+
| |
| Licensed 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. |
+----------------------------------------------------------------------+
| Author: Caroline Maynard |
+----------------------------------------------------------------------+
*/
static char rcs_id[] = "$Id: SDO_Model_Type.cpp 234945 2007-05-04 15:05:53Z mfp $";
#ifdef PHP_WIN32
#include <iostream>
#include <math.h>
#include "zend_config.w32.h"
#endif
#include "php.h"
#include "zend_exceptions.h"
#include "php_sdo_int.h"
#define CLASS_NAME "SDO_Model_Type"
/* {{{ sdo_model_type_object
* The instance data for this class - extends the standard zend_object
*/
typedef struct {
zend_object zo; /* The standard zend_object */
const Type *typep; /* The sdo4cpp type */
} sdo_model_type_object;
/* }}} */
static zend_object_handlers sdo_model_type_object_handlers;
/* {{{ sdo_model_type_get_instance
*/
static sdo_model_type_object *sdo_model_type_get_instance(zval *me TSRMLS_DC)
{
return (sdo_model_type_object *)zend_object_store_get_object(me TSRMLS_CC);
}
/* }}} */
/* {{{ debug macro functions
*/
SDO_DEBUG_ADDREF(model_type)
SDO_DEBUG_DELREF(model_type)
SDO_DEBUG_DESTROY(model_type)
/* }}} */
/* {{{ sdo_model_type_object_free_storage
*/
static void sdo_model_type_object_free_storage(void *object TSRMLS_DC)
{
sdo_model_type_object *my_object;
SDO_DEBUG_FREE(object);
my_object = (sdo_model_type_object *)object;
zend_hash_destroy(my_object->zo.properties);
FREE_HASHTABLE(my_object->zo.properties);
if (my_object->zo.guards) {
zend_hash_destroy(my_object->zo.guards);
FREE_HASHTABLE(my_object->zo.guards);
}
my_object->typep = NULL;
efree(my_object);
}
/* }}} */
/* {{{ sdo_model_type_object_create
*/
static zend_object_value sdo_model_type_object_create(zend_class_entry *ce TSRMLS_DC)
{
zend_object_value retval;
zval *tmp; /* this must be passed to hash_copy, but doesn't seem to be used */
sdo_model_type_object *my_object;
my_object = (sdo_model_type_object *)emalloc(sizeof(sdo_model_type_object));
memset(my_object, 0, sizeof(sdo_model_type_object));
my_object->zo.ce = ce;
my_object->zo.guards = NULL;
ALLOC_HASHTABLE(my_object->zo.properties);
zend_hash_init(my_object->zo.properties, 0, NULL, ZVAL_PTR_DTOR, 0);
// zend_hash_copy(my_object->zo.properties, &ce->default_properties, (copy_ctor_func_t)zval_add_ref, (void *)&tmp, sizeof(zval *));
#if PHP_VERSION_ID < 50399
zend_hash_copy(my_object->zo.properties, &ce->default_properties, (copy_ctor_func_t)zval_add_ref, (void *)&tmp, sizeof(zval *));
#else
object_properties_init(&my_object->zo, ce);
#endif
retval.handle = zend_objects_store_put(my_object, SDO_FUNC_DESTROY(model_type), sdo_model_type_object_free_storage, NULL TSRMLS_CC);
retval.handlers = &sdo_model_type_object_handlers;
SDO_DEBUG_ALLOCATE(retval.handle, my_object);
return retval;
}
/* }}} */
/* {{{ sdo_model_type_new
*/
void sdo_model_type_new(zval *me, const Type *typep TSRMLS_DC)
{
sdo_model_type_object *my_object;
// char *class_name, *space;
Z_TYPE_P(me) = IS_OBJECT;
if (object_init_ex(me, sdo_model_typeimpl_class_entry) == FAILURE) {
const char *space, *class_name = get_active_class_name(&space TSRMLS_CC);
php_error(E_ERROR, "%s%s%s(): internal error (%i) - failed to instantiate %s object",
class_name, space, get_active_function_name(TSRMLS_C), __LINE__, CLASS_NAME);
ZVAL_NULL(me);
return;
}
my_object = (sdo_model_type_object *)zend_object_store_get_object(me TSRMLS_CC);
my_object->typep = typep;
zend_update_property_string(sdo_model_typeimpl_class_entry, me,
"name", strlen("name"), (char *)typep->getName() TSRMLS_CC);
zend_update_property_string(sdo_model_typeimpl_class_entry, me,
"namespaceURI", strlen("namespaceURI"), (char *)typep->getURI() TSRMLS_CC);
}
/* }}} */
/* {{{ sdo_model_type_compare_objects
* gets called as a consequence of an == comparison
*/
static int sdo_model_type_compare_objects(zval *object1, zval *object2 TSRMLS_DC)
{
sdo_model_type_object *my_object1, *my_object2;
my_object1 = sdo_model_type_get_instance(object1 TSRMLS_CC);
my_object2 = sdo_model_type_get_instance(object2 TSRMLS_CC);
if (my_object1->typep == my_object2->typep)
return SUCCESS;
try {
return my_object1->typep->equals(*my_object2->typep);
} catch (SDORuntimeException e) {
/* In this case we won't rethrow the exception - suffice it to say that the objects are not equal */
return FAILURE;
}
}
/* }}} */
/* {{{ sdo_model_type_sumary_string
*/
void sdo_model_type_summary_string (ostringstream& print_buf, const Type *typep TSRMLS_DC)
{
if (typep->isAbstractType()) {
print_buf << "<abstract> ";
}
if (typep->isOpenType()) {
print_buf << "<open> ";
}
if (typep->isSequencedType()) {
print_buf << "<sequenced> ";
}
if (typep->isDataObjectType()) {
print_buf << "<dataObject> ";
}
print_buf << typep->getURI() << "#" << typep->getName();
}
/* }}} */
/* {{{ sdo_model_type_string
*/
void sdo_model_type_string (ostringstream& print_buf, const Type *typep, const char *old_indent TSRMLS_DC)
{
char *indent = (char *)emalloc(strlen(old_indent) + 4 + 1);
sprintf (indent, "%s ", old_indent);
PropertyList pl = typep->getProperties();
print_buf << indent;
sdo_model_type_summary_string (print_buf, typep TSRMLS_CC);
print_buf << "[" << pl.size() <<"]";
const Type *base_typep = typep->getBaseType();
if (base_typep) {
print_buf << "<extends " << base_typep->getURI() << "#" << base_typep->getName() << "> ";
}
if (pl.size() > 0) {
print_buf << " {";
for (int i = 0; i < pl.size(); i++) {
sdo_model_property_string (print_buf, &pl[i], indent TSRMLS_CC);
}
print_buf << indent << "}";
} else {
print_buf << ";";
}
efree(indent);
}
/* }}} */
/* {{{ sdo_model_type_cast_object
*/
#if PHP_MAJOR_VERSION > 5 || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 1)
static int sdo_model_type_cast_object(zval *readobj, zval *writeobj, int type TSRMLS_DC)
{
int should_free = 0;
#else
static int sdo_model_type_cast_object(zval *readobj, zval *writeobj, int type, int should_free TSRMLS_DC)
{
#endif
sdo_model_type_object *my_object;
ostringstream print_buf;
zval free_obj;
int rc = SUCCESS;
if (should_free) {
free_obj = *writeobj;
}
my_object = sdo_model_type_get_instance(readobj TSRMLS_CC);
try {
sdo_model_type_string (print_buf, my_object->typep, "\n" TSRMLS_CC);
std::string print_string = print_buf.str()/*.substr(0, SDO_TOSTRING_MAX)*/;
ZVAL_STRINGL(writeobj, (char *)print_string.c_str(), print_string.length(), 1);
} catch (SDORuntimeException e) {
ZVAL_NULL(writeobj);
sdo_throw_runtimeexception(&e TSRMLS_CC);
rc = FAILURE;
}
switch(type) {
case IS_STRING:
convert_to_string(writeobj);
break;
case IS_BOOL:
convert_to_boolean(writeobj);
break;
case IS_LONG:
convert_to_long(writeobj);
break;
case IS_DOUBLE:
convert_to_double(writeobj);
break;
default:
rc = FAILURE;
}
if (should_free) {
zval_dtor(&free_obj);
}
return rc;
}
/* }}} */
/* {{{ sdo_model_type_minit
*/
void sdo_model_type_minit(zend_class_entry *tmp_ce TSRMLS_DC)
{
tmp_ce->create_object = sdo_model_type_object_create;
sdo_model_typeimpl_class_entry = zend_register_internal_class(tmp_ce TSRMLS_CC);
zend_declare_property_null (sdo_model_typeimpl_class_entry,
"name", strlen("name"), ZEND_ACC_PUBLIC|ZEND_ACC_ABSTRACT TSRMLS_CC);
zend_declare_property_null (sdo_model_typeimpl_class_entry,
"namespaceURI", strlen("namespaceURI"), ZEND_ACC_PUBLIC|ZEND_ACC_ABSTRACT TSRMLS_CC);
zend_class_implements(sdo_model_typeimpl_class_entry TSRMLS_CC, 1, sdo_model_type_class_entry);
memcpy(&sdo_model_type_object_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers));
sdo_model_type_object_handlers.add_ref = SDO_FUNC_ADDREF(model_type);
sdo_model_type_object_handlers.del_ref = SDO_FUNC_DELREF(model_type);
sdo_model_type_object_handlers.clone_obj = NULL;
sdo_model_type_object_handlers.compare_objects = sdo_model_type_compare_objects;
sdo_model_type_object_handlers.cast_object = sdo_model_type_cast_object;
}
/* }}} */
/* {{{ SDO_Model_TypeImpl::__construct
*/
PHP_METHOD(SDO_Model_TypeImpl, __construct)
{
// char *class_name, *space;
const char *space, *class_name = get_active_class_name(&space TSRMLS_CC);
php_error(E_ERROR, "%s%s%s(): internal error - private constructor was called",
class_name, space, get_active_function_name(TSRMLS_C));
}
/* }}} */
/* {{{ SDO_Model_TypeImpl::getName
*/
PHP_METHOD(SDO_Model_TypeImpl, getName)
{
sdo_model_type_object *my_object;
if (ZEND_NUM_ARGS() != 0) {
WRONG_PARAM_COUNT;
}
my_object = sdo_model_type_get_instance(getThis() TSRMLS_CC);
try {
RETVAL_STRING((char *)my_object->typep->getName(), 1);
} catch (SDORuntimeException e) {
sdo_throw_runtimeexception(&e TSRMLS_CC);
}
}
/* }}} */
/* {{{ SDO_Model_TypeImpl::getNamespaceURI
*/
PHP_METHOD(SDO_Model_TypeImpl, getNamespaceURI)
{
sdo_model_type_object *my_object;
if (ZEND_NUM_ARGS() != 0) {
WRONG_PARAM_COUNT;
}
my_object = sdo_model_type_get_instance(getThis() TSRMLS_CC);
try {
RETVAL_STRING((char *)my_object->typep->getURI(), 1);
} catch (SDORuntimeException e) {
sdo_throw_runtimeexception(&e TSRMLS_CC);
}
}
/* {{{ SDO_Model_TypeImpl::isInstance
*/
PHP_METHOD(SDO_Model_TypeImpl, isInstance)
{
sdo_model_type_object *my_object;
zval *z_do;
int argc;
// char *class_name, *space;
if ((argc = ZEND_NUM_ARGS()) != 1) {
WRONG_PARAM_COUNT;
}
if (zend_parse_parameters(argc TSRMLS_CC, "O", &z_do, sdo_dataobject_class_entry) == FAILURE) {
return;
}
my_object = sdo_model_type_get_instance(getThis() TSRMLS_CC);
DataObjectPtr dop = sdo_do_get(z_do TSRMLS_CC);
if (!dop) {
const char *space, *class_name = get_active_class_name (&space TSRMLS_CC);
php_error(E_ERROR, "%s%s%s(): internal error (%i) - SDO_DataObject not found in store",
class_name, space, get_active_function_name(TSRMLS_C), __LINE__);
return;
}
try {
const Type& my_type = *my_object->typep;
const Type *target_type = &dop->getType();
RETVAL_FALSE;
/* walk up the target object's type hierarchy */
while (target_type) {
if (my_type.equals(*target_type)) {
RETURN_TRUE;
} else {
target_type = target_type->getBaseType();
}
}
} catch (SDORuntimeException e) {
sdo_throw_runtimeexception(&e TSRMLS_CC);
}
}
/* }}} */
/* {{{ SDO_Model_TypeImpl::getProperties
*/
PHP_METHOD(SDO_Model_TypeImpl, getProperties)
{
sdo_model_type_object *my_object;
PropertyList pl;
zval *z_property;
if (ZEND_NUM_ARGS() != 0) {
WRONG_PARAM_COUNT;
}
my_object = sdo_model_type_get_instance(getThis() TSRMLS_CC);
try {
pl = my_object->typep->getProperties();
array_init(return_value);
for (int i = 0; i < pl.size(); i++) {
MAKE_STD_ZVAL(z_property);
sdo_model_property_new(z_property, &pl[i] TSRMLS_CC);
add_next_index_zval(return_value, z_property);
}
} catch (SDORuntimeException e) {
sdo_throw_runtimeexception(&e TSRMLS_CC);
}
}
/* }}} */
/* {{{ SDO_Model_TypeImpl::getProperty
*/
PHP_METHOD(SDO_Model_TypeImpl, getProperty)
{
int argc;
sdo_model_type_object *my_object;
const Property *propertyp;
zval *z_offset;
const char *xpath = NULL;
int xpath_len;
long property_index;
if ((argc = ZEND_NUM_ARGS()) != 1) {
WRONG_PARAM_COUNT;
}
if (zend_parse_parameters(argc TSRMLS_CC, "z", &z_offset) == FAILURE) {
return;
}
if (Z_TYPE_P(z_offset) == IS_STRING) {
xpath = Z_STRVAL_P(z_offset);
xpath_len = Z_STRLEN_P(z_offset);
} else {
if (Z_TYPE_P(z_offset) != IS_LONG) {
convert_to_long(z_offset);
}
property_index = Z_LVAL_P(z_offset);
}
my_object = sdo_model_type_get_instance(getThis() TSRMLS_CC);
try {
if (xpath)
propertyp = &my_object->typep->getProperty(xpath);
else
propertyp = &my_object->typep->getProperty(property_index);
sdo_model_property_new (return_value, propertyp TSRMLS_CC);
} catch (SDORuntimeException e) {
sdo_throw_runtimeexception(&e TSRMLS_CC);
}
}
/* }}} */
/* {{{ SDO_Model_TypeImpl::isDataType
*/
PHP_METHOD(SDO_Model_TypeImpl, isDataType)
{
sdo_model_type_object *my_object;
if (ZEND_NUM_ARGS() != 0) {
WRONG_PARAM_COUNT;
}
my_object = sdo_model_type_get_instance(getThis() TSRMLS_CC);
try {
RETVAL_BOOL(my_object->typep->isDataType());
} catch (SDORuntimeException e) {
sdo_throw_runtimeexception(&e TSRMLS_CC);
}
}
/* }}} */
/* {{{ SDO_Model_TypeImpl::isSequencedType
*/
PHP_METHOD(SDO_Model_TypeImpl, isSequencedType)
{
sdo_model_type_object *my_object;
if (ZEND_NUM_ARGS() != 0) {
WRONG_PARAM_COUNT;
}
my_object = sdo_model_type_get_instance(getThis() TSRMLS_CC);
try {
RETVAL_BOOL(my_object->typep->isSequencedType());
} catch (SDORuntimeException e) {
sdo_throw_runtimeexception(&e TSRMLS_CC);
}
}
/* }}} */
/* {{{ SDO_Model_TypeImpl::isOpenType
*/
PHP_METHOD(SDO_Model_TypeImpl, isOpenType)
{
sdo_model_type_object *my_object;
if (ZEND_NUM_ARGS() != 0) {
WRONG_PARAM_COUNT;
}
my_object = sdo_model_type_get_instance(getThis() TSRMLS_CC);
try {
RETVAL_BOOL(my_object->typep->isOpenType());
} catch (SDORuntimeException e) {
sdo_throw_runtimeexception(&e TSRMLS_CC);
}
}
/* }}} */
/* {{{ SDO_Model_TypeImpl::isAbstractType
*/
PHP_METHOD(SDO_Model_TypeImpl, isAbstractType)
{
sdo_model_type_object *my_object;
if (ZEND_NUM_ARGS() != 0) {
WRONG_PARAM_COUNT;
}
my_object = sdo_model_type_get_instance(getThis() TSRMLS_CC);
try {
RETVAL_BOOL(my_object->typep->isAbstractType());
} catch (SDORuntimeException e) {
sdo_throw_runtimeexception(&e TSRMLS_CC);
}
}
/* }}} */
/* {{{ SDO_Model_TypeImpl::getBaseType
*/
PHP_METHOD(SDO_Model_TypeImpl, getBaseType)
{
sdo_model_type_object *my_object;
const Type *base_typep;
if (ZEND_NUM_ARGS() != 0) {
WRONG_PARAM_COUNT;
}
my_object = sdo_model_type_get_instance(getThis() TSRMLS_CC);
try {
base_typep = my_object->typep->getBaseType();
if (base_typep) {
sdo_model_type_new (return_value, base_typep TSRMLS_CC);
}
} catch (SDORuntimeException e) {
sdo_throw_runtimeexception(&e TSRMLS_CC);
}
}
/* }}} */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/