org.neo4j.kernel.impl.index.schema.NativeIndex Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-kernel Show documentation
Show all versions of neo4j-kernel Show documentation
Neo4j kernel is a lightweight, embedded Java database designed to
store data structured as graphs rather than tables. For more
information, see http://neo4j.org.
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [https://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.kernel.impl.index.schema;
import static org.neo4j.index.internal.gbptree.GBPTree.NO_HEADER_READER;
import java.nio.file.OpenOption;
import java.nio.file.Path;
import org.eclipse.collections.api.set.ImmutableSet;
import org.neo4j.annotations.documented.ReporterFactory;
import org.neo4j.common.DependencyResolver;
import org.neo4j.dbms.database.readonly.DatabaseReadOnlyChecker;
import org.neo4j.graphdb.ResourceIterator;
import org.neo4j.index.internal.gbptree.GBPTree;
import org.neo4j.index.internal.gbptree.MultiRootGBPTree;
import org.neo4j.index.internal.gbptree.RecoveryCleanupWorkCollector;
import org.neo4j.internal.helpers.progress.ProgressMonitorFactory;
import org.neo4j.internal.schema.IndexDescriptor;
import org.neo4j.io.IOUtils;
import org.neo4j.io.fs.FileSystemAbstraction;
import org.neo4j.io.pagecache.PageCache;
import org.neo4j.io.pagecache.context.CursorContextFactory;
import org.neo4j.io.pagecache.tracing.PageCacheTracer;
import org.neo4j.kernel.api.IndexFileSnapshotter;
import org.neo4j.kernel.api.index.IndexProvider;
import org.neo4j.monitoring.Monitors;
abstract class NativeIndex> implements ConsistencyCheckable, IndexFileSnapshotter {
final PageCache pageCache;
final IndexFiles indexFiles;
final IndexLayout layout;
final FileSystemAbstraction fileSystem;
final IndexDescriptor descriptor;
private final Monitors monitors;
private final String monitorTag;
private final DatabaseReadOnlyChecker readOnlyChecker;
final String databaseName;
private final CursorContextFactory contextFactory;
private final ImmutableSet openOptions;
private final boolean readOnly;
final PageCacheTracer pageCacheTracer;
private final DependencyResolver dependencyResolver;
protected GBPTree tree;
NativeIndex(
DatabaseIndexContext databaseIndexContext,
IndexLayout layout,
IndexFiles indexFiles,
IndexDescriptor descriptor,
ImmutableSet openOptions,
boolean readOnly) {
this.pageCache = databaseIndexContext.pageCache;
this.fileSystem = databaseIndexContext.fileSystem;
this.monitors = databaseIndexContext.monitors;
this.monitorTag = databaseIndexContext.monitorTag;
this.readOnlyChecker = databaseIndexContext.readOnlyChecker;
this.databaseName = databaseIndexContext.databaseName;
this.contextFactory = databaseIndexContext.contextFactory;
this.pageCacheTracer = databaseIndexContext.pageCacheTracer;
this.dependencyResolver = databaseIndexContext.dependencyResolver;
this.indexFiles = indexFiles;
this.layout = layout;
this.descriptor = descriptor;
this.openOptions = openOptions;
this.readOnly = readOnly;
}
void instantiateTree(RecoveryCleanupWorkCollector recoveryCleanupWorkCollector) {
ensureDirectoryExist();
MultiRootGBPTree.Monitor monitor = treeMonitor();
Path storeFile = indexFiles.getStoreFile();
tree = new GBPTree<>(
pageCache,
fileSystem,
storeFile,
layout,
monitor,
NO_HEADER_READER,
recoveryCleanupWorkCollector,
readOnly,
openOptions,
databaseName,
descriptor.getName(),
contextFactory,
pageCacheTracer,
dependencyResolver);
afterTreeInstantiation(tree);
}
protected void assertWritable() {
if (readOnlyChecker.isReadOnly()) {
throw new UnsupportedOperationException(
"Database currently is in read only mode and can not perform writes");
}
}
protected void afterTreeInstantiation(GBPTree tree) { // no-op per default
}
private MultiRootGBPTree.Monitor treeMonitor() {
MultiRootGBPTree.Monitor treeMonitor = monitors.newMonitor(MultiRootGBPTree.Monitor.class, monitorTag);
IndexProvider.Monitor indexMonitor = monitors.newMonitor(IndexProvider.Monitor.class, monitorTag);
return new IndexMonitorAdaptor(treeMonitor, indexMonitor, indexFiles, descriptor);
}
private void ensureDirectoryExist() {
indexFiles.ensureDirectoryExist();
}
void closeTree() {
IOUtils.closeAllUnchecked(tree);
tree = null;
}
void assertOpen() {
if (tree == null) {
throw new IllegalStateException("Index has been closed");
}
}
@Override
public boolean consistencyCheck(
ReporterFactory reporterFactory,
CursorContextFactory contextFactory,
int numThreads,
ProgressMonitorFactory progressMonitorFactory) {
return tree.consistencyCheck(reporterFactory, contextFactory, numThreads, progressMonitorFactory);
}
@Override
public ResourceIterator snapshotFiles() {
return indexFiles.snapshot();
}
}