/libjava/classpath/javax/xml/parsers/SAXParser.java

# · Java · 340 lines · 147 code · 25 blank · 168 comment · 20 complexity · 18531580a8359ea281001a1abde34406 MD5 · raw file

  1. /* SAXParser.java --
  2. Copyright (C) 2004, 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 javax.xml.parsers;
  32. import java.io.File;
  33. import java.io.FileInputStream;
  34. import java.io.InputStream;
  35. import java.io.IOException;
  36. import javax.xml.validation.Schema;
  37. import org.xml.sax.HandlerBase;
  38. import org.xml.sax.InputSource;
  39. import org.xml.sax.Parser;
  40. import org.xml.sax.SAXException;
  41. import org.xml.sax.SAXNotRecognizedException;
  42. import org.xml.sax.SAXNotSupportedException;
  43. import org.xml.sax.XMLReader;
  44. import org.xml.sax.helpers.DefaultHandler;
  45. /**
  46. * Convenience class for using or accessing a SAX version 1 or 2 parser.
  47. * Instances of this class are <em>not</em> guaranteed to be thread safe.
  48. *
  49. * @author (a href='mailto:dog@gnu.org'>Chris Burdess</a)
  50. */
  51. public abstract class SAXParser
  52. {
  53. protected SAXParser()
  54. {
  55. }
  56. /**
  57. * Parse the specifed input stream, reporting SAX1 events to the given
  58. * handler.
  59. * Prefer the SAX2 version of this method, since the HandlerBase class is
  60. * now deprecated.
  61. * Also prefer the version of this method that specifies a system ID, in
  62. * order to resolve external references correctly.
  63. * @param is an XML input stream
  64. * @param hb the SAX1 handler
  65. * @exception IllegalArgumentException if the input stream is null
  66. * @see #parse(java.io.InputStream,org.xml.sax.helpers.DefaultHandler)
  67. */
  68. public void parse(InputStream is, HandlerBase hb)
  69. throws SAXException, IOException
  70. {
  71. if (is == null)
  72. {
  73. throw new IllegalArgumentException("input stream is null");
  74. }
  75. parse(new InputSource(is), hb);
  76. }
  77. /**
  78. * Parse the specified input stream, reporting SAX1 events to the given
  79. * handler.
  80. * Prefer the SAX2 version of this method, since the HandlerBase class is
  81. * now deprecated.
  82. * @param is an XML input stream
  83. * @param hb the SAX1 handler
  84. * @param systemId the system ID of the XML document
  85. * @exception IllegalArgumentException if the input stream is null
  86. * @see #parse(java.io.InputStream,org.xml.sax.helpers.DefaultHandler,java.lang.String)
  87. */
  88. public void parse(InputStream is, HandlerBase hb, String systemId)
  89. throws SAXException, IOException
  90. {
  91. if (is == null)
  92. {
  93. throw new IllegalArgumentException("input stream is null");
  94. }
  95. InputSource source = new InputSource(is);
  96. source.setSystemId(systemId);
  97. parse(source, hb);
  98. }
  99. /**
  100. * Parse the specified input stream, reporting SAX2 events to the given
  101. * handler.
  102. * Prefer the version of this method that specifies a system ID, in
  103. * order to resolve external references correctly.
  104. * @param is an XML input stream
  105. * @param dh the SAX2 handler
  106. * @exception IllegalArgumentException if the input stream is null
  107. */
  108. public void parse(InputStream is, DefaultHandler dh)
  109. throws SAXException, IOException
  110. {
  111. if (is == null)
  112. {
  113. throw new IllegalArgumentException("input stream is null");
  114. }
  115. parse(new InputSource(is), dh);
  116. }
  117. /**
  118. * Parse the specified input stream, reporting SAX2 events to the given
  119. * handler.
  120. * @param is an XML input stream
  121. * @param dh the SAX2 handler
  122. * @param systemId the system ID of the XML document
  123. * @exception IllegalArgumentException if the input stream is null
  124. */
  125. public void parse (InputStream is, DefaultHandler dh, String systemId)
  126. throws SAXException, IOException
  127. {
  128. if (is == null)
  129. {
  130. throw new IllegalArgumentException("input stream is null");
  131. }
  132. InputSource source = new InputSource(is);
  133. source.setSystemId(systemId);
  134. parse(source, dh);
  135. }
  136. /**
  137. * Parse the content of the specified URI, reporting SAX1 events to the
  138. * given handler.
  139. * Prefer the SAX2 version of this method, since the HandlerBase class is
  140. * now deprecated.
  141. * @param uri an XML system ID
  142. * @param hb the SAX1 handler
  143. * @exception IllegalArgumentException if the URI is null
  144. * @see #parse(java.lang.String,org.xml.sax.helpers.DefaultHandler)
  145. */
  146. public void parse(String uri, HandlerBase hb)
  147. throws SAXException, IOException
  148. {
  149. if (uri == null)
  150. {
  151. throw new IllegalArgumentException("URI is null");
  152. }
  153. parse(new InputSource(uri), hb);
  154. }
  155. /**
  156. * Parse the content of the specified URI, reporting SAX2 events to the
  157. * given handler.
  158. * @param uri an XML system ID
  159. * @param dh the SAX2 handler
  160. * @exception IllegalArgumentException if the URI is null
  161. */
  162. public void parse(String uri, DefaultHandler dh)
  163. throws SAXException, IOException
  164. {
  165. if (uri == null)
  166. {
  167. throw new IllegalArgumentException("URI is null");
  168. }
  169. parse(new InputSource(uri), dh);
  170. }
  171. /**
  172. * Parse the content of the specified file, reporting SAX1 events to the
  173. * given handler.
  174. * Prefer the SAX2 version of this method, since the HandlerBase class is
  175. * now deprecated.
  176. * @param f an XML file
  177. * @param hb the SAX1 handler
  178. * @exception IllegalArgumentException if the file is null
  179. * @see #parse(java.io.File,org.xml.sax.helpers.DefaultHandler)
  180. */
  181. public void parse(File f, HandlerBase hb)
  182. throws SAXException, IOException
  183. {
  184. if (f == null)
  185. {
  186. throw new IllegalArgumentException("file is null");
  187. }
  188. InputSource source = new InputSource(new FileInputStream(f));
  189. source.setSystemId(f.toURL().toString());
  190. parse(source, hb);
  191. }
  192. /**
  193. * Parse the content of the specified file, reporting SAX2 events to the
  194. * given handler.
  195. * @param f an XML file
  196. * @param dh the SAX2 handler
  197. * @exception IllegalArgumentException if the file is null
  198. */
  199. public void parse(File f, DefaultHandler dh)
  200. throws SAXException, IOException
  201. {
  202. if (f == null)
  203. {
  204. throw new IllegalArgumentException("file is null");
  205. }
  206. InputSource source = new InputSource(new FileInputStream(f));
  207. source.setSystemId(f.toURL().toString());
  208. parse(source, dh);
  209. }
  210. /**
  211. * Parse the specified input source, reporting SAX1 events to the
  212. * given handler.
  213. * Prefer the SAX2 version of this method, since the HandlerBase class is
  214. * now deprecated.
  215. * @param is the SAX input source
  216. * @param hb the SAX1 handler
  217. * @exception IllegalArgumentException if the input source is null
  218. * @see #parse(org.xml.sax.InputSource,org.xml.sax.helpers.DefaultHandler)
  219. */
  220. public void parse(InputSource is, HandlerBase hb)
  221. throws SAXException, IOException
  222. {
  223. if (is == null)
  224. {
  225. throw new IllegalArgumentException("input source is null");
  226. }
  227. Parser parser = getParser();
  228. parser.setDocumentHandler(hb);
  229. parser.setDTDHandler(hb);
  230. parser.setEntityResolver(hb);
  231. parser.setErrorHandler(hb);
  232. parser.parse(is);
  233. }
  234. /**
  235. * Parse the specified input source, reporting SAX2 events to the
  236. * given handler.
  237. * @param is an XML file
  238. * @param dh the SAX2 handler
  239. * @exception IllegalArgumentException if the input source is null
  240. */
  241. public void parse(InputSource is, DefaultHandler dh)
  242. throws SAXException, IOException
  243. {
  244. if (is == null)
  245. {
  246. throw new IllegalArgumentException("input source is null");
  247. }
  248. XMLReader reader = getXMLReader();
  249. reader.setContentHandler(dh);
  250. reader.setDTDHandler(dh);
  251. reader.setEntityResolver(dh);
  252. reader.setErrorHandler(dh);
  253. reader.parse(is);
  254. }
  255. /**
  256. * Returns the underlying SAX1 parser.
  257. */
  258. public abstract Parser getParser() throws SAXException;
  259. /**
  260. * Returns the underlying SAX2 parser.
  261. * @since 1.1
  262. */
  263. public abstract XMLReader getXMLReader() throws SAXException;
  264. /**
  265. * Indicates whether this parser is XML Namespace aware.
  266. */
  267. public abstract boolean isNamespaceAware();
  268. /**
  269. * Indicates whether this parser will validate its input.
  270. */
  271. public abstract boolean isValidating();
  272. /**
  273. * Sets the specified SAX2 parser property.
  274. * @param name the name of the property
  275. * @param value the value of the property
  276. */
  277. public abstract void setProperty(String name, Object value)
  278. throws SAXNotRecognizedException, SAXNotSupportedException;
  279. /**
  280. * Returns the value of the specified SAX2 parser property.
  281. * @param name the name of the property
  282. */
  283. public abstract Object getProperty(String name)
  284. throws SAXNotRecognizedException, SAXNotSupportedException;
  285. // -- JAXP 1.3 methods --
  286. /**
  287. * Resets this parser to its original configuration.
  288. * @since 1.3
  289. */
  290. public void reset()
  291. {
  292. }
  293. /**
  294. * Returns the schema in use by this parser.
  295. * @since 1.3
  296. */
  297. public Schema getSchema()
  298. {
  299. return null;
  300. }
  301. /**
  302. * Indicates whether this parser is XInclude-aware.
  303. * @since 1.3
  304. */
  305. public boolean isXIncludeAware()
  306. {
  307. return false;
  308. }
  309. }