Package org.jboss.remoting.marshal.compress

Source Code of org.jboss.remoting.marshal.compress.CompressingUnMarshaller$DecomposableBufferedInputStream

/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.jboss.remoting.marshal.compress;

import java.io.BufferedInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.ObjectInputStream;
import java.util.HashMap;
import java.util.Map;
import java.util.zip.GZIPInputStream;
import java.util.zip.Inflater;

import org.jboss.remoting.marshal.UnMarshaller;
import org.jboss.remoting.marshal.VersionedUnMarshaller;
import org.jboss.remoting.marshal.http.HTTPUnMarshaller;
import org.jboss.remoting.marshal.serializable.SerializableUnMarshaller;
import org.jboss.remoting.serialization.SerializationManager;
import org.jboss.remoting.serialization.SerializationStreamFactory;


/**
* <code>CompressingMarshaller</code> and <code>CompressingUnMarshaller</code> are a general
* purpose compressing marshaller / decompressing unmarshaller pair based on Java's GZIP facilities.
* <p/>
* <code>CompressingUnMarshaller</code> is subclassed from <code>SerializableUnMarshaller</code>,
* and by default it uses <code>super.read()</code> to deserialize an object, once the object has been
* uncompressed.  Optionally, it can wrap any other unmarshaller and use that instead of
* <code>SerializableUnMarshaller</code> to unmarshall an uncompressed input stream.  For example,
* <p/>
* <center><code>new CompressingUnMarshaller(new HTTPUnMarshaller())</code></center
* <p/>
* will create an umarshaller that
* uses an <code>HTTPUnMarshaller</code> to restore an uncompressed input stream.
*
* @author <a href="mailto:r.sigal@computer.org">Ron Sigal</a>
* @version $Revision: 5338 $
*          <p/>
*          Copyright (c) 2005
*          </p>
*/

public class CompressingUnMarshaller extends SerializableUnMarshaller
{
   public final static String DATATYPE = "compressible";

   private UnMarshaller wrappedUnMarshaller;
   private static final long serialVersionUID = 3843451434770746776L;


   /**
    * Create a new CompressingUnMarshaller.
    */
   public CompressingUnMarshaller()
   {
   }


   /**
    * Create a new CompressingUnMarshaller.
    *
    * @param unMarshaller unmarshaller to be used to restore uncompressed byte stream to original object
    */
   public CompressingUnMarshaller(UnMarshaller unMarshaller)
   {
      wrappedUnMarshaller = unMarshaller;
   }
  
   public InputStream getMarshallingStream(InputStream inputStream) throws IOException
   {
      SelfCleaningGZipInputStream gzis = new SelfCleaningGZipInputStream(inputStream);
      DecomposableBufferedInputStream bis = new DecomposableBufferedInputStream(gzis);
      return bis;
   }

   /**
    * Restores a compressed, marshalled form of an object to its original state.
    *
    * @param inputStream <code>InputStream</code> from which marshalled form is to be retrieved
    * @param metadata    can be any transport specific metadata (such as headers from http transport).
    *                    This can be null, depending on if transport supports metadata.
    * @param version     wire format version
    * @return restored object
    * @throws IOException            if there is a problem reading from <code>inputStream</code>
    * @throws ClassNotFoundException if there is a problem finding a class needed for unmarshalling
    */
   public Object read(InputStream inputStream, Map metadata, int version) throws IOException, ClassNotFoundException
   {
      SelfCleaningGZipInputStream gzis = null;
      DecomposableBufferedInputStream bis = null;
     
      if (inputStream instanceof DecomposableBufferedInputStream)
      {
         bis = (DecomposableBufferedInputStream) inputStream;
         gzis = (SelfCleaningGZipInputStream) bis.getWrappedStream();
      }
      else
      {
         gzis = new SelfCleaningGZipInputStream(inputStream);
         bis = new DecomposableBufferedInputStream(gzis);
      }

      SerializationManager manager = SerializationStreamFactory.getManagerInstance(getSerializationType());
      ObjectInputStream ois =  manager.createRegularInput(bis);

      try
      {
         if(wrappedUnMarshaller != null)
         {
            // HACK for JBREM-927.
            if (wrappedUnMarshaller instanceof HTTPUnMarshaller)
            {
               Map map = new HashMap();
               if (metadata != null)
                  map.putAll(metadata);
               map.put("Content-Length", Integer.toString(Integer.MAX_VALUE));
               metadata = map;
            }

            if (wrappedUnMarshaller instanceof VersionedUnMarshaller)
               return ((VersionedUnMarshaller)wrappedUnMarshaller).read(ois, metadata, version);
            else
               return wrappedUnMarshaller.read(ois, metadata);
         }
         else
         {
            return super.read(ois, metadata, version);
         }
      }
      finally
      {
         gzis.end();
      }
   }


   /**
    * Returns a new <code>CompressingUnMarshaller</code>
    *
    * @return a new <code>CompressingUnMarshaller</code>
    * @throws CloneNotSupportedException In practice no exceptions are thrown.
    */
   public UnMarshaller cloneUnMarshaller() throws CloneNotSupportedException
   {
      return new CompressingUnMarshaller(wrappedUnMarshaller);
   }


   /**
    * @author Doychin Bondzhev
    */
   static class SelfCleaningGZipInputStream extends GZIPInputStream
   {
      SelfCleaningGZipInputStream(InputStream in) throws IOException
      {
         super(in);
      }
     
      void refreshInflater()
      {
         inf = new Inflater(true);
         crc.reset();
      }

      void end() throws IOException
      {
         while(available() > 0) { // This will force input stream to read gzip trailer from input stream
            read();
         }
         inf.end(); // TO release resources used by native code
      }
   }
  
   static class DecomposableBufferedInputStream extends BufferedInputStream
   {
      DecomposableBufferedInputStream(InputStream in, int size)
      {
         super(in, size);
      }

      DecomposableBufferedInputStream(InputStream in)
      {
         super(in);
      }
     
      InputStream getWrappedStream()
      {
         return in;
      }
   }
}
TOP

Related Classes of org.jboss.remoting.marshal.compress.CompressingUnMarshaller$DecomposableBufferedInputStream

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.