org.neo4j.graphdb.schema.AnalyzerProvider Maven / Gradle / Ivy
/*
* 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.graphdb.schema;
import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.analysis.CharArraySet;
import org.apache.lucene.analysis.StopwordAnalyzerBase;
import java.util.List;
import java.util.stream.Collectors;
import org.neo4j.annotations.api.PublicApi;
import org.neo4j.annotations.service.Service;
import org.neo4j.service.NamedService;
import static java.util.Objects.requireNonNull;
/**
* This is the base-class for all service-loadable factory classes, that build the Lucene Analyzer instances that are available to the fulltext schema index.
* The analyzer factory is referenced in the index configuration via its {@code analyzerName} and {@code alternativeNames} that are specific to the constructor
* of this base class. Sub-classes must have a public no-arg constructor such that they can be service-loaded.
*
* Here is an example that implements an analyzer provider for the {@code SwedishAnalyzer} that comes built into Lucene:
*
*
* public class Swedish extends AnalyzerProvider
* {
* public Swedish()
* {
* super( "swedish" );
* }
*
* public Analyzer createAnalyzer()
* {
* return new SwedishAnalyzer();
* }
* }
*
*
*/
@Service
@PublicApi
public abstract class AnalyzerProvider implements NamedService
{
private final String name;
/**
* Sub-classes MUST have a public no-arg constructor, and must call this super-constructor with the names it uses to identify itself.
*
* Sub-classes should strive to make these names unique.
* If the names are not unique among all analyzer providers on the class path, then the indexes may fail to load the correct analyzers that they are
* configured with.
*
* @param name The name of this analyzer provider, which will be used for analyzer settings values for identifying which implementation to use.
*/
protected AnalyzerProvider( String name )
{
this.name = requireNonNull( name );
}
@Override
public String getName()
{
return name;
}
/**
* @return A newly constructed {@code Analyzer} instance.
*/
public abstract Analyzer createAnalyzer();
/**
* @return A description of this analyzer.
*/
public String description()
{
return "";
}
public List stopwords()
{
Analyzer analyzer = createAnalyzer();
if ( analyzer instanceof StopwordAnalyzerBase )
{
StopwordAnalyzerBase stopwordAnalyzer = (StopwordAnalyzerBase) analyzer;
CharArraySet stopwords = stopwordAnalyzer.getStopwordSet();
return stopwords.stream().map( obj -> new String( (char[]) obj ) ).collect( Collectors.toList() );
}
return List.of();
}
/**
* Produce a new stop-word set similar to the given set, but where unclean elements have been removed.
* Stop-word list files often contain comments, blank lines, excess white-space, etc.
* When these files are parsed, these unclean data artifacts can end up in our stop-word sets when they should not.
* The passed-in stop-word set is not changed.
*
* @param stopSet The stop-word set to clean up.
* @return the cleaned-up stop-word set.
*/
public static CharArraySet cleanStopWordSet( CharArraySet stopSet )
{
CharArraySet result = new CharArraySet( stopSet.size(), false );
stopSet.stream()
.map( cs -> new String( (char[]) cs ).trim() )
.filter( s -> !(s.isBlank() || s.contains( "#" ) || s.contains( " " )) )
.forEach( result::add );
return result;
}
}