/*
 * Copyright (c) 2011, 2017 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://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: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package org.glassfish.grizzly.http.server;

import java.io.IOException;
import java.nio.CharBuffer;
import org.glassfish.grizzly.Cacheable;
import org.glassfish.grizzly.ReadHandler;
import org.glassfish.grizzly.http.io.InputBuffer;
import org.glassfish.grizzly.http.io.NIOReader;

NIOReader implementation based on InputBuffer.
Author:Ryan Lubke, Alexey Stashok
/** * {@link NIOReader} implementation based on {@link InputBuffer}. * * @author Ryan Lubke * @author Alexey Stashok */
final class NIOReaderImpl extends NIOReader implements Cacheable { private InputBuffer inputBuffer; // ----------------------------------------------------- Methods from Reader
{@inheritDoc}
/** * {@inheritDoc} */
@Override public int read(final CharBuffer target) throws IOException { return inputBuffer.read(target); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public int read() throws IOException { return inputBuffer.readChar(); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public int read(final char[] cbuf) throws IOException { return inputBuffer.read(cbuf, 0, cbuf.length); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public long skip(final long n) throws IOException { return inputBuffer.skip(n); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public boolean ready() throws IOException { return isReady(); }
This Reader implementation supports marking.
Returns:true
/** * This {@link java.io.Reader} implementation supports marking. * * @return <code>true</code> */
@Override public boolean markSupported() { return true; }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public void mark(int readAheadLimit) throws IOException { inputBuffer.mark(readAheadLimit); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public void reset() throws IOException { inputBuffer.reset(); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public int read(final char[] cbuf, final int off, final int len) throws IOException { return inputBuffer.read(cbuf, off, len); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public void close() throws IOException { inputBuffer.close(); } // --------------------------------------------- Methods from InputSource
{@inheritDoc}
/** * {@inheritDoc} */
@Override public void notifyAvailable(final ReadHandler handler) { inputBuffer.notifyAvailable(handler); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public void notifyAvailable(final ReadHandler handler, final int size) { inputBuffer.notifyAvailable(handler, size); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public boolean isFinished() { return inputBuffer.isFinished(); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public int readyData() { return inputBuffer.availableChar(); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public boolean isReady() { return readyData() > 0; } // -------------------------------------------------- Methods from Cacheable
{@inheritDoc}
/** * {@inheritDoc} */
@Override public void recycle() { inputBuffer = null; } // ---------------------------------------------------------- Public Methods public void setInputBuffer(final InputBuffer inputBuffer) { this.inputBuffer = inputBuffer; } }