blob: be421df5a217dfc944801758b6c4a7ce6d0d475d [file] [log] [blame]
using System;
using System.Collections.Generic;
namespace Lucene.Net.Analysis.Util
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/// <summary>
/// Abstract parent class for analysis factories that create <see cref="TokenFilter"/>
/// instances.
/// </summary>
public abstract class TokenFilterFactory : AbstractAnalysisFactory
{
private static readonly AnalysisSPILoader<TokenFilterFactory> loader =
new AnalysisSPILoader<TokenFilterFactory>(new string[] { "TokenFilterFactory", "FilterFactory" });
/// <summary>
/// looks up a tokenfilter by name from the host project's referenced assemblies </summary>
public static TokenFilterFactory ForName(string name, IDictionary<string, string> args)
{
return loader.NewInstance(name, args);
}
/// <summary>
/// looks up a tokenfilter class by name from the host project's referenced assemblies </summary>
public static Type LookupClass(string name)
{
return loader.LookupClass(name);
}
/// <summary>
/// returns a list of all available tokenfilter names from the host project's referenced assemblies </summary>
public static ICollection<string> AvailableTokenFilters => loader.AvailableServices;
/// <summary>
/// Reloads the factory list.
/// Changes to the factories are visible after the method ends, all
/// iterators (<see cref="AvailableTokenFilters"/>,...) stay consistent.
///
/// <para><b>NOTE:</b> Only new factories are added, existing ones are
/// never removed or replaced.
///
/// </para>
/// <para><em>This method is expensive and should only be called for discovery
/// of new factories on the given classpath/classloader!</em>
/// </para>
/// </summary>
public static void ReloadTokenFilters()
{
loader.Reload();
}
/// <summary>
/// Initialize this factory via a set of key-value pairs.
/// </summary>
protected TokenFilterFactory(IDictionary<string, string> args)
: base(args)
{
}
/// <summary>
/// Transform the specified input <see cref="TokenStream"/> </summary>
public abstract TokenStream Create(TokenStream input);
}
}