summaryrefslogtreecommitdiffstats
path: root/sdo-cpp/trunk/runtime/core/src/commonj/sdo/SDOSAX2Parser.cpp
blob: 8e85877aa3623d921da974571cff7aab3fca191f (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
/*
 * 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.
 */

/* $Rev$ $Date$ */

#include "commonj/sdo/SDOSAX2Parser.h"

#include "commonj/sdo/SDORuntimeException.h"
#include "commonj/sdo/ChangeSummary.h"
#include "commonj/sdo/XSDPropertyInfo.h"
#include "commonj/sdo/XMLQName.h"
#include "commonj/sdo/DASProperty.h"
#include "commonj/sdo/Logging.h"
#include "commonj/sdo/DASType.h"
#include "commonj/sdo/XSDTypeInfo.h"
#include "commonj/sdo/TypeImpl.h"
#include "commonj/sdo/DataObjectImpl.h"
#include "commonj/sdo/DataFactoryImpl.h"
#include "commonj/sdo/SDOUtils.h"
#include <stdio.h>
using namespace std;

namespace commonj
{
    namespace sdo
    {
     
      using internal::XSDPropertyInfo;
      using internal::PropertyDefinitionImpl;
      using internal::XSDTypeInfo;
      using internal::TypeDefinitionImpl;
      using internal::SDOUtils;

        SDOSAX2Parser::SDOSAX2Parser(
            DataFactoryPtr df,
            const SDOXMLString& targetNamespace,
            DataObjectPtr& rootDO,
            ParserErrorSetter* insetter
            ) 
            
            : dataFactory(staticCast<DataFactoryImplPtr>(df)),
            targetNamespaceURI(targetNamespace),
            rootDataObject(rootDO),
            currentDataObject(0),
            isDataGraph(false),
            ignoreEvents(false),
            dealingWithChangeSummary(false),
            csbuilder(0),
            SAX2Parser(insetter),
            rootElementName(""),
            rootElementURI("")
            
    
        {
            reset();
            if (targetNamespace.isNull())
            {
                targetNamespaceURI = "";
            }
            rootDataObject = 0;
            newSequence = true;
        }
        
        SDOSAX2Parser::~SDOSAX2Parser()
        {
        }
        
        void SDOSAX2Parser::reset()
        {
            rootDataObject = 0;
            currentDataObject = 0;
            isDataGraph = false;
            ignoreEvents = false;
            changeSummary = false;
            IDMap.empty();
            IDRefs.empty();
            rootElementURI = "";
            rootElementName = "";
        }
        
        void SDOSAX2Parser::setRootElementName(const SDOXMLString& name)
        {
            rootElementName = name;
        }

        void SDOSAX2Parser::setRootElementURI(const SDOXMLString& uri)
        {
            rootElementURI = uri;
        }
       
        void SDOSAX2Parser::startDocument()
        {
            LOGINFO(INFO,"SDOSAX2Parser: startDocument");
            setNamespaces = true;
            reset();
        }
        
        void SDOSAX2Parser::endDocument()
        {
            LOGENTRY(INFO,"SDOSAX2Parser: endDocument");
            // Iterate over IDREFs list and set references
            ID_REFS::iterator refsIter;
            for (refsIter = IDRefs.begin(); refsIter != IDRefs.end(); refsIter++)
            {
                try
                {
                    const Type& type = refsIter->dataObject->getType();
                    PropertyPtr prop  = refsIter->dataObject->getInstanceProperty((const char*)refsIter->property);
                    if (!prop) {
                      SDOString msg("Cannot find property: ");
                      msg += (const char*)refsIter->property;
                      throw SDOPropertyNotFoundException(TUSCANY_SDO_EINFO,
                                                         msg.c_str());
                    }
                    const Type& propType =    ((TypeImpl&)type).getRealPropertyType(refsIter->property);

                    // Allowing referenes to DataObjects only
                    if (!propType.isDataType())
                    {
                        DataObjectPtr reffedDO;
                        ID_MAP::iterator idIter = IDMap.find(refsIter->value);
                        if (idIter != IDMap.end())
                        {
                            reffedDO = idIter->second;
                        }
                        else
                        {
                            // assume it is an XPath?

                            // Remove #/ from front of XPATH as getDataObject doeesnt
                            // support this yet - it does now
                            //SDOXMLString xpath(refsIter->value);
                            //if (xpath.firstIndexOf('#') == 0)
                            //    xpath = xpath.substring(1);
                            //if (xpath.firstIndexOf('/') == 0)
                            //    xpath = xpath.substring(1);

                            reffedDO = rootDataObject->getDataObject((const char*)refsIter->value);
                        }

                        if (!reffedDO)
                        {
                            continue;
                        }

                        if (prop->isMany())
                        {
                            DataObjectList& dol = refsIter->dataObject->getList(*prop);
                            dol.append(reffedDO);
                        }
                        else
                        {
                            refsIter->dataObject->setDataObject(*prop, reffedDO); 
                        }
                    }

                }
                catch (const SDORuntimeException&)
                {
                }
            }
            try {
                // Now rebuild the changeSummary
                if (csbuilder != 0)
                {
                    csbuilder->buildChangeSummary(changeSummaryDO);
                    delete csbuilder;
                    csbuilder = 0;
                }
            }
            catch (SDORuntimeException&)
            {
            }

            LOGEXIT(INFO,"SDOSAX2Parser: endDocument");
        }


        bool SDOSAX2Parser::setDO(DataObjectPtr newDO, 
                                  SDOXMLString& propertyName)
        {
            LOGENTRY(INFO,"SDOSAX2Parser: setDO");

            if (currentDataObject)
            {
                const Type& type = currentDataObject->getType();
                // go lower level so we can find open properties w/o exception
                DataObject* dob = getRawPointer(currentDataObject);
                const PropertyImpl* pprop = ((DataObjectImpl*)dob)->getPropertyImpl((const char*)propertyName);
                if (pprop == 0)
                {

                    LOGEXIT(INFO,"SDOSAX2Parser: setDO - exit1");
                    return false;
                }

                const Property& property = (Property&)*pprop;
                //const Type& propertyType = ((TypeImpl&)type).getRealPropertyType(propertyName);
                if (currentDataObject->getType().isSequencedType())
                {
                    SequencePtr seq = currentDataObject->getSequence();
                    seq->addDataObject(property, newDO);
                }
                else
                {
                    if (!property.isMany())
                    {
                        currentDataObject->setDataObject((const char*)propertyName, newDO);
                    }
                    else
                    {
                        DataObjectList& dol = currentDataObject->getList((const char*)propertyName);
                        dol.append(newDO);
                    }
                }
            }
            
            setCurrentDataObject(newDO);

            LOGEXIT(INFO,"SDOSAX2Parser: setDO - exit2");
            return true;
        }
                    
        void SDOSAX2Parser::handleOpenAttribute(
                                    SDOXMLString& tns,
                                    const SDOXMLString& propuri,
                                    const SDOXMLString& propname,
                                    const SDOXMLString& value)
        {
            // first, see if there is a global element or attribute corresponding...
            try 
            {
                const PropertyImpl* prop = 0;
                const TypeImpl* ti = 
                    dataFactory->findTypeImpl(propuri,"RootType");
                
                if (ti != 0)
                {
                    prop = (const PropertyImpl*)ti->getPropertyImpl(propname);
                }
                else
                {
                    ti = dataFactory->findTypeImpl(tns,"RootType");
                }

                if (ti != 0)
                {
                    prop = (const PropertyImpl*)ti->getPropertyImpl(propname);
                }
            
                if (prop == 0)
                {
                    // need to use the sequence interface if it exists
                    if (currentDataObject->getType().isSequencedType())
                    {
                        SequencePtr seq = currentDataObject->getSequence();
                        seq->addCString(propname, value);
                    }
                    else
                    {
                        currentDataObject->setCString((const char*)propname,value);
                    }
                    return;
                }

                DataObject* dob = getRawPointer(currentDataObject);

                switch (prop->getTypeEnum())
                {
                    case Type::BooleanType:
                        ((DataObjectImpl*)dob)->defineBoolean(propname);
                        break;
                    case Type::ByteType:
                        ((DataObjectImpl*)dob)->defineByte(propname);
                        break;
                    case Type::CharacterType:
                        ((DataObjectImpl*)dob)->defineCharacter(propname);
                        break;
                    case Type::BytesType:
                        ((DataObjectImpl*)dob)->defineBytes(propname);
                        break;
                    case Type::StringType:
                        ((DataObjectImpl*)dob)->defineString(propname);
                        break;
                    case Type::ShortType:
                        ((DataObjectImpl*)dob)->defineShort(propname);
                        break;
                    case Type::IntType:
                        ((DataObjectImpl*)dob)->defineInt(propname);
                        break;
                    case Type::LongType:
                        ((DataObjectImpl*)dob)->defineLong(propname);
                        break;
                    case Type::DoubleType:
                        ((DataObjectImpl*)dob)->defineDouble(propname);
                        break;
                    case Type::FloatType:
                        ((DataObjectImpl*)dob)->defineFloat(propname);
                        break;
                    case Type::DateType:
                        ((DataObjectImpl*)dob)->defineDate(propname);
                        break;
                } // switch

                // regardless of what type the property now is, we can set CString , and the
                // right conversion will happen

                // need to use the sequence interface if it exists.
                if (currentDataObject->getType().isSequencedType())
                {
                    SequencePtr seq = currentDataObject->getSequence();
                    seq->addCString(propname, value);
                }
                else
                {
                    currentDataObject->setCString((const char*)propname,value);
                }
            }
            catch (SDORuntimeException)
            {
            }
            return;
        }


        void SDOSAX2Parser::setAttributes(
            SDOXMLString& tns,
            const SAX2Namespaces& namespaces,
            const SAX2Attributes& attributes) 
        {

            LOGENTRY(INFO,"SDOSAX2Parser::setAttributes");

            //////////////////////////////////////////////
            // The attributes are properties on the new DO
            // Handle attributes
            //////////////////////////////////////////////
            for (int i=0; i < attributes.size(); i++)
            {
                // Should ignore attributes like xsi:type
                if (!(attributes[i].getUri().equalsIgnoreCase("http://www.w3.org/2001/XMLSchema-instance")))
                {                            
                    try
                    {
                        const SDOXMLString& propertyName = getSDOName(*currentDataObjectType, attributes[i].getName());
                        DataObject* dob = getRawPointer(currentDataObject);
                        const PropertyImpl* pprop = ((DataObjectImpl*)dob)->getPropertyImpl(propertyName);
                        if (pprop == 0 )
                        {
                            if (currentDataObject->getType().isOpenType())
                            {
                                // if its an open type, then attributes will be allowed to have 
                                // an invalid name, and setCString will create them all as bytes
                                handleOpenAttribute(tns, attributes[i].getUri(),
                                                            attributes[i].getName(),
                                                    attributes[i].getValue());
                                
                            }
                            else 
                            {
                                LOGERROR_1(WARNING,"SDOSAX2Parser: Property not found on closed type (ignored):%s",
                                    (const char*)(attributes[i].getName()));        
                            }
                        }
                        else 
                        {
                            const Property& prop = (Property&)*pprop;
                            SDOXMLString propValue;
                            
                            XSDPropertyInfo* pi = (XSDPropertyInfo*)((DASProperty*)&prop)->getDASValue("XMLDAS::PropertyInfo");
                            if (pi && pi->getPropertyDefinition().isElement)
                            {
                                // xml instance is trying to set an attribute when schema defines property as element
                                LOGERROR_1(WARNING,"SDOSAX2Parser: Attribute %s should be an element. Attribute ignored",
                                 (const char*)(attributes[i].getName()));        
                                continue;
                            }

                            if (pi && pi->getPropertyDefinition().isQName)
                            {
                                XMLQName qname(attributes[i].getValue(),
                                    documentNamespaces, namespaces);
                                propValue = qname.getSDOName();
                            }
                            else
                            {
                                propValue = attributes[i].getValue();
                            }
                    
                            if ((pi && pi->getPropertyDefinition().isIDREF)
                                || prop.isReference())
                            {
                                // remember this value to resolve later
                                IDRef ref(currentDataObject, attributes[i].getName(), propValue);
                                IDRefs.push_back(ref);
                            }
                            else
                            {    
                                if (pi && pi->getPropertyDefinition().isID)
                                {
                                    // add this ID to the map
                                    IDMap[propValue] = currentDataObject;
                                }
                                // Always set the property as a String. SDO will do the conversion
                                currentDataObject->setCString((const char*)attributes[i].getName(), propValue);
                            }
                        }
                    }
                    catch (const SDOPropertyNotFoundException&)
                    {
                        LOGERROR_1(WARNING,"SDOSAX2Parser: Error processing attribute (ignored):%s",
                            (const char*)(attributes[i].getName()));        
                    }
                }
            } // End iterate over attributes
            
            LOGEXIT(INFO,"SDOSAX2Parser:setAttributes");

        }


        const PropertyImpl* SDOSAX2Parser::handleOpenType(
                                    SDOXMLString& tns,
                                    const SDOXMLString& localname,
                                    DataObjectImpl* dob,
                                    const SAX2Namespaces& namespaces,
                                    const SAX2Attributes& attributes,
                                    SDOXMLString& xsitypeURI,
                                    SDOXMLString& xsitypeName,
                                    bool bToBeNull)
        {
            // first, see if there is a global element or attribute corresponding...
            const PropertyImpl* pprop;
            DataObjectPtr newDO = 0;
            try 
            {
                const TypeImpl* ti = 0;
                const PropertyImpl* prop = 0;
                SDOXMLString propertyName;

                ti = dataFactory->findTypeImpl(tns,"RootType");
                if (ti != 0)
                {
                    propertyName = getSDOName((Type&)*ti, localname);
                    prop = ti->getPropertyImpl(propertyName);
                }
                else
                {
                    propertyName = localname;
                }

                if (prop != 0)
                {
                    if (prop->isMany())
                    {
                        pprop = ((DataObjectImpl*)dob)->defineList(propertyName);

                        // the type of the list needs to be set, as chars sets a CString
                        try 
                        {
                            DataObjectList& dl = ((DataObjectImpl*)dob)->getList((const char*)propertyName);
                            ((DataObjectListImpl*)&dl)->setType(prop->getType().getURI(),
                                prop->getType().getName());
                        }
                        catch (SDORuntimeException)
                        {
                            // let it pass - the type will be Bytes
                        }

                        if (prop->getType().isDataType())
                        {
                            currentPropertySetting = PropertySetting(currentDataObject, propertyName,
                                bToBeNull);
                        }
                        else
                        {
                            newDO = dataFactory->create(
                                prop->getType().getURI(),
                                prop->getType().getName());
                            // here we need to use the sequence interface if it exists.
                            if (dob->getType().isSequencedType())
                            {
                                SequencePtr seq = currentPropertySetting.dataObject->getSequence();
                                seq->addDataObject(propertyName,newDO);
                            }
                            else
                            {
                                DataObjectList& dol = dob->getList((const char*)propertyName);
                                dol.append(newDO);
                            }
                            setCurrentDataObject(newDO);
                            setAttributes(tns, namespaces,attributes);
                        }
                        return pprop;
                    }
                    else
                    {
                        switch (prop->getTypeEnum())
                        {
                            case Type::BooleanType:
                                pprop = ((DataObjectImpl*)dob)->defineBoolean((const char*)propertyName);
                                currentPropertySetting = PropertySetting(currentDataObject, propertyName,
                                    bToBeNull);
                                break;
                            case Type::ByteType:
                                pprop = ((DataObjectImpl*)dob)->defineByte((const char*)propertyName);
                                currentPropertySetting = PropertySetting(currentDataObject, propertyName,
                                    bToBeNull);
                                break;
                            case Type::CharacterType:
                                pprop = ((DataObjectImpl*)dob)->defineCharacter(propertyName);
                                currentPropertySetting = PropertySetting(currentDataObject, propertyName,
                                    bToBeNull);
                                break;
                            case Type::BytesType:
                                pprop = ((DataObjectImpl*)dob)->defineBytes(propertyName);
                                currentPropertySetting = PropertySetting(currentDataObject, propertyName,
                                    bToBeNull);
                                break;
                            case Type::StringType:
                                pprop = ((DataObjectImpl*)dob)->defineString(propertyName);
                                currentPropertySetting = PropertySetting(currentDataObject, propertyName,
                                    bToBeNull);
                                break;
                            case Type::ShortType:
                                pprop = ((DataObjectImpl*)dob)->defineShort(propertyName);
                                currentPropertySetting = PropertySetting(currentDataObject, propertyName,
                                    bToBeNull);
                                break;
                            case Type::IntType:
                                pprop = ((DataObjectImpl*)dob)->defineInt(propertyName);
                                currentPropertySetting = PropertySetting(currentDataObject, propertyName,
                                    bToBeNull);
                                break;
                            case Type::LongType:
                                pprop = ((DataObjectImpl*)dob)->defineLong(propertyName);
                                currentPropertySetting = PropertySetting(currentDataObject, propertyName,
                                    bToBeNull);
                                break;
                            case Type::DoubleType:
                                pprop = ((DataObjectImpl*)dob)->defineDouble(propertyName);
                                currentPropertySetting = PropertySetting(currentDataObject, propertyName,
                                    bToBeNull);
                                break;
                            case Type::FloatType:
                                pprop = ((DataObjectImpl*)dob)->defineFloat(propertyName);
                                currentPropertySetting = PropertySetting(currentDataObject, propertyName,
                                    bToBeNull);
                                break;
                            case Type::DateType:
                                pprop = ((DataObjectImpl*)dob)->defineDate(propertyName);
                                currentPropertySetting = PropertySetting(currentDataObject, propertyName,
                                    bToBeNull);
                                break;
                            case Type::DataObjectType:
                                pprop = ((DataObjectImpl*)dob)->defineDataObject(propertyName,
                                prop->getType().getURI(), prop->getType().getName());
                                newDO = dataFactory->create(
                                    prop->getType().getURI(),
                                    prop->getType().getName());
                                // here we need to use the sequence interface if it exists.
                                if (dob->getType().isSequencedType())
                                {
                                    SequencePtr seq = dob->getSequence();
                                    seq->addDataObject(propertyName, newDO);
                                }
                                else
                                {
                                    dob->setDataObject((const char*)propertyName, newDO);
                                }
                                setCurrentDataObject(newDO);
                                setAttributes(tns,namespaces,attributes);
                                break;
                        }
                    } // else
                } // if prop != 0
                else 
                {
                    // The type is open, and the property doesnt exist, so we are creating
                    // a property, and need to find out the type to create.
                    // As I cannot tell if its a single value or many valued, I create all
                    // as many valued
                    // could be data object or primitive. All primitives will appear
                    // as bytes.
                    // UPDATE: Spec says that all elements will appear as DataObjects which 
                    // are sequenced - the text will come out as text elements in the sequence

                    if (!xsitypeName.isNull())
                    {
                        // it has a type from xsi:type
                        newDO = dataFactory->create((const char*)xsitypeURI, (const char*)xsitypeName);
                    }
                    else
                    {
                        newDO = dataFactory->create(SDOUtils::sdoURI, "OpenDataObject");
                    }
                    pprop = ((DataObjectImpl*)dob)->defineList(propertyName);
                   // here we need to use the sequence interface if it exists.
                    if (dob->getType().isSequencedType())
                    {
                        SequencePtr seq = dob->getSequence();
                        seq->addDataObject(propertyName, newDO);
                    }
                    else
                    {
                        DataObjectList& dol = dob->getList((const char*)propertyName);
                        dol.append(newDO);
                    }
                    setCurrentDataObject(newDO);
                    setAttributes(tns,namespaces,attributes);
                }
                return pprop;
            }
            catch (SDORuntimeException)
            {
                // fail to find the property or create a dummy
                return 0;
            }
        }

        void SDOSAX2Parser::startElementNs(
            const SDOXMLString& localname,
            const SDOXMLString& prefix,
            const SDOXMLString& URI,
            const SAX2Namespaces& namespaces,
            const SAX2Attributes& attributes)
            
        {
            LOGENTRY(INFO,"SDOSAX2Parser: startElementNs");

            LOGINFO_1(INFO,"SDOSAX2Parser: startElementNs:%s",
                (const char*)localname);

            newSequence = true;

            bool bToBeNull = false;
            // Save the namespace information from the first element
            if (setNamespaces)
            {
                documentNamespaces = namespaces;
                setNamespaces = false;
            }
            else
            {
                documentNamespaces.merge(namespaces);
            }
            
            if (ignoreEvents)
            {
                // Check for the tag we are waiting for
                if (   (ignoreTag.localname.equals(localname))
                    && (ignoreTag.uri.equals(URI))
                    && (ignoreTag.prefix.equals(prefix)) )
                {
                    ignoreTag.tagCount++;
                }
                LOGEXIT(INFO,"SDOSAX2Parser: startElementNs - exit1");
                return;
            }

            if (URI.equalsIgnoreCase("http://www.w3.org/2001/XMLSchema"))
            {
                // ignore anything within a schema
                LOGINFO_1(INFO,"SDOSAX2Parser ignores schema element:%s",
                                    (const char *)localname);

                // We need to ignore all events until the end tag for this element
                ignoreEvents = true;
                ignoreTag.localname = localname;
                ignoreTag.uri = URI;
                ignoreTag.prefix = prefix;
                ignoreTag.tagCount = 0;
                return;
            }

 
            
            if (dealingWithChangeSummary)
            {
                if (csbuilder == 0)
                {
                    LOGERROR(ERROR,"SDOSAX2Parser:Parser builds summary with no builder");
                    LOGEXIT(INFO,"SDOSAX2Parser: startElementNs - exit2");
                    return;
                }
                csbuilder->processStart(
                    localname,
                    prefix,
                    URI,
                    namespaces,
                    attributes);
                LOGEXIT(INFO,"SDOSAX2Parser: startElementNs - exit3");
                return;
            }


            if (URI.equalsIgnoreCase(SDOUtils::sdoURI))
            {
                ///////////////////////////////////////////////////////////////////////
                // Handle datagraph
                ///////////////////////////////////////////////////////////////////////
                if (localname.equalsIgnoreCase("datagraph"))
                {
                    // Remember this is a datagraph. The root DO will be created
                    // later when we can have a better guess at the namespaceURI
                    isDataGraph = true;
                } // end handling sdo:datagraph
                
                ////////////////////////////////////
                // Handle ChangeSummary on datagraph
                ////////////////////////////////////
                if (localname.equals("changeSummary"))
                {
                    changeSummary = true;
                    changeSummaryDO = currentDataObject;

                    csbuilder = new ChangeSummaryBuilder(
                        dataFactory, rootDataObject );

                    changeSummaryLogging = true;

                    
                    SDOXMLString logging = attributes.getValue("logging");
                    if (!logging.isNull())
                    {
                        if (logging.equals("false"))
                        {
                            changeSummaryLogging = false;
                        }
                    }

                    LOGINFO(INFO,"SDOSAX2Parser:Start change summary");
                    dealingWithChangeSummary = true;
                    LOGEXIT(INFO,"SDOSAX2Parser: startElementNs - exit4");
                    return;
                    
                }
                
            }
            else
            {
                ///////////////////////////////////////////////////////////////////////
                // Each element is a DataObject or a Property on the current DO
                ///////////////////////////////////////////////////////////////////////
                DataObjectPtr newDO = 0;
                
                SDOXMLString typeURI, typeName, propertyName;
                
                ///////////////////////////////////////////////////////////////////////
                // Determine the type. It is either specified by the xsi:type attribute
                // or the localname is the name of a property on "RootType"
                ///////////////////////////////////////////////////////////////////////
                int i;
                for (i=0; i < attributes.size(); i++)
                {
                    if (attributes[i].getUri().equalsIgnoreCase("http://www.w3.org/2001/XMLSchema-instance"))
                    {
                        if (attributes[i].getName().equalsIgnoreCase("type"))
                        {
                            SDOXMLString fullTypeName = attributes[i].getValue();
                            SDOXMLString pref;

                            int index = fullTypeName.firstIndexOf(':');
                            if (index < 0)
                            {
                                typeName = fullTypeName;
                            }
                            else
                            {    
                                // Is the namespace prefix defined?
                                typeName = fullTypeName.substring(index+1);
                                pref = fullTypeName.substring(0, index);
                            }

                            // Convert the prefix to a namespace URI
                            const SDOXMLString* namespaceURI = namespaces.find(pref);
                            if (namespaceURI == 0)
                            {
                                namespaceURI = documentNamespaces.find(pref);
                            }
                            if (namespaceURI != 0)
                            {
                                typeURI = *namespaceURI;
                            }
                        }
                        else if (attributes[i].getName().equalsIgnoreCase("nil"))
                        {
                            if (attributes[i].getValue().equalsIgnoreCase("true"))
                            {
                                // the current setting needs to be setNull
                                bToBeNull = true;
                            }
                        }
                    }
                } // End - attribute loop
                
                if (typeURI.isNull())
                {
                    typeURI = "";
                }
                
                SDOXMLString tns = URI;
                
                if (tns.isNull())
                    tns = "";
                
                try
                {
                    if (currentDataObject == 0)
                    {
                        // This element should become the root data object
                        
                        // Target namespace will be:
                        //   the targetNamespaceURI if specified 
                        //   or the URI of xsi:type if specified
                        //   or the URI of this element
                        if (!typeURI.equals(""))
                        {
                            tns = typeURI;
                        }

                        if (!targetNamespaceURI.isNull() && !targetNamespaceURI.equals(""))
                        {
                            tns = targetNamespaceURI;
                            rootElementURI = tns;
                        }
                        else
                        {
                            rootElementURI = URI;
                        }
                        
                        // Check for localname as a property of the RootType
                        // if we do not already know the type
                        if (typeName.isNull())
                        {
                            try {
                                const Type& rootType = dataFactory->getType(tns, "RootType");
                                propertyName = getSDOName(rootType, localname);
                                const Type& newType = 
                                    ((TypeImpl&)(rootType)).getRealPropertyType(propertyName);

                                typeURI = newType.getURI();
                                typeName = newType.getName();
                            }
                            catch (const SDOTypeNotFoundException&)
                            {
                                typeURI = SDOUtils::sdoURI;
                                typeName = "OpenDataObject";
                            }
                        }
                        
                        // Create the root DataObject
                        if (isDataGraph)
                        {
                            DataObjectPtr rootdo = dataFactory->create(tns, "RootType");
                            setCurrentDataObject(rootdo);
                            changeSummaryDO = currentDataObject;
                        }
                        else
                        {
                            rootElementName = localname;
                        }
                        
                        // NOTE: always creating DO doesn't cater for DataType as top element

                        const Type& tp = dataFactory->getType((const char*)typeURI,typeName);
                        if (tp.isDataType())
                        {
                            newDO = dataFactory->create(tns, "RootType");
                            currentPropertySetting = PropertySetting(newDO, localname,
                            bToBeNull);

                            // TODO - need instead to record the fact that its a primitive, not
                            // a real DO - and then present it as the root.
                           // newDO = dataFactory->create(tns, "RootType");
                           // const Type& tpr = dataFactory->getType(tns,"RootType");
                           // XSDTypeInfo* typeInfo = (XSDTypeInfo*)
                           //   ((DASType*)&tpr)->getDASValue("XMLDAS::TypeInfo");
                           // if (typeInfo)
                           // {
                           //     TypeDefinitionImpl* td;
                           //     td = (TypeDefinitionImpl*)&(typeInfo->getTypeDefinition());
                           //     if (td)td->isExtendedPrimitive = true;
                           //     currentPropertySetting = PropertySetting(newDO, "value" /*localname*/,
                           //     bToBeNull);

                           // }
                           // else
                           // {
                           //     currentPropertySetting = PropertySetting(newDO, localname,
                           //     bToBeNull);
                           // }

                        }
                        else
                        {

                            newDO = dataFactory->create((const char*)typeURI, (const char*)typeName);

                            // get the type definition, and see if its an extended primitive.

                            XSDTypeInfo* typeInfo = (XSDTypeInfo*)
                              ((DASType*)&tp)->getDASValue("XMLDAS::TypeInfo");
                            if (typeInfo)
                            {
                                const TypeDefinitionImpl& typeDefinition = typeInfo->getTypeDefinition();
                                if (typeDefinition.isExtendedPrimitive)
                                {
                                    // The name of this element is the name of a property on the current DO
                                    currentPropertySetting = PropertySetting(newDO, localname,
                                    bToBeNull);
                                }
                            }
                        }
                        
                    } // End - currentDataObject == 0
                    
                    else
                    { // currentDataObject != 0
                        
                        // Get the Property from the dataObject
                        propertyName = getSDOName(*currentDataObjectType, localname);
                        const Type& type = currentDataObject->getType();

                    
                        // go lower level so we can find open properties w/o exception
                        DataObject* dob = getRawPointer(currentDataObject);
                        const PropertyImpl* pprop = ((DataObjectImpl*)dob)->getPropertyImpl(propertyName);
                        if (pprop == 0)
                        {
                            if (type.isOpenType())
                            {
                                pprop = handleOpenType(
                                    tns,
                                    localname,
                                    (DataObjectImpl*)dob,
                                     namespaces,
                                     attributes,
                                     typeURI,
                                     typeName,
                                     bToBeNull);
                            }
                            if (pprop == 0)
                            {
                                // this is an open property , we will need to create it
                                LOGERROR_1(WARNING,"SDOSAX2Parser Unknown element:%s",
                                    (const char *)localname);

                                // We need to ignore all events until the end tag for this element
                                ignoreEvents = true;
                                ignoreTag.localname = localname;
                                ignoreTag.uri = URI;
                                ignoreTag.prefix = prefix;
                                ignoreTag.tagCount = 0;
                                if (setter != 0)
                                {
                                    char *msg = new char[strlen((const char*)localname) + 32];
                                    if (msg) {
                                        sprintf(msg,"Parser found unknown element %s",
                                            (const char*)localname);
                                        setter->setError( msg );
                                        delete[] msg;
                                    }
                                }
                             }
                            LOGEXIT(INFO,"SDOSAX2Parser: startElementNs - exit5");
                            return;
                        }
                        else
                        {

                            const Property& prop = (Property&)*pprop;
                            const TypeImpl* propType = ((TypeImpl&)type).getRealPropertyTypeImpl(propertyName);
                            if (propType == 0)
                            {
                                // could be a previously created open type property
                                propType = (const TypeImpl*)pprop->getTypeImpl();
                            }
                            if (propType != 0)
                            {
                                XSDPropertyInfo* pi = (XSDPropertyInfo*)((DASProperty*)&prop)->getDASValue("XMLDAS::PropertyInfo");
                                if ((pi && pi->getPropertyDefinition().isIDREF)
                                || prop.isReference())
                                {
                                    // The name of this element is the name of a property on the current DO
                                    currentPropertySetting = PropertySetting(currentDataObject, propertyName, bToBeNull,
                                        true);                        
                                }
                        
                                // If it is a DataType then we need set the value
                                else if (propType->isDataType() )
                                {
                                    // The name of this element is the name of a property on the current DO
                                    currentPropertySetting = PropertySetting(currentDataObject, propertyName,
                                        bToBeNull);
                                }
                                else
                                {

                                    // If typeName is not set then create object of Type of Property
                                    // otherwise use the typeURI and typeName specified by e.g. xsi:type
                                    if (typeName.isNull())
                                    {
                                        newDO = dataFactory->create(propType->getURI(), propType->getName());
                                    }
                                    else
                                    {
                                        newDO = dataFactory->create((const char*)typeURI, (const char*)typeName);
                                    }

                                    XSDTypeInfo* typeInfo = (XSDTypeInfo*)
                                    ((DASType*)propType)->getDASValue("XMLDAS::TypeInfo");
                                    if (typeInfo && typeInfo->getTypeDefinition().isExtendedPrimitive)
                                    {
                                        // The name of this element is the name of a property on the current DO
                                        currentPropertySetting = PropertySetting(newDO, "value", bToBeNull);
                                    }

                                }
                            }
                        }  // End // currentDataObject != 0
                    } // end prop != 0
                    if (newDO)
                    {
                        if (!setDO(newDO, propertyName))
                        {
                            LOGERROR_1(WARNING,"SDOSAX2Parser Unknown element:%s",
                                (const char *)localname);

                            // We need to ignore all events until the end tag for this element
                            ignoreEvents = true;
                            ignoreTag.localname = localname;
                            ignoreTag.uri = URI;
                            ignoreTag.prefix = prefix;
                            ignoreTag.tagCount = 0;
                            if (setter != 0)
                            {
                                char *msg = new char[strlen((const char*)localname) + 32];
                                if (msg) {
                                    sprintf(msg,"Parser found unknown element %s",
                                    (const char*)localname);
                                    setter->setError( msg );
                                    delete msg;
                                }
                            }
                            LOGEXIT(INFO,"SDOSAX2Parser: startElementNs - exit6");
                            return;
                        }
                    }
                } // end try

                catch (const SDOTypeNotFoundException& )
                {
                    
                    LOGERROR_1(WARNING,"SDOSAX2Parser Unknown element:%s",
                        (const char *)localname);

                    // We need to ignore all events until the end tag for this element
                    ignoreEvents = true;
                    ignoreTag.localname = localname;
                    ignoreTag.uri = URI;
                    ignoreTag.prefix = prefix;
                    ignoreTag.tagCount = 0;
                    if (setter != 0)
                    {
                        char *msg = new char[strlen((const char*)localname) + 32];
                        if (msg) {
                            sprintf(msg,"Parser found unknown element %s",
                            (const char*)localname);
                            setter->setError( msg );
                            delete[] msg;
                        }
                    }
                    LOGEXIT(INFO,"SDOSAX2Parser: startElementNs - exit7");
                    return;
                }

#ifdef _DEBUG
                catch (const SDOPropertyNotFoundException& e )
#else
                catch (const SDOPropertyNotFoundException&  )
#endif
                {
                    LOGERROR_1(WARNING,"SDOSAX2Parser Unknown element exception:%s",
                        (const char *)localname);
                    LOGSDOEXCEPTION(WARNING,"Exception:",e);

                    // We need to ignore all events until the end tag for this element
                    ignoreEvents = true;
                    ignoreTag.localname = localname;
                    ignoreTag.uri = URI;
                    ignoreTag.prefix = prefix;
                    ignoreTag.tagCount = 0;
                    if (setter != 0)
                    {
                        char *msg = new char[strlen((const char*)localname) + 32];
                        if (msg)
                        {
                            sprintf(msg,"Parser found unknown element %s",
                                 (const char*)localname);
                            setter->setError( msg );
                            delete msg;
                        }
                    }
                    LOGEXIT(INFO,"SDOSAX2Parser: startElementNs - exit8");
                    return;
                }

                setAttributes(tns,namespaces, attributes);
                
            }
            LOGEXIT(INFO,"SDOSAX2Parser: startElementNs - exit9");
        }
        
        
        void SDOSAX2Parser::endElementNs(
            const SDOXMLString& localname,
            const SDOXMLString& prefix,
            const SDOXMLString& URI)
        {

            LOGENTRY(INFO,"SDOSAX2Parser: endElementNs");

            newSequence = true;

            if (localname.equals("changeSummary"))
            {
                // end of change summary
                dealingWithChangeSummary = false;
                LOGINFO(INFO,"SDOSAX2Parser: Finished change summary");
                LOGEXIT(INFO,"SDOSAX2Parser: endElementNs - exit1");
                return;
            }

            if (dealingWithChangeSummary)

            {
                if (csbuilder == 0) 
                {
                    LOGERROR(WARNING,"SDOSAX2Parser: End change summary with no builder");
                    LOGEXIT(INFO,"SDOSAX2Parser: endElementNs - exit2");
                    return;
                }
                csbuilder->processEnd(localname,
                                     prefix,
                                     URI);
                LOGEXIT(INFO,"SDOSAX2Parser: endElementNs - exit3");
                return;
            }


            if (ignoreEvents)
            {
                // Check for the tag we are waiting for
                if (   (ignoreTag.localname.equals(localname))
                    && (ignoreTag.uri.equals(URI))
                    && (ignoreTag.prefix.equals(prefix)) )
                {
                    if (ignoreTag.tagCount == 0)
                    {
                        ignoreEvents = false;
                    }
                    ignoreTag.tagCount--;
                }
                LOGEXIT(INFO,"SDOSAX2Parser: endElementNs - exit4");
                return;
            }
            
            // If currentPropertySetting is set (name is not null)
            // then we need to set the property now
            if (!currentPropertySetting.name.isNull())
            {
                if (currentPropertySetting.isNULL)
                {

                    currentPropertySetting.dataObject->
                            setNull((const char*)currentPropertySetting.name);

                }
                else 
                {    
                    if (currentPropertySetting.value.isNull())
                    {
                        currentPropertySetting.value = SDOXMLString("");
                    }
                    try
                    {
                        const Type& tp = currentPropertySetting.dataObject->getType();
                        XSDTypeInfo* typeInfo = (XSDTypeInfo*)
                            ((DASType*)&tp)->getDASValue("XMLDAS::TypeInfo");
                        if (typeInfo && typeInfo->getTypeDefinition().isExtendedPrimitive)
                        {
                            PropertyPtr p = currentPropertySetting.dataObject->getInstanceProperty(
                                "value"); 
                            if (!p) {
                              throw SDOPropertyNotFoundException(TUSCANY_SDO_EINFO,
                                                                 "Cannot find property: value");
                            }
                            if (p->isMany())
                            {
                                // use the sequence interface if it exists.
                                if (currentPropertySetting.dataObject->getType().isSequencedType())
                                {
                                    SequencePtr seq = currentPropertySetting.dataObject->getSequence();
                                    seq->addCString("value", currentPropertySetting.getStringWithCDataMarkers().c_str());
                                }
                                else
                                {
                                    DataObjectList& dl = currentPropertySetting.dataObject->
                                    getList((const char*)"value");
                                    dl.append((const char*)currentPropertySetting.getStringWithCDataMarkers().c_str());
                                }

                            }
                            else
                            {
                                // use the sequence interface if it exists
                                if (currentPropertySetting.dataObject->getType().isSequencedType())
                                {
                                    SequencePtr seq = currentPropertySetting.dataObject->getSequence();
                                    seq->addCString("value", currentPropertySetting.getStringWithCDataMarkers().c_str());
                                }
                                else
                                {
                                    currentPropertySetting.dataObject->
//                                    setCString((const char*)"value", currentPropertySetting.value );
                                    setCString((const char*)"value", currentPropertySetting.getStringWithCDataMarkers().c_str() );
                                }
                            }
                            if (dataObjectStack.size() == 0 || rootDataObject == dataObjectStack.top())
                            {
                                currentDataObject = 0;
                                currentDataObjectType = 0;
                            }
                            else
                            {
                                dataObjectStack.pop();
                                currentDataObject = dataObjectStack.top();
                                currentDataObjectType = &(currentDataObject->getType());
                            }

                        }
                        else
                        {
                            if (currentPropertySetting.isIDREF)
                            {
                                // remember this value to resolve later
                                IDRef ref(currentPropertySetting.dataObject,
                                    currentPropertySetting.name,
                                    currentPropertySetting.value );
                                IDRefs.push_back(ref);
                            }
                            else
                            {
                                if (currentPropertySetting.dataObject->getType().isSequencedType())
                                {
                                    SequencePtr seq = currentPropertySetting.dataObject->getSequence();
                                    seq->addCString(currentPropertySetting.name, currentPropertySetting.getStringWithCDataMarkers().c_str());
                                }
                                // Always set the property as a String. SDO will do the conversion

                                // It might be a single setting for a many-valued property.
                                // may throw SDOPropertyNotFoundException
                                else {
                                    PropertyPtr p = currentPropertySetting.dataObject->getInstanceProperty(
                                        (const char*)currentPropertySetting.name);
                                    if (!p) {
                                      SDOString msg("Cannot find property: ");
                                      msg += (const char*)currentPropertySetting.name;
                                      throw SDOPropertyNotFoundException(TUSCANY_SDO_EINFO,
                                                                         msg.c_str());
                                    }
                                    if (p->isMany())
                                    {
                                        DataObjectList& dl = currentPropertySetting.dataObject->
                                        getList(*p);
                                        dl.append((const char*)currentPropertySetting.getStringWithCDataMarkers().c_str());
                                    }
                                    else
                                    {
                                        currentPropertySetting.dataObject->
                                        setCString(*p, currentPropertySetting.getStringWithCDataMarkers().c_str() );
                                    }
                                }
                            }
                        }
                    }
#ifdef _DEBUG
                    catch (const SDOPropertyNotFoundException& e)
#else
                    catch (const SDOPropertyNotFoundException&)
#endif
                    {
                        LOGSDOEXCEPTION(WARNING,"SDOSAX2Parser error attribute (ignored)",e);         
                    }
                }
                currentPropertySetting = PropertySetting();
                
            }
            else
            {
                if (changeSummary 
                    && changeSummaryLogging 
                    && changeSummaryDO == currentDataObject)
                {
                    // Set logging on for this DO before it is popped from stack
                    ChangeSummaryPtr cs = currentDataObject->getChangeSummary();
                    if (cs)
                    {
                        cs->beginLogging();
                    }
                    changeSummary = false;
                }
                
                if (dataObjectStack.size() == 0 || rootDataObject == dataObjectStack.top())
                {
                    currentDataObject = 0;
                    currentDataObjectType = 0;
                }
                else
                {
                    dataObjectStack.pop();
                    currentDataObject = dataObjectStack.top();
                    currentDataObjectType = &(currentDataObject->getType());
                }
            }
            LOGEXIT(INFO,"SDOSAX2Parser: endElementNs - exit4");
        }


         
        void SDOSAX2Parser::characters(const SDOXMLString& chars)
        {
            if (chars.isNull()) return;

            if (!strcmp((const char*)chars,"\r") ||
                !strcmp((const char*)chars,"\n"))
            {
                newSequence = true;
                return;
            }

            if (dealingWithChangeSummary)
            {
                if (csbuilder == 0)
                {
                    LOGERROR(WARNING,"SDOSAX2Parser: no builder");
                    return;
                }
                csbuilder->processChars(chars);
                return;
            }

            if (ignoreEvents)
                return;

            if (!currentPropertySetting.name.isNull())
            {
                currentPropertySetting.value = currentPropertySetting.value + chars;    
                return;
            }
            DataObject* dob = getRawPointer(currentDataObject);
            if ((dob != 0)  && ((DataObjectImpl*)dob)->getTypeImpl().isFromList())
            {
                 // this is a list,so we need to split it up
                DataObjectList& dl = currentDataObject->getList(
                       (const char *)"values");

                const char* str = (const char*)chars;
         
                // Convert any synthetic CDATA markers back to the real thing
                SDOString valueString(str);
                SDOString tmpString = SDOUtils::replace(valueString, SDOUtils::CDataStartMarker, SDOUtils::XMLCDataStartMarker);
                tmpString = SDOUtils::replace(tmpString, SDOUtils::CDataEndMarker, SDOUtils::XMLCDataEndMarker);  
                str =  (const char*)tmpString.c_str();  
                    
                char* buf = new char[strlen(str)+1];
                if (!buf) return;

                strcpy(buf,str);

                int start_point = 0;
                int end_point;
                int final = strlen(buf);

                do {
                   if (start_point >= final)break;
                   while (buf[start_point] == (char)0x20 || buf[start_point] == (char)0x09
                       || buf[start_point] == (char)0x0A || buf[start_point] == (char)0x0D )start_point++;
                   end_point = start_point;
                   while (buf[end_point] != (char)0x20 && buf[end_point] != (char)0x09 &&
                          buf[end_point] != (char)0x0A && buf[end_point] != (char)0x0D &&
                                                                        buf[end_point] != 0x0)end_point++;
                   if (end_point == start_point)break; 
                   *(buf+end_point) = 0;
                   dl.append((const char*)(buf+start_point));
                   start_point = end_point + 1;
                } while(1);

                delete[] buf;
                return;
            }


            // If the current DataObject is a sequenced Type
            // then add this as text to the sequence
            if (currentDataObject && currentDataObjectType->isSequencedType())
            {
                // Convert any synthetic CDATA markers back to the real thing     
                const char* str = (const char*)chars;
            
                SDOString valueString(str);
                SDOString tmpString = SDOUtils::replace(valueString, SDOUtils::CDataStartMarker, SDOUtils::XMLCDataStartMarker);
                tmpString = SDOUtils::replace(tmpString, SDOUtils::CDataEndMarker, SDOUtils::XMLCDataEndMarker);  
                str =  tmpString.c_str(); 
                                
                SequencePtr seq = currentDataObject->getSequence();
                if (seq)
                {
                    if (newSequence == true)
                    {
                        seq->addText(str);
                        newSequence = false;
                    }
                    else
                    {
                        for (int k= (int)(seq->size())-1; k>=0 ; k --)
                        {
                            if (seq->isText(k))
                            {
                                const char * s = seq->getCStringValue(k);
                               
                                if (s)
                                {
                                    char *combi = 
                                        new char[strlen(s)+strlen(str) + 2];
                                    strcpy(combi,s);
                                    strcat(combi,str);
                                    seq->setText(k,(const char*)combi);
                                    delete[] combi;
                                }
                                else
                                {
                                    seq->setText(k,str);
                                }
                                return;
                            }
                        }
                        seq->addText(str);
                    }
                    return;
                }
            }
           
        }
        
        
        void SDOSAX2Parser::setCurrentDataObject(DataObjectPtr currentDO)
        {    
            currentDataObject = currentDO;
            dataObjectStack.push(currentDataObject);
            currentDataObjectType = &(currentDataObject->getType());
            if (rootDataObject == 0)
            {
                rootDataObject = currentDataObject;
            }
        }

        const SDOXMLString& SDOSAX2Parser::getSDOName(const Type& type, const SDOXMLString& localName)
        {

/*            XSDTypeInfo* typeInfo = (XSDTypeInfo*)((DASType*)&type)->getDASValue("XMLDAS::TypeInfo");
            if (typeInfo)
            {
                const TypeDefinitionImpl& typeDefinition = typeInfo->getTypeDefinition();
                XmlDasPropertyDefs::const_iterator propsIter;
                for (propsIter = typeDefinition.properties.begin(); propsIter != typeDefinition.properties.end(); propsIter++)
                {
                    const PropertyDefinitionImpl& prop = *propsIter;
                    if (prop.localname.equals(localName))
                    {
                        return prop.name;
                    }
                    for (int i=0;i< prop.substituteNames.size();i++)
                    {
                        if (prop.substituteLocalNames[i].equals(localName))
                        {
                            return prop.substituteNames[i];
                            // possibly should be return prop.name;
                        }
                    }
                }                    
            }
            */

            const TypeImpl& typeImpl = dynamic_cast<const TypeImpl&>(type);
            const std::vector<PropertyImplPtr> pl = typeImpl.getPropertyListReference();

            for (std::vector<PropertyImplPtr>::const_iterator i = pl.begin();
                 i != pl.end();
                 i++)
            {
                XSDPropertyInfo* pi = (XSDPropertyInfo*)
                ((DASProperty*) getRawPointer(*i))->getDASValue("XMLDAS::PropertyInfo");

                if (pi)
                {
                    const PropertyDefinitionImpl&  propdef = pi->getPropertyDefinition();
                    if (localName .equals(propdef.localname))
                        return propdef.name;

                    for (unsigned int j=0;j< propdef.substituteNames.size();j++)
                    {
                        if (propdef.substituteLocalNames[j].equals(localName))
                        {
                            return propdef.substituteNames[j];
                            // possibly should be return propdef.name;
                        }
                    }
                }
            }
                


            return localName;
        }


        std::istream& operator>>(std::istream& input, SDOSAX2Parser& parser)
        {
            parser.stream(input);
            
            return input;
        }
        
        std::istringstream& operator>>(std::istringstream& input, SDOSAX2Parser& parser)
        {
            parser.stream(input);
            
            return input;
        }
        
    } // End - namespace sdo
} // End - namespace commonj