org.apache.hudi.io.hfile.HFileRootIndexBlock Maven / Gradle / Ivy
/*
* 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.hudi.io.hfile;
import org.apache.hudi.common.util.Option;
import java.util.ArrayList;
import java.util.List;
import java.util.TreeMap;
import static org.apache.hudi.io.util.IOUtils.copy;
import static org.apache.hudi.io.util.IOUtils.decodeVarLongSizeOnDisk;
import static org.apache.hudi.io.util.IOUtils.readInt;
import static org.apache.hudi.io.util.IOUtils.readLong;
import static org.apache.hudi.io.util.IOUtils.readVarLong;
/**
* Represents a {@link HFileBlockType#ROOT_INDEX} block.
*/
public class HFileRootIndexBlock extends HFileBlock {
public HFileRootIndexBlock(HFileContext context,
byte[] byteBuff,
int startOffsetInBuff) {
super(context, HFileBlockType.ROOT_INDEX, byteBuff, startOffsetInBuff);
}
/**
* Reads the index block and returns the block index entry to an in-memory {@link TreeMap}
* for searches.
*
* @param numEntries the number of entries in the block.
* @return a {@link TreeMap} of block index entries.
*/
public TreeMap readBlockIndex(int numEntries, boolean contentKeyOnly) {
TreeMap blockIndexEntryMap = new TreeMap<>();
int buffOffset = startOffsetInBuff + HFILEBLOCK_HEADER_SIZE;
List keyList = new ArrayList<>();
List offsetList = new ArrayList<>();
List sizeList = new ArrayList();
for (int i = 0; i < numEntries; i++) {
long offset = readLong(byteBuff, buffOffset);
int size = readInt(byteBuff, buffOffset + 8);
int varLongSizeOnDist = decodeVarLongSizeOnDisk(byteBuff, buffOffset + 12);
int keyLength = (int) readVarLong(byteBuff, buffOffset + 12, varLongSizeOnDist);
byte[] keyBytes = copy(byteBuff, buffOffset + 12 + varLongSizeOnDist, keyLength);
Key key = contentKeyOnly ? new UTF8StringKey(keyBytes) : new Key(keyBytes);
keyList.add(key);
offsetList.add(offset);
sizeList.add(size);
buffOffset += (12 + varLongSizeOnDist + keyLength);
}
for (int i = 0; i < numEntries; i++) {
Key key = keyList.get(i);
blockIndexEntryMap.put(key, new BlockIndexEntry(
key, i < numEntries - 1 ? Option.of(keyList.get(i + 1)) : Option.empty(),
offsetList.get(i), sizeList.get(i)));
}
return blockIndexEntryMap;
}
}