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

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

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

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

import org.archive.util.binsearch.AbstractSeekableLineReader;
import org.archive.util.binsearch.ByteBufferInputStream;

import com.google.common.io.ByteStreams;

public class MappedSeekableLineReader extends AbstractSeekableLineReader {

    private ByteBufferInputStream bbis;

    public MappedSeekableLineReader(ByteBufferInputStream bbis, int blockSize) throws IOException {
        super(blockSize);
        this.bbis = bbis;
    }
    
    public long getOffset() throws IOException
    {
        if (closed) {
            return 0;
        }
        
        return bbis.position();
    }
    
    @Override
    protected InputStream doSeekLoad(long offset, int maxLength)
            throws IOException {
        
        bbis.position(offset);
        
        if (maxLength > 0) {
            return ByteStreams.limit(bbis, maxLength); 
        } else {
            return bbis;
        }
    }

    @Override
    public long getSize() throws IOException {
        return bbis.length();
    }

    @Override
    protected void doClose() throws IOException {
        bbis = null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy