eu.stratosphere.nephele.services.iomanager.BlockChannelAccess Maven / Gradle / Ivy
/***********************************************************************************************************************
* Copyright (C) 2010-2013 by the Stratosphere project (http://stratosphere.eu)
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
**********************************************************************************************************************/
package eu.stratosphere.nephele.services.iomanager;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.util.Collection;
import java.util.concurrent.atomic.AtomicInteger;
import eu.stratosphere.core.memory.MemorySegment;
/**
* A base class for readers and writers that accept read or write requests for whole blocks.
* The request is delegated to an asynchronous I/O thread. After completion of the I/O request, the memory
* segment of the block is added to a collection to be returned.
*
* The asynchrony of the access makes it possible to implement read-ahead or write-behind types of I/O accesses.
*
*
* @param The type of request (e.g. ReadRequest or WriteRequest issued by this access to
* the I/O threads.
* @param The type of collection used to collect the segments from completed requests. Those segments are for
* example for write requests the written and reusable segments, and for read requests the now full
* and usable segments. The collection type may for example be a synchronized queue or an unsynchronized
* list.
*/
public abstract class BlockChannelAccess> extends ChannelAccess
{
/**
* The lock that is used during closing to synchronize the thread that waits for all
* requests to be handled with the asynchronous I/O thread.
*/
protected final Object closeLock = new Object();
/**
* An atomic integer that counts the number of buffers we still wait for to return.
*/
protected final AtomicInteger requestsNotReturned = new AtomicInteger(0);
/**
* The collection gathering the processed buffers that are ready to be (re)used.
*/
protected final C returnBuffers;
/**
* Flag marking this channel as closed;
*/
protected volatile boolean closed;
// --------------------------------------------------------------------------------------------
/**
* Creates a new channel access to the path indicated by the given ID. The channel accepts buffers to be
* read/written and hands them to the asynchronous I/O thread. After being processed, the buffers
* are returned by adding the to the given queue.
*
* @param channelID The id describing the path of the file that the channel accessed.
* @param requestQueue The queue that this channel hands its IO requests to.
* @param returnQueue The queue to which the segments are added after their buffer was written.
* @param writeEnabled Flag describing whether the channel should be opened in read/write mode, rather
* than in read-only mode.
* @throws IOException Thrown, if the channel could no be opened.
*/
protected BlockChannelAccess(Channel.ID channelID, RequestQueue requestQueue,
C returnQueue, boolean writeEnabled)
throws IOException
{
super(channelID, requestQueue, writeEnabled);
if (requestQueue == null) {
throw new NullPointerException();
}
this.returnBuffers = returnQueue;
}
// --------------------------------------------------------------------------------------------
/**
* Gets the queue (or list) to which the asynchronous reader adds its elements.
*
* @return The queue (or list) to which the asynchronous reader adds its elements.
*/
public C getReturnQueue()
{
return this.returnBuffers;
}
@Override
public boolean isClosed()
{
return this.closed;
}
/**
* Closes the reader and waits until all pending asynchronous requests are
* handled. Even if an exception interrupts the closing, the underlying FileChannel is
* closed.
*
* @throws IOException Thrown, if an I/O exception occurred while waiting for the buffers, or if
* the closing was interrupted.
*/
public void close() throws IOException
{
// atomically set the close flag
synchronized (this.closeLock) {
if (this.closed) {
return;
}
this.closed = true;
try {
// wait until as many buffers have been returned as were written
// only then is everything guaranteed to be consistent.{
while (this.requestsNotReturned.get() > 0) {
try {
// we add a timeout here, because it is not guaranteed that the
// decrementing during buffer return and the check here are deadlock free.
// the deadlock situation is however unlikely and caught by the timeout
this.closeLock.wait(1000);
checkErroneous();
}
catch (InterruptedException iex) {
throw new IOException("Block channel access was interrupted while closing.");
}
}
}
finally {
// close the file
if (this.fileChannel.isOpen()) {
this.fileChannel.close();
}
}
}
}
/**
* This method waits for all pending asynchronous requests to return. When the
* last request has returned, the channel is closed and deleted.
*
* Even if an exception interrupts the closing, such that not all request are handled,
* the underlying FileChannel is closed and deleted.
*
* @throws IOException Thrown, if an I/O exception occurred while waiting for the buffers, or if
* the closing was interrupted.
*/
public void closeAndDelete() throws IOException
{
try {
close();
}
finally {
deleteChannel();
}
}
@Override
protected void returnBuffer(MemorySegment buffer)
{
this.returnBuffers.add(buffer);
// decrement the number of missing buffers. If we are currently closing, notify the
if (this.closed) {
synchronized (this.closeLock) {
int num = this.requestsNotReturned.decrementAndGet();
if (num == 0) {
this.closeLock.notifyAll();
}
}
}
else {
this.requestsNotReturned.decrementAndGet();
}
}
}
//--------------------------------------------------------------------------------------------
/**
* Special read request that reads an entire memory segment from a block reader.
*/
final class SegmentReadRequest implements ReadRequest
{
private final BlockChannelAccess channel;
private final MemorySegment segment;
protected SegmentReadRequest(BlockChannelAccess targetChannel, MemorySegment segment)
{
this.channel = targetChannel;
this.segment = segment;
}
@Override
public void read() throws IOException
{
final FileChannel c = this.channel.fileChannel;
if (c.size() - c.position() > 0) {
try {
final ByteBuffer wrapper = this.segment.wrap(0, this.segment.size());
this.channel.fileChannel.read(wrapper);
} catch (NullPointerException npex) {
// the memory has been cleared asynchronouosly through task failing or canceling
// ignore the request, since the result cannot be read
}
}
}
@Override
public void requestDone(IOException ioex)
{
this.channel.handleProcessedBuffer(this.segment, ioex);
}
}
//--------------------------------------------------------------------------------------------
/**
* Special write request that writes an entire memory segment to the block writer.
*/
final class SegmentWriteRequest implements WriteRequest
{
private final BlockChannelAccess channel;
private final MemorySegment segment;
protected SegmentWriteRequest(BlockChannelAccess targetChannel, MemorySegment segment)
{
this.channel = targetChannel;
this.segment = segment;
}
@Override
public void write() throws IOException
{
try {
this.channel.fileChannel.write(this.segment.wrap(0, this.segment.size()));
} catch (NullPointerException npex) {
// the memory has been cleared asynchronouosly through task failing or canceling
// ignore the request, since there is nothing to write.
}
}
@Override
public void requestDone(IOException ioex)
{
this.channel.handleProcessedBuffer(this.segment, ioex);
}
}