![JAR search and dependency download from the Maven repository](/logo.png)
org.dinky.shaded.paimon.index.IndexFileHandler Maven / Gradle / Ivy
The 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.dinky.shaded.paimon.index;
import org.dinky.shaded.paimon.Snapshot;
import org.dinky.shaded.paimon.data.BinaryRow;
import org.dinky.shaded.paimon.manifest.IndexManifestEntry;
import org.dinky.shaded.paimon.manifest.IndexManifestFile;
import org.dinky.shaded.paimon.utils.IntIterator;
import org.dinky.shaded.paimon.utils.SnapshotManager;
import java.io.IOException;
import java.io.UncheckedIOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
import static org.dinky.shaded.paimon.index.HashIndexFile.HASH_INDEX;
/** Handle index files. */
public class IndexFileHandler {
private final SnapshotManager snapshotManager;
private final IndexManifestFile indexManifestFile;
private final HashIndexFile hashIndex;
public IndexFileHandler(
SnapshotManager snapshotManager,
IndexManifestFile indexManifestFile,
HashIndexFile hashIndex) {
this.snapshotManager = snapshotManager;
this.indexManifestFile = indexManifestFile;
this.hashIndex = hashIndex;
}
public Optional scan(
long snapshotId, String indexType, BinaryRow partition, int bucket) {
List entries = scan(snapshotId, indexType, partition);
List result = new ArrayList<>();
for (IndexManifestEntry file : entries) {
if (file.bucket() == bucket) {
result.add(file);
}
}
if (result.size() > 1) {
throw new IllegalArgumentException(
"Find multiple index files for one bucket: " + result);
}
return result.isEmpty() ? Optional.empty() : Optional.of(result.get(0).indexFile());
}
public List scan(String indexType, BinaryRow partition) {
Long snapshot = snapshotManager.latestSnapshotId();
if (snapshot == null) {
return Collections.emptyList();
}
return scan(snapshot, indexType, partition);
}
public List scan(long snapshotId, String indexType, BinaryRow partition) {
Snapshot snapshot = snapshotManager.snapshot(snapshotId);
String indexManifest = snapshot.indexManifest();
if (indexManifest == null) {
return Collections.emptyList();
}
List allFiles = indexManifestFile.read(indexManifest);
List result = new ArrayList<>();
for (IndexManifestEntry file : allFiles) {
if (file.indexFile().indexType().equals(indexType)
&& file.partition().equals(partition)) {
result.add(file);
}
}
return result;
}
public List readHashIndexList(IndexFileMeta file) {
return IntIterator.toIntList(readHashIndex(file));
}
public IntIterator readHashIndex(IndexFileMeta file) {
if (!file.indexType().equals(HASH_INDEX)) {
throw new IllegalArgumentException("Input file is not hash index: " + file.indexType());
}
try {
return hashIndex.read(file.fileName());
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
public IndexFileMeta writeHashIndex(int[] ints) {
return writeHashIndex(ints.length, IntIterator.create(ints));
}
public IndexFileMeta writeHashIndex(int size, IntIterator iterator) {
String file;
try {
file = hashIndex.write(iterator);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
return new IndexFileMeta(HASH_INDEX, file, hashIndex.fileSize(file), size);
}
public boolean existsManifest(String indexManifest) {
return indexManifestFile.exists(indexManifest);
}
public List readManifest(String indexManifest) {
return indexManifestFile.read(indexManifest);
}
public List readManifestWithIOException(String indexManifest)
throws IOException {
return indexManifestFile.readWithIOException(indexManifest);
}
public boolean existsIndexFile(IndexManifestEntry file) {
return hashIndex.exists(file.indexFile().fileName());
}
public void deleteIndexFile(IndexManifestEntry file) {
hashIndex.delete(file.indexFile().fileName());
}
public void deleteManifest(String indexManifest) {
indexManifestFile.delete(indexManifest);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy