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

org.apache.flink.runtime.io.disk.iomanager.HeaderlessChannelReaderInputView Maven / Gradle / Ivy

There is a newer version: 1.13.6
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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 org.apache.flink.runtime.io.disk.iomanager;

import java.io.EOFException;
import java.io.IOException;
import java.util.List;

import org.apache.flink.core.memory.MemorySegment;

import static org.apache.flink.util.Preconditions.checkArgument;

/**
 * A {@link org.apache.flink.core.memory.DataInputView} that is backed by a
 * {@link BlockChannelReader}, making it effectively a data input
 * stream. This view is similar to the {@link ChannelReaderInputView}, but does not expect
 * a header for each block, giving a direct stream abstraction over sequence of written
 * blocks. It therefore requires specification of the number of blocks and the number of
 * bytes in the last block.
 */
public class HeaderlessChannelReaderInputView extends ChannelReaderInputView {

	private int numBlocksRemaining;		// the number of blocks not yet consumed
	
	private final int lastBlockBytes;	// the number of valid bytes in the last block

	private long offset;				// offset to seek after reading the first block

	private boolean isFirstBlock;		// if current block is the first block

	/**
	 * Creates a new channel reader that reads from the given channel, expecting a specified
	 * number of blocks in the channel, and returns only a specified number of bytes from
	 * the last block.
	 * 

* WARNING: If the number of blocks given here is higher than the number of blocks in the * channel, then the last blocks will not be filled by the reader and will contain * undefined data. * * @param reader The reader that reads the data from disk back into memory. * @param memory A list of memory segments that the reader uses for reading the data in. If the * list contains more than one segment, the reader will asynchronously pre-fetch * blocks ahead. * @param numBlocks The number of blocks this channel will read. * @param numBytesInLastBlock The number of valid bytes in the last block. * @param waitForFirstBlock A flag indicating weather this constructor call should block * until the first block has returned from the asynchronous I/O reader. * * @throws IOException Thrown, if the read requests for the first blocks fail to be * served by the reader. */ public HeaderlessChannelReaderInputView( BlockChannelReader reader, List memory, int numBlocks, int numBytesInLastBlock, boolean waitForFirstBlock) throws IOException { this(reader, memory, numBlocks, numBytesInLastBlock, waitForFirstBlock, 0); } public HeaderlessChannelReaderInputView( BlockChannelReader reader, List memory, int numBlocks, int numBytesInLastBlock, boolean waitForFirstBlock, long offset) throws IOException { // postpone wait for first block after initializing offset // otherwise the offset is not set, and we can't seek input super(reader, memory, numBlocks, 0, false); this.numBlocksRemaining = numBlocks; this.lastBlockBytes = numBytesInLastBlock; checkArgument(offset >= 0, "`offset` can't be negative!"); this.offset = offset; if (waitForFirstBlock) { advance(); } } @Override protected MemorySegment nextSegment(MemorySegment current) throws IOException { // check for end-of-stream if (this.numBlocksRemaining <= 0) { this.reader.close(); throw new EOFException(); } // send a request first. if we have only a single segment, this same segment will be the one obtained in // the next lines if (current != null) { sendReadRequest(current); } // check if next segment is the first block isFirstBlock = (current == null); // get the next segment this.numBlocksRemaining--; return this.reader.getNextReturnedBlock(); } @Override public void advance() throws IOException { doAdvance(); if (isFirstBlock && offset > 0) { seekInput(getCurrentSegment(), (int) offset, getCurrentSegmentLimit()); } } @Override protected int getLimitForSegment(MemorySegment segment) { return this.numBlocksRemaining > 0 ? segment.size() : this.lastBlockBytes; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy