StopAnalyzer.cs
上传用户:zhangkuixh
上传日期:2013-09-30
资源大小:5473k
文件大小:3k
源码类别:

搜索引擎

开发平台:

C#

  1. /*
  2.  * Copyright 2004 The Apache Software Foundation
  3.  * 
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  * 
  8.  * http://www.apache.org/licenses/LICENSE-2.0
  9.  * 
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16. using System;
  17. namespace Lucene.Net.Analysis
  18. {
  19. /// <summary>Filters LetterTokenizer with LowerCaseFilter and StopFilter. </summary>
  20. public sealed class StopAnalyzer : Analyzer
  21. {
  22. private System.Collections.Hashtable stopWords;
  23. /// <summary>An array containing some common English words that are not usually useful
  24. /// for searching. 
  25. /// </summary>
  26. public static readonly System.String[] ENGLISH_STOP_WORDS = new System.String[]{"a", "an", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "no", "not", "of", "on", "or", "s", "such", "t", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"};
  27. /// <summary>Builds an analyzer which removes words in ENGLISH_STOP_WORDS. </summary>
  28. public StopAnalyzer()
  29. {
  30. stopWords = StopFilter.MakeStopSet(ENGLISH_STOP_WORDS);
  31. }
  32. /// <summary>Builds an analyzer with the stop words from the given set.</summary>
  33. public StopAnalyzer(System.Collections.Hashtable stopWords)
  34. {
  35. this.stopWords = stopWords;
  36. }
  37. /// <summary>Builds an analyzer which removes words in the provided array. </summary>
  38. public StopAnalyzer(System.String[] stopWords)
  39. {
  40. this.stopWords = StopFilter.MakeStopSet(stopWords);
  41. }
  42. /// <summary>Builds an analyzer with the stop words from the given file.</summary>
  43. /// <seealso cref="WordlistLoader.GetWordSet(File)">
  44. /// </seealso>
  45. public StopAnalyzer(System.IO.FileInfo stopwordsFile)
  46. {
  47. stopWords = WordlistLoader.GetWordSet(stopwordsFile);
  48. }
  49. /// <summary>Builds an analyzer with the stop words from the given reader.</summary>
  50. /// <seealso cref="WordlistLoader.GetWordSet(Reader)">
  51. /// </seealso>
  52. public StopAnalyzer(System.IO.TextReader stopwords)
  53. {
  54. stopWords = WordlistLoader.GetWordSet(stopwords);
  55. }
  56. /// <summary>Filters LowerCaseTokenizer with StopFilter. </summary>
  57. public override TokenStream TokenStream(System.String fieldName, System.IO.TextReader reader)
  58. {
  59. return new StopFilter(new LowerCaseTokenizer(reader), stopWords);
  60. }
  61. }
  62. }