/xml-security-1_4_5/src/org/jcp/xml/dsig/internal/dom/DOMSubTreeData.java

# · Java · 163 lines · 98 code · 14 blank · 51 comment · 19 complexity · 90f9e5cfffef1bd4ecb0488d8297cec7 MD5 · raw file

  1. /*
  2. * Copyright 2006 The Apache Software Foundation.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. *
  16. */
  17. /*
  18. * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
  19. */
  20. /*
  21. * $Id$
  22. */
  23. package org.jcp.xml.dsig.internal.dom;
  24. import javax.xml.crypto.NodeSetData;
  25. import java.util.ArrayList;
  26. import java.util.Iterator;
  27. import java.util.List;
  28. import java.util.ListIterator;
  29. import java.util.NoSuchElementException;
  30. import org.w3c.dom.NamedNodeMap;
  31. import org.w3c.dom.Node;
  32. /**
  33. * This is a subtype of NodeSetData that represents a dereferenced
  34. * same-document URI as the root of a subdocument. The main reason is
  35. * for efficiency and performance, as some transforms can operate
  36. * directly on the subdocument and there is no need to convert it
  37. * first to an XPath node-set.
  38. */
  39. public class DOMSubTreeData implements NodeSetData {
  40. private boolean excludeComments;
  41. private Node root;
  42. public DOMSubTreeData(Node root, boolean excludeComments) {
  43. this.root = root;
  44. this.excludeComments = excludeComments;
  45. }
  46. public Iterator iterator() {
  47. return new DelayedNodeIterator(root, excludeComments);
  48. }
  49. public Node getRoot() {
  50. return root;
  51. }
  52. public boolean excludeComments() {
  53. return excludeComments;
  54. }
  55. /**
  56. * This is an Iterator that contains a backing node-set that is
  57. * not populated until the caller first attempts to advance the iterator.
  58. */
  59. static class DelayedNodeIterator implements Iterator {
  60. private Node root;
  61. private List nodeSet;
  62. private ListIterator li;
  63. private boolean withComments;
  64. DelayedNodeIterator(Node root, boolean excludeComments) {
  65. this.root = root;
  66. this.withComments = !excludeComments;
  67. }
  68. public boolean hasNext() {
  69. if (nodeSet == null) {
  70. nodeSet = dereferenceSameDocumentURI(root);
  71. li = nodeSet.listIterator();
  72. }
  73. return li.hasNext();
  74. }
  75. public Object next() {
  76. if (nodeSet == null) {
  77. nodeSet = dereferenceSameDocumentURI(root);
  78. li = nodeSet.listIterator();
  79. }
  80. if (li.hasNext()) {
  81. return (Node) li.next();
  82. } else {
  83. throw new NoSuchElementException();
  84. }
  85. }
  86. public void remove() {
  87. throw new UnsupportedOperationException();
  88. }
  89. /**
  90. * Dereferences a same-document URI fragment.
  91. *
  92. * @param node the node (document or element) referenced by the
  93. * URI fragment. If null, returns an empty set.
  94. * @return a set of nodes (minus any comment nodes)
  95. */
  96. private List dereferenceSameDocumentURI(Node node) {
  97. List nodeSet = new ArrayList();
  98. if (node != null) {
  99. nodeSetMinusCommentNodes(node, nodeSet, null);
  100. }
  101. return nodeSet;
  102. }
  103. /**
  104. * Recursively traverses the subtree, and returns an XPath-equivalent
  105. * node-set of all nodes traversed, excluding any comment nodes,
  106. * if specified.
  107. *
  108. * @param node the node to traverse
  109. * @param nodeSet the set of nodes traversed so far
  110. * @param the previous sibling node
  111. */
  112. private void nodeSetMinusCommentNodes(Node node, List nodeSet,
  113. Node prevSibling) {
  114. switch (node.getNodeType()) {
  115. case Node.ELEMENT_NODE :
  116. NamedNodeMap attrs = node.getAttributes();
  117. if (attrs != null) {
  118. for (int i = 0, len = attrs.getLength(); i < len; i++) {
  119. nodeSet.add(attrs.item(i));
  120. }
  121. }
  122. nodeSet.add(node);
  123. case Node.DOCUMENT_NODE :
  124. Node pSibling = null;
  125. for (Node child = node.getFirstChild(); child != null;
  126. child = child.getNextSibling()) {
  127. nodeSetMinusCommentNodes(child, nodeSet, pSibling);
  128. pSibling = child;
  129. }
  130. break;
  131. case Node.TEXT_NODE :
  132. case Node.CDATA_SECTION_NODE:
  133. // emulate XPath which only returns the first node in
  134. // contiguous text/cdata nodes
  135. if (prevSibling != null &&
  136. (prevSibling.getNodeType() == Node.TEXT_NODE ||
  137. prevSibling.getNodeType() == Node.CDATA_SECTION_NODE)){ return;
  138. }
  139. case Node.PROCESSING_INSTRUCTION_NODE :
  140. nodeSet.add(node);
  141. break;
  142. case Node.COMMENT_NODE:
  143. if (withComments) {
  144. nodeSet.add(node);
  145. }
  146. }
  147. }
  148. }
  149. }