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

org.jumpmind.symmetric.web.compression.CompressionResponseStream Maven / Gradle / Ivy

There is a newer version: 3.5.19
Show newest version
/**
 * Licensed to JumpMind Inc under one or more contributor
 * license agreements.  See the NOTICE file distributed
 * with this work for additional information regarding
 * copyright ownership.  JumpMind Inc licenses this file
 * to you under the GNU General Public License, version 3.0 (GPLv3)
 * (the "License"); you may not use this file except in compliance
 * with the License.
 *
 * You should have received a copy of the GNU General Public License,
 * version 3.0 (GPLv3) along with this library; if not, see
 * .
 *
 * 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.jumpmind.symmetric.web.compression;

import java.io.IOException;
import java.io.OutputStream;
import java.util.zip.GZIPOutputStream;

import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;


/**
 * Implementation of ServletOutputStream that works with the
 * CompressionServletResponseWrapper implementation.
 * 
 * This package is derived from the Jakarta Tomcat examples compression
 * filter and is distributed in SymmetricDS for convenience.
 * 
 * @author Amy Roh
 * @author Dmitri Valdin
 */
public class CompressionResponseStream extends ServletOutputStream {

    static final Logger logger = LoggerFactory.getLogger(CompressionResponseStream.class);

    /**
     * The underlying gzip output stream to which we should write data.
     */
    protected OutputStream gzipstream = null;

    /**
     * Has this stream been closed?
     */
    protected boolean closed = false;

    /**
     * The response with which this servlet output stream is associated.
     */
    protected HttpServletResponse response = null;

    /**
     * Construct a servlet output stream associated with the specified Response.
     * 
     * @param response
     *                The associated response
     */
    public CompressionResponseStream(HttpServletResponse response, final int compressionLevel, final int compressionStrategy) throws IOException {
        this.closed = false;
        this.response = response;
        response.addHeader("Content-Encoding", "gzip");
        gzipstream = new GZIPOutputStream(response.getOutputStream()) {
            {
                this.def.setLevel(compressionLevel);
                this.def.setStrategy(compressionStrategy);
            }
        };
    }

    /**
     * Close this output stream, causing any buffered data to be flushed and any
     * further output data to throw an IOException.
     */
    public void close() throws IOException {

        if (closed) {
            return;
        }

        if (gzipstream != null) {
            gzipstream.close();
            gzipstream = null;
        }

        closed = true;

    }

    /**
     * Flush any buffered data for this output stream, which also causes the
     * response to be committed.
     */
    public void flush() throws IOException {
        if (closed) {
            return;
        }

        if (gzipstream != null) {
            gzipstream.flush();
        }

    }

    /**
     * Write the specified byte to our output stream.
     * 
     * @param b
     *                The byte to be written
     * 
     * @exception IOException
     *                    if an input/output error occurs
     */
    public void write(int b) throws IOException {
        if (closed) {
            return;
        }

        write(new byte[] { (byte) b });

    }

    /**
     * Write b.length bytes from the specified byte array to our
     * output stream.
     * 
     * @param b
     *                The byte array to be written
     * 
     * @exception IOException
     *                    if an input/output error occurs
     */
    public void write(byte b[]) throws IOException {
        write(b, 0, b.length);
    }

    /**
     * Write len bytes from the specified byte array, starting at
     * the specified offset, to our output stream.
     * 
     * @param b
     *                The byte array containing the bytes to be written
     * @param off
     *                Zero-relative starting offset of the bytes to be written
     * @param len
     *                The number of bytes to be written
     * 
     * @exception IOException
     *                    if an input/output error occurs
     */
    public void write(byte b[], int off, int len) throws IOException {
        if (closed || len == 0) {
            return;
        }

        gzipstream.write(b, off, len);
    }

    /**
     * Has this response stream been closed?
     */
    public boolean closed() {
        return this.closed;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy