Package org.apache.axis.attachments

Source Code of org.apache.axis.attachments.MultiPartDimeInputStream

/*
* The Apache Software License, Version 1.1
*
*
* Copyright (c) 2001 The Apache Software Foundation.  All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
*    notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
*    notice, this list of conditions and the following disclaimer in
*    the documentation and/or other materials provided with the
*    distribution.
*
* 3. The end-user documentation included with the redistribution,
*    if any, must include the following acknowledgment:
*       "This product includes software developed by the
*        Apache Software Foundation (http://www.apache.org/)."
*    Alternately, this acknowledgment may appear in the software itself,
*    if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Axis" and "Apache Software Foundation" must
*    not be used to endorse or promote products derived from this
*    software without prior written permission. For written
*    permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
*    nor may "Apache" appear in their name, without prior written
*    permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation.  For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/

package org.apache.axis.attachments;


import org.apache.axis.transport.http.HTTPConstants;

import javax.activation.DataHandler;

import org.apache.axis.Part;
import org.apache.axis.utils.JavaUtils;
import javax.mail.internet.MimeUtility;

import org.apache.axis.components.logger.LogFactory;
import org.apache.commons.logging.Log;


/**
*
* @author Rick Rineholt
*/

/** This simulates the multipart stream
*
*/
public class MultiPartDimeInputStream extends  MultiPartInputStream {
    protected static Log log =
        LogFactory.getLog(MultiPartDimeInputStream.class.getName());

    protected java.util.HashMap parts = new java.util.HashMap();
    protected java.util.LinkedList orderedParts = new java.util.LinkedList();
    protected int rootPartLength = 0;
    protected boolean closed = false; //If true the stream has been closed.
    protected boolean eos = false//This is set once the SOAP packet has reached the end of stream.
    //This stream controls and manages the  boundary.
    protected DimeDelimitedInputStream dimeDelimitedStream = null;
    protected java.io.InputStream soapStream = null; //Set the soap stream once found.
    protected byte[] boundary = null;
    protected java.io.ByteArrayInputStream cachedSOAPEnvelope = null; //Caches the soap stream if it is
    //Still open and a reference to read data in a later attachment occurs.
    protected String contentId = null;
             
    /**
     * Multipart stream.
     * @param is the true input stream from where the source.
     */
    public MultiPartDimeInputStream (java.io.InputStream is)
      throws java.io.IOException {
        super(null); //don't cache this stream.
        soapStream = dimeDelimitedStream = new DimeDelimitedInputStream(is); //The Soap stream must always be first
        contentId = dimeDelimitedStream.getContentId();
    }

    public Part getAttachmentByReference(final String[] id)
      throws org.apache.axis.AxisFault {
        //First see if we have read it in yet.
        Part ret = null;

        try {
            for (int i = id.length - 1; ret == null && i > -1; --i) {
                ret = (AttachmentPart) parts.get(id[i]);
            }

            if (null == ret) {
                ret = readTillFound(id);
            }
            log.debug(JavaUtils.getMessage("return02",
                    "getAttachmentByReference(\"" + id + "\"",
                    (ret == null ? "null" : ret.toString())));
        } catch (java.io.IOException e) {
            throw new org.apache.axis.AxisFault(e.getClass().getName()
              + e.getMessage());
        }
        return ret;
    }

    protected void addPart(String contentId, String locationId,
     AttachmentPart  ap) {
     //For DIME streams Content-Location is ignored.
        if (contentId != null && contentId.trim().length() != 0)
          parts.put(contentId, ap);
        orderedParts.add(ap);
    }

    //Shouldn't never match
    protected static final String[] READ_ALL = { " * \0 ".intern()};

    protected void readAll() throws org.apache.axis.AxisFault {
        try {
            readTillFound(READ_ALL);
        } catch (Exception e) {
            throw org.apache.axis.AxisFault.makeFault(e);
        }
    }

    public java.util.Collection getAttachments()
      throws org.apache.axis.AxisFault {
        readAll();
        return new java.util.LinkedList(orderedParts);
    }

    /**
     * This will read streams in till the one that is needed is found.
     * @param id is the stream being sought.
     *        
     */

    protected Part readTillFound(final String[] id)
      throws java.io.IOException {
        if (dimeDelimitedStream == null) {
            //The whole stream has been consumed already
            return null;
        }
        Part ret = null;

        try {

            if (soapStream != null) { //Still on the SOAP stream.
                if (!eos) { //The SOAP packet has not been fully read yet. Need to store it away.

                    java.io.ByteArrayOutputStream soapdata =
                      new java.io.ByteArrayOutputStream(1024 * 8);

                    byte[] buf = new byte[1024 * 16];
                    int byteread = 0;

                    do {
                        byteread = soapStream.read(buf);
                        if (byteread > 0) {
                            soapdata.write(buf, 0, byteread);
                        }

                    } while (byteread > -1);
                    soapdata.close();
                    soapStream.close();
                    soapStream = new java.io.ByteArrayInputStream(
                     soapdata.toByteArray());
                }
                dimeDelimitedStream = dimeDelimitedStream.getNextStream();
            }
            //Now start searching for the data.

            if (null != dimeDelimitedStream) {
                do {
                    String contentId = dimeDelimitedStream.getContentId();
                    String type = dimeDelimitedStream.getType();

                    if (type != null && !dimeDelimitedStream.getDimeTypeNameFormat().equals(DimeTypeNameFormat.MIME)) {
                        type = "application/uri; uri=\"" + type + "\"";
                    }
                     
                    DataHandler dh = new DataHandler(
                      new ManagedMemoryDataSource(dimeDelimitedStream,
                      1024, type, true));

                    AttachmentPart ap = new AttachmentPart(dh);

                    if (contentId != null)
                        ap.setMimeHeader(HTTPConstants.HEADER_CONTENT_ID, contentId);

                    addPart(contentId, "", ap);

                    for (int i = id.length - 1; ret == null && i > -1; --i) {
                        if (contentId != null && id[i].equals(contentId)) { //This is the part being sought
                            ret = ap;
                        }
                    }    

                    dimeDelimitedStream =
                     dimeDelimitedStream.getNextStream();

                }
                while (null == ret && null != dimeDelimitedStream);
            }
        } catch (Exception e) {
            throw org.apache.axis.AxisFault.makeFault(e);
        }

        return ret;
    }

    /**
     * Return the content location.
     * @return the Content-Location of the stream.
     *   Null if no content-location specified.
     */
    public String getContentLocation() {
        return null;
    }

    /**
     * Return the content id of the stream
     * @return the Content-Location of the stream.
     *   Null if no content-location specified.
     */
    public String getContentId() {
        return contentId;
    }

    /**
     * Read the root stream.
     */

    public int read(byte[] b, int off, int len)
      throws java.io.IOException {
        if (closed) {
            throw new java.io.IOException(JavaUtils.getMessage(
              "streamClosed"));
        }
        if (eos) {
            return -1;
        }
        int read = soapStream.read(b, off, len);

        if (read < 0) {
            eos = true;
        }
        return read;
    }

    public int read(byte[] b) throws java.io.IOException {
        return read(b, 0, b.length);
    }

    public int read() throws java.io.IOException {
        if (closed) {
            throw new java.io.IOException(JavaUtils.getMessage(
            "streamClosed"));
        }
        if (eos) {
            return -1;
        }
        int ret = soapStream.read();

        if (ret < 0) {
            eos = true;
        }
        return ret;
    }

    public void close() throws java.io.IOException {
        closed = true;
        soapStream.close();
    }
}
TOP

Related Classes of org.apache.axis.attachments.MultiPartDimeInputStream

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.