All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.ws.message.stream.StreamMessage Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 * 
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 * 
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License. You can obtain
 * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
 * or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 * 
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
 * Sun designates this particular file as subject to the "Classpath" exception
 * as provided by Sun in the GPL Version 2 section of the License file that
 * accompanied this code.  If applicable, add the following below the License
 * Header, with the fields enclosed by brackets [] replaced by your own
 * identifying information: "Portions Copyrighted [year]
 * [name of copyright owner]"
 * 
 * Contributor(s):
 * 
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */
package com.sun.xml.ws.message.stream;

import com.sun.istack.NotNull;
import com.sun.istack.Nullable;
import com.sun.istack.XMLStreamReaderToContentHandler;
import com.sun.xml.bind.api.Bridge;
import com.sun.xml.stream.buffer.MutableXMLStreamBuffer;
import com.sun.xml.stream.buffer.stax.StreamReaderBufferCreator;
import com.sun.xml.ws.api.SOAPVersion;
import com.sun.xml.ws.api.message.AttachmentSet;
import com.sun.xml.ws.api.message.Header;
import com.sun.xml.ws.api.message.HeaderList;
import com.sun.xml.ws.api.message.Message;
import com.sun.xml.ws.api.streaming.XMLStreamReaderFactory;
import com.sun.xml.ws.encoding.TagInfoset;
import com.sun.xml.ws.message.AbstractMessageImpl;
import com.sun.xml.ws.message.AttachmentUnmarshallerImpl;
import com.sun.xml.ws.streaming.XMLStreamReaderUtil;
import com.sun.xml.ws.util.xml.DummyLocation;
import com.sun.xml.ws.util.xml.StAXSource;
import com.sun.xml.ws.util.xml.XMLStreamReaderToXMLStreamWriter;
import org.xml.sax.ContentHandler;
import org.xml.sax.ErrorHandler;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
import org.xml.sax.helpers.NamespaceSupport;

import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;
import javax.xml.stream.*;
import static javax.xml.stream.XMLStreamConstants.START_DOCUMENT;
import static javax.xml.stream.XMLStreamConstants.START_ELEMENT;
import javax.xml.transform.Source;
import javax.xml.ws.WebServiceException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Enumeration;
import java.util.List;

/**
 * {@link Message} implementation backed by {@link XMLStreamReader}.
 *
 * TODO: we need another message class that keeps {@link XMLStreamReader} that points
 * at the start of the envelope element.
 */
public final class StreamMessage extends AbstractMessageImpl {
    /**
     * The reader will be positioned at
     * the first child of the SOAP body
     */
    private @NotNull XMLStreamReader reader;

    // lazily created
    private @Nullable HeaderList headers;    

    private final String payloadLocalName;

    private final String payloadNamespaceURI;

    /**
     * infoset about the SOAP envelope, header, and body.
     *
     * 

* If the creater of this object didn't care about those, * we use stock values. */ private /*almost final*/ @NotNull TagInfoset envelopeTag,headerTag,bodyTag; /** * Creates a {@link StreamMessage} from a {@link XMLStreamReader} * that points at the start element of the payload, and headers. * *

* This method creaets a {@link Message} from a payload. * * @param headers * if null, it means no headers. if non-null, * it will be owned by this message. * @param reader * points at the start element/document of the payload (or the end element of the <s:Body> * if there's no payload) */ public StreamMessage(@Nullable HeaderList headers, @NotNull AttachmentSet attachmentSet, @NotNull XMLStreamReader reader, @NotNull SOAPVersion soapVersion) { super(soapVersion); this.headers = headers; this.attachmentSet = attachmentSet; this.reader = reader; if(reader.getEventType()== START_DOCUMENT) XMLStreamReaderUtil.nextElementContent(reader); //if the reader is pointing to the end element then its empty message // or no payload if(reader.getEventType() == XMLStreamConstants.END_ELEMENT){ String body = reader.getLocalName(); String nsUri = reader.getNamespaceURI(); assert body != null; assert nsUri != null; //if its not soapenv:Body then throw exception, we received malformed stream if(body.equals("Body") && nsUri.equals(soapVersion.nsUri)){ this.payloadLocalName = null; this.payloadNamespaceURI = null; }else{ //TODO: i18n and also we should be throwing better message that this throw new WebServiceException("Malformed stream: {"+nsUri+"}"+body); } }else{ this.payloadLocalName = reader.getLocalName(); this.payloadNamespaceURI = reader.getNamespaceURI(); } // use the default infoset representation for headers int base = soapVersion.ordinal()*3; this.envelopeTag = DEFAULT_TAGS[base]; this.headerTag = DEFAULT_TAGS[base+1]; this.bodyTag = DEFAULT_TAGS[base+2]; } /** * Creates a {@link StreamMessage} from a {@link XMLStreamReader} * and the complete infoset of the SOAP envelope. * *

* See {@link #StreamMessage(HeaderList, AttachmentSet, XMLStreamReader, SOAPVersion)} for * the description of the basic parameters. * * @param headerTag * Null if the message didn't have a header tag. * */ public StreamMessage(@NotNull TagInfoset envelopeTag, @Nullable TagInfoset headerTag, @NotNull AttachmentSet attachmentSet, @Nullable HeaderList headers, @NotNull TagInfoset bodyTag, @NotNull XMLStreamReader reader, @NotNull SOAPVersion soapVersion) { this(headers,attachmentSet,reader,soapVersion); assert envelopeTag!=null && bodyTag!=null; this.envelopeTag = envelopeTag; this.headerTag = headerTag!=null ? headerTag : new TagInfoset(envelopeTag.nsUri,"Header",envelopeTag.prefix,EMPTY_ATTS); this.bodyTag = bodyTag; } public boolean hasHeaders() { return headers!=null && !headers.isEmpty(); } public HeaderList getHeaders() { if (headers == null) { headers = new HeaderList(); } return headers; } @Override public @NotNull AttachmentSet getAttachments() { return attachmentSet; } public String getPayloadLocalPart() { return payloadLocalName; } public String getPayloadNamespaceURI() { return payloadNamespaceURI; } public boolean hasPayload() { return payloadLocalName!=null; } public Source readPayloadAsSource() { if(hasPayload()) { assert unconsumed(); return new StAXSource(reader, true, getInscopeNamespaces()); } else return null; } /** * There is no way to enumerate inscope namespaces for XMLStreamReader. That means * namespaces declared in envelope, and body tags need to be computed using their * {@link TagInfoset}s. * * @return array of the even length of the form { prefix0, uri0, prefix1, uri1, ... } */ private String[] getInscopeNamespaces() { NamespaceSupport nss = new NamespaceSupport(); nss.pushContext(); for(int i=0; i < envelopeTag.ns.length; i+=2) { nss.declarePrefix(envelopeTag.ns[i], envelopeTag.ns[i+1]); } nss.pushContext(); for(int i=0; i < bodyTag.ns.length; i+=2) { nss.declarePrefix(bodyTag.ns[i], bodyTag.ns[i+1]); } List inscope = new ArrayList(); for( Enumeration en = nss.getPrefixes(); en.hasMoreElements(); ) { String prefix = (String)en.nextElement(); inscope.add(prefix); inscope.add(nss.getURI(prefix)); } return inscope.toArray(new String[inscope.size()]); } public Object readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException { if(!hasPayload()) return null; assert unconsumed(); // TODO: How can the unmarshaller process this as a fragment? if(hasAttachments()) unmarshaller.setAttachmentUnmarshaller(new AttachmentUnmarshallerImpl(getAttachments())); try { return unmarshaller.unmarshal(reader); } finally{ unmarshaller.setAttachmentUnmarshaller(null); XMLStreamReaderUtil.readRest(reader); XMLStreamReaderUtil.close(reader); XMLStreamReaderFactory.recycle(reader); } } public T readPayloadAsJAXB(Bridge bridge) throws JAXBException { if(!hasPayload()) return null; assert unconsumed(); T r = bridge.unmarshal(reader, hasAttachments() ? new AttachmentUnmarshallerImpl(getAttachments()) : null); XMLStreamReaderUtil.readRest(reader); XMLStreamReaderUtil.close(reader); XMLStreamReaderFactory.recycle(reader); return r; } @Override public void consume() { assert unconsumed(); XMLStreamReaderUtil.readRest(reader); XMLStreamReaderUtil.close(reader); XMLStreamReaderFactory.recycle(reader); } public XMLStreamReader readPayload() { // TODO: What about access at and beyond assert unconsumed(); return this.reader; } public void writePayloadTo(XMLStreamWriter writer)throws XMLStreamException { if(payloadLocalName==null) return; // no body assert unconsumed(); XMLStreamReaderToXMLStreamWriter conv = new XMLStreamReaderToXMLStreamWriter(); while(reader.getEventType() != XMLStreamConstants.END_DOCUMENT){ String name = reader.getLocalName(); String nsUri = reader.getNamespaceURI(); //after previous conv.bridge() call the cursor will be at //END_ELEMENT. Check if its not soapenv:Body then move to next // ELEMENT if(reader.getEventType() == XMLStreamConstants.END_ELEMENT){ if(!name.equals("Body") || !nsUri.equals(soapVersion.nsUri)){ XMLStreamReaderUtil.nextElementContent(reader); if(reader.getEventType() == XMLStreamConstants.END_DOCUMENT) break; name = reader.getLocalName(); nsUri = reader.getNamespaceURI(); } } if(name.equals("Body") && nsUri.equals(soapVersion.nsUri) || (reader.getEventType() == XMLStreamConstants.END_DOCUMENT)) break; conv.bridge(reader,writer); } XMLStreamReaderUtil.readRest(reader); XMLStreamReaderUtil.close(reader); XMLStreamReaderFactory.recycle(reader); } public void writeTo(XMLStreamWriter sw) throws XMLStreamException{ writeEnvelope(sw); } /** * This method should be called when the StreamMessage is created with a payload * @param writer */ private void writeEnvelope(XMLStreamWriter writer) throws XMLStreamException { writer.writeStartDocument(); envelopeTag.writeStart(writer); //write headers HeaderList hl = getHeaders(); if(hl.size() > 0){ headerTag.writeStart(writer); for(Header h:hl){ h.writeTo(writer); } writer.writeEndElement(); } bodyTag.writeStart(writer); if(hasPayload()) writePayloadTo(writer); writer.writeEndElement(); writer.writeEndElement(); writer.writeEndDocument(); } public void writePayloadTo(ContentHandler contentHandler, ErrorHandler errorHandler, boolean fragment) throws SAXException { assert unconsumed(); try { if(payloadLocalName==null) return; // no body XMLStreamReaderToContentHandler conv = new XMLStreamReaderToContentHandler(reader,contentHandler,true,fragment); while(reader.getEventType() != XMLStreamConstants.END_DOCUMENT){ String name = reader.getLocalName(); String nsUri = reader.getNamespaceURI(); //after previous conv.bridge() call the cursor will be at //END_ELEMENT. Check if its not soapenv:Body then move to next // ELEMENT if(reader.getEventType() == XMLStreamConstants.END_ELEMENT){ if(!name.equals("Body") || !nsUri.equals(soapVersion.nsUri)){ XMLStreamReaderUtil.nextElementContent(reader); if(reader.getEventType() == XMLStreamConstants.END_DOCUMENT) break; name = reader.getLocalName(); nsUri = reader.getNamespaceURI(); } } if(name.equals("Body") && nsUri.equals(soapVersion.nsUri) || (reader.getEventType() == XMLStreamConstants.END_DOCUMENT)) break; conv.bridge(); } XMLStreamReaderUtil.readRest(reader); XMLStreamReaderUtil.close(reader); XMLStreamReaderFactory.recycle(reader); } catch (XMLStreamException e) { Location loc = e.getLocation(); if(loc==null) loc = DummyLocation.INSTANCE; SAXParseException x = new SAXParseException( e.getMessage(),loc.getPublicId(),loc.getSystemId(),loc.getLineNumber(),loc.getColumnNumber(),e); errorHandler.error(x); } } public Message copy() { try { // copy the payload XMLStreamReader clone; if(hasPayload()) { assert unconsumed(); consumedAt = null; // but we don't want to mark it as consumed MutableXMLStreamBuffer xsb = new MutableXMLStreamBuffer(); //the boolean value tells the first body part is written. //based on this we do the right thing StreamReaderBufferCreator c = new StreamReaderBufferCreator(xsb); // preserving inscope namespaces from envelope, and body. Other option // would be to create a filtering XMLStreamReader from reader+envelopeTag+bodyTag c.storeElement(envelopeTag.nsUri, envelopeTag.localName, envelopeTag.prefix, envelopeTag.ns); c.storeElement(bodyTag.nsUri, bodyTag.localName, bodyTag.prefix, bodyTag.ns); // Loop all the way for multi payload case while(reader.getEventType() != XMLStreamConstants.END_DOCUMENT){ String name = reader.getLocalName(); String nsUri = reader.getNamespaceURI(); if(name.equals("Body") && nsUri.equals(soapVersion.nsUri) || (reader.getEventType() == XMLStreamConstants.END_DOCUMENT)) break; c.create(reader); // Skip whitespaces in between payload and or between elements if (reader.isWhiteSpace()) { XMLStreamReaderUtil.nextElementContent(reader); } } XMLStreamReaderUtil.readRest(reader); XMLStreamReaderUtil.close(reader); XMLStreamReaderFactory.recycle(reader); reader = xsb.readAsXMLStreamReader(); clone = xsb.readAsXMLStreamReader(); // advance to the start tag of the first element proceedToRootElement(reader); proceedToRootElement(clone); } else { // it's tempting to use EmptyMessageImpl, but it doesn't presere the infoset // of ,

, and , so we need to stick to StreamMessage. clone = reader; } return new StreamMessage(envelopeTag, headerTag, attachmentSet, HeaderList.copy(headers), bodyTag, clone, soapVersion); } catch (XMLStreamException e) { throw new WebServiceException("Failed to copy a message",e); } } private void proceedToRootElement(XMLStreamReader xsr) throws XMLStreamException { assert xsr.getEventType()==START_DOCUMENT; xsr.nextTag(); xsr.nextTag(); xsr.nextTag(); assert xsr.getEventType()==START_ELEMENT; } public void writeTo( ContentHandler contentHandler, ErrorHandler errorHandler ) throws SAXException { contentHandler.setDocumentLocator(NULL_LOCATOR); contentHandler.startDocument(); envelopeTag.writeStart(contentHandler); headerTag.writeStart(contentHandler); if(hasHeaders()) { HeaderList headers = getHeaders(); int len = headers.size(); for( int i=0; i * Calling this method also marks the stream as 'consumed' */ private boolean unconsumed() { if(payloadLocalName==null) return true; // no payload. can be consumed multiple times. if(reader.getEventType()!=XMLStreamReader.START_ELEMENT) { AssertionError error = new AssertionError("StreamMessage has been already consumed. See the nested exception for where it's consumed"); error.initCause(consumedAt); throw error; } consumedAt = new Exception().fillInStackTrace(); return true; } /** * Used only for debugging. This records where the message was consumed. */ private Throwable consumedAt; /** * Default s:Envelope, s:Header, and s:Body tag infoset definitions. * * We need 3 for SOAP 1.1, 3 for SOAP 1.2. */ private static final TagInfoset[] DEFAULT_TAGS; static { DEFAULT_TAGS = new TagInfoset[6]; create(SOAPVersion.SOAP_11); create(SOAPVersion.SOAP_12); } private static void create(SOAPVersion v) { int base = v.ordinal()*3; DEFAULT_TAGS[base ] = new TagInfoset(v.nsUri,"Envelope","S",EMPTY_ATTS,"S",v.nsUri); DEFAULT_TAGS[base+1] = new TagInfoset(v.nsUri,"Header","S",EMPTY_ATTS); DEFAULT_TAGS[base+2] = new TagInfoset(v.nsUri,"Body","S",EMPTY_ATTS); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy