File: wx.xml.XmlDocument.txt

package info (click to toggle)
wxpython4.0 4.2.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 232,540 kB
  • sloc: cpp: 958,937; python: 233,059; ansic: 150,441; makefile: 51,662; sh: 8,687; perl: 1,563; javascript: 584; php: 326; xml: 200
file content (896 lines) | stat: -rw-r--r-- 21,746 bytes parent folder | download
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
.. wxPython Phoenix documentation

   This file was generated by Phoenix's sphinx generator and associated
   tools, do not edit by hand.

   Copyright: (c) 2011-2020 by Total Control Software
   License:   wxWindows License

.. include:: headings.inc



.. _wx.xml.XmlDocument:

==========================================================================================================================================
|phoenix_title|  **wx.xml.XmlDocument**
==========================================================================================================================================

This class holds ``XML`` data/document as parsed by ``XML`` parser in the root node.          

:ref:`wx.xml.XmlDocument`  internally uses the expat library which comes with wxWidgets to parse the given stream. 

A :ref:`wx.xml.XmlDocument`  is in fact a list of :ref:`wx.xml.XmlNode`  organised into a structure that reflects the ``XML`` tree being represented by the document. 


A simple example of using ``XML`` classes is:  

::

        def ScanDocument():

            doc = wx.xml.XmlDocument()
            if not doc.Load("myfile.xml"):
                return False

            # start processing the XML file
            if doc.GetRoot().GetName() != "myroot-node":
                return False

            # examine prologue
            prolog = doc.GetDocumentNode().GetChildren()
            while prolog:

                if prolog.GetType() == wx.xml.XML_PI_NODE and prolog.GetName() == "target":

                    # process Process Instruction contents
                    pi = prolog.GetContent()

                    # Other code here...

            child = doc.GetRoot().GetChildren()
            while child:

                if child.GetName() == "tag1":

                    # process text enclosed by tag1/tag1
                    content = child.GetNodeContent()

                    # Other code here...

                    # process attributes of tag1
                    attrvalue1 = child.GetAttribute("attr1", "default-value")
                    attrvalue2 = child.GetAttribute("attr2", "default-value")

                elif child.GetName() == "tag2":

                    # process tag2 ...
                    attrvalue3 = child.GetAttribute("attr3", "default-value")


                child = child.GetNext()



Note that if you want to preserve the original formatting of the loaded file including whitespaces and indentation, you need to turn off whitespace-only textnode removal and automatic indentation. For example: 

::

        doc = wx.xml.XmlDocument()
        doc.Load("myfile.xml", "UTF-8", wx.xml.XMLDOC_KEEP_WHITESPACE_NODES)

        # myfile2.xml will be identical to myfile.xml saving it self way:
        doc.Save("myfile2.xml", wx.xml.XML_NO_INDENTATION)



Using default parameters, you will get a reformatted document which in general is different from the original loaded content: 

::

        doc = wx.xml.XmlDocument()
        doc.Load("myfile.xml")
        doc.Save("myfile2.xml")  # myfile2.xml != myfile.xml



:ref:`wx.xml.XmlDocument`  can also be used to create documents. The following code gives an example of creating a simple document with two nested element nodes, the second of which has an attribute, and a text node. It also demonstrates how to write the resulting output to a :ref:`String`: 

::

    # Create a document and add the root node.
    xmlDoc = wx.xml.XmlDocument()
    
    root = wx.xml.XmlNode(None, wx.xml.XML_ELEMENT_NODE, "Root")
    xmlDoc.SetRoot(root)
    
    # Add some XML.
    library = wx.xml.XmlNode(root, wx.xml.XML_ELEMENT_NODE, "Library")
    library.AddAttribute("type", "CrossPlatformList")
    name = wx.xml.XmlNode(library, wx.xml.XML_ELEMENT_NODE, "Name")
    name.AddChild(wx.xml.XmlNode(wx.xml.XML_TEXT_NODE, "", "wxPython"))
    
    # Write the output to a string.
    stream = io.StringIO()
    xmlDoc.Save(stream)



This will produce a document that looks something like the following: 

::

    <?xml version="1.0" encoding="UTF-8"?>
    <Root>
      <Library type="CrossPlatformList">
        <Name>wxPython</Name>
      </Library>
    </Root>



If the root name value of the ``DOCTYPE`` is set, either by loading a file with a ``DOCTYPE`` declaration or by setting it directly with the SetDoctype member, then a ``DOCTYPE`` declaration will be added immediately after the ``XML`` declaration. 





         



.. note:: 

   Ownership is passed to the ``XML`` tree as each :ref:`wx.xml.XmlNode`  is added to it, and this has two implications. Firstly, the :ref:`wx.xml.XmlDocument`  takes responsibility for deleting the node so the user should not  ``delete``   it; and secondly, a  :ref:`wx.xml.XmlNode`  must always be created on the heap and never on the stack.  







.. seealso:: :ref:`wx.xml.XmlNode`, :ref:`wx.xml.XmlAttribute`, :ref:`wx.xml.XmlDoctype`    







|

|class_hierarchy| Class Hierarchy
=================================

.. raw:: html

   <div id="toggleBlock" onclick="return toggleVisibility(this)" class="closed" style="cursor:pointer;">
   <img id="toggleBlock-trigger" src="_static/images/closed.png"/>
   Inheritance diagram for class <strong>XmlDocument</strong>:
   </div>
   <div id="toggleBlock-summary" style="display:block;"></div>
   <div id="toggleBlock-content" style="display:none;">
   <p class="graphviz">
   <center><img src="_static/images/inheritance/wx.xml.XmlDocument_inheritance.png" alt="Inheritance diagram of XmlDocument" usemap="#dummy" class="inheritance"/></center>
   <script type="text/javascript">toggleVisibilityOnLoad(document.getElementById('toggleBlock'))</script>
   <map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.xml.XmlDocument.html" title="wx.xml.XmlDocument" alt="" coords="5,83,172,112"/> <area shape="rect" id="node2" href="wx.Object.html" title="wx.Object" alt="" coords="45,5,132,35"/> </map> 
   </p>
   </div>

|


|method_summary| Methods Summary
================================

================================================================================ ================================================================================
:meth:`~wx.xml.XmlDocument.__init__`                                             Default constructor.
:meth:`~wx.xml.XmlDocument.AppendToProlog`                                       Appends a Process Instruction or Comment node to the document prologue.
:meth:`~wx.xml.XmlDocument.DetachDocumentNode`                                   Detaches the document node and returns it.
:meth:`~wx.xml.XmlDocument.DetachRoot`                                           Detaches the root entity node and returns it.
:meth:`~wx.xml.XmlDocument.GetDoctype`                                           Returns the ``DOCTYPE`` declaration data for the document.
:meth:`~wx.xml.XmlDocument.GetDocumentNode`                                      Returns the document node of the document.
:meth:`~wx.xml.XmlDocument.GetEOL`                                               Returns the output line ending string used for documents.
:meth:`~wx.xml.XmlDocument.GetFileEncoding`                                      Returns encoding of document (may be empty).
:meth:`~wx.xml.XmlDocument.GetFileType`                                          Returns the output line ending format used for documents.
:meth:`~wx.xml.XmlDocument.GetLibraryVersionInfo`                                Get expat library version information.
:meth:`~wx.xml.XmlDocument.GetRoot`                                              Returns the root element node of the document.
:meth:`~wx.xml.XmlDocument.GetVersion`                                           Returns the version of document.
:meth:`~wx.xml.XmlDocument.IsOk`                                                 Returns ``True`` if the document has been loaded successfully.
:meth:`~wx.xml.XmlDocument.Load`                                                 Parses `filename`  as an xml document and loads its data.
:meth:`~wx.xml.XmlDocument.Save`                                                 Saves ``XML`` tree creating a file named with given string.
:meth:`~wx.xml.XmlDocument.SetDoctype`                                           Sets the data which will appear in the ``DOCTYPE`` declaration when the document is saved.
:meth:`~wx.xml.XmlDocument.SetDocumentNode`                                      Sets the document node of this document.
:meth:`~wx.xml.XmlDocument.SetFileEncoding`                                      Sets the encoding of the file which will be used to save the document.
:meth:`~wx.xml.XmlDocument.SetFileType`                                          Sets the output line ending formats when the document is saved.
:meth:`~wx.xml.XmlDocument.SetRoot`                                              Sets the root element node of this document.
:meth:`~wx.xml.XmlDocument.SetVersion`                                           Sets the version of the ``XML`` file which will be used to save the document.
================================================================================ ================================================================================


|


|property_summary| Properties Summary
=====================================

================================================================================ ================================================================================
:attr:`~wx.xml.XmlDocument.Doctype`                                              See :meth:`~wx.xml.XmlDocument.GetDoctype` and :meth:`~wx.xml.XmlDocument.SetDoctype`
:attr:`~wx.xml.XmlDocument.DocumentNode`                                         See :meth:`~wx.xml.XmlDocument.GetDocumentNode` and :meth:`~wx.xml.XmlDocument.SetDocumentNode`
:attr:`~wx.xml.XmlDocument.EOL`                                                  See :meth:`~wx.xml.XmlDocument.GetEOL`
:attr:`~wx.xml.XmlDocument.FileEncoding`                                         See :meth:`~wx.xml.XmlDocument.GetFileEncoding` and :meth:`~wx.xml.XmlDocument.SetFileEncoding`
:attr:`~wx.xml.XmlDocument.FileType`                                             See :meth:`~wx.xml.XmlDocument.GetFileType` and :meth:`~wx.xml.XmlDocument.SetFileType`
:attr:`~wx.xml.XmlDocument.Root`                                                 See :meth:`~wx.xml.XmlDocument.GetRoot` and :meth:`~wx.xml.XmlDocument.SetRoot`
:attr:`~wx.xml.XmlDocument.Version`                                              See :meth:`~wx.xml.XmlDocument.GetVersion` and :meth:`~wx.xml.XmlDocument.SetVersion`
================================================================================ ================================================================================


|


|api| Class API
===============


.. class:: wx.xml.XmlDocument(Object)

   **Possible constructors**::

       XmlDocument()
       
       XmlDocument(doc)
       
       XmlDocument(filename, encoding="UTF-8")
       
       XmlDocument(stream, encoding="UTF-8")
       
   
   This class holds ``XML`` data/document as parsed by ``XML`` parser in the root
   node.



   .. method:: __init__(self, *args, **kw)



      |overload| Overloaded Implementations:

      :html:`<hr class="overloadsep" /><br />`

      
      **__init__** `(self)`
      
      Default constructor.                   
      
      
      
      
      :html:`<hr class="overloadsep" /><br />`

      
      **__init__** `(self, doc)`
      
      Copy constructor.                  
      
      Deep copies all the ``XML`` tree of the given document.                  
      
      
      :param `doc`: 
      :type `doc`: wx.xml.XmlDocument
      
      
      
      
      
      
      :html:`<hr class="overloadsep" /><br />`

      
      **__init__** `(self, filename, encoding="UTF-8")`
      
      Loads the given filename using the given encoding.                  
      
      See :meth:`Load` .                  
      
      
      :param `filename`: 
      :type `filename`: string
      :param `encoding`: 
      :type `encoding`: string
      
      
      
      
      
      
      :html:`<hr class="overloadsep" /><br />`

      
      **__init__** `(self, stream, encoding="UTF-8")`
      
      Loads the ``XML`` document from given stream using the given encoding.                  
      
      See :meth:`Load` .                  
      
      
      :param `stream`: 
      :type `stream`: wx.InputStream
      :param `encoding`: 
      :type `encoding`: string
      
      
      
      
      
      
      :html:`<hr class="overloadsep" /><br />`






   .. method:: AppendToProlog(self, node)

      Appends a Process Instruction or Comment node to the document prologue.                  

      Calling this function will create a prologue or attach the node to the end of an existing prologue. 

                


      :param `node`: 
      :type `node`: wx.xml.XmlNode






      .. versionadded:: 2.9.2 
     








   .. method:: DetachDocumentNode(self)

      Detaches the document node and returns it.                  

      The document node will be set to ``None`` and thus :meth:`IsOk`   will return ``False`` after calling this function. 

      Note that the caller is responsible for deleting the returned node in order to avoid memory leaks. 

                

      :rtype: :ref:`wx.xml.XmlNode`







      .. versionadded:: 2.9.2 
     








   .. method:: DetachRoot(self)

      Detaches the root entity node and returns it.                  

      After calling this function, the document node will remain together with any prologue nodes, but :meth:`IsOk`   will return ``False`` since the root entity will be missing. 

      Note that the caller is responsible for deleting the returned node in order to avoid memory leaks.                  

      :rtype: :ref:`wx.xml.XmlNode`








   .. method:: GetDoctype(self)

      Returns the ``DOCTYPE`` declaration data for the document.                  

                

      :rtype: :ref:`wx.xml.XmlDoctype`







      .. versionadded:: 4.1/wxWidgets-3.1.0  
     








   .. method:: GetDocumentNode(self)

      Returns the document node of the document.                  

                

      :rtype: :ref:`wx.xml.XmlNode`







      .. versionadded:: 2.9.2 
     








   .. method:: GetEOL(self)

      Returns the output line ending string used for documents.                  

      This string is determined by the last call to :meth:`SetFileType` . 

                

      :rtype: `string`







      .. versionadded:: 4.1/wxWidgets-3.1.1  
     








   .. method:: GetFileEncoding(self)

      Returns encoding of document (may be empty).                  

                

      :rtype: `string`







      .. note:: 

         This is the encoding original file was saved in, **not**  the encoding of in-memory representation!   








   .. method:: GetFileType(self)

      Returns the output line ending format used for documents.                  

                

      :rtype: :ref:`wx.TextFileType`







      .. versionadded:: 4.1/wxWidgets-3.1.1  
     








   .. staticmethod:: GetLibraryVersionInfo()

      Get expat library version information.                  

                

      :rtype: :ref:`wx.VersionInfo`







      .. versionadded:: 2.9.2 
     







      .. seealso:: :ref:`wx.VersionInfo`    








   .. method:: GetRoot(self)

      Returns the root element node of the document.                  

      :rtype: :ref:`wx.xml.XmlNode`








   .. method:: GetVersion(self)

      Returns the version of document.                  

      This is the value in the  ``<`` ?xml version="1.0"?> header of the ``XML`` document. If the version attribute was not explicitly given in the header, this function returns an empty string.                   

      :rtype: `string`








   .. method:: IsOk(self)

      Returns ``True`` if the document has been loaded successfully.                  

      :rtype: `bool`








   .. method:: Load(self, *args, **kw)



      |overload| Overloaded Implementations:

      :html:`<hr class="overloadsep" /><br />`

      
      **Load** `(self, filename, encoding="UTF-8", flags=XMLDOC_NONE)`
      
      Parses `filename`  as an xml document and loads its data.                  
      
      If `flags`  does not contain ``wx.xml.XMLDOC_KEEP_WHITESPACE_NODES``, then, while loading, all nodes of type  ``XML_TEXT_NODE``   (see  :ref:`wx.xml.XmlNode`) are automatically skipped if they contain whitespaces only. 
      
      The removal of these nodes makes the load process slightly faster and requires less memory however makes impossible to recreate exactly the loaded text with a :meth:`Save`   call later. Read the initial description of this class for more info. 
      
      Returns ``True`` on success, ``False`` otherwise.                  
      
      
      :param `filename`: 
      :type `filename`: string
      :param `encoding`: 
      :type `encoding`: string
      :param `flags`: 
      :type `flags`: int
      
      
      
      
      :rtype: `bool`
      
      
      
      
      
      
      
      :html:`<hr class="overloadsep" /><br />`

      
      **Load** `(self, stream, encoding="UTF-8", flags=XMLDOC_NONE)`
      
      Like :meth:`Load`   but takes the data from given input stream.                  
      
      
      :param `stream`: 
      :type `stream`: wx.InputStream
      :param `encoding`: 
      :type `encoding`: string
      :param `flags`: 
      :type `flags`: int
      
      
      
      
      :rtype: `bool`
      
      
      
      
      
      
      
      :html:`<hr class="overloadsep" /><br />`






   .. method:: Save(self, *args, **kw)



      |overload| Overloaded Implementations:

      :html:`<hr class="overloadsep" /><br />`

      
      **Save** `(self, filename, indentstep=2)`
      
      Saves ``XML`` tree creating a file named with given string.                  
      
      If `indentstep`  is greater than or equal to zero, then, while saving, an automatic indentation is added with steps composed by indentstep spaces. 
      
      If `indentstep`  is  ``XML_NO_INDENTATION`` , then, automatic indentation is turned off.                   
      
      
      :param `filename`: 
      :type `filename`: string
      :param `indentstep`: 
      :type `indentstep`: int
      
      
      
      
      :rtype: `bool`
      
      
      
      
      
      
      
      :html:`<hr class="overloadsep" /><br />`

      
      **Save** `(self, stream, indentstep=2)`
      
      Saves ``XML`` tree in the given output stream.                  
      
      See Save(const String&, int) for a description of `indentstep`.                  
      
      
      :param `stream`: 
      :type `stream`: wx.OutputStream
      :param `indentstep`: 
      :type `indentstep`: int
      
      
      
      
      :rtype: `bool`
      
      
      
      
      
      
      
      :html:`<hr class="overloadsep" /><br />`






   .. method:: SetDoctype(self, doctype)

      Sets the data which will appear in the ``DOCTYPE`` declaration when the document is saved.                  

                


      :param `doctype`: 
      :type `doctype`: wx.xml.XmlDoctype






      .. versionadded:: 4.1/wxWidgets-3.1.0  
     








   .. method:: SetDocumentNode(self, node)

      Sets the document node of this document.                  

      Deletes any previous document node. Use :meth:`DetachDocumentNode`   and then :meth:`SetDocumentNode`   if you want to replace the document node without deleting the old document tree. 

                


      :param `node`: 
      :type `node`: wx.xml.XmlNode






      .. versionadded:: 2.9.2 
     








   .. method:: SetFileEncoding(self, encoding)

      Sets the encoding of the file which will be used to save the document.                  


      :param `encoding`: 
      :type `encoding`: string







   .. method:: SetFileType(self, fileType)

      Sets the output line ending formats when the document is saved.                  

      By default Unix file type is used, i.e. a single ``ASCII`` ``LF`` (10) character is used at the end of lines. 

                


      :param `fileType`: 
      :type `fileType`: wx.TextFileType






      .. versionadded:: 4.1/wxWidgets-3.1.1  
     








   .. method:: SetRoot(self, node)

      Sets the root element node of this document.                  

      Will create the document node if necessary. Any previous root element node is deleted.                  


      :param `node`: 
      :type `node`: wx.xml.XmlNode







   .. method:: SetVersion(self, version)

      Sets the version of the ``XML`` file which will be used to save the document.                  


      :param `version`: 
      :type `version`: string







   .. attribute:: Doctype

      See :meth:`~wx.xml.XmlDocument.GetDoctype` and :meth:`~wx.xml.XmlDocument.SetDoctype`


   .. attribute:: DocumentNode

      See :meth:`~wx.xml.XmlDocument.GetDocumentNode` and :meth:`~wx.xml.XmlDocument.SetDocumentNode`


   .. attribute:: EOL

      See :meth:`~wx.xml.XmlDocument.GetEOL`


   .. attribute:: FileEncoding

      See :meth:`~wx.xml.XmlDocument.GetFileEncoding` and :meth:`~wx.xml.XmlDocument.SetFileEncoding`


   .. attribute:: FileType

      See :meth:`~wx.xml.XmlDocument.GetFileType` and :meth:`~wx.xml.XmlDocument.SetFileType`


   .. attribute:: Root

      See :meth:`~wx.xml.XmlDocument.GetRoot` and :meth:`~wx.xml.XmlDocument.SetRoot`


   .. attribute:: Version

      See :meth:`~wx.xml.XmlDocument.GetVersion` and :meth:`~wx.xml.XmlDocument.SetVersion`