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

htsjdk.samtools.MemoryMappedFileBuffer Maven / Gradle / Ivy

There is a newer version: 4.1.3
Show newest version
package htsjdk.samtools;

import htsjdk.samtools.util.RuntimeIOException;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.nio.ByteOrder;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;

/**
 * Traditional implementation of BAM index file access using memory mapped files.
 */
class MemoryMappedFileBuffer implements IndexFileBuffer {
    private MappedByteBuffer mFileBuffer;

    MemoryMappedFileBuffer(final File file) {
        try {
            // Open the file stream.
            final FileInputStream fileStream = new FileInputStream(file);
            final FileChannel fileChannel = fileStream.getChannel();
            mFileBuffer = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0L, fileChannel.size());
            mFileBuffer.order(ByteOrder.LITTLE_ENDIAN);
            fileChannel.close();
            fileStream.close();
        } catch (final IOException exc) {
            throw new RuntimeIOException(exc.getMessage(), exc);
        }
    }

    @Override
    public void readBytes(final byte[] bytes) {
        mFileBuffer.get(bytes);
    }

    @Override
    public int readInteger() {
        return mFileBuffer.getInt();
    }

    @Override
    public long readLong() {
        return mFileBuffer.getLong();
    }

    @Override
    public void skipBytes(final int count) {
        mFileBuffer.position(mFileBuffer.position() + count);
    }

    @Override
    public void seek(final long position) {
        mFileBuffer.position((int)position);
    }

    @Override
    public long position() {
        return mFileBuffer.position();
    }

    @Override
    public void close() {
        mFileBuffer = null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy