blob: ef6842f53c2d7b6eb22752eb9c165459a12c7e8c [file] [log] [blame]
// Lucene version compatibility level 8.2.0
using Lucene.Net.Support.Threading;
using opennlp.tools.tokenize;
using opennlp.tools.util;
namespace Lucene.Net.Analysis.OpenNlp.Tools
{
/*
* 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>
/// Supply OpenNLP Sentence Tokenizer tool.
/// Requires binary models from OpenNLP project on SourceForge.
/// </summary>
public class NLPTokenizerOp
{
private readonly TokenizerME tokenizer;
public NLPTokenizerOp(TokenizerModel model)
{
tokenizer = new TokenizerME(model);
}
public NLPTokenizerOp()
{
tokenizer = null;
}
public virtual Span[] GetTerms(string sentence)
{
UninterruptableMonitor.Enter(this);
try
{
if (tokenizer is null)
{
Span[] span1 = new Span[1];
span1[0] = new Span(0, sentence.Length);
return span1;
}
return tokenizer.tokenizePos(sentence);
}
finally
{
UninterruptableMonitor.Exit(this);
}
}
}
}