blob: b9e4aedb8e6a7507f6612e4c50b9cbf1defabe23 [file] [log] [blame]
/*
* 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.axiom.om.impl.common;
import java.io.IOException;
import javax.activation.DataHandler;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.util.StreamReaderDelegate;
import org.apache.axiom.om.OMAttachmentAccessor;
import org.apache.axiom.om.OMContainer;
import org.apache.axiom.om.OMDataSource;
import org.apache.axiom.om.OMException;
import org.apache.axiom.om.OMXMLParserWrapper;
import org.apache.axiom.om.impl.OMXMLStreamReaderEx;
import org.apache.axiom.util.stax.xop.ContentIDGenerator;
import org.apache.axiom.util.stax.xop.OptimizationPolicy;
import org.apache.axiom.util.stax.xop.XOPEncodingStreamReader;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* {@link XMLStreamReader} implementation that generates events from a given Axiom tree.
* This class does intentionally does not implement XMLStreamReaderContainer because
* it does not wrap a parser (it wraps an OM graph).
*/
public class OMStAXWrapper extends StreamReaderDelegate implements OMXMLStreamReaderEx {
private static final Log log = LogFactory.getLog(OMStAXWrapper.class);
private final SwitchingWrapper switchingWrapper;
private XOPEncodingStreamReader xopEncoder;
/**
* When constructing the OMStaxWrapper, the creator must produce the builder (an instance of the
* OMXMLparserWrapper of the input) and the Element Node to start parsing. The wrapper will
* parse(proceed) until the end of the given element. Hence care should be taken to pass the
* root element if the entire document is needed.
*
* @param builder
* @param startNode
*/
public OMStAXWrapper(OMXMLParserWrapper builder, OMContainer startNode) {
this(builder, startNode, false);
}
/**
* Constructor OMStAXWrapper.
*
* @param builder
* @param startNode
* @param cache
*/
public OMStAXWrapper(OMXMLParserWrapper builder, OMContainer startNode,
boolean cache) {
switchingWrapper = new SwitchingWrapper(builder, startNode, cache);
setParent(switchingWrapper);
}
public boolean isInlineMTOM() {
return xopEncoder == null;
}
public void setInlineMTOM(boolean value) {
// For inlineMTOM=false, we insert an XOPEncodingStreamReader proxy between
// us and SwitchingWrapper.
// For inlineMTOM=true, we remove it and delegate directly to SwitchingWrapper.
if (value) {
if (xopEncoder != null) {
xopEncoder = null;
setParent(switchingWrapper);
}
} else {
if (xopEncoder == null) {
// Since the intention is to support an efficient way to pass binary content to a
// consumer that is not aware of our data handler extension (see WSCOMMONS-344), we
// use OptimizationPolicy.ALL, i.e. we ignore OMText#isOptimized().
xopEncoder = new XOPEncodingStreamReader(switchingWrapper, ContentIDGenerator.DEFAULT,
OptimizationPolicy.ALL);
setParent(xopEncoder);
}
}
}
public DataHandler getDataHandler(String contentID) {
if (contentID.startsWith("cid:")) {
log.warn("Invalid usage of OMStAXWrapper#getDataHandler(String): the argument must " +
"be a content ID, not an href; see OMAttachmentAccessor.");
contentID = contentID.substring(4);
}
// Temporary workaround for WSCOMMONS-485:
OMXMLParserWrapper builder = switchingWrapper.getBuilder();
if (builder != null &&
builder instanceof OMAttachmentAccessor) {
DataHandler dh = ((OMAttachmentAccessor)builder).getDataHandler(contentID);
if (dh != null) {
return dh;
}
}
if (xopEncoder == null) {
throw new IllegalStateException("The wrapper is in inlineMTOM=true mode");
}
if (xopEncoder.getContentIDs().contains(contentID)) {
try {
return xopEncoder.getDataHandler(contentID);
} catch (IOException ex) {
throw new OMException(ex);
}
} else {
return null;
}
}
// TODO: need to check which of these delegate methods are really necessary;
// some of them should also be defined properly by an interface
public boolean isClosed() {
return switchingWrapper.isClosed();
}
public void releaseParserOnClose(boolean value) {
switchingWrapper.releaseParserOnClose(value);
}
public void setNamespaceURIInterning(boolean b) {
switchingWrapper.setNamespaceURIInterning(b);
}
public OMDataSource getDataSource() {
return switchingWrapper.getDataSource();
}
public void enableDataSourceEvents(boolean value) {
switchingWrapper.enableDataSourceEvents(value);
}
}