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

com.thelastcheck.commons.buffer.ByteArrayReader Maven / Gradle / Ivy

Go to download

The buffer management utilities used for managing streams of bytes that need to be treated as structured data. These are typically used to map structured records in files to and from systems that use these files types, i.e. IBM mainframe systems.

There is a newer version: 2.5.2
Show newest version
/* 
 *  Copyright 2009 The Last Check, LLC, All Rights Reserved
 *
 *  Licensed 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 com.thelastcheck.commons.buffer;

import java.io.IOException;
import java.io.Reader;

import org.slf4j.LoggerFactory;

/**
 * @author Jerry Bowman
 * @copyright (c) 2009, The Last Check, All Rights Reserved.
 * @version $Date: 2010/11/15 17:42:05 $ $Revision: 1.4 $
 */
public class ByteArrayReader extends Reader {
    private static final String CVS_ID = "$Date: 2010/11/15 17:42:05 $ $Revision: 1.4 $";
    static {
        String className = ByteArrayReader.class.getName();
        LoggerFactory.getLogger("version").info(className + " | " + CVS_ID);
    }

    private ByteArray           buffer;
    private int                 limit;
    private int                 position;
    private int                 mark;

    /**
     * Create a new Reader that will return data from a ByteArray. This reader
     * assumes that the ByteArray is a stream of ASCII or EBCDIC characters
     * based on the encoding scheme for the ByteArray. All data is returned from
     * the read routines as Unicode characters.
     */
    public ByteArrayReader(ByteArray buffer) {
        this.buffer = buffer;
        this.position = 0;
        this.limit = buffer.getLength();
    }

    /*
     * (non-Javadoc)
     * 
     * @see java.io.Reader#close()
     */
    @Override
    public void close() throws IOException {
        buffer = null;
    }

    /**
     * Return the total number of bytes read from the ByteArray using the read
     * methods.
     * 
     * @return total bytes read
     */
    public int getTotalBytesRead() {
        return position;
    }

    /*
     * (non-Javadoc)
     * 
     * @see java.io.Reader#read(char[], int, int)
     */
    @Override
    public int read(char[] cbuf, int off, int len) throws IOException {
        ensureOpen();
        if (position >= limit) {
            return -1;
        }
        int bytesRead = buffer.read(position, cbuf, off, len);
        position += bytesRead;
        return bytesRead;
    }

    /**
     * Read a single character.
     * 
     * @return The character read, or -1 if the end of the stream has been
     *         reached
     * 
     * @exception IOException
     *                If an I/O error occurs
     */
    public int read() throws IOException {
        ensureOpen();
        if (position >= limit) {
            return -1;
        }
        return buffer.readAsChar(position++);
    }

    /** Check to make sure that the stream has not been closed */
    private void ensureOpen() throws IOException {
        if (buffer == null)
            throw new IOException("Stream closed");
    }

    /**
     * Tell whether this stream is ready to be read.
     * 
     * @return True if the next read() is guaranteed not to block for input
     * 
     * @exception IOException
     *                If the stream is closed
     */
    public boolean ready() throws IOException {
        ensureOpen();
        return true;
    }

    /**
     * Skips the specified number of characters in the stream. Returns the
     * number of characters that were skipped.
     * 
     * 

* The ns parameter may be negative, even though the * skip method of the {@link Reader} superclass throws an * exception in this case. Negative values of ns cause the * stream to skip backwards. Negative return values indicate a skip * backwards. It is not possible to skip backwards past the beginning of the * string. * *

* If the entire string has been read or skipped, then this method has no * effect and always returns 0. * * @exception IOException * If an I/O error occurs */ public long skip(long ns) throws IOException { ensureOpen(); if (position >= limit) return 0; // Bound skip by beginning and end of the source long n = Math.min(limit - position, ns); n = Math.max(-position, n); position += n; return n; } /** * Tell whether this stream supports the mark() operation, which it does. */ public boolean markSupported() { return true; } /** * Mark the present position in the stream. Subsequent calls to reset() will * reposition the stream to this point. * * @param readAheadLimit * Limit on the number of characters that may be read while still * preserving the mark. Because the stream's input comes from a * ByteArray, there is no actual limit, so this argument must not * be negative, but is otherwise ignored. * * @exception IllegalArgumentException * If readAheadLimit is < 0 * @exception IOException * If an I/O error occurs */ public void mark(int readAheadLimit) throws IOException { if (readAheadLimit < 0) { throw new IllegalArgumentException("Read-ahead limit < 0"); } ensureOpen(); mark = position; } /** * Reset the stream to the most recent mark, or to the beginning of the * string if it has never been marked. * * @exception IOException * If an I/O error occurs */ public void reset() throws IOException { ensureOpen(); position = mark; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy