/*
 * ====================================================================
 * 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.
 * ====================================================================
 *
 * This software consists of voluntary contributions made by many
 * individuals on behalf of the Apache Software Foundation.  For more
 * information on the Apache Software Foundation, please see
 * <http://www.apache.org/>.
 *
 */

package org.apache.http.impl.nio.reactor;

import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.channels.ReadableByteChannel;
import java.nio.channels.WritableByteChannel;
import java.nio.charset.CharacterCodingException;
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.nio.charset.CoderResult;
import java.nio.charset.CodingErrorAction;

import org.apache.http.MessageConstraintException;
import org.apache.http.config.MessageConstraints;
import org.apache.http.nio.reactor.SessionInputBuffer;
import org.apache.http.nio.util.ByteBufferAllocator;
import org.apache.http.nio.util.ExpandableBuffer;
import org.apache.http.nio.util.HeapByteBufferAllocator;
import org.apache.http.params.CoreProtocolPNames;
import org.apache.http.params.HttpParams;
import org.apache.http.protocol.HTTP;
import org.apache.http.util.Args;
import org.apache.http.util.CharArrayBuffer;
import org.apache.http.util.CharsetUtils;

Default implementation of SessionInputBuffer based on the ExpandableBuffer class.
Since:4.0
/** * Default implementation of {@link SessionInputBuffer} based on * the {@link ExpandableBuffer} class. * * @since 4.0 */
@SuppressWarnings("deprecation") public class SessionInputBufferImpl extends ExpandableBuffer implements SessionInputBuffer { private final CharsetDecoder charDecoder; private final MessageConstraints constraints; private final int lineBufferSize; private CharBuffer charBuffer;
Creates SessionInputBufferImpl instance.
Params:
  • bufferSize – input buffer size.
  • lineBufferSize – buffer size for line operations. Has effect only if charDecoder is not null.
  • charDecoder – CharDecoder to be used for decoding HTTP protocol elements. If null simple type cast will be used for byte to char conversion.
  • constraints – Message constraints. If null MessageConstraints.DEFAULT will be used.
  • allocator – memory allocator. If null HeapByteBufferAllocator.INSTANCE will be used.
Since:4.4
/** * Creates SessionInputBufferImpl instance. * * @param bufferSize input buffer size. * @param lineBufferSize buffer size for line operations. Has effect only if * {@code charDecoder} is not {@code null}. * @param charDecoder CharDecoder to be used for decoding HTTP protocol elements. * If {@code null} simple type cast will be used for byte to char conversion. * @param constraints Message constraints. If {@code null} * {@link MessageConstraints#DEFAULT} will be used. * @param allocator memory allocator. * If {@code null} {@link HeapByteBufferAllocator#INSTANCE} will be used. * * @since 4.4 */
public SessionInputBufferImpl( final int bufferSize, final int lineBufferSize, final MessageConstraints constraints, final CharsetDecoder charDecoder, final ByteBufferAllocator allocator) { super(bufferSize, allocator != null ? allocator : HeapByteBufferAllocator.INSTANCE); this.lineBufferSize = Args.positive(lineBufferSize, "Line buffer size"); this.constraints = constraints != null ? constraints : MessageConstraints.DEFAULT; this.charDecoder = charDecoder; }
Creates SessionInputBufferImpl instance.
Params:
  • bufferSize – input buffer size.
  • lineBufferSize – buffer size for line operations. Has effect only if charDecoder is not null.
  • charDecoder – CharDecoder to be used for decoding HTTP protocol elements. If null simple type cast will be used for byte to char conversion.
  • allocator – memory allocator. If null HeapByteBufferAllocator.INSTANCE will be used.
Since:4.3
/** * Creates SessionInputBufferImpl instance. * * @param bufferSize input buffer size. * @param lineBufferSize buffer size for line operations. Has effect only if * {@code charDecoder} is not {@code null}. * @param charDecoder CharDecoder to be used for decoding HTTP protocol elements. * If {@code null} simple type cast will be used for byte to char conversion. * @param allocator memory allocator. * If {@code null} {@link HeapByteBufferAllocator#INSTANCE} will be used. * * @since 4.3 */
public SessionInputBufferImpl( final int bufferSize, final int lineBufferSize, final CharsetDecoder charDecoder, final ByteBufferAllocator allocator) { this(bufferSize, lineBufferSize, null, charDecoder, allocator); }
Deprecated:(4.3) use SessionInputBufferImpl(int, int, CharsetDecoder, ByteBufferAllocator)
/** * @deprecated (4.3) use * {@link SessionInputBufferImpl#SessionInputBufferImpl(int, int, CharsetDecoder, * ByteBufferAllocator)} */
@Deprecated public SessionInputBufferImpl( final int bufferSize, final int lineBufferSize, final ByteBufferAllocator allocator, final HttpParams params) { super(bufferSize, allocator); this.lineBufferSize = Args.positive(lineBufferSize, "Line buffer size"); final String charsetName = (String) params.getParameter(CoreProtocolPNames.HTTP_ELEMENT_CHARSET); final Charset charset = CharsetUtils.lookup(charsetName); if (charset != null) { this.charDecoder = charset.newDecoder(); final CodingErrorAction a1 = (CodingErrorAction) params.getParameter( CoreProtocolPNames.HTTP_MALFORMED_INPUT_ACTION); this.charDecoder.onMalformedInput(a1 != null ? a1 : CodingErrorAction.REPORT); final CodingErrorAction a2 = (CodingErrorAction) params.getParameter( CoreProtocolPNames.HTTP_UNMAPPABLE_INPUT_ACTION); this.charDecoder.onUnmappableCharacter(a2 != null? a2 : CodingErrorAction.REPORT); } else { this.charDecoder = null; } this.constraints = MessageConstraints.DEFAULT; }
Deprecated:(4.3) use SessionInputBufferImpl(int, int, Charset)
/** * @deprecated (4.3) use * {@link SessionInputBufferImpl#SessionInputBufferImpl(int, int, Charset)} */
@Deprecated public SessionInputBufferImpl( final int bufferSize, final int lineBufferSize, final HttpParams params) { this(bufferSize, lineBufferSize, HeapByteBufferAllocator.INSTANCE, params); }
Creates SessionInputBufferImpl instance.
Params:
  • bufferSize – input buffer size.
  • lineBufferSize – buffer size for line operations. Has effect only if charset is not null.
  • charset – Charset to be used for decoding HTTP protocol elements. If null simple type cast will be used for byte to char conversion.
Since:4.3
/** * Creates SessionInputBufferImpl instance. * * @param bufferSize input buffer size. * @param lineBufferSize buffer size for line operations. Has effect only if * {@code charset} is not {@code null}. * @param charset Charset to be used for decoding HTTP protocol elements. * If {@code null} simple type cast will be used for byte to char conversion. * * @since 4.3 */
public SessionInputBufferImpl( final int bufferSize, final int lineBufferSize, final Charset charset) { this(bufferSize, lineBufferSize, null, charset != null ? charset.newDecoder() : null, HeapByteBufferAllocator.INSTANCE); }
Creates SessionInputBufferImpl instance.
Params:
  • bufferSize – input buffer size.
  • lineBufferSize – buffer size for line operations. Has effect only if charset is not null.
  • charset – Charset to be used for decoding HTTP protocol elements. If null simple type cast will be used for byte to char conversion.
  • constraints – Message constraints. If null MessageConstraints.DEFAULT will be used.
Since:4.3
/** * Creates SessionInputBufferImpl instance. * * @param bufferSize input buffer size. * @param lineBufferSize buffer size for line operations. Has effect only if * {@code charset} is not {@code null}. * @param charset Charset to be used for decoding HTTP protocol elements. * If {@code null} simple type cast will be used for byte to char conversion. * @param constraints Message constraints. If {@code null} * {@link MessageConstraints#DEFAULT} will be used. * * @since 4.3 */
public SessionInputBufferImpl( final int bufferSize, final int lineBufferSize, final MessageConstraints constraints, final Charset charset) { this(bufferSize, lineBufferSize, constraints, charset != null ? charset.newDecoder() : null, HeapByteBufferAllocator.INSTANCE); }
Creates SessionInputBufferImpl instance.
Params:
  • bufferSize – input buffer size.
  • lineBufferSize – buffer size for line operations.
Since:4.3
/** * Creates SessionInputBufferImpl instance. * * @param bufferSize input buffer size. * @param lineBufferSize buffer size for line operations. * * @since 4.3 */
public SessionInputBufferImpl( final int bufferSize, final int lineBufferSize) { this(bufferSize, lineBufferSize, null, null, HeapByteBufferAllocator.INSTANCE); }
Creates SessionInputBufferImpl instance.
Params:
  • bufferSize – input buffer size.
Since:4.3
/** * Creates SessionInputBufferImpl instance. * * @param bufferSize input buffer size. * * @since 4.3 */
public SessionInputBufferImpl(final int bufferSize) { this(bufferSize, 256, null, null, HeapByteBufferAllocator.INSTANCE); } @Override public int fill(final ReadableByteChannel channel) throws IOException { Args.notNull(channel, "Channel"); setInputMode(); if (!this.buffer.hasRemaining()) { expand(); } return channel.read(this.buffer); } @Override public int read() { setOutputMode(); return this.buffer.get() & 0xff; } @Override public int read(final ByteBuffer dst, final int maxLen) { if (dst == null) { return 0; } setOutputMode(); final int len = Math.min(dst.remaining(), maxLen); final int chunk = Math.min(this.buffer.remaining(), len); if (this.buffer.remaining() > chunk) { final int oldLimit = this.buffer.limit(); final int newLimit = this.buffer.position() + chunk; this.buffer.limit(newLimit); dst.put(this.buffer); this.buffer.limit(oldLimit); return len; } dst.put(this.buffer); return chunk; } @Override public int read(final ByteBuffer dst) { if (dst == null) { return 0; } return read(dst, dst.remaining()); } @Override public int read(final WritableByteChannel dst, final int maxLen) throws IOException { if (dst == null) { return 0; } setOutputMode(); final int bytesRead; if (this.buffer.remaining() > maxLen) { final int oldLimit = this.buffer.limit(); final int newLimit = oldLimit - (this.buffer.remaining() - maxLen); this.buffer.limit(newLimit); bytesRead = dst.write(this.buffer); this.buffer.limit(oldLimit); } else { bytesRead = dst.write(this.buffer); } return bytesRead; } @Override public int read(final WritableByteChannel dst) throws IOException { if (dst == null) { return 0; } setOutputMode(); return dst.write(this.buffer); } @Override public boolean readLine( final CharArrayBuffer lineBuffer, final boolean endOfStream) throws CharacterCodingException { setOutputMode(); // See if there is LF char present in the buffer int pos = -1; for (int i = this.buffer.position(); i < this.buffer.limit(); i++) { final int b = this.buffer.get(i); if (b == HTTP.LF) { pos = i + 1; break; } } final int maxLineLen = this.constraints.getMaxLineLength(); if (maxLineLen > 0) { final int currentLen = (pos > 0 ? pos : this.buffer.limit()) - this.buffer.position(); if (currentLen >= maxLineLen) { throw new MessageConstraintException("Maximum line length limit exceeded"); } } if (pos == -1) { if (endOfStream && this.buffer.hasRemaining()) { // No more data. Get the rest pos = this.buffer.limit(); } else { // Either no complete line present in the buffer // or no more data is expected return false; } } final int origLimit = this.buffer.limit(); this.buffer.limit(pos); final int requiredCapacity = this.buffer.limit() - this.buffer.position(); // Ensure capacity of len assuming ASCII as the most likely charset lineBuffer.ensureCapacity(requiredCapacity); if (this.charDecoder == null) { if (this.buffer.hasArray()) { final byte[] b = this.buffer.array(); final int off = this.buffer.position(); final int len = this.buffer.remaining(); lineBuffer.append(b, off, len); this.buffer.position(off + len); } else { while (this.buffer.hasRemaining()) { lineBuffer.append((char) (this.buffer.get() & 0xff)); } } } else { if (this.charBuffer == null) { this.charBuffer = CharBuffer.allocate(this.lineBufferSize); } this.charDecoder.reset(); for (;;) { final CoderResult result = this.charDecoder.decode( this.buffer, this.charBuffer, true); if (result.isError()) { result.throwException(); } if (result.isOverflow()) { this.charBuffer.flip(); lineBuffer.append( this.charBuffer.array(), this.charBuffer.position(), this.charBuffer.remaining()); this.charBuffer.clear(); } if (result.isUnderflow()) { break; } } // flush the decoder this.charDecoder.flush(this.charBuffer); this.charBuffer.flip(); // append the decoded content to the line buffer if (this.charBuffer.hasRemaining()) { lineBuffer.append( this.charBuffer.array(), this.charBuffer.position(), this.charBuffer.remaining()); } } this.buffer.limit(origLimit); // discard LF if found int len = lineBuffer.length(); if (len > 0) { if (lineBuffer.charAt(len - 1) == HTTP.LF) { len--; lineBuffer.setLength(len); } // discard CR if found if (len > 0) { if (lineBuffer.charAt(len - 1) == HTTP.CR) { len--; lineBuffer.setLength(len); } } } return true; } @Override public String readLine(final boolean endOfStream) throws CharacterCodingException { final CharArrayBuffer tmpBuffer = new CharArrayBuffer(64); final boolean found = readLine(tmpBuffer, endOfStream); return found ? tmpBuffer.toString() : null; } }