|
Commons IO example source code file (NullReader.java)
The Commons IO NullReader.java source code
/*
* 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.commons.io.input;
import java.io.EOFException;
import java.io.IOException;
import java.io.Reader;
/**
* A functional, light weight {@link Reader} that emulates
* a reader of a specified size.
* <p>
* This implementation provides a light weight
* object for testing with an {@link Reader}
* where the contents don't matter.
* <p>
* One use case would be for testing the handling of
* large {@link Reader} as it can emulate that
* scenario without the overhead of actually processing
* large numbers of characters - significantly speeding up
* test execution times.
* <p>
* This implementation returns a space from the method that
* reads a character and leaves the array unchanged in the read
* methods that are passed a character array.
* If alternative data is required the <code>processChar() and
* <code>processChars() methods can be implemented to generate
* data, for example:
*
* <pre>
* public class TestReader extends NullReader {
* public TestReader(int size) {
* super(size);
* }
* protected char processChar() {
* return ... // return required value here
* }
* protected void processChars(char[] chars, int offset, int length) {
* for (int i = offset; i < length; i++) {
* chars[i] = ... // set array value here
* }
* }
* }
* </pre>
*
* @since Commons IO 1.3
* @version $Revision: 736890 $
*/
public class NullReader extends Reader {
private final long size;
private long position;
private long mark = -1;
private long readlimit;
private boolean eof;
private final boolean throwEofException;
private final boolean markSupported;
/**
* Create a {@link Reader} that emulates a specified size
* which supports marking and does not throw EOFException.
*
* @param size The size of the reader to emulate.
*/
public NullReader(long size) {
this(size, true, false);
}
/**
* Create a {@link Reader} that emulates a specified
* size with option settings.
*
* @param size The size of the reader to emulate.
* @param markSupported Whether this instance will support
* the <code>mark() functionality.
* @param throwEofException Whether this implementation
* will throw an {@link EOFException} or return -1 when the
* end of file is reached.
*/
public NullReader(long size, boolean markSupported, boolean throwEofException) {
this.size = size;
this.markSupported = markSupported;
this.throwEofException = throwEofException;
}
/**
* Return the current position.
*
* @return the current position.
*/
public long getPosition() {
return position;
}
/**
* Return the size this {@link Reader} emulates.
*
* @return The size of the reader to emulate.
*/
public long getSize() {
return size;
}
/**
* Close this Reader - resets the internal state to
* the initial values.
*
* @throws IOException If an error occurs.
*/
@Override
public void close() throws IOException {
eof = false;
position = 0;
mark = -1;
}
/**
* Mark the current position.
*
* @param readlimit The number of characters before this marked position
* is invalid.
* @throws UnsupportedOperationException if mark is not supported.
*/
@Override
public synchronized void mark(int readlimit) {
if (!markSupported) {
throw new UnsupportedOperationException("Mark not supported");
}
mark = position;
this.readlimit = readlimit;
}
/**
* Indicates whether <i>mark is supported.
*
* @return Whether <i>mark is supported or not.
*/
@Override
public boolean markSupported() {
return markSupported;
}
/**
* Read a character.
*
* @return Either The character value returned by <code>processChar()
* or <code>-1 if the end of file has been reached and
* <code>throwEofException is set to
Other Commons IO examples (source code examples)Here is a short list of links related to this Commons IO NullReader.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.