Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.api.impl.fulltext;
import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.index.IndexWriterConfig;
import java.util.function.Supplier;
import org.neo4j.configuration.Config;
import org.neo4j.dbms.database.readonly.DatabaseReadOnlyChecker;
import org.neo4j.internal.schema.IndexDescriptor;
import org.neo4j.kernel.api.impl.index.DatabaseIndex;
import org.neo4j.kernel.api.impl.index.IndexWriterConfigs;
import org.neo4j.kernel.api.impl.index.builder.AbstractLuceneIndexBuilder;
import org.neo4j.kernel.api.impl.index.partition.WritableIndexPartitionFactory;
import org.neo4j.token.api.TokenHolder;
public class FulltextIndexBuilder extends AbstractLuceneIndexBuilder
{
private final IndexDescriptor descriptor;
private final TokenHolder propertyKeyTokenHolder;
private final Analyzer analyzer;
private final String[] propertyNames;
private boolean populating;
private IndexUpdateSink indexUpdateSink = NullIndexUpdateSink.INSTANCE;
private final Config config;
private FulltextIndexBuilder( IndexDescriptor descriptor, Config config, DatabaseReadOnlyChecker readOnlyChecker, TokenHolder propertyKeyTokenHolder,
Analyzer analyzer, String[] propertyNames )
{
super( readOnlyChecker );
this.config = config;
this.descriptor = descriptor;
this.analyzer = analyzer;
this.propertyNames = propertyNames;
this.propertyKeyTokenHolder = propertyKeyTokenHolder;
}
/**
* Create new lucene fulltext index builder.
*
* @param descriptor The descriptor for this index
* @param propertyKeyTokenHolder A token holder used to look up property key token names by id.
* @return new FulltextIndexBuilder
*/
public static FulltextIndexBuilder create( IndexDescriptor descriptor, Config config, DatabaseReadOnlyChecker readOnlyChecker,
TokenHolder propertyKeyTokenHolder, Analyzer analyzer, String[] propertyNames )
{
return new FulltextIndexBuilder( descriptor, config, readOnlyChecker, propertyKeyTokenHolder, analyzer, propertyNames );
}
/**
* Whether to create the index in a {@link IndexWriterConfigs#population(Config) populating} mode, if {@code true}, or
* in a {@link IndexWriterConfigs#standard(Config) standard} mode, if {@code false}.
*
* @param isPopulating {@code true} if the index should be created in a populating mode.
* @return this index builder.
*/
FulltextIndexBuilder withPopulatingMode( boolean isPopulating )
{
this.populating = isPopulating;
return this;
}
FulltextIndexBuilder withIndexUpdateSink( IndexUpdateSink indexUpdateSink )
{
this.indexUpdateSink = indexUpdateSink;
return this;
}
/**
* Build lucene schema index with specified configuration
*
* @return lucene schema index
*/
public DatabaseIndex build()
{
Supplier writerConfigFactory;
if ( populating )
{
writerConfigFactory = () -> IndexWriterConfigs.population( config, analyzer );
}
else
{
writerConfigFactory = () -> IndexWriterConfigs.standard( config, analyzer );
}
WritableIndexPartitionFactory partitionFactory = new WritableIndexPartitionFactory( writerConfigFactory );
LuceneFulltextIndex fulltextIndex =
new LuceneFulltextIndex( storageBuilder.build(), partitionFactory, descriptor, propertyKeyTokenHolder, config, analyzer, propertyNames );
return new WritableFulltextIndex( indexUpdateSink, fulltextIndex, readOnlyChecker );
}
}