forked from CloCkWeRX/sdo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
SDO_DAS_XML.cpp
1011 lines (883 loc) · 34 KB
/
SDO_DAS_XML.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
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
+----------------------------------------------------------------------+
| (c) Copyright IBM Corporation 2005, 2006. |
| 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: Anantoju V Srinivas(Srini), Matthew Peters, Caroline Maynard |
+----------------------------------------------------------------------+
*/
static char rcs_id[] = "$Id: SDO_DAS_XML.cpp 241789 2007-08-24 15:20:26Z mfp $";
#ifdef PHP_WIN32
/* disable warning about identifier lengths in browser information */
#pragma warning(disable: 4786)
#include <iostream>
#include <math.h>
#include "zend_config.w32.h"
#endif
#include "php_sdo_das_xml_int.h"
#include "zend_interfaces.h" // needed for several uses of zend_call_method()
using std::endl;
using std::istringstream;
#ifndef min
#define min(a, b) ((a) <= (b) ? (a) : (b))
#endif
#define PARSER_EXCEPTION_MSG_LEN 1000
#define MAX_ERRORS 50
#define CLASS_NAME "SDO_DAS_XML"
PHP_SDO_DAS_XML_API zend_class_entry *sdo_das_xml_class_entry;
static zend_object_handlers sdo_das_xml_object_handlers;
/* argument definitions of SDO_DAS_XML class, start */
ZEND_BEGIN_ARG_INFO(sdo_das_xml___construct_args, 0)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO();
ZEND_BEGIN_ARG_INFO_EX(sdo_das_xml_create_args, 0, ZEND_RETURN_VALUE, 1)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO();
ZEND_BEGIN_ARG_INFO(sdo_das_xml_addTypes_args, 0)
ZEND_ARG_INFO(0, schema)
ZEND_END_ARG_INFO();
ZEND_BEGIN_ARG_INFO(sdo_das_xml_loadFile_args, 0)
ZEND_ARG_INFO(0, file_name)
ZEND_END_ARG_INFO();
ZEND_BEGIN_ARG_INFO(sdo_das_xml_loadString_args, 0)
ZEND_ARG_INFO(0, xml_string)
ZEND_END_ARG_INFO();
ZEND_BEGIN_ARG_INFO_EX(sdo_das_xml_saveFile_args, 0, ZEND_RETURN_VALUE, 2)
ZEND_ARG_INFO(0, document)
ZEND_ARG_INFO(0, xml_file)
ZEND_ARG_INFO(0, indent)
ZEND_END_ARG_INFO();
ZEND_BEGIN_ARG_INFO_EX(sdo_das_xml_saveString_args, 0, ZEND_RETURN_VALUE, 1)
ZEND_ARG_INFO(0, document)
ZEND_ARG_INFO(0, indent)
ZEND_END_ARG_INFO();
ZEND_BEGIN_ARG_INFO_EX(sdo_das_xml_createDocument_args, 0, ZEND_RETURN_VALUE, 0)
ZEND_ARG_INFO(0, namespace_uri)
ZEND_ARG_INFO(0, element_name)
ZEND_END_ARG_INFO();
ZEND_BEGIN_ARG_INFO(sdo_das_xml_createDataObject_args, 0)
ZEND_ARG_INFO(0, namespace_uri)
ZEND_ARG_INFO(0, type_name)
ZEND_END_ARG_INFO();
/* argument definitions of SDO_DAS_XML class, end */
/* {{{ SDO_DAS_XML Class methods
*/
zend_function_entry sdo_das_xml_methods[] = {
ZEND_ME(SDO_DAS_XML, __construct, sdo_das_xml___construct_args,
ZEND_ACC_PRIVATE)
ZEND_ME(SDO_DAS_XML, create, sdo_das_xml_create_args,
ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
ZEND_ME(SDO_DAS_XML, addTypes, sdo_das_xml_addTypes_args,
ZEND_ACC_PUBLIC)
ZEND_ME(SDO_DAS_XML, loadFile, sdo_das_xml_loadFile_args,
ZEND_ACC_PUBLIC)
ZEND_ME(SDO_DAS_XML, loadString, sdo_das_xml_loadString_args,
ZEND_ACC_PUBLIC)
ZEND_ME(SDO_DAS_XML, saveFile, sdo_das_xml_saveFile_args,
ZEND_ACC_PUBLIC)
ZEND_ME(SDO_DAS_XML, saveString, sdo_das_xml_saveString_args,
ZEND_ACC_PUBLIC)
ZEND_ME(SDO_DAS_XML, createDocument, sdo_das_xml_createDocument_args,
ZEND_ACC_PUBLIC)
ZEND_ME(SDO_DAS_XML, createDataObject, sdo_das_xml_createDataObject_args,
ZEND_ACC_PUBLIC)
ZEND_ME(SDO_DAS_XML, __toString, 0,
ZEND_ACC_PUBLIC)
{NULL, NULL, NULL}
};
/* }}} */
/* {{{ sdo_temporary_exception_test
* This is a temporary fix for PECL-8374 to ensure that exceptions
* caught in this code are really the exceptions that have been
* throw by code that can reside in another shared library. In some
* build environments only the base SDORuntimeException ever arrives
*/
void sdo_temporary_exception_test(SDORuntimeException &e, char *file_name TSRMLS_DC)
{
if ( strcmp( e.getEClassName(), "SDOFileNotFoundException" ) == 0 ) {
sdo_das_xml_throw_fileexception(file_name TSRMLS_CC);
} else if ( strcmp( e.getEClassName(), "SDOXMLParserException" ) == 0 ) {
sdo_das_xml_throw_parserexception((char *)e.getMessageText() TSRMLS_CC);
} else {
sdo_das_xml_throw_runtimeexception(&e TSRMLS_CC);
}
}
/* }}} */
/* {{{ debug macro functions
*/
SDO_DEBUG_ADDREF(das_xml)
SDO_DEBUG_DELREF(das_xml)
SDO_DEBUG_DESTROY(das_xml)
/* }}} */
/* {{{ sdo_das_xml_object_free_storage
*/
void sdo_das_xml_object_free_storage(void *object TSRMLS_DC)
{
SDO_DEBUG_FREE(object);
/*
* Frees up the SDO_DAS_XML object also decrements reference to
* PHP version of SDO_DAS_DataFactory
*/
xmldas_object *xmldas = (xmldas_object *)object;
zend_hash_destroy(xmldas->zo.properties);
FREE_HASHTABLE(xmldas->zo.properties);
if (xmldas->zo.guards) {
zend_hash_destroy(xmldas->zo.guards);
FREE_HASHTABLE(xmldas->zo.guards);
}
xmldas->xmlHelperPtr = NULL;
xmldas->xsdHelperPtr = NULL;
zval_dtor(&xmldas->z_df);
efree(xmldas);
}
/* }}} */
/* {{{ sdo_das_xml_object_create
*/
zend_object_value sdo_das_xml_object_create(zend_class_entry *ce TSRMLS_DC)
{
zend_object_value retval;
zval *tmp;
xmldas_object *xmldas;
xmldas = (xmldas_object *)emalloc(sizeof(xmldas_object));
memset(xmldas, 0, sizeof(xmldas_object));
xmldas->zo.ce = ce;
xmldas->zo.guards = NULL;
ALLOC_HASHTABLE(xmldas->zo.properties);
zend_hash_init(xmldas->zo.properties, 0, NULL, ZVAL_PTR_DTOR, 0);
// zend_hash_copy(xmldas->zo.properties, &ce->default_properties, (copy_ctor_func_t) zval_add_ref, (void *) &tmp, sizeof(zval *));
#if PHP_VERSION_ID < 50399
zend_hash_copy(xmldas->zo.properties, &ce->default_properties, (copy_ctor_func_t) zval_add_ref, (void *) &tmp, sizeof(zval *));
#else
object_properties_init(&xmldas->zo, ce);
#endif
retval.handle = zend_objects_store_put(xmldas, SDO_FUNC_DESTROY(das_xml),
sdo_das_xml_object_free_storage, NULL TSRMLS_CC);
retval.handlers = &sdo_das_xml_object_handlers;
SDO_DEBUG_ALLOCATE(retval.handle, xmldas);
return retval;
}
/* }}} */
/* {{{ sdo_das_xml_cast_object
*/
#if PHP_MAJOR_VERSION > 5 || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 1)
static int sdo_das_xml_cast_object(zval *readobj, zval *writeobj, int type TSRMLS_DC)
{
int should_free = 0;
#else
static int sdo_das_xml_cast_object(zval *readobj, zval *writeobj, int type, int should_free TSRMLS_DC)
{
#endif
xmldas_object *xmldas;
ostringstream print_buf;
const char *indent = "\n";
DataFactoryPtr dataFactoryPtr;
int rc = SUCCESS;
xmldas = (xmldas_object *) zend_object_store_get_object(readobj TSRMLS_CC);
try {
dataFactoryPtr = sdo_das_df_get(&xmldas->z_df TSRMLS_CC);
TypeList tl = dataFactoryPtr->getTypes();
print_buf << indent << "object(" << "SDO_DAS_XML" << ")#" <<
readobj->value.obj.handle << " {" << indent << tl.size() <<
" types have been defined. The types and their properties are::";
for (int ix = 0; ix < tl.size(); ix++) {
if (tl[ix].getURI() == NULL || strlen(tl[ix].getURI()) == 0) {
print_buf << indent << ix+1 << ". " << "{no namespace}" << "#" << tl[ix].getName();
} else {
print_buf << indent << ix+1 << ". " << tl[ix].getURI() << "#" << tl[ix].getName();
}
PropertyList pl = tl[ix].getProperties();
for (int px = 0; px < pl.size() ; px++) {
print_buf << indent << " - " << pl[px].getName() << " (" ;
if (pl[px].getType().getURI() == NULL ||
strlen(pl[px].getType().getURI()) == 0) {
print_buf << "{no namespace}" << "#" << pl[px].getType().getName();
} else {
print_buf << pl[px].getType().getURI() << "#" << pl[px].getType().getName();
}
print_buf << ")";
}
}
print_buf << indent << "}";
std::string print_string = print_buf.str();
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;
}
return rc;
}
/* }}} */
/* {{{ sdo_das_xml_add_types
* Add types defined in a schema to the XML DAS
*/
static int sdo_das_xml_add_types(xmldas_object *xmldas, char *file_name TSRMLS_DC)
{
// char *class_name, *space;
int error_count;
try {
xmldas->xsdHelperPtr->defineFile(file_name);
error_count = xmldas->xsdHelperPtr->getErrorCount();
if (error_count > 0) {
ostringstream print_buf;
/* const */ char *space, *class_name = get_active_class_name(&space TSRMLS_CC);
print_buf << class_name << space << get_active_function_name(TSRMLS_C) <<
" - Unable to parse the supplied xsd file\n";
print_buf << error_count <<
" parse error(s) occurred when parsing the file '" << file_name << "'";
if (error_count > MAX_ERRORS) {
print_buf << " (only the first " << MAX_ERRORS << " shown)";
}
print_buf << ":\n";
for (int error_ix = 0; error_ix < min(error_count, MAX_ERRORS); error_ix++) {
print_buf << error_ix + 1 << ". " <<
xmldas->xsdHelperPtr->getErrorMessage(error_ix) << endl;
}
std::string print_string = print_buf.str();
sdo_das_xml_throw_parserexception((char *)print_string.c_str() TSRMLS_CC);
return FAILURE;
}
} catch (SDOFileNotFoundException e) {
sdo_das_xml_throw_fileexception(file_name TSRMLS_CC);
return FAILURE;
} catch (SDOXMLParserException e) {
sdo_das_xml_throw_parserexception((char *)e.getMessageText() TSRMLS_CC);
return FAILURE;
} catch (SDORuntimeException e) {
// The exceptions caught here have been thrown across the
// boundary between two shared libraries (sdo_das_xml.so and sdo.so)
// In some build environments this has been shown to not work.
// The symptom is that the exception hierachy is ignored and the
// exception arrives here as a runtime exception.
// We have added this extra test of the stored classname
// just to be sure
sdo_temporary_exception_test ( e, file_name TSRMLS_CC);
return FAILURE;
}
return SUCCESS;
}
/* }}} */
//turn on caching of the data factory for a very special case only
//it should only operate when the two-argument version of create() is used,
//and that should only happen in one place in the SCA code, which is in the
//SDO type handler for the ebaysoap binding.
//This is just a bit of a quickfix to allow the ebay binding to run at a
//decent speed.
//In due course I think the cache should be a PHP hashmap and not a
//hidden C entity as it is here
//Matthew Peters 31st May 2007
#define CACHE_DATA_FACTORY
#ifdef CACHE_DATA_FACTORY
#define SAVED_DATA_FACTORY_TABLE_SIZE 1
#define MAX_KEY_SIZE 400
typedef struct {
char key[MAX_KEY_SIZE];
DataFactoryPtr data_factory_ptr;
} saved_data_factory_table_entry;
static saved_data_factory_table_entry data_factory_table[SAVED_DATA_FACTORY_TABLE_SIZE];
#endif
/* {{{ sdo_das_xml_minit
*/
void sdo_das_xml_minit(TSRMLS_D)
{
zend_class_entry ce;
INIT_CLASS_ENTRY(ce, "SDO_DAS_XML", sdo_das_xml_methods);
ce.create_object = sdo_das_xml_object_create;
sdo_das_xml_class_entry = zend_register_internal_class(&ce TSRMLS_CC);
memcpy(&sdo_das_xml_object_handlers, zend_get_std_object_handlers(),
sizeof(zend_object_handlers));
sdo_das_xml_object_handlers.add_ref = SDO_FUNC_ADDREF(das_xml);
sdo_das_xml_object_handlers.del_ref = SDO_FUNC_DELREF(das_xml);
sdo_das_xml_object_handlers.cast_object = sdo_das_xml_cast_object;
sdo_das_xml_object_handlers.clone_obj = NULL;
#ifdef CACHE_DATA_FACTORY
for (int i = 0 ; i < SAVED_DATA_FACTORY_TABLE_SIZE ; i++) {
strcpy(data_factory_table[i].key,"");
data_factory_table[i].data_factory_ptr = NULL;
}
#endif
}
/* }}} */
/* {{{ PHP_METHOD(SDO_DAS_XML, __construct)
*/
PHP_METHOD(SDO_DAS_XML, __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));
}
/* }}} */
#ifdef CACHE_DATA_FACTORY
void dump_table()
{
for (int i = 0 ;
i < SAVED_DATA_FACTORY_TABLE_SIZE &&
strcmp(data_factory_table[i].key, "") != 0;
i++) {
php_printf("Entry at %i is %s\n",i,data_factory_table[i].key);
}
}
void add_to_table(char *key, DataFactoryPtr data_factory_ptr)
{
// TODO find the equivalent of making this a synchronised method
for (int i = 0 ; i < SAVED_DATA_FACTORY_TABLE_SIZE ; i++) {
if (strncmp(data_factory_table[i].key, key, MAX_KEY_SIZE) == 0) {
//php_printf("We were asked to add %s but it is already there\n",key);
return; // it's already there
}
if (strcmp(data_factory_table[i].key, "") == 0) {
//php_printf("Adding %s -> %p\n",key,data_factory_ptr);
strncpy(data_factory_table[i].key,key, MAX_KEY_SIZE);
data_factory_table[i].data_factory_ptr = data_factory_ptr;
return; // we added it
}
}
}
DataFactoryPtr retrieve_from_table(char *key)
{
// TODO find the equivalent of making this a synchronised method
//php_printf("Looking for %s\n",key);
for (int i = 0 ; i < SAVED_DATA_FACTORY_TABLE_SIZE ; i++) {
if (strncmp(data_factory_table[i].key, key, MAX_KEY_SIZE) == 0) {
//php_printf("Found %s -> %p\n",key, data_factory_table[i].data_factory_ptr);
return data_factory_table[i].data_factory_ptr;
}
}
//php_printf("Sadly, did not find %s\n",key);
return NULL;
}
#endif
/* {{{ proto SDO_DAS_XML SDO_DAS_XML::create(string xsd_file)
*/
PHP_METHOD(SDO_DAS_XML, create)
{
/*****************************************************************************
* This is the only static method of SDO_DAS_XML class. It is used to instantiate
* the SDO_DAS_XML object.
* Returns :
* SDO_DAS_XML object with model information built-in
*****************************************************************************/
xmldas_object *xmldas;
char *file_name;
int file_name_len = 0;
char *key;
int key_len = 0;
DataFactoryPtr dataFactoryPtr = NULL;
// char *class_name, *space;
int rc = SUCCESS;
zval *args = NULL;
zval z_tmp;
if (ZEND_NUM_ARGS() > 2) {
WRONG_PARAM_COUNT;
}
/**
* Create a data factory object
*/
Z_TYPE_P(return_value) = IS_OBJECT;
if (object_init_ex(return_value, sdo_das_xml_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);
return;
}
xmldas = (xmldas_object *) zend_object_store_get_object(return_value TSRMLS_CC);
INIT_ZVAL(xmldas->z_df);
/**
* If no arguments, plug in a new and empty data factory
*/
if (ZEND_NUM_ARGS() == 0) {
dataFactoryPtr = DataFactory::getDataFactory();
sdo_das_df_new(&xmldas->z_df, dataFactoryPtr TSRMLS_CC);
xmldas->xsdHelperPtr = HelperProvider::getXSDHelper((DataFactory *)dataFactoryPtr);
xmldas->xmlHelperPtr = HelperProvider::getXMLHelper((DataFactory *)dataFactoryPtr);
return;
}
/**
* Extract arguments when only one, in which case it will be a filename or array of filenames
*/
if (ZEND_NUM_ARGS() == 1) {
/* parameter is an array of strings, but also accept a single string
* for backward compatibility
*/
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC,
"s", &file_name, &file_name_len) == FAILURE &&
zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a", &args) == FAILURE) {
RETURN_FALSE;
}
}
/**
* Extract arguments when there are two, in which case the first will be a filename or array of filenames
* and the second will be a key with which to save or restore it
*/
if (ZEND_NUM_ARGS() == 2) {
/* parameter is an array of strings, but also accept a single string
* for backward compatibility
*/
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC,
"ss", &file_name, &file_name_len, &key, &key_len) == FAILURE &&
zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "as", &args, &key, &key_len) == FAILURE) {
RETURN_FALSE;
}
}
#ifdef CACHE_DATA_FACTORY
if (ZEND_NUM_ARGS() == 2) {
/* Check to see if we can use a cached data factory */
dataFactoryPtr = retrieve_from_table(key);
if (dataFactoryPtr) {
//php_printf("!!! retrieving from cache !!!\n");
sdo_das_df_new(&xmldas->z_df, dataFactoryPtr TSRMLS_CC);
xmldas->xsdHelperPtr = HelperProvider::getXSDHelper((DataFactory *)dataFactoryPtr);
xmldas->xmlHelperPtr = HelperProvider::getXMLHelper((DataFactory *)dataFactoryPtr);
return;
}
}
#endif
/* Create a C++ DataFactory and an SDO_DAS_DataFactory wrapper for it */
dataFactoryPtr = DataFactory::getDataFactory();
sdo_das_df_new(&xmldas->z_df, dataFactoryPtr TSRMLS_CC);
xmldas->xsdHelperPtr = HelperProvider::getXSDHelper((DataFactory *)dataFactoryPtr);
xmldas->xmlHelperPtr = HelperProvider::getXMLHelper((DataFactory *)dataFactoryPtr);
if (file_name_len) {
//php_printf("!!! about to add types !!!\n");
rc = sdo_das_xml_add_types (xmldas, file_name TSRMLS_CC);
if (rc == FAILURE) {
//php_printf("!!! seems to be a bit of a failure !!!\n");
RETURN_FALSE;
}
} else if (args) {
HashTable *arrht = Z_ARRVAL_P(args);
for (zend_hash_internal_pointer_reset(arrht);
zend_hash_has_more_elements(arrht) == SUCCESS && rc == SUCCESS;
zend_hash_move_forward(arrht)) {
zval **current;
if (zend_hash_get_current_data(arrht, (void **)¤t) == FAILURE) {
continue;
}
/* duplicate the zval in case it needs converting */
z_tmp = **current;
zval_copy_ctor(&z_tmp);
INIT_PZVAL(&z_tmp);
convert_to_string(&z_tmp);
file_name = Z_STRVAL(z_tmp);
file_name_len = Z_STRLEN(z_tmp);
if (file_name_len) {
rc = sdo_das_xml_add_types (xmldas, file_name TSRMLS_CC);
if (rc == FAILURE) {
RETURN_FALSE;
}
}
zval_dtor(&z_tmp);
}
}
/* it's valid to call this method with no args, hence the dangling else */
#ifdef CACHE_DATA_FACTORY
if (ZEND_NUM_ARGS() == 2) {
// store the data factory in the table
add_to_table(key, dataFactoryPtr);
}
#endif
}
/* }}} end SDO_DAS_XML::create */
/* {{{ proto SDO_DAS_XML SDO_DAS_XML::addTypes(string xsd_file)
*/
PHP_METHOD(SDO_DAS_XML, addTypes)
{
xmldas_object *xmldas;
char *file_name;
int file_name_len;
if (ZEND_NUM_ARGS() != 1) {
WRONG_PARAM_COUNT;
}
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
"s", &file_name, &file_name_len) == FAILURE) {
RETURN_FALSE;
}
if (!file_name_len) {
RETURN_FALSE;
}
xmldas = (xmldas_object *) zend_object_store_get_object(getThis() TSRMLS_CC);
sdo_das_xml_add_types(xmldas, file_name TSRMLS_CC);
}
/* }}} */
/* {{{ proto SDO_XMLDocument SDO_DAS_XML::loadFile(string xml_file)
*/
PHP_METHOD(SDO_DAS_XML, loadFile)
{
/*
* Returns XMLDocument Object containing root SDO object built from the
* given path to xml instance document.
*/
xmldocument_object *xmldocument;
xmldas_object *xmldas;
char *file_name;
int file_name_len;
// char *class_name, *space;
bool exception_thrown = false;
if (ZEND_NUM_ARGS() != 1) {
WRONG_PARAM_COUNT;
}
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
"s", &file_name, &file_name_len) == FAILURE) {
RETURN_FALSE;
}
xmldas = (xmldas_object *) zend_object_store_get_object(getThis() TSRMLS_CC);
if (file_name_len) {
Z_TYPE_P(return_value) = IS_OBJECT;
if (object_init_ex(return_value, sdo_das_xml_document_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);
RETURN_NULL();
}
xmldocument = (xmldocument_object *) zend_object_store_get_object(return_value TSRMLS_CC);
if (!xmldocument) {
/* const */ char *space, *class_name = get_active_class_name (&space TSRMLS_CC);
php_error(E_ERROR, "%s%s%s(): internal error (%i) - SDO_DAS_XML_Document not found in store",
class_name, space, get_active_function_name(TSRMLS_C), __LINE__);
RETURN_NULL();
}
try {
xmldocument->xmlDocumentPtr = xmldas->xmlHelperPtr->loadFile(file_name);
int error_count = xmldas->xmlHelperPtr->getErrorCount();
if ((error_count > 0) ||
(!xmldocument->xmlDocumentPtr) ||
(!xmldocument->xmlDocumentPtr->getRootDataObject())) {
ostringstream print_buf;
print_buf << "SDO_DAS_XML::loadFile - Unable to parse the supplied xml file\n" <<
error_count <<
" parse error(s) occurred when parsing the file '" <<
file_name << "'";
if (error_count > MAX_ERRORS) {
print_buf << " (only the first " << MAX_ERRORS << " shown)";
}
print_buf << ":\n";
for (int error_ix = 0;
error_ix < min(error_count, MAX_ERRORS); error_ix++) {
print_buf << error_ix + 1 << ". " <<
xmldas->xmlHelperPtr->getErrorMessage(error_ix) << endl;
}
std::string print_string = print_buf.str();
sdo_das_xml_throw_parserexception((char *)print_string.c_str() TSRMLS_CC);
RETURN_NULL();
}
} catch (SDOXMLParserException e) {
sdo_das_xml_throw_parserexception((char *)e.getMessageText() TSRMLS_CC);
exception_thrown = true;
} catch (SDOFileNotFoundException e) {
sdo_das_xml_throw_fileexception(file_name TSRMLS_CC);
exception_thrown = true;
} catch(SDORuntimeException e) {
// The exceptions caught here have been thrown across the
// boundary between two shared libraries (sdo_das_xml.so and sdo.so)
// In some build environments this has been shown to not work.
// The symptom is that the exception hierachy is ignored and the
// exception arrives here as a runtime exception.
// We have added this extra test of the stored classname
// just to be sure
sdo_temporary_exception_test ( e, file_name TSRMLS_CC);
exception_thrown = true;
}
} else {
RETURN_FALSE;
}
if (exception_thrown) {
/**
* we set a flag and then do the return from here, because returning out of the catch block
* (i.e. doing RETURN_NULL() inside the catch block) would cause a crash in PHP or MSCVRT soon
* after. Matthew saw this but not Caroline, and only with optimised build, so perhaps something
* specific to particular level of compiler.
*/
RETURN_NULL();
}
}
/* }}} SDO_DAS_XML::loadFile */
/* {{{ proto SDO_DAS_XML_Document SDO_DAS_XML::loadString(string xml_string)
*/
PHP_METHOD(SDO_DAS_XML, loadString)
{
/* Returns SDO_DAS_XML_Document Object containing root SDO object built from the given xml string.
*/
xmldocument_object *xmldocument;
xmldas_object *xmldas;
char *xml_string;
int xml_string_len;
// char *class_name, *space;
bool exception_thrown = false;
if (ZEND_NUM_ARGS() != 1) {
WRONG_PARAM_COUNT;
}
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
"s", &xml_string, &xml_string_len) == FAILURE) {
RETURN_FALSE;
}
xmldas = (xmldas_object *) zend_object_store_get_object(getThis() TSRMLS_CC);
if (xml_string_len) {
Z_TYPE_P(return_value) = IS_OBJECT;
if (object_init_ex(return_value, sdo_das_xml_document_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);
return;
}
xmldocument = (xmldocument_object *) zend_object_store_get_object(return_value TSRMLS_CC);
if (!xmldocument) {
/* const */ char *space, *class_name = get_active_class_name (&space TSRMLS_CC);
php_error(E_ERROR, "%s%s%s(): internal error (%i) - SDO_DAS_XML_Document not found in store",
class_name, space, get_active_function_name(TSRMLS_C), __LINE__);
}
try {
istringstream str((const char *)xml_string);
xmldocument->xmlDocumentPtr = xmldas->xmlHelperPtr->load(str, NULL);
int error_count = xmldas->xmlHelperPtr->getErrorCount();
if ((error_count > 0) ||
(!xmldocument->xmlDocumentPtr) ||
(!xmldocument->xmlDocumentPtr->getRootDataObject())) {
ostringstream print_buf;
print_buf << "SDO_DAS_XML::loadString - Unable to parse the supplied xml string\n";
print_buf << error_count << " parse error(s) occurred when parsing the string";
if (error_count > MAX_ERRORS) {
print_buf << "(only the first " << MAX_ERRORS << " shown)";
}
print_buf << ":\n" ;
for (int error_ix = 0; error_ix < min(error_count, MAX_ERRORS); error_ix++) {
print_buf << error_ix + 1 << ". " << xmldas->xmlHelperPtr->getErrorMessage(error_ix) << endl;
}
std::string print_string = print_buf.str();
sdo_das_xml_throw_parserexception((char *)print_string.c_str() TSRMLS_CC);
RETURN_NULL();
}
} catch (SDOXMLParserException e) {
sdo_das_xml_throw_parserexception((char*)e.getMessageText() TSRMLS_CC);
exception_thrown = true;
} catch(SDORuntimeException e) {
// The exceptions caught here have been thrown across the
// boundary between two shared libraries (sdo_das_xml.so and sdo.so)
// In some build environments this has been shown to not work.
// The symptom is that the exception hierachy is ignored and the
// exception arrives here as a runtime exception.
// We have added this extra test of the stored classname
// just to be sure
sdo_temporary_exception_test ( e, "InLoadStringSoNoFile" TSRMLS_CC);
exception_thrown = true;
}
} else {
RETURN_FALSE;
}
if (exception_thrown) {
/**
* we set a flag and then do the return from here, because returning out of the catch block
* (i.e. doing RETURN_NULL() inside the catch block) would cause a crash in PHP or MSCVRT soon
* after. Matthew saw this but not Caroline, and only with optimised build, so perhaps something
* specific to particular level of compiler.
*/
RETURN_NULL();
}
}
/* }}} SDO_DAS_XML::load */
/* {{{ proto void SDO_DAS_XML::saveFile(SDO_DAS_XML_Document xdoc, string xml_file)
*/
PHP_METHOD(SDO_DAS_XML, saveFile)
{
zval *z_document;
xmldocument_object *xmldocument;
xmldas_object *xmldas;
char *xml_file;
int xml_file_len;
long indent = -1;
// char *class_name, *space;
if (ZEND_NUM_ARGS() != 2 && ZEND_NUM_ARGS() != 3) {
WRONG_PARAM_COUNT;
}
xmldas = (xmldas_object *) zend_object_store_get_object(getThis() TSRMLS_CC);
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Os|l",
&z_document, sdo_das_xml_document_class_entry, &xml_file,
&xml_file_len, &indent) == FAILURE) {
RETURN_FALSE;
}
xmldocument = (xmldocument_object *) zend_object_store_get_object(z_document TSRMLS_CC);
if (!xmldocument) {
/* const */ char *space, *class_name = get_active_class_name (&space TSRMLS_CC);
php_error(E_ERROR, "%s%s%s(): internal error (%i) - SDO_DAS_XML_Document not found in store",
class_name, space, get_active_function_name(TSRMLS_C), __LINE__);
}
try {
xmldas->xmlHelperPtr->save(xmldocument->xmlDocumentPtr, xml_file, indent);
} catch (SDORuntimeException e) {
sdo_das_xml_throw_runtimeexception(&e TSRMLS_CC);
}
}
/* }}} */
/* {{{ proto string SDO_DAS_XML::saveString(SDO_DAS_XML_Document xdoc)
*/
PHP_METHOD(SDO_DAS_XML, saveString)
{
zval *z_document;
xmldocument_object *xmldocument;
xmldas_object *xmldas;
long indent = -1;
// char *class_name, *space;
if (ZEND_NUM_ARGS() != 1 && ZEND_NUM_ARGS() != 2) {
WRONG_PARAM_COUNT;
}
xmldas = (xmldas_object *) zend_object_store_get_object(getThis() TSRMLS_CC);
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|l",
&z_document, sdo_das_xml_document_class_entry, &indent) == FAILURE) {
RETURN_FALSE;
}
xmldocument = (xmldocument_object *) zend_object_store_get_object(z_document TSRMLS_CC);
if (!xmldocument) {
/* const */ char *space, *class_name = get_active_class_name (&space TSRMLS_CC);
php_error(E_ERROR, "%s%s%s(): internal error (%i) - SDO_DAS_XML_Document not found in store",
class_name, space, get_active_function_name(TSRMLS_C), __LINE__);
}
try {
char *retval = xmldas->xmlHelperPtr->save(xmldocument->xmlDocumentPtr, indent);
RETVAL_STRING(retval, 1);
/*
* retval to be freed using "delete" as it was
* allocated using "new" in save method
*/
delete retval;
} catch (SDORuntimeException e) {
sdo_das_xml_throw_runtimeexception(&e TSRMLS_CC);
}
}
/* }}} */
/* {{{ proto SDO_DAS_XML SDO_DAS_XML::createDocument(empty | typename | uri,typename)
*/
PHP_METHOD(SDO_DAS_XML, createDocument)
{
xmldocument_object *xmldocument;
xmldas_object *xmldas;
char *namespace_uri;
int namespace_uri_len;
char *element_name;
int element_name_len;
zval *z_dataobject;
DataObjectPtr dop;
// char *class_name, *space;
if (ZEND_NUM_ARGS() > 3) {
WRONG_PARAM_COUNT;
}
Z_TYPE_P(return_value) = IS_OBJECT;
if (object_init_ex(return_value, sdo_das_xml_document_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);
RETURN_NULL();
}
xmldocument = (xmldocument_object *) zend_object_store_get_object(return_value TSRMLS_CC);
if (!xmldocument) {
/* const */ char *space, *class_name = get_active_class_name (&space TSRMLS_CC);
php_error(E_ERROR, "%s%s%s(): internal error (%i) - SDO_DAS_XML_Document not found in store",
class_name, space, get_active_function_name(TSRMLS_C), __LINE__);
RETURN_NULL();
}
xmldas = (xmldas_object *) zend_object_store_get_object(getThis() TSRMLS_CC);
try {
switch(ZEND_NUM_ARGS()) {
case 3:
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ssO",
&namespace_uri, &namespace_uri_len,
&element_name, &element_name_len,
&z_dataobject, sdo_dataobjectimpl_class_entry) == FAILURE) {
RETURN_FALSE;
}
/* get the supplied data object */
dop = sdo_do_get(z_dataobject 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_FALSE;
}
/* Yes, these parameters really are in a different order to the 2-arg overloaded method */
xmldocument->xmlDocumentPtr = xmldas->xmlHelperPtr->createDocument(dop, namespace_uri, element_name);
break;
case 2:
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss",
&namespace_uri, &namespace_uri_len, &element_name, &element_name_len) == FAILURE) {
RETURN_FALSE;
}
xmldocument->xmlDocumentPtr =
xmldas->xmlHelperPtr->createDocument(element_name, namespace_uri);
break;
case 1:
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
"s", &element_name, &element_name_len) == FAILURE) {
RETURN_FALSE;
}
xmldocument->xmlDocumentPtr = xmldas->xmlHelperPtr->createDocument(element_name);
break;
default:
xmldocument->xmlDocumentPtr = xmldas->xmlHelperPtr->createDocument();
}
if ((!xmldocument->xmlDocumentPtr) ||
(!xmldocument->xmlDocumentPtr->getRootDataObject())) {
RETURN_NULL();
}
} catch(SDORuntimeException e) {
sdo_das_xml_throw_runtimeexception(&e TSRMLS_CC);
RETURN_NULL();
}
}
/* }}} end SDO_DAS_XML::createDocument */
/* {{{ proto SDO_DataObject SDO_DAS_XML::createDataObject(string namespace_uri, string type_name)
*/
PHP_METHOD(SDO_DAS_XML, createDataObject)
{
/*
* Returns SDO_DataObject for a given namespace_uri and the type name.
*/
xmldas_object *xmldas;
zval *z_namespace_uri;
zval *z_type_name;
zval *z_do, *z_df;
if (ZEND_NUM_ARGS() != 2) {
WRONG_PARAM_COUNT;
}
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zz",
&z_namespace_uri, &z_type_name) == FAILURE) {
RETURN_FALSE;
}
xmldas = (xmldas_object *) zend_object_store_get_object(getThis() TSRMLS_CC);
/* Invoke SDO_DAS_DataFactory::create */
z_df = &xmldas->z_df;
zend_call_method(&z_df, Z_OBJCE(xmldas->z_df), NULL,
"create", strlen("create"), &z_do, 2, z_namespace_uri,
z_type_name TSRMLS_CC);
RETVAL_ZVAL(z_do, 0, 1);
}
/* }}} SDO_DAS_XML::createDataObject */
/* {{{ SDO_DAS_XML::__toString
*/
PHP_METHOD(SDO_DAS_XML, __toString)
{
#if PHP_MAJOR_VERSION > 5 || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 1)
sdo_das_xml_cast_object(getThis(), return_value, IS_STRING TSRMLS_CC);
#else
sdo_das_xml_cast_object(getThis(), return_value, IS_STRING, 0 TSRMLS_CC);
#endif
}