/*
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements.  See the NOTICE file distributed with
 *  this work for additional information regarding copyright ownership.
 *  The ASF licenses this file to You under the Apache License, Version 2.0
 *  (the "License"); you may not use this file except in compliance with
 *  the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  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.apache.coyote.http11.filters;

import java.io.IOException;
import java.nio.ByteBuffer;

import org.apache.coyote.Response;
import org.apache.coyote.http11.HttpOutputBuffer;
import org.apache.coyote.http11.OutputFilter;

Identity output filter.
Author:Remy Maucherat
/** * Identity output filter. * * @author Remy Maucherat */
public class IdentityOutputFilter implements OutputFilter { // ----------------------------------------------------- Instance Variables
Content length.
/** * Content length. */
protected long contentLength = -1;
Remaining bytes.
/** * Remaining bytes. */
protected long remaining = 0;
Next buffer in the pipeline.
/** * Next buffer in the pipeline. */
protected HttpOutputBuffer buffer; // --------------------------------------------------- OutputBuffer Methods @Override public int doWrite(ByteBuffer chunk) throws IOException { int result = -1; if (contentLength >= 0) { if (remaining > 0) { result = chunk.remaining(); if (result > remaining) { // The chunk is longer than the number of bytes remaining // in the body; changing the chunk length to the number // of bytes remaining chunk.limit(chunk.position() + (int) remaining); result = (int) remaining; remaining = 0; } else { remaining = remaining - result; } buffer.doWrite(chunk); } else { // No more bytes left to be written : return -1 and clear the // buffer chunk.position(0); chunk.limit(0); result = -1; } } else { // If no content length was set, just write the bytes result = chunk.remaining(); buffer.doWrite(chunk); result -= chunk.remaining(); } return result; } @Override public long getBytesWritten() { return buffer.getBytesWritten(); } // --------------------------------------------------- OutputFilter Methods @Override public void setResponse(Response response) { contentLength = response.getContentLengthLong(); remaining = contentLength; } @Override public void setBuffer(HttpOutputBuffer buffer) { this.buffer = buffer; } @Override public void flush() throws IOException { // No data buffered in this filter. Flush next buffer. buffer.flush(); } @Override public void end() throws IOException { buffer.end(); } @Override public void recycle() { contentLength = -1; remaining = 0; } }