/* * JBoss, Home of Professional Open Source. * Copyright 2012, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.infinispan.io; import org.infinispan.Cache; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.channels.ClosedChannelException; import java.nio.channels.ReadableByteChannel; /** * @author Marko Luksa */ public class ReadableGridFileChannel implements ReadableByteChannel { private int position = 0; private int localIndex = 0; private byte[] currentBuffer; private boolean closed; private FileChunkMapper fileChunkMapper; private long fileLength; ReadableGridFileChannel(GridFile file, Cache<String, byte[]> cache) { fileChunkMapper = new FileChunkMapper(file, cache); fileLength = (int) file.length(); } @Override public int read(ByteBuffer dst) throws IOException { int bytesRead = 0; long len = Math.min(dst.remaining(), getTotalBytesRemaining()); while (len > 0) { int bytesReadFromChunk = readFromChunk(dst, len); len -= bytesReadFromChunk; bytesRead += bytesReadFromChunk; } return bytesRead; } private int readFromChunk(ByteBuffer dst, long len) { int bytesRemaining = getBytesRemainingInChunk(); if (bytesRemaining == 0) { fetchNextChunk(); bytesRemaining = getBytesRemainingInChunk(); } int bytesToRead = Math.min((int)len, bytesRemaining); dst.put(currentBuffer, localIndex, bytesToRead); position += bytesToRead; localIndex += bytesToRead; return bytesToRead; } private void fetchNextChunk() { int chunkNumber = getChunkNumber(position); currentBuffer = fileChunkMapper.fetchChunk(chunkNumber); localIndex = 0; } private long getTotalBytesRemaining() { return fileLength - position; } @Override public boolean isOpen() { return !closed; } @Override public void close() throws IOException { reset(); closed = true; } public long position() throws IOException { checkOpen(); return position; } public void position(long newPosition) throws IOException { if (newPosition < 0) { throw new IllegalArgumentException("newPosition may not be negative"); } checkOpen(); int newPos = (int) newPosition; int chunkNumberOfNewPosition = getChunkNumber(newPos); if (getChunkNumber(position - 1) != chunkNumberOfNewPosition) { currentBuffer = fileChunkMapper.fetchChunk(chunkNumberOfNewPosition); } position = newPos; localIndex = newPos % getChunkSize(); } private void checkOpen() throws ClosedChannelException { if (!isOpen()) { throw new ClosedChannelException(); } } public long size() throws IOException { return fileLength; } private int getChunkNumber(int position) { return position < 0 ? -1 : (position / getChunkSize()); } private int getChunkSize() { return fileChunkMapper.getChunkSize(); } private void reset() { position = localIndex = 0; } private int getBytesRemainingInChunk() { return currentBuffer == null ? 0 : currentBuffer.length - localIndex; } }