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

org.archive.util.binsearch.impl.RandomAccessFileSeekableLineReaderFactory Maven / Gradle / Ivy

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

import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;

import org.archive.util.binsearch.SeekableLineReader;
import org.archive.util.binsearch.SeekableLineReaderFactory;

public class RandomAccessFileSeekableLineReaderFactory implements SeekableLineReaderFactory {
	private File file;
	private int blockSize = BINSEARCH_BLOCK_SIZE;
	
	public RandomAccessFileSeekableLineReaderFactory(File file) {
		this.file = file;
	}
	public RandomAccessFileSeekableLineReaderFactory(File file, int blockSize) {
		this.file = file;
		this.blockSize = blockSize;
	}
	public SeekableLineReader get() throws IOException {
		return new RandomAccessFileSeekableLineReader(new RandomAccessFile(file, "r"),
				blockSize);
	}
	public void close() throws IOException {
		this.file = null;
	}
	
	public long getModTime()
	{
		return file.lastModified();
	}
	
	@Override
    public void reload() throws IOException {
		//RAF created each time, nothing to reload
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy