001: /*
002: * Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
003: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
004: *
005: * This code is free software; you can redistribute it and/or modify it
006: * under the terms of the GNU General Public License version 2 only, as
007: * published by the Free Software Foundation. Sun designates this
008: * particular file as subject to the "Classpath" exception as provided
009: * by Sun in the LICENSE file that accompanied this code.
010: *
011: * This code is distributed in the hope that it will be useful, but WITHOUT
012: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
013: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
014: * version 2 for more details (a copy is included in the LICENSE file that
015: * accompanied this code).
016: *
017: * You should have received a copy of the GNU General Public License version
018: * 2 along with this work; if not, write to the Free Software Foundation,
019: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
020: *
021: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
022: * CA 95054 USA or visit www.sun.com if you need additional information or
023: * have any questions.
024: *
025: * THIS FILE WAS MODIFIED BY SUN MICROSYSTEMS, INC.
026: */
027:
028: /*
029: * Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
030: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
031: *
032: * This code is free software; you can redistribute it and/or modify it
033: * under the terms of the GNU General Public License version 2 only, as
034: * published by the Free Software Foundation. Sun designates this
035: * particular file as subject to the "Classpath" exception as provided
036: * by Sun in the LICENSE file that accompanied this code.
037: *
038: * This code is distributed in the hope that it will be useful, but WITHOUT
039: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
040: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
041: * version 2 for more details (a copy is included in the LICENSE file that
042: * accompanied this code).
043: *
044: * You should have received a copy of the GNU General Public License version
045: * 2 along with this work; if not, write to the Free Software Foundation,
046: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
047: *
048: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
049: * CA 95054 USA or visit www.sun.com if you need additional information or
050: * have any questions.
051: *
052: * THIS FILE WAS MODIFIED BY SUN MICROSYSTEMS, INC.
053: *
054: */
055:
056: package com.sun.xml.internal.fastinfoset.stax.factory;
057:
058: import com.sun.xml.internal.fastinfoset.stax.*;
059: import com.sun.xml.internal.fastinfoset.stax.events.StAXEventWriter;
060: import javax.xml.transform.Result;
061: import javax.xml.stream.XMLOutputFactory;
062: import javax.xml.stream.XMLEventWriter;
063: import javax.xml.stream.XMLStreamWriter;
064: import javax.xml.stream.XMLStreamException;
065: import javax.xml.transform.stream.StreamResult;
066: import java.io.File;
067: import java.io.FileWriter;
068: import java.io.IOException;
069: import java.io.OutputStream;
070: import java.io.Writer;
071: import com.sun.xml.internal.fastinfoset.CommonResourceBundle;
072:
073: public class StAXOutputFactory extends XMLOutputFactory {
074:
075: //List of supported properties and default values.
076: private StAXManager _manager = null;
077:
078: /** Creates a new instance of StAXOutputFactory */
079: public StAXOutputFactory() {
080: _manager = new StAXManager(StAXManager.CONTEXT_WRITER);
081: }
082:
083: public XMLEventWriter createXMLEventWriter(Result result)
084: throws XMLStreamException {
085: return new StAXEventWriter(createXMLStreamWriter(result));
086: }
087:
088: public XMLEventWriter createXMLEventWriter(Writer writer)
089: throws XMLStreamException {
090: return new StAXEventWriter(createXMLStreamWriter(writer));
091: }
092:
093: public XMLEventWriter createXMLEventWriter(OutputStream outputStream)
094: throws XMLStreamException {
095: return new StAXEventWriter(createXMLStreamWriter(outputStream));
096: }
097:
098: public XMLEventWriter createXMLEventWriter(
099: OutputStream outputStream, String encoding)
100: throws XMLStreamException {
101: return new StAXEventWriter(createXMLStreamWriter(outputStream,
102: encoding));
103: }
104:
105: public XMLStreamWriter createXMLStreamWriter(Result result)
106: throws XMLStreamException {
107: if (result instanceof StreamResult) {
108: StreamResult streamResult = (StreamResult) result;
109: if (streamResult.getWriter() != null) {
110: return createXMLStreamWriter(streamResult.getWriter());
111: } else if (streamResult.getOutputStream() != null) {
112: return createXMLStreamWriter(streamResult
113: .getOutputStream());
114: } else if (streamResult.getSystemId() != null) {
115: try {
116: FileWriter writer = new FileWriter(new File(
117: streamResult.getSystemId()));
118: return createXMLStreamWriter(writer);
119: } catch (IOException ie) {
120: throw new XMLStreamException(ie);
121: }
122: }
123: } else if (result instanceof Result) {
124: try {
125: //xxx: should we be using FileOutputStream - nb.
126: FileWriter writer = new FileWriter(new File(result
127: .getSystemId()));
128: return createXMLStreamWriter(writer);
129: } catch (IOException ie) {
130: throw new XMLStreamException(ie);
131: }
132: }
133: throw new java.lang.UnsupportedOperationException();
134: }
135:
136: /** this is assumed that user wants to write the file in xml format
137: *
138: */
139: public XMLStreamWriter createXMLStreamWriter(Writer writer)
140: throws XMLStreamException {
141: throw new java.lang.UnsupportedOperationException();
142: }
143:
144: public XMLStreamWriter createXMLStreamWriter(
145: OutputStream outputStream) throws XMLStreamException {
146: return new StAXDocumentSerializer(outputStream,
147: new StAXManager(_manager));
148: }
149:
150: public XMLStreamWriter createXMLStreamWriter(
151: OutputStream outputStream, String encoding)
152: throws XMLStreamException {
153: StAXDocumentSerializer serializer = new StAXDocumentSerializer(
154: outputStream, new StAXManager(_manager));
155: serializer.setEncoding(encoding);
156: return serializer;
157: }
158:
159: public Object getProperty(String name)
160: throws java.lang.IllegalArgumentException {
161: if (name == null) {
162: throw new IllegalArgumentException(CommonResourceBundle
163: .getInstance().getString(
164: "message.propertyNotSupported",
165: new Object[] { name }));
166: }
167: if (_manager.containsProperty(name))
168: return _manager.getProperty(name);
169: throw new IllegalArgumentException(CommonResourceBundle
170: .getInstance().getString(
171: "message.propertyNotSupported",
172: new Object[] { name }));
173: }
174:
175: public boolean isPropertySupported(String name) {
176: if (name == null)
177: return false;
178: else
179: return _manager.containsProperty(name);
180: }
181:
182: public void setProperty(String name, Object value)
183: throws java.lang.IllegalArgumentException {
184: _manager.setProperty(name, value);
185:
186: }
187:
188: }
|