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

org.jboss.remoting.marshal.compress.CompressingUnMarshaller Maven / Gradle / Ivy

There is a newer version: 5.0.29.Final
Show newest version
/*
* 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;


/**
 * CompressingMarshaller and CompressingUnMarshaller are a general
 * purpose compressing marshaller / decompressing unmarshaller pair based on Java's GZIP facilities.
 * 

* CompressingUnMarshaller is subclassed from SerializableUnMarshaller, * and by default it uses super.read() to deserialize an object, once the object has been * uncompressed. Optionally, it can wrap any other unmarshaller and use that instead of * SerializableUnMarshaller to unmarshall an uncompressed input stream. For example, *

*

new CompressingUnMarshaller(new HTTPUnMarshaller())
* will create an umarshaller that * uses an HTTPUnMarshaller to restore an uncompressed input stream. * * @author Ron Sigal * @version $Revision: 5338 $ *

* Copyright (c) 2005 *

*/ 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 InputStream 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 inputStream * @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 CompressingUnMarshaller * * @return a new CompressingUnMarshaller * @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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy