ElementInclude.py 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. #
  2. # ElementTree
  3. # $Id: ElementInclude.py 3375 2008-02-13 08:05:08Z fredrik $
  4. #
  5. # limited xinclude support for element trees
  6. #
  7. # history:
  8. # 2003-08-15 fl created
  9. # 2003-11-14 fl fixed default loader
  10. #
  11. # Copyright (c) 2003-2004 by Fredrik Lundh. All rights reserved.
  12. #
  13. # fredrik@pythonware.com
  14. # http://www.pythonware.com
  15. #
  16. # --------------------------------------------------------------------
  17. # The ElementTree toolkit is
  18. #
  19. # Copyright (c) 1999-2008 by Fredrik Lundh
  20. #
  21. # By obtaining, using, and/or copying this software and/or its
  22. # associated documentation, you agree that you have read, understood,
  23. # and will comply with the following terms and conditions:
  24. #
  25. # Permission to use, copy, modify, and distribute this software and
  26. # its associated documentation for any purpose and without fee is
  27. # hereby granted, provided that the above copyright notice appears in
  28. # all copies, and that both that copyright notice and this permission
  29. # notice appear in supporting documentation, and that the name of
  30. # Secret Labs AB or the author not be used in advertising or publicity
  31. # pertaining to distribution of the software without specific, written
  32. # prior permission.
  33. #
  34. # SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
  35. # TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANT-
  36. # ABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR
  37. # BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
  38. # DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  39. # WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  40. # ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  41. # OF THIS SOFTWARE.
  42. # --------------------------------------------------------------------
  43. # Licensed to PSF under a Contributor Agreement.
  44. # See http://www.python.org/psf/license for licensing details.
  45. ##
  46. # Limited XInclude support for the ElementTree package.
  47. ##
  48. import copy
  49. from . import ElementTree
  50. XINCLUDE = "{http://www.w3.org/2001/XInclude}"
  51. XINCLUDE_INCLUDE = XINCLUDE + "include"
  52. XINCLUDE_FALLBACK = XINCLUDE + "fallback"
  53. ##
  54. # Fatal include error.
  55. class FatalIncludeError(SyntaxError):
  56. pass
  57. ##
  58. # Default loader. This loader reads an included resource from disk.
  59. #
  60. # @param href Resource reference.
  61. # @param parse Parse mode. Either "xml" or "text".
  62. # @param encoding Optional text encoding.
  63. # @return The expanded resource. If the parse mode is "xml", this
  64. # is an ElementTree instance. If the parse mode is "text", this
  65. # is a Unicode string. If the loader fails, it can return None
  66. # or raise an IOError exception.
  67. # @throws IOError If the loader fails to load the resource.
  68. def default_loader(href, parse, encoding=None):
  69. with open(href) as file:
  70. if parse == "xml":
  71. data = ElementTree.parse(file).getroot()
  72. else:
  73. data = file.read()
  74. if encoding:
  75. data = data.decode(encoding)
  76. return data
  77. ##
  78. # Expand XInclude directives.
  79. #
  80. # @param elem Root element.
  81. # @param loader Optional resource loader. If omitted, it defaults
  82. # to {@link default_loader}. If given, it should be a callable
  83. # that implements the same interface as <b>default_loader</b>.
  84. # @throws FatalIncludeError If the function fails to include a given
  85. # resource, or if the tree contains malformed XInclude elements.
  86. # @throws IOError If the function fails to load a given resource.
  87. def include(elem, loader=None):
  88. if loader is None:
  89. loader = default_loader
  90. # look for xinclude elements
  91. i = 0
  92. while i < len(elem):
  93. e = elem[i]
  94. if e.tag == XINCLUDE_INCLUDE:
  95. # process xinclude directive
  96. href = e.get("href")
  97. parse = e.get("parse", "xml")
  98. if parse == "xml":
  99. node = loader(href, parse)
  100. if node is None:
  101. raise FatalIncludeError(
  102. "cannot load %r as %r" % (href, parse)
  103. )
  104. node = copy.copy(node)
  105. if e.tail:
  106. node.tail = (node.tail or "") + e.tail
  107. elem[i] = node
  108. elif parse == "text":
  109. text = loader(href, parse, e.get("encoding"))
  110. if text is None:
  111. raise FatalIncludeError(
  112. "cannot load %r as %r" % (href, parse)
  113. )
  114. if i:
  115. node = elem[i-1]
  116. node.tail = (node.tail or "") + text + (e.tail or "")
  117. else:
  118. elem.text = (elem.text or "") + text + (e.tail or "")
  119. del elem[i]
  120. continue
  121. else:
  122. raise FatalIncludeError(
  123. "unknown parse type in xi:include tag (%r)" % parse
  124. )
  125. elif e.tag == XINCLUDE_FALLBACK:
  126. raise FatalIncludeError(
  127. "xi:fallback tag must be child of xi:include (%r)" % e.tag
  128. )
  129. else:
  130. include(e, loader)
  131. i = i + 1