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

eu.stratosphere.nephele.io.channels.AbstractChannel 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.io.channels;

import java.io.IOException;

import eu.stratosphere.nephele.event.task.AbstractEvent;
import eu.stratosphere.nephele.jobgraph.JobID;

/**
 * An abstract base class for channel objects.
 */
public abstract class AbstractChannel {

	/**
	 * The ID of the channel.
	 */
	private final ChannelID channelID;

	/**
	 * The ID of the connected channel.
	 */
	private final ChannelID connectedChannelID;

	private final int channelIndex;

	/**
	 * Auxiliary constructor for channels
	 * 
	 * @param channelIndex
	 *        the index of the channel in either the output or input gate
	 * @param channelID
	 *        the ID of the channel
	 * @param connectedChannelID
	 *        the ID of the channel this channel is connected to
	 * @param compressionLevel
	 *        the level of compression to be used for this channel
	 */
	protected AbstractChannel(final int channelIndex, final ChannelID channelID, final ChannelID connectedChannelID) {
		this.channelIndex = channelIndex;
		this.channelID = channelID;
		this.connectedChannelID = connectedChannelID;
	}

	/**
	 * Returns the ID of the channel.
	 * 
	 * @return the ID of the channel.
	 */
	public ChannelID getID() {
		return this.channelID;
	}

	/**
	 * Returns the channel's input at the associated gate.
	 * 
	 * @return the channel's input at the associated gate
	 */
	public int getChannelIndex() {
		return this.channelIndex;
	}

	/**
	 * Returns the type of the channel.
	 * 
	 * @return the type of the channel.
	 */
	public abstract ChannelType getType();

	/**
	 * Checks if the channel is closed, i.e. no more records can be transported through the channel.
	 * 
	 * @return true if the channel is closed, false otherwise
	 * @throws IOException
	 *         thrown if an error occurred while closing the channel
	 * @throws InterruptedException
	 *         thrown if the channel is interrupted while waiting for this operation to complete
	 */
	public abstract boolean isClosed() throws IOException, InterruptedException;

	
	public ChannelID getConnectedChannelID() {
		return this.connectedChannelID;
	}


	/**
	 * Returns the ID of the job this channel belongs to.
	 * 
	 * @return the ID of the job this channel belongs to
	 */
	public abstract JobID getJobID();

	/**
	 * Returns true if this channel is an input channel, false otherwise.
	 * 
	 * @return true if this channel is an input channel, false otherwise
	 */
	public abstract boolean isInputChannel();

	
	public abstract void transferEvent(AbstractEvent event) throws IOException, InterruptedException;

	/**
	 * Releases all resources (especially buffers) which are currently allocated by this channel. This method should be
	 * called in case of a task error or as a result of a cancel operation.
	 */
	public abstract void releaseAllResources();

	/**
	 * Returns the number of bytes which have been transmitted through this channel since its instantiation.
	 * 
	 * @return the number of bytes which have been transmitted through this channel since its instantiation
	 */
	public abstract long getAmountOfDataTransmitted();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy