blob: b4dd8cdb2dc6b8199bba6e9cf93e63cd7c2bc85d [file] [log] [blame]
using Lucene.Net.Analysis.TokenAttributes;
using System;
namespace Lucene.Net.Analysis.De
{
/*
* 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>
/// A <see cref="TokenFilter"/> that stems German words.
/// <para>
/// It supports a table of words that should
/// not be stemmed at all. The stemmer used can be changed at runtime after the
/// filter object is created (as long as it is a <see cref="GermanStemmer"/>).
/// </para>
/// <para>
/// To prevent terms from being stemmed use an instance of
/// <see cref="Miscellaneous.SetKeywordMarkerFilter"/> or a custom <see cref="TokenFilter"/> that sets
/// the <see cref="KeywordAttribute"/> before this <see cref="TokenStream"/>.
/// </para> </summary>
/// <seealso cref="Miscellaneous.SetKeywordMarkerFilter"/>
public sealed class GermanStemFilter : TokenFilter
{
/// <summary>
/// The actual token in the input stream.
/// </summary>
private GermanStemmer stemmer = new GermanStemmer();
private readonly ICharTermAttribute termAtt;
private readonly IKeywordAttribute keywordAttr;
/// <summary>
/// Creates a <see cref="GermanStemFilter"/> instance </summary>
/// <param name="in"> the source <see cref="TokenStream"/> </param>
public GermanStemFilter(TokenStream @in)
: base(@in)
{
termAtt = AddAttribute<ICharTermAttribute>();
keywordAttr = AddAttribute<IKeywordAttribute>();
}
/// <returns> Returns true for next token in the stream, or false at EOS </returns>
public override bool IncrementToken()
{
if (m_input.IncrementToken())
{
string term = termAtt.ToString();
if (!keywordAttr.IsKeyword)
{
string s = stemmer.Stem(term);
// If not stemmed, don't waste the time adjusting the token.
if ((s != null) && !s.Equals(term, StringComparison.Ordinal))
{
termAtt.SetEmpty().Append(s);
}
}
return true;
}
else
{
return false;
}
}
/// <summary>
/// Set a alternative/custom <see cref="GermanStemmer"/> for this filter.
/// </summary>
public GermanStemmer Stemmer
{
get => this.stemmer; // LUCENENET NOTE: Added getter per MSDN guidelines
set
{
if (value != null)
{
this.stemmer = value;
}
}
}
}
}