blob: f45532135dc02b7487a6ed744d7d56c8eede848e [file] [log] [blame]
/*
* 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.carbondata.core.scan.processor;
import org.apache.carbondata.common.CarbonIterator;
import org.apache.carbondata.core.datastore.DataRefNode;
/**
* Below class will be used to iterate over data block
*/
class BlockletIterator extends CarbonIterator<DataRefNode> {
/**
* data store block
*/
protected DataRefNode dataBlock;
/**
* block counter to keep a track how many block has been processed
*/
private int blockCounter;
/**
* flag to be used to check any more data block is present or not
*/
private boolean hasNext = true;
/**
* total number blocks assigned to this iterator
*/
private long totalNumberOfBlocksToScan;
/**
* Constructor
*
* @param dataBlock first data block
* @param totalNumberOfBlockletToScan total number of blocklets to be scanned
*/
BlockletIterator(DataRefNode dataBlock, long totalNumberOfBlockletToScan) {
this.dataBlock = dataBlock;
this.totalNumberOfBlocksToScan = totalNumberOfBlockletToScan;
}
/**
* is all the blocks assigned to this iterator has been processed
*/
@Override
public boolean hasNext() {
return hasNext;
}
/**
* To get the next block
* @return next data block
*
*/
@Override
public DataRefNode next() {
// get the current blocks
DataRefNode dataBlockTemp = dataBlock;
// store the next data block
dataBlock = dataBlock.getNextDataRefNode();
// increment the counter
blockCounter++;
// if all the data block is processed then
// set the has next flag to false
// or if number of blocks assigned to this iterator is processed
// then also set the hasNext flag to false
if (null == dataBlock || blockCounter >= this.totalNumberOfBlocksToScan) {
hasNext = false;
}
return dataBlockTemp;
}
}