XMLEventReaderImpl.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /* XMLEventReaderImpl.java --
  2. Copyright (C) 2005 Free Software Foundation, Inc.
  3. This file is part of GNU Classpath.
  4. GNU Classpath is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2, or (at your option)
  7. any later version.
  8. GNU Classpath is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNU Classpath; see the file COPYING. If not, write to the
  14. Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  15. 02110-1301 USA.
  16. Linking this library statically or dynamically with other modules is
  17. making a combined work based on this library. Thus, the terms and
  18. conditions of the GNU General Public License cover the whole
  19. combination.
  20. As a special exception, the copyright holders of this library give you
  21. permission to link this library with independent modules to produce an
  22. executable, regardless of the license terms of these independent
  23. modules, and to copy and distribute the resulting executable under
  24. terms of your choice, provided that you also meet, for each linked
  25. independent module, the terms and conditions of the license of that
  26. module. An independent module is a module which is not derived from
  27. or based on this library. If you modify this library, you may extend
  28. this exception to your version of the library, but you are not
  29. obligated to do so. If you do not wish to do so, delete this
  30. exception statement from your version. */
  31. package gnu.xml.stream;
  32. import javax.xml.stream.XMLEventReader;
  33. import javax.xml.stream.XMLStreamConstants;
  34. import javax.xml.stream.XMLStreamException;
  35. import javax.xml.stream.XMLStreamReader;
  36. import javax.xml.stream.events.XMLEvent;
  37. import javax.xml.stream.util.XMLEventAllocator;
  38. /**
  39. * Parser using XML events.
  40. *
  41. * @author <a href='mailto:dog@gnu.org'>Chris Burdess</a>
  42. */
  43. public class XMLEventReaderImpl
  44. implements XMLEventReader
  45. {
  46. protected final XMLStreamReader reader;
  47. protected final XMLEventAllocator allocator;
  48. protected final String systemId;
  49. protected XMLEvent peekEvent;
  50. protected XMLEventReaderImpl(XMLStreamReader reader,
  51. XMLEventAllocator allocator,
  52. String systemId)
  53. {
  54. this.reader = reader;
  55. this.allocator = allocator;
  56. this.systemId = systemId;
  57. }
  58. public XMLEvent nextEvent()
  59. throws XMLStreamException
  60. {
  61. XMLEvent ret = peek();
  62. peekEvent = null;
  63. return ret;
  64. }
  65. public Object next()
  66. {
  67. try
  68. {
  69. return nextEvent();
  70. }
  71. catch (XMLStreamException e)
  72. {
  73. RuntimeException e2 = new RuntimeException();
  74. e2.initCause(e);
  75. throw e2;
  76. }
  77. }
  78. public boolean hasNext()
  79. {
  80. if (peekEvent != null)
  81. return true;
  82. try
  83. {
  84. return reader.hasNext();
  85. }
  86. catch (XMLStreamException e)
  87. {
  88. return false;
  89. }
  90. }
  91. public XMLEvent peek()
  92. throws XMLStreamException
  93. {
  94. if (peekEvent != null)
  95. return peekEvent;
  96. if (!reader.hasNext())
  97. return null;
  98. reader.next();
  99. peekEvent = allocator.allocate(reader);
  100. return peekEvent;
  101. }
  102. public String getElementText()
  103. throws XMLStreamException
  104. {
  105. return reader.getElementText();
  106. }
  107. public XMLEvent nextTag()
  108. throws XMLStreamException
  109. {
  110. if (peekEvent != null)
  111. {
  112. int eventType = peekEvent.getEventType();
  113. if (eventType == XMLStreamConstants.START_ELEMENT ||
  114. eventType == XMLStreamConstants.END_ELEMENT)
  115. return peekEvent;
  116. else
  117. peekEvent = null;
  118. }
  119. reader.nextTag();
  120. return allocator.allocate(reader);
  121. }
  122. public Object getProperty(String name)
  123. throws IllegalArgumentException
  124. {
  125. return reader.getProperty(name);
  126. }
  127. public void close()
  128. throws XMLStreamException
  129. {
  130. reader.close();
  131. }
  132. public void remove()
  133. {
  134. throw new UnsupportedOperationException();
  135. }
  136. }