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
|
#ifndef SEEN_LS_H
#define SEEN_LS_H
/**
* @file
* Phoebe DOM Implementation.
*
* This is a C++ approximation of the W3C DOM model, which follows
* fairly closely the specifications in the various .idl files, copies of
* which are provided for reference. Most important is this one:
*
* http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/idl-definitions.html
*/
/*
* Authors:
* Bob Jamison
*
* Copyright (C) 2005 Bob Jamison
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "dom.h"
#include "events.h"
#include "traversal.h"
#include "io/domstream.h"
namespace org
{
namespace w3c
{
namespace dom
{
namespace ls
{
//Local definitions
//The idl said Object. Since this is undefined, we will
//use our own class which is designed to be a bit similar to
//java.io streams
typedef dom::io::InputStream LSInputStream;
typedef dom::io::OutputStream LSOutputStream;
typedef dom::io::Reader LSReader;
typedef dom::io::Writer LSWriter;
//local definitions
typedef dom::DOMString DOMString;
typedef dom::DOMConfiguration DOMConfiguration;
typedef dom::Node Node;
typedef dom::NodePtr NodePtr;
typedef dom::Document Document;
typedef dom::DocumentPtr DocumentPtr;
typedef dom::Element Element;
typedef dom::ElementPtr ElementPtr;
//forward declarations
class LSParser;
class LSSerializer;
class LSInput;
class LSOutput;
class LSParserFilter;
class LSSerializerFilter;
/*#########################################################################
## LSException
#########################################################################*/
/**
* Maybe this should inherit from DOMException?
*/
class LSException
{
public:
LSException(const DOMString &reasonMsg)
{ msg = reasonMsg; }
LSException(short theCode)
{
code = theCode;
}
virtual ~LSException() throw()
{}
/**
*
*/
unsigned short code;
/**
*
*/
DOMString msg;
/**
* Get a string, translated from the code.
* Like std::exception. Not in spec.
*/
const char *what()
{ return msg.c_str(); }
};
/**
* LSExceptionCode
*/
typedef enum
{
PARSE_ERR = 81,
SERIALIZE_ERR = 82
} XPathExceptionCode;
/*#########################################################################
## LSParserFilter
#########################################################################*/
/**
*
*/
class LSParserFilter
{
public:
// Constants returned by startElement and acceptNode
typedef enum
{
FILTER_ACCEPT = 1,
FILTER_REJECT = 2,
FILTER_SKIP = 3,
FILTER_INTERRUPT = 4
} ReturnValues;
/**
*
*/
virtual unsigned short startElement(const ElementPtr elementArg) =0;
/**
*
*/
virtual unsigned short acceptNode(const NodePtr nodeArg) =0;
/**
*
*/
virtual unsigned long getWhatToShow() =0;
//##################
//# Non-API methods
//##################
/**
*
*/
virtual ~LSParserFilter() {}
};
/*#########################################################################
## LSInput
#########################################################################*/
/**
*
*/
class LSInput
{
public:
/**
*
*/
virtual LSReader *getCharacterStream() const
{ return characterStream; }
/**
*
*/
virtual void setCharacterStream(const LSReader *val)
{ characterStream = (LSReader *)val; }
/**
*
*/
virtual LSInputStream *getByteStream() const
{ return byteStream; }
/**
*
*/
virtual void setByteStream(const LSInputStream *val)
{ byteStream = (LSInputStream *)val; }
/**
*
*/
virtual DOMString getStringData() const
{ return stringData; }
/**
*
*/
virtual void setStringData(const DOMString &val)
{ stringData = val; }
/**
*
*/
virtual DOMString getSystemId() const
{ return systemId; }
/**
*
*/
virtual void setSystemId(const DOMString &val)
{ systemId = val; }
/**
*
*/
virtual DOMString getPublicId() const
{ return publicId; }
/**
*
*/
virtual void setPublicId(const DOMString &val)
{ publicId = val; }
/**
*
*/
virtual DOMString getBaseURI() const
{ return baseURI; }
/**
*
*/
virtual void setBaseURI(const DOMString &val)
{ baseURI = val; }
/**
*
*/
virtual DOMString getEncoding() const
{ return encoding; }
/**
*
*/
virtual void setEncoding(const DOMString &val)
{ encoding = val; }
/**
*
*/
virtual bool getCertifiedText() const
{ return certifiedText; }
/**
*
*/
virtual void setCertifiedText(bool val)
{ certifiedText = val; }
//##################
//# Non-API methods
//##################
/**
*
*/
LSInput()
{
characterStream = NULL;
byteStream = NULL;
stringData = "";
systemId = "";
publicId = "";
baseURI = "";
encoding = "";
certifiedText = false;
}
/**
*
*/
LSInput(const LSInput &other)
{
characterStream = other.characterStream;
byteStream = other.byteStream;
stringData = other.stringData;
systemId = other.systemId;
publicId = other.publicId;
baseURI = other.baseURI;
encoding = other.encoding;
certifiedText = other.certifiedText;
}
/**
*
*/
virtual ~LSInput()
{}
private:
LSReader *characterStream;
LSInputStream *byteStream;
DOMString stringData;
DOMString systemId;
DOMString publicId;
DOMString baseURI;
DOMString encoding;
bool certifiedText;
};
/*#########################################################################
## LSParser
#########################################################################*/
/**
*
*/
class LSParser
{
public:
/**
*
*/
virtual DOMConfiguration *getDomConfig()
{ return NULL; }
/**
*
*/
virtual LSParserFilter *getFilter()
{ return filter; }
/**
*
*/
virtual void setFilter(const LSParserFilter *val)
{ filter = const_cast<LSParserFilter *>(val); }
/**
*
*/
virtual bool getAsync()
{ return false; }
/**
*
*/
virtual bool getBusy()
{ return false; }
/**
*
*/
virtual DocumentPtr parse(const LSInput &/*input*/)
throw(dom::DOMException, LSException)
{ return NULL; }
/**
*
*/
virtual DocumentPtr parseURI(const DOMString &/*uri*/)
throw(dom::DOMException, LSException)
{ return NULL; }
typedef enum
{
ACTION_APPEND_AS_CHILDREN = 1,
ACTION_REPLACE_CHILDREN = 2,
ACTION_INSERT_BEFORE = 3,
ACTION_INSERT_AFTER = 4,
ACTION_REPLACE = 5
} ActionTypes;
/**
*
*/
virtual NodePtr parseWithContext(const LSInput &/*input*/,
const NodePtr /*contextArg*/,
unsigned short /*action*/)
throw(dom::DOMException, LSException)
{ return NULL; }
/**
*
*/
virtual void abort()
{}
//##################
//# Non-API methods
//##################
/**
*
*/
LSParser()
{
filter = NULL;
}
/**
*
*/
LSParser(const LSParser &other)
{
filter = other.filter;
}
/**
*
*/
virtual ~LSParser() {}
protected:
LSParserFilter *filter;
};
/*#########################################################################
## LSResourceResolver
#########################################################################*/
/**
*
*/
class LSResourceResolver
{
public:
/**
*
*/
virtual LSInput resolveResource(const DOMString &/*type*/,
const DOMString &/*namespaceURI*/,
const DOMString &/*publicId*/,
const DOMString &/*systemId*/,
const DOMString &/*baseURI*/)
{
LSInput input;
//do something
return input;
}
//##################
//# Non-API methods
//##################
/**
*
*/
LSResourceResolver() {}
/**
*
*/
LSResourceResolver(const LSResourceResolver &/*other*/)
{
}
/**
*
*/
virtual ~LSResourceResolver() {}
};
/*#########################################################################
## LSOutput
#########################################################################*/
/**
*
*/
class LSOutput
{
public:
/**
*
*/
virtual LSWriter *getCharacterStream() const
{ return characterStream; }
/**
*
*/
virtual void setCharacterStream(const LSWriter *val)
{ characterStream = (LSWriter *)val; }
/**
*
*/
virtual LSOutputStream *getByteStream() const
{ return byteStream; }
/**
*
*/
virtual void setByteStream(const LSOutputStream *val)
{ byteStream = (LSOutputStream *) val; }
/**
*
*/
virtual DOMString getSystemId() const
{ return systemId; }
/**
*
*/
virtual void setSystemId(const DOMString &val)
{ systemId = val; }
/**
*
*/
virtual DOMString getEncoding() const
{ return encoding; }
/**
*
*/
virtual void setEncoding(const DOMString &val)
{ encoding = val; }
//##################
//# Non-API methods
//##################
/**
*
*/
LSOutput()
{
characterStream = NULL;
byteStream = NULL;
systemId = "";
encoding = "";
}
/**
*
*/
LSOutput(const LSOutput &other)
{
characterStream = other.characterStream;
byteStream = other.byteStream;
systemId = other.systemId;
encoding = other.encoding;
}
/**
*
*/
virtual ~LSOutput()
{}
private:
LSWriter *characterStream;
LSOutputStream *byteStream;
DOMString systemId;
DOMString encoding;
};
/*#########################################################################
## LSSerializer
#########################################################################*/
/**
*
*/
class LSSerializer
{
public:
/**
*
*/
virtual DOMConfiguration *getDomConfig()
{ return NULL; }
/**
*
*/
virtual DOMString getNewLine()
{ return newLine; }
/**
*
*/
virtual void setNewLine(const DOMString &val)
{ newLine = val; }
/**
*
*/
virtual LSSerializerFilter *getFilter()
{ return filter; }
/**
*
*/
virtual void setFilter(const LSSerializerFilter *val)
{ filter = const_cast<LSSerializerFilter *>(val); }
/**
*
*/
virtual bool write(const NodePtr /*nodeArg*/,
const LSOutput &/*destination*/)
throw (LSException)
{ return false; }
/**
*
*/
virtual bool writeToURI(const NodePtr /*nodeArg*/,
const DOMString &/*uri*/)
throw(LSException)
{ return false; }
/**
*
*/
virtual DOMString writeToString(const NodePtr /*nodeArg*/)
throw(dom::DOMException, LSException)
{
DOMString str;
return str;
}
//##################
//# Non-API methods
//##################
/**
*
*/
LSSerializer()
{
filter = NULL;
newLine = "\n";
}
/**
*
*/
LSSerializer(const LSSerializer &other)
{
filter = other.filter;
newLine = other.newLine;
}
/**
*
*/
virtual ~LSSerializer() {}
protected:
LSSerializerFilter *filter;
DOMString newLine;
};
/*#########################################################################
## LSProgressEvent
#########################################################################*/
/**
*
*/
class LSProgressEvent : virtual public events::Event
{
public:
/**
*
*/
virtual LSInput &getInput()
{
return input;
}
/**
*
*/
virtual unsigned long getPosition()
{ return position; }
/**
*
*/
virtual unsigned long getTotalSize()
{ return totalSize; }
//##################
//# Non-API methods
//##################
/**
*
*/
LSProgressEvent(const LSInput &inputArg, unsigned long positionArg,
unsigned long totalSizeArg) : input((LSInput &)inputArg)
{
position = positionArg;
totalSize = totalSizeArg;
}
/**
*
*/
LSProgressEvent(const LSProgressEvent &other)
: events::Event(other) , input(other.input)
{
position = other.position;
totalSize = other.totalSize;
}
/**
*
*/
virtual ~LSProgressEvent() {}
protected:
LSInput &input;
unsigned long position;
unsigned long totalSize;
};
/*#########################################################################
## LSLoadEvent
#########################################################################*/
/**
*
*/
class LSLoadEvent : public events::Event
{
public:
/**
*
*/
virtual DocumentPtr getNewDocument()
{ return newDocument; }
/**
*
*/
virtual LSInput &getInput()
{ return input; }
//##################
//# Non-API methods
//##################
/**
*
*/
LSLoadEvent(const LSInput &inputArg,
const DocumentPtr docArg)
: input((LSInput &)inputArg)
{ newDocument = docArg; }
/**
*
*/
LSLoadEvent(const LSLoadEvent &other)
: events::Event(other) , input(other.input)
{
newDocument = other.newDocument;
}
/**
*
*/
virtual ~LSLoadEvent() {}
protected:
DocumentPtr newDocument;
LSInput &input;
};
/*#########################################################################
## LSSerializerFilter
#########################################################################*/
/**
*
*/
class LSSerializerFilter : virtual public traversal::NodeFilter
{
public:
/**
*
*/
virtual unsigned long getWhatToShow() =0;
//##################
//# Non-API methods
//##################
/**
*
*/
virtual ~LSSerializerFilter() {}
};
/*#########################################################################
## DOMImplementationLS
#########################################################################*/
/**
*
*/
class DOMImplementationLS
{
public:
typedef enum
{
MODE_SYNCHRONOUS = 1,
MODE_ASYNCHRONOUS = 2
} DOMImplementationLSMode;
/**
* To use, for this and subclasses:
* LSParser &parser = myImplementation.createLSParser(mode, schemaType);
*/
virtual LSParser &createLSParser(unsigned short mode,
const DOMString &schemaType)
throw (dom::DOMException) =0;
/**
* To use, for this and subclasses:
* LSSerializer &serializer = myImplementation.createLSSerializer();
*
*/
virtual LSSerializer &createLSSerializer() =0;
/**
*
*/
virtual LSInput createLSInput() =0;
/**
*
*/
virtual LSOutput createLSOutput() =0;
//##################
//# Non-API methods
//##################
/**
*
*/
virtual ~DOMImplementationLS() {}
};
} //namespace ls
} //namespace dom
} //namespace w3c
} //namespace org
#endif // SEEN_LS_H
/*#########################################################################
## E N D O F F I L E
#########################################################################*/
|