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

org.ajax4jsf.io.FastBufferInputStream Maven / Gradle / Ivy

The newest version!
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2013, Red Hat, Inc. and individual contributors
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.ajax4jsf.io;

import java.io.IOException;
import java.io.InputStream;

/**
 * Class for reading from a byte array chain.
 *
 * @author glory
 */
public class FastBufferInputStream extends InputStream {
    /**
     * Currently read link.
     */
    ByteBuffer current;
    /**
     * The first link in the chain of char arrays.
     */
    ByteBuffer firstLink;
    /**
     * Position of next byte in current link.
     */
    int index;
    int mark;

    public FastBufferInputStream(ByteBuffer byteBuffer) {
        this.firstLink = byteBuffer;
        current = byteBuffer;
        index = 0;
        mark = 0;
    }

    /**
     * Creates instance of FastBufferInputStream.
     *
     * @param stream
     */
    @Deprecated
    public FastBufferInputStream(FastBufferOutputStream stream) {
        this(stream.getFirstBuffer());
    }

    /**
     * @see java.io.InputStream#read()
     */
    public int read() throws IOException {
        if (current == null) {
            return -1;
        }

        if (current.getUsedSize() <= index) {
            current = current.getNext();

            if (current == null) {
                return -1;
            }

            index = 0;
        }

        byte c = current.getByteAt(index);

        index++;

        return c;
    }

    /**
     * @see java.io.InputStream#read(byte [])
     */
    @Override
    public int read(byte[] b) throws IOException {
        if (b == null) {
            throw new NullPointerException();
        }

        if (current == null) {
            return -1;
        }

        int off = 0;
        int len = b.length;
        int actuallyRead = 0;

        while ((current != null) && (len > 0)) {
            int av = current.getUsedSize() - index;

            if (av <= 0) {
                current = current.getNext();
                index = 0;

                continue;
            }

            if (av > len) {
                av = len;
            }

            System.arraycopy(current.getBytes(), index, b, off, av);
            index += av;
            off += av;
            actuallyRead += av;
            len -= av;
        }

        return (actuallyRead == 0) ? -1 : actuallyRead;
    }

    /**
     * @see java.io.InputStream#read(byte [], int, int)
     */
    @Override
    public int read(byte[] b, int off, int len) throws IOException {
        if (b == null) {
            throw new NullPointerException();
        } else if ((off < 0) || (off > b.length) || (len < 0) || ((off + len) > b.length) || ((off + len) < 0)) {
            throw new IndexOutOfBoundsException();
        } else if (len == 0) {
            return 0;
        }

        if (current == null) {
            return -1;
        }

        int actuallyRead = 0;

        while ((current != null) && (len > 0)) {
            int av = current.getUsedSize() - index;

            if (av <= 0) {
                current = current.getNext();
                index = 0;

                continue;
            }

            if (av > len) {
                av = len;
            }

            System.arraycopy(current.getBytes(), index, b, off, av);
            index += av;
            off += av;
            actuallyRead += av;
            len -= av;
        }

        return (actuallyRead == 0) ? -1 : actuallyRead;
    }

    /**
     * @see java.io.InputStream#available()
     */
    public int available() throws IOException {
        if (current == null) {
            return 0;
        }

        ByteBuffer b = current;
        int result = -index;

        while (b != null) {
            result += b.getUsedSize();
            b = b.getNext();
        }

        return result;
    }

    /**
     * @see java.io.InputStream#mark(int)
     */
    public void mark(int readAheadLimit) {
        if (current == null) {
            mark = 0;
        } else {
            mark = index;

            ByteBuffer b = current.getPrevious();

            if (b != null) {
                mark += b.getTotalSize();
            }
        }
    }

    /**
     * @see java.io.InputStream#reset()
     */
    public void reset() {
        if (current == null) {
            current = firstLink;
        }

        int m = 0;

        while ((current != null) && (current.getUsedSize() + m <= mark)) {
            m += current.getUsedSize();
            current = current.getNext();
        }

        if (current != null) {
            index = mark - m;
        }
    }

    /**
     * @see java.io.InputStream#skip(long)
     */
    public long skip(long n) throws IOException {
        long skipped = 0;

        while (n > 0) {
            if (current == null) {
                return 0;
            }

            if (current.getUsedSize() - index <= n) {
                index += n;
                skipped += n;

                break;
            } else {
                int dn = current.getUsedSize() - index;

                skipped += dn;
                n -= dn;
                current = current.getNext();
                index = 0;
            }
        }

        return skipped;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy