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

org.neo4j.kernel.impl.index.schema.DefaultIndexProvidersAccess Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 5.25.1
Show newest version
/*
 * 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.dbms.database.readonly.DatabaseReadOnlyChecker.readOnly;
import static org.neo4j.index.internal.gbptree.RecoveryCleanupWorkCollector.immediate;
import static org.neo4j.kernel.impl.factory.DbmsInfo.TOOL;
import static org.neo4j.kernel.impl.index.schema.SchemaIndexExtensionLoader.instantiateExtensions;

import org.neo4j.collection.Dependencies;
import org.neo4j.configuration.Config;
import org.neo4j.dbms.database.readonly.DatabaseReadOnlyChecker;
import org.neo4j.dbms.systemgraph.TopologyGraphDbmsModel.HostedOnMode;
import org.neo4j.io.fs.FileSystemAbstraction;
import org.neo4j.io.layout.DatabaseLayout;
import org.neo4j.io.pagecache.PageCache;
import org.neo4j.io.pagecache.context.CursorContextFactory;
import org.neo4j.io.pagecache.impl.muninn.VersionStorage;
import org.neo4j.io.pagecache.tracing.PageCacheTracer;
import org.neo4j.kernel.api.index.IndexProvidersAccess;
import org.neo4j.kernel.impl.api.index.IndexProviderMap;
import org.neo4j.kernel.impl.transaction.state.StaticIndexProviderMapFactory;
import org.neo4j.kernel.lifecycle.LifeContainer;
import org.neo4j.logging.internal.LogService;
import org.neo4j.monitoring.Monitors;
import org.neo4j.scheduler.JobScheduler;
import org.neo4j.storageengine.api.StorageEngineFactory;
import org.neo4j.token.TokenHolders;

public class DefaultIndexProvidersAccess extends LifeContainer implements IndexProvidersAccess {
    private final StorageEngineFactory storageEngineFactory;
    private final FileSystemAbstraction fileSystem;
    private final Config databaseConfig;
    private final JobScheduler jobScheduler;
    private final LogService logService;
    private final PageCacheTracer pageCacheTracer;
    private final CursorContextFactory contextFactory;

    public DefaultIndexProvidersAccess(
            StorageEngineFactory storageEngineFactory,
            FileSystemAbstraction fileSystem,
            Config databaseConfig,
            JobScheduler jobScheduler,
            LogService logService,
            PageCacheTracer pageCacheTracer,
            CursorContextFactory contextFactory) {

        this.storageEngineFactory = storageEngineFactory;
        this.fileSystem = fileSystem;
        this.databaseConfig = databaseConfig;
        this.jobScheduler = jobScheduler;
        this.logService = logService;
        this.pageCacheTracer = pageCacheTracer;
        this.contextFactory = contextFactory;
    }

    @Override
    public IndexProviderMap access(
            PageCache pageCache, DatabaseLayout layout, DatabaseReadOnlyChecker readOnlyChecker) {
        var tokenHolders = storageEngineFactory.loadReadOnlyTokens(
                fileSystem, layout, databaseConfig, pageCache, pageCacheTracer, false, contextFactory);
        return access(pageCache, layout, readOnlyChecker, tokenHolders);
    }

    @Override
    public IndexProviderMap access(
            PageCache pageCache,
            DatabaseLayout layout,
            DatabaseReadOnlyChecker readOnlyChecker,
            TokenHolders tokenHolders) {
        var monitors = new Monitors();
        var extensions = life.add(instantiateExtensions(
                layout,
                fileSystem,
                databaseConfig,
                logService,
                pageCache,
                jobScheduler,
                immediate(),
                TOOL,
                monitors,
                tokenHolders,
                pageCacheTracer,
                readOnly()));

        Dependencies dependencies = new Dependencies(extensions);
        dependencies.satisfyDependency(VersionStorage.EMPTY_STORAGE);
        return life.add(StaticIndexProviderMapFactory.create(
                life,
                databaseConfig,
                pageCache,
                fileSystem,
                logService,
                monitors,
                readOnlyChecker,
                HostedOnMode.SINGLE,
                immediate(),
                layout,
                tokenHolders,
                jobScheduler,
                contextFactory,
                pageCacheTracer,
                dependencies));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy