001: /*
002: * Fast Infoset ver. 0.1 software ("Software")
003: *
004: * Copyright, 2004-2005 Sun Microsystems, Inc. All Rights Reserved.
005: *
006: * Software is licensed under the Apache License, Version 2.0 (the "License");
007: * you may not use this file except in compliance with the License. You may
008: * obtain a copy of the License at:
009: *
010: * http://www.apache.org/licenses/LICENSE-2.0
011: *
012: * Unless required by applicable law or agreed to in writing, software
013: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
014: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
015: * License for the specific language governing permissions and limitations.
016: *
017: * Sun supports and benefits from the global community of open source
018: * developers, and thanks the community for its important contributions and
019: * open standards-based technology, which Sun has adopted into many of its
020: * products.
021: *
022: * Please note that portions of Software may be provided with notices and
023: * open source licenses from such communities and third parties that govern the
024: * use of those portions, and any licenses granted hereunder do not alter any
025: * rights and obligations you may have under such open source licenses,
026: * however, the disclaimer of warranty and limitation of liability provisions
027: * in this License will apply to all Software in this distribution.
028: *
029: * You acknowledge that the Software is not designed, licensed or intended
030: * for use in the design, construction, operation or maintenance of any nuclear
031: * facility.
032: *
033: * Apache License
034: * Version 2.0, January 2004
035: * http://www.apache.org/licenses/
036: *
037: */
038:
039: package com.sun.xml.fastinfoset.stax.factory;
040:
041: import com.sun.xml.fastinfoset.stax.*;
042: import com.sun.xml.fastinfoset.stax.events.StAXEventReader;
043: import com.sun.xml.fastinfoset.stax.events.StAXFilteredEvent;
044: import com.sun.xml.fastinfoset.stax.util.StAXFilteredParser;
045: import com.sun.xml.fastinfoset.tools.XML_SAX_FI;
046:
047: import java.io.InputStream;
048: import java.io.Reader;
049: import java.io.ByteArrayInputStream;
050: import java.io.ByteArrayOutputStream;
051: import java.io.BufferedInputStream;
052: import java.io.BufferedOutputStream;
053:
054: import javax.xml.stream.*;
055: import javax.xml.stream.XMLStreamException;
056: import javax.xml.stream.util.XMLEventAllocator;
057: import javax.xml.transform.Source;
058: import com.sun.xml.fastinfoset.CommonResourceBundle;
059:
060: public class StAXInputFactory extends XMLInputFactory {
061: //List of supported properties and default values.
062: private StAXManager _manager = new StAXManager(
063: StAXManager.CONTEXT_READER);
064:
065: public StAXInputFactory() {
066: }
067:
068: public static XMLInputFactory newInstance() {
069: return XMLInputFactory.newInstance();
070: }
071:
072: /**
073: * Create a new XMLStreamReader from a reader
074: * @param xmlfile the XML data to read from
075: * @throws XMLStreamException
076: */
077: public XMLStreamReader createXMLStreamReader(Reader xmlfile)
078: throws XMLStreamException {
079: return getXMLStreamReader(xmlfile);
080: }
081:
082: public XMLStreamReader createXMLStreamReader(InputStream s)
083: throws XMLStreamException {
084: return new StAXDocumentParser(s, _manager);
085: }
086:
087: public XMLStreamReader createXMLStreamReader(String systemId,
088: Reader xmlfile) throws XMLStreamException {
089: return getXMLStreamReader(xmlfile);
090: }
091:
092: public XMLStreamReader createXMLStreamReader(Source source)
093: throws XMLStreamException {
094: return null;
095: }
096:
097: public XMLStreamReader createXMLStreamReader(String systemId,
098: InputStream inputstream) throws XMLStreamException {
099: return createXMLStreamReader(inputstream);
100: }
101:
102: public XMLStreamReader createXMLStreamReader(
103: InputStream inputstream, String encoding)
104: throws XMLStreamException {
105: return createXMLStreamReader(inputstream);
106: }
107:
108: XMLStreamReader getXMLStreamReader(String systemId,
109: InputStream inputstream, String encoding)
110: throws XMLStreamException {
111: return createXMLStreamReader(inputstream);
112:
113: }
114:
115: /**
116: * @param inputstream
117: * @throws XMLStreamException
118: * @return
119: */
120: XMLStreamReader getXMLStreamReader(Reader xmlfile)
121: throws XMLStreamException {
122:
123: ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
124: BufferedOutputStream bufferedStream = new BufferedOutputStream(
125: byteStream);
126: StAXDocumentParser sr = null;
127: try {
128: XML_SAX_FI convertor = new XML_SAX_FI();
129: convertor.convert(xmlfile, bufferedStream);
130:
131: ByteArrayInputStream byteInputStream = new ByteArrayInputStream(
132: byteStream.toByteArray());
133: InputStream document = new BufferedInputStream(
134: byteInputStream);
135: sr = new StAXDocumentParser();
136: sr.setInputStream(document);
137: sr.setManager(_manager);
138: return sr;
139: //return new StAXDocumentParser(document, _manager);
140: } catch (Exception e) {
141: return null;
142: }
143:
144: }
145:
146: /**
147: * @param inputstream
148: * @throws XMLStreamException
149: * @return XMLEventReader
150: */
151: public XMLEventReader createXMLEventReader(InputStream inputstream)
152: throws XMLStreamException {
153: return new StAXEventReader(createXMLStreamReader(inputstream));
154: }
155:
156: public XMLEventReader createXMLEventReader(Reader reader)
157: throws XMLStreamException {
158: return new StAXEventReader(createXMLStreamReader(reader));
159: }
160:
161: public XMLEventReader createXMLEventReader(Source source)
162: throws XMLStreamException {
163: return new StAXEventReader(createXMLStreamReader(source));
164: }
165:
166: public XMLEventReader createXMLEventReader(String systemId,
167: InputStream inputstream) throws XMLStreamException {
168: return new StAXEventReader(createXMLStreamReader(systemId,
169: inputstream));
170: }
171:
172: public XMLEventReader createXMLEventReader(
173: java.io.InputStream stream, String encoding)
174: throws XMLStreamException {
175: return new StAXEventReader(createXMLStreamReader(stream,
176: encoding));
177: }
178:
179: public XMLEventReader createXMLEventReader(String systemId,
180: Reader reader) throws XMLStreamException {
181: return new StAXEventReader(createXMLStreamReader(systemId,
182: reader));
183: }
184:
185: /** Create a new XMLEventReader from an XMLStreamReader. After being used
186: * to construct the XMLEventReader instance returned from this method
187: * the XMLStreamReader must not be used.
188: * @param streamReader the XMLStreamReader to read from (may not be modified)
189: * @return a new XMLEventReader
190: * @throws XMLStreamException
191: */
192: public XMLEventReader createXMLEventReader(
193: XMLStreamReader streamReader) throws XMLStreamException {
194: return new StAXEventReader(streamReader);
195: }
196:
197: public XMLEventAllocator getEventAllocator() {
198: return (XMLEventAllocator) getProperty(XMLInputFactory.ALLOCATOR);
199: }
200:
201: public XMLReporter getXMLReporter() {
202: return (XMLReporter) _manager
203: .getProperty(XMLInputFactory.REPORTER);
204: }
205:
206: public XMLResolver getXMLResolver() {
207: Object object = _manager.getProperty(XMLInputFactory.RESOLVER);
208: return (XMLResolver) object;
209: //return (XMLResolver)_manager.getProperty(XMLInputFactory.RESOLVER);
210: }
211:
212: public void setXMLReporter(XMLReporter xmlreporter) {
213: _manager.setProperty(XMLInputFactory.REPORTER, xmlreporter);
214: }
215:
216: public void setXMLResolver(XMLResolver xmlresolver) {
217: _manager.setProperty(XMLInputFactory.RESOLVER, xmlresolver);
218: }
219:
220: /** Create a filtered event reader that wraps the filter around the event reader
221: * @param reader the event reader to wrap
222: * @param filter the filter to apply to the event reader
223: * @throws XMLStreamException
224: */
225: public XMLEventReader createFilteredReader(XMLEventReader reader,
226: EventFilter filter) throws XMLStreamException {
227: return new StAXFilteredEvent(reader, filter);
228: }
229:
230: /** Create a filtered reader that wraps the filter around the reader
231: * @param reader the reader to filter
232: * @param filter the filter to apply to the reader
233: * @throws XMLStreamException
234: */
235: public XMLStreamReader createFilteredReader(XMLStreamReader reader,
236: StreamFilter filter) throws XMLStreamException {
237:
238: if (reader != null && filter != null)
239: return new StAXFilteredParser(reader, filter);
240:
241: return null;
242: }
243:
244: /** Get the value of a feature/property from the underlying implementation
245: * @param name The name of the property (may not be null)
246: * @return The value of the property
247: * @throws IllegalArgumentException if the property is not supported
248: */
249: public Object getProperty(String name)
250: throws IllegalArgumentException {
251: if (name == null) {
252: throw new IllegalArgumentException(CommonResourceBundle
253: .getInstance()
254: .getString("message.nullPropertyName"));
255: }
256: if (_manager.containsProperty(name))
257: return _manager.getProperty(name);
258: throw new IllegalArgumentException(CommonResourceBundle
259: .getInstance().getString(
260: "message.propertyNotSupported",
261: new Object[] { name }));
262: }
263:
264: /** Query the set of Properties that this factory supports.
265: *
266: * @param name The name of the property (may not be null)
267: * @return true if the property is supported and false otherwise
268: */
269: public boolean isPropertySupported(String name) {
270: if (name == null)
271: return false;
272: else
273: return _manager.containsProperty(name);
274: }
275:
276: /** Set a user defined event allocator for events
277: * @param allocator the user defined allocator
278: */
279: public void setEventAllocator(XMLEventAllocator allocator) {
280: _manager.setProperty(XMLInputFactory.ALLOCATOR, allocator);
281: }
282:
283: /** Allows the user to set specific feature/property on the underlying implementation. The underlying implementation
284: * is not required to support every setting of every property in the specification and may use IllegalArgumentException
285: * to signal that an unsupported property may not be set with the specified value.
286: * @param name The name of the property (may not be null)
287: * @param value The value of the property
288: * @throws IllegalArgumentException if the property is not supported
289: */
290: public void setProperty(String name, Object value)
291: throws IllegalArgumentException {
292: _manager.setProperty(name, value);
293: }
294:
295: }
|