/plugins/XSLT/tags/xslt_0_5_2/xslt/XPathNode.java

# · Java · 167 lines · 84 code · 25 blank · 58 comment · 3 complexity · 58876c3c49499dd6d1c1fe7363a83aa7 MD5 · raw file

  1. /*
  2. * XPathNode.java - Represents an XPath 1.0 node
  3. *
  4. * Copyright (c) 2002 Robert McKinnon
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. */
  20. package xslt;
  21. import org.apache.xml.dtm.DTM;
  22. import org.apache.xpath.NodeSetDTM;
  23. /**
  24. * Represents a <a href="http://www.w3.org/TR/xpath#data-model">XPath 1.0 node</a>.
  25. *
  26. * @author Robert McKinnon
  27. */
  28. public class XPathNode {
  29. private final int nodeHandle;
  30. private final DTM dtm;
  31. private final short nodeType;
  32. /**
  33. * Returns a XPathNode representing the node at the given index in the
  34. * supplied node set, or null if the node at the given index is does not
  35. * have a node type from the
  36. * <a href="http://www.w3.org/TR/xpath#data-model">XPath 1.0 data model</a>.
  37. *
  38. * @return an XPathNode or null.
  39. */
  40. public static XPathNode getXPathNode(NodeSetDTM nodeSet, int index) {
  41. int nodeHandle = nodeSet.item(index);
  42. DTM dtm = nodeSet.getDTM(nodeHandle);
  43. short nodeType = dtm.getNodeType(nodeHandle);
  44. if(isXPathNodeType(nodeType)) {
  45. return new XPathNode(nodeHandle, dtm, nodeType);
  46. } else {
  47. return null;
  48. }
  49. }
  50. /**
  51. * Returns true if the node type from the
  52. * <a href="http://www.w3.org/TR/xpath#data-model">XPath 1.0 data model</a>.
  53. */
  54. private static boolean isXPathNodeType(short nodeType) {
  55. switch(nodeType) {
  56. case DTM.ATTRIBUTE_NODE:
  57. case DTM.ELEMENT_NODE:
  58. case DTM.NAMESPACE_NODE:
  59. case DTM.PROCESSING_INSTRUCTION_NODE:
  60. case DTM.COMMENT_NODE:
  61. case DTM.DOCUMENT_NODE:
  62. case DTM.TEXT_NODE:
  63. return true;
  64. default:
  65. return false;
  66. }
  67. }
  68. /**
  69. * Constructs node with the given node type identifier.
  70. * @param nodeType from {@link org.apache.xml.dtm.DTM} interface
  71. * @throws IllegalArgumentException if nodeType is not valid.
  72. */
  73. private XPathNode(int nodeHandle, DTM dtm, short nodeType) {
  74. this.nodeHandle = nodeHandle;
  75. this.dtm = dtm;
  76. this.nodeType = nodeType;
  77. }
  78. /**
  79. * Returns the <a href="http://www.w3.org/TR/xpath#data-model">node type</a> name.
  80. *
  81. * @return node type name, one of:
  82. * root, element, text, attribute,
  83. * processing instruction,
  84. * namespace, or comment.
  85. */
  86. public String getType() {
  87. switch(this.nodeType) {
  88. case DTM.ATTRIBUTE_NODE:
  89. return "attribute";
  90. case DTM.COMMENT_NODE:
  91. return "comment";
  92. case DTM.ELEMENT_NODE:
  93. return "element";
  94. case DTM.NAMESPACE_NODE:
  95. return "namespace";
  96. case DTM.PROCESSING_INSTRUCTION_NODE:
  97. return "processing instruction";
  98. case DTM.TEXT_NODE:
  99. return "text";
  100. default:
  101. return "root";
  102. }
  103. }
  104. /**
  105. * Returns true if the node has an
  106. * <a href="http://www.w3.org/TR/xpath#dt-expanded-name">expanded-name</a>.
  107. */
  108. public boolean hasExpandedName() {
  109. switch(this.nodeType) {
  110. case DTM.COMMENT_NODE:
  111. case DTM.DOCUMENT_NODE:
  112. case DTM.TEXT_NODE:
  113. return false;
  114. default:
  115. return true;
  116. }
  117. }
  118. /**
  119. * There are seven XPath nodes: root, element,
  120. * text, attribute, processing instruction,
  121. * namespace, and comment.
  122. */
  123. public boolean hasDomValue() {
  124. switch(this.nodeType) {
  125. case DTM.DOCUMENT_NODE:
  126. case DTM.ELEMENT_NODE:
  127. return false;
  128. default:
  129. return true;
  130. }
  131. }
  132. public String getName() {
  133. return this.dtm.getNodeNameX(this.nodeHandle);
  134. }
  135. public String getDomValue() {
  136. String domValue = this.dtm.getNodeValue(this.nodeHandle);
  137. if(hasDomValue()) {
  138. domValue = XSLTUtilities.removeIn(domValue, (char)10); //remove '\r' to temporarily fix a bug in the display of results in Windows
  139. }
  140. return domValue;
  141. }
  142. }