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

aQute.lib.io.CharBufferReader Maven / Gradle / Ivy

The newest version!
package aQute.lib.io;

import java.io.Reader;
import java.nio.CharBuffer;

public class CharBufferReader extends Reader {
	private final CharBuffer cb;

	public CharBufferReader(CharBuffer buffer) {
		buffer.mark();
		cb = buffer;
	}

	@Override
	public int read(char[] cbuf, int off, int len) {
		int remaining = cb.remaining();
		if (remaining <= 0) {
			return -1;
		}
		int length = Math.min(len, remaining);
		cb.get(cbuf, off, length);
		return length;
	}

	@Override
	public void close() {
		cb.position(cb.limit());
	}

	@Override
	public int read() {
		if (!cb.hasRemaining()) {
			return -1;
		}
		return cb.get();
	}

	@Override
	public long skip(long n) {
		if (n < 0L) {
			return 0L;
		}
		int skipped = Math.min((int) n, cb.remaining());
		cb.position(cb.position() + skipped);
		return skipped;
	}

	@Override
	public boolean ready() {
		return true;
	}

	@Override
	public boolean markSupported() {
		return true;
	}

	@Override
	public void mark(int readAheadLimit) {
		cb.mark();
	}

	@Override
	public void reset() {
		cb.reset();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy