1. /*
  2. * The Apache Software License, Version 1.1
  3. *
  4. *
  5. * Copyright (c) 1999-2002 The Apache Software Foundation. All rights
  6. * reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. *
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. *
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in
  17. * the documentation and/or other materials provided with the
  18. * distribution.
  19. *
  20. * 3. The end-user documentation included with the redistribution,
  21. * if any, must include the following acknowledgment:
  22. * "This product includes software developed by the
  23. * Apache Software Foundation (http://www.apache.org/)."
  24. * Alternately, this acknowledgment may appear in the software itself,
  25. * if and wherever such third-party acknowledgments normally appear.
  26. *
  27. * 4. The names "Xerces" and "Apache Software Foundation" must
  28. * not be used to endorse or promote products derived from this
  29. * software without prior written permission. For written
  30. * permission, please contact apache@apache.org.
  31. *
  32. * 5. Products derived from this software may not be called "Apache",
  33. * nor may "Apache" appear in their name, without prior written
  34. * permission of the Apache Software Foundation.
  35. *
  36. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  37. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  38. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  39. * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  40. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  41. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  42. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  43. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  44. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  45. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  46. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  47. * SUCH DAMAGE.
  48. * ====================================================================
  49. *
  50. * This software consists of voluntary contributions made by many
  51. * individuals on behalf of the Apache Software Foundation and was
  52. * originally based on software copyright (c) 1999, International
  53. * Business Machines, Inc., http://www.apache.org. For more
  54. * information on the Apache Software Foundation, please see
  55. * <http://www.apache.org/>.
  56. */
  57. package com.sun.org.apache.xerces.internal.dom;
  58. /**
  59. * Entity nodes hold the reference data for an XML Entity -- either
  60. * parsed or unparsed. The nodeName (inherited from Node) will contain
  61. * the name (if any) of the Entity. Its data will be contained in the
  62. * Entity's children, in exactly the structure which an
  63. * EntityReference to this name will present within the document's
  64. * body.
  65. * <P>
  66. * Note that this object models the actual entity, _not_ the entity
  67. * declaration or the entity reference.
  68. * <P>
  69. * An XML processor may choose to completely expand entities before
  70. * the structure model is passed to the DOM; in this case, there will
  71. * be no EntityReferences in the DOM tree.
  72. * <P>
  73. * Quoting the 10/01 DOM Proposal,
  74. * <BLOCKQUOTE>
  75. * "The DOM Level 1 does not support editing Entity nodes; if a user
  76. * wants to make changes to the contents of an Entity, every related
  77. * EntityReference node has to be replaced in the structure model by
  78. * a clone of the Entity's contents, and then the desired changes
  79. * must be made to each of those clones instead. All the
  80. * descendants of an Entity node are readonly."
  81. * </BLOCKQUOTE>
  82. * I'm interpreting this as: It is the parser's responsibilty to call
  83. * the non-DOM operation setReadOnly(true,true) after it constructs
  84. * the Entity. Since the DOM explicitly decided not to deal with this,
  85. * _any_ answer will involve a non-DOM operation, and this is the
  86. * simplest solution.
  87. *
  88. *
  89. * @version $Id: DeferredEntityImpl.java,v 1.17 2003/11/13 22:47:15 elena Exp $
  90. * @since PR-DOM-Level-1-19980818.
  91. */
  92. public class DeferredEntityImpl
  93. extends EntityImpl
  94. implements DeferredNode {
  95. //
  96. // Constants
  97. //
  98. /** Serialization version. */
  99. static final long serialVersionUID = 4760180431078941638L;
  100. //
  101. // Data
  102. //
  103. /** Node index. */
  104. protected transient int fNodeIndex;
  105. //
  106. // Constructors
  107. //
  108. /**
  109. * This is the deferred constructor. Only the fNodeIndex is given here.
  110. * All other data, can be requested from the ownerDocument via the index.
  111. */
  112. DeferredEntityImpl(DeferredDocumentImpl ownerDocument, int nodeIndex) {
  113. super(ownerDocument, null);
  114. fNodeIndex = nodeIndex;
  115. needsSyncData(true);
  116. needsSyncChildren(true);
  117. } // <init>(DeferredDocumentImpl,int)
  118. //
  119. // DeferredNode methods
  120. //
  121. /** Returns the node index. */
  122. public int getNodeIndex() {
  123. return fNodeIndex;
  124. }
  125. //
  126. // Protected methods
  127. //
  128. /**
  129. * Synchronize the entity data. This is special because of the way
  130. * that the "fast" version stores the information.
  131. */
  132. protected void synchronizeData() {
  133. // no need to sychronize again
  134. needsSyncData(false);
  135. // get the node data
  136. DeferredDocumentImpl ownerDocument =
  137. (DeferredDocumentImpl)this.ownerDocument;
  138. name = ownerDocument.getNodeName(fNodeIndex);
  139. // get the entity data
  140. publicId = ownerDocument.getNodeValue(fNodeIndex);
  141. systemId = ownerDocument.getNodeURI(fNodeIndex);
  142. int extraDataIndex = ownerDocument.getNodeExtra(fNodeIndex);
  143. ownerDocument.getNodeType(extraDataIndex);
  144. notationName = ownerDocument.getNodeName(extraDataIndex);
  145. // encoding and version DOM L3
  146. version = ownerDocument.getNodeValue(extraDataIndex);
  147. encoding = ownerDocument.getNodeURI(extraDataIndex);
  148. // baseURI, actualEncoding DOM L3
  149. int extraIndex2 = ownerDocument.getNodeExtra(extraDataIndex);
  150. baseURI = ownerDocument.getNodeName(extraIndex2);
  151. inputEncoding = ownerDocument.getNodeValue(extraIndex2);
  152. } // synchronizeData()
  153. /** Synchronize the children. */
  154. protected void synchronizeChildren() {
  155. // no need to synchronize again
  156. needsSyncChildren(false);
  157. isReadOnly(false);
  158. DeferredDocumentImpl ownerDocument =
  159. (DeferredDocumentImpl) ownerDocument();
  160. ownerDocument.synchronizeChildren(this, fNodeIndex);
  161. setReadOnly(true, true);
  162. } // synchronizeChildren()
  163. } // class DeferredEntityImpl