/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.axis2.datasource; import org.apache.axiom.om.OMException; import org.apache.axiom.om.ds.AbstractPullOMDataSource; import org.apache.axiom.om.util.StAXUtils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamReader; import javax.xml.transform.Result; import javax.xml.transform.Source; import javax.xml.transform.Transformer; import javax.xml.transform.TransformerFactory; import javax.xml.transform.stream.StreamResult; import javax.xml.transform.stream.StreamSource; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.UnsupportedEncodingException; /** * OMDataSource backed by a source */ public class SourceDataSource extends AbstractPullOMDataSource { private static final Log log = LogFactory.getLog(SourceDataSource.class); private final Source data; public SourceDataSource(Source data) { this.data = data; } public Source getObject() { return data; } public XMLStreamReader getReader() throws XMLStreamException { try { String encoding = "utf-8"; InputStream is = new ByteArrayInputStream(getContent(encoding)); return StAXUtils.createXMLStreamReader(is, encoding); } catch (UnsupportedEncodingException e) { throw new XMLStreamException(e); } } private byte[] getContent(String encoding) throws UnsupportedEncodingException { if (log.isDebugEnabled()) { log.debug("Start getXMLBytes"); } byte[] bytes = null; try { bytes = (byte[]) null; if (data instanceof StreamSource) { InputStream is = ((StreamSource) data).getInputStream(); if (is != null) { bytes = getBytesFromStream(is); } } else { ByteArrayOutputStream out = new ByteArrayOutputStream(); Result result = new StreamResult(out); Transformer transformer = TransformerFactory.newInstance().newTransformer(); transformer.transform(data, result); bytes = out.toByteArray(); } } catch (OMException e) { throw e; } catch (UnsupportedEncodingException e) { throw e; } catch (Throwable e) { throw new OMException(e); } if (log.isDebugEnabled()) { log.debug("End getXMLBytes"); } return bytes; } public boolean isDestructiveRead() { return false; } private static byte[] getBytesFromStream(InputStream is) throws IOException { // TODO This code assumes that available is the length of the stream. byte[] bytes = new byte[is.available()]; is.read(bytes); return bytes; } }