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

org.archive.util.io.EOFNotifyingInputStream Maven / Gradle / Ivy

There is a newer version: 1.1.9
Show newest version
package org.archive.util.io;

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

public class EOFNotifyingInputStream extends FilterInputStream {
	EOFObserver observer;
	boolean notified = false;
	public EOFNotifyingInputStream(InputStream in, EOFObserver observer) {
		super(in);
		this.observer = observer;
	}
	private void doNotify() throws IOException {
		if(!notified) {
			notified = true;
			if(observer != null) {
				observer.notifyEOF();
			}
		}
	}
	
	@Override
	public int read() throws IOException {
		int amtRead = super.read();
		if(amtRead == -1) {
			doNotify();
		}
		return amtRead;
	}

	@Override
	public int read(byte[] b) throws IOException {
		return read(b,0,b.length);
	}

	@Override
	public int read(byte[] b, int off, int len) throws IOException {
		int amtRead = super.read(b, off, len);
		if(amtRead == -1) {
			doNotify();
		}
		return amtRead;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy