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
|
.. wxPython Phoenix documentation
This file was generated by Phoenix's sphinx generator and associated
tools, do not edit by hand.
Copyright: (c) 2011-2018 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 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:
::
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
.. seealso:: :ref:`wx.xml.XmlNode`, :ref:`wx.xml.XmlAttribute`
|
|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>
</div>
<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="4,83,163,112"/> <area shape="rect" id="node2" href="wx.Object.html" title="wx.Object" alt="" coords="43,5,124,35"/> </map>
</p>
|
|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.GetDocumentNode` Returns the document node of the document.
:meth:`~wx.xml.XmlDocument.GetFileEncoding` Returns encoding of document (may be empty).
: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.SetDocumentNode` Sets the document node of this document.
:meth:`~wx.xml.XmlDocument.SetFileEncoding` Sets the enconding of the file which will be used to save the document.
: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.DocumentNode` See :meth:`~wx.xml.XmlDocument.GetDocumentNode` and :meth:`~wx.xml.XmlDocument.SetDocumentNode`
:attr:`~wx.xml.XmlDocument.FileEncoding` See :meth:`~wx.xml.XmlDocument.GetFileEncoding` and :meth:`~wx.xml.XmlDocument.SetFileEncoding`
: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:
**~~~**
**__init__** `(self)`
Default constructor.
**~~~**
**__init__** `(self, doc)`
Copy constructor.
Deep copies all the ``XML`` tree of the given document.
:param `doc`:
:type `doc`: wx.xml.XmlDocument
**~~~**
**__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
**~~~**
**__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
**~~~**
.. 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:: GetDocumentNode(self)
Returns the document node of the document.
:rtype: :ref:`wx.xml.XmlNode`
.. versionadded:: 2.9.2
.. 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!
.. 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:
**~~~**
**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`
**~~~**
**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`
**~~~**
.. method:: Save(self, *args, **kw)
|overload| Overloaded Implementations:
**~~~**
**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`
**~~~**
**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`
**~~~**
.. 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 enconding of the file which will be used to save the document.
:param `encoding`:
:type `encoding`: string
.. 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:: DocumentNode
See :meth:`~wx.xml.XmlDocument.GetDocumentNode` and :meth:`~wx.xml.XmlDocument.SetDocumentNode`
.. attribute:: FileEncoding
See :meth:`~wx.xml.XmlDocument.GetFileEncoding` and :meth:`~wx.xml.XmlDocument.SetFileEncoding`
.. 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`
|