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

org.neo4j.kernel.impl.index.schema.SchemaLayouts 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 [http://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 java.io.IOException;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

import org.neo4j.configuration.Config;
import org.neo4j.index.internal.gbptree.Layout;
import org.neo4j.index.internal.gbptree.LayoutBootstrapper;
import org.neo4j.index.internal.gbptree.Meta;
import org.neo4j.index.internal.gbptree.MetadataMismatchException;
import org.neo4j.internal.id.indexed.IdRangeLayout;
import org.neo4j.io.pagecache.PageCache;
import org.neo4j.kernel.impl.api.index.stats.IndexStatisticsLayout;
import org.neo4j.kernel.impl.index.schema.config.IndexSpecificSpaceFillingCurveSettings;

public class SchemaLayouts implements LayoutBootstrapper
{
    private final List allSchemaLayout;

    public SchemaLayouts()
    {
        allSchemaLayout = new ArrayList<>();
        allSchemaLayout.addAll( Arrays.asList(
                genericLayout(),
                idRangeLayout(),
                ( indexFile, pageCache, meta ) -> new TokenScanLayout(),
                ( indexFile, pageCache, meta ) -> new IndexStatisticsLayout() ) );
    }

    public static String[] layoutDescriptions()
    {
        return new String[]{
                "Generic layout",
                "Id range layout",
                "Label scan layout",
                "Index statistics layout"
        };
    }

    @Override
    public Layout create( Path indexFile, PageCache pageCache, Meta meta ) throws IOException
    {
        for ( LayoutBootstrapper factory : allSchemaLayout )
        {
            final Layout layout = factory.create( indexFile, pageCache, meta );
            if ( layout != null && matchingLayout( meta, layout ) )
            {
                return layout;
            }
        }
        throw new RuntimeException( "Could not find any layout matching meta " + meta );
    }

    private static boolean matchingLayout( Meta meta, Layout layout )
    {
        try
        {
            meta.verify( layout );
            return true;
        }
        catch ( MetadataMismatchException e )
        {
            return false;
        }
    }

    private static LayoutBootstrapper genericLayout()
    {
        return ( indexFile, pageCache, meta ) ->
        {
            final IndexSpecificSpaceFillingCurveSettings settings = IndexSpecificSpaceFillingCurveSettings.fromConfig( Config.defaults() );
            int maxNumberOfSlots = 10;
            for ( int numberOfSlots = 1; numberOfSlots < maxNumberOfSlots; numberOfSlots++ )
            {
                final GenericLayout genericLayout = new GenericLayout( numberOfSlots, settings );
                if ( matchingLayout( meta, genericLayout ) )
                {
                    return genericLayout;
                }
            }
            return null;
        };
    }

    private static LayoutBootstrapper idRangeLayout()
    {
        return ( indexFile, pageCache, meta ) ->
        {
            int maxExponent = 10;
            for ( int exponent = 0; exponent < maxExponent; exponent++ )
            {
                final int idsPerEntry = 1 << exponent;
                final IdRangeLayout idRangeLayout = new IdRangeLayout( idsPerEntry );
                if ( matchingLayout( meta, idRangeLayout ) )
                {
                    return idRangeLayout;
                }
            }
            return null;
        };
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy