//
// ========================================================================
// Copyright (c) 1995-2020 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under
// the terms of the Eclipse Public License 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0
//
// This Source Code may also be made available under the following
// Secondary Licenses when the conditions for such availability set
// forth in the Eclipse Public License, v. 2.0 are satisfied:
// the Apache License v2.0 which is available at
// https://www.apache.org/licenses/LICENSE-2.0
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//

package org.eclipse.jetty.server.handler.gzip;

import java.nio.ByteBuffer;

import org.eclipse.jetty.http.GZIPContentDecoder;
import org.eclipse.jetty.io.ByteBufferPool;
import org.eclipse.jetty.server.HttpInput;
import org.eclipse.jetty.server.HttpInput.Content;
import org.eclipse.jetty.util.component.Destroyable;
import org.eclipse.jetty.util.compression.InflaterPool;

An HttpInput Interceptor that inflates GZIP encoded request content.
/** * An HttpInput Interceptor that inflates GZIP encoded request content. */
public class GzipHttpInputInterceptor implements HttpInput.Interceptor, Destroyable { private final Decoder _decoder; private ByteBuffer _chunk; public GzipHttpInputInterceptor(InflaterPool inflaterPool, ByteBufferPool pool, int bufferSize) { _decoder = new Decoder(inflaterPool, pool, bufferSize); } @Override public Content readFrom(Content content) { _decoder.decodeChunks(content.getByteBuffer()); final ByteBuffer chunk = _chunk; if (chunk == null) return null; return new Content(chunk) { @Override public void succeeded() { _decoder.release(chunk); } @Override public void failed(Throwable x) { _decoder.release(chunk); } }; } @Override public void destroy() { _decoder.destroy(); } private class Decoder extends GZIPContentDecoder { private Decoder(InflaterPool inflaterPool, ByteBufferPool bufferPool, int bufferSize) { super(inflaterPool, bufferPool, bufferSize); } @Override protected boolean decodedChunk(final ByteBuffer chunk) { _chunk = chunk; return true; } @Override public void decodeChunks(ByteBuffer compressed) { _chunk = null; super.decodeChunks(compressed); } } }