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

搜索引擎

开发平台:

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. using IndexReader = Lucene.Net.Index.IndexReader;
  18. using Term = Lucene.Net.Index.Term;
  19. using FilteredTermEnum = Lucene.Net.Search.FilteredTermEnum;
  20. // using Pattern = java.util.regex.Pattern;     {{Aroush-1.9}}
  21. namespace Lucene.Net.Search.Regex
  22. {
  23. public class RegexTermEnum : FilteredTermEnum
  24. {
  25. private System.String field = "";
  26. private System.String pre = "";
  27. internal bool endEnum = false;
  28. // private Pattern pattern;     {{Aroush-1.9}}
  29. public RegexTermEnum(IndexReader reader, Term term) : base()
  30. {
  31. field = term.Field();
  32. System.String text = term.Text();
  33. // pattern = Pattern.compile(text);     {{Aroush-1.9}} how do we do this in .NET 1.1?!
  34. // Find the first regex character position, to find the
  35. // maximum prefix to use for term enumeration
  36. int index = 0;
  37. while (index < text.Length)
  38. {
  39. char c = text[index];
  40. if (!System.Char.IsLetterOrDigit(c))
  41. break;
  42. index++;
  43. }
  44. pre = text.Substring(0, (index) - (0));
  45. SetEnum(reader.Terms(new Term(term.Field(), pre)));
  46. }
  47. protected internal override bool TermCompare(Term term)
  48. {
  49. if ((System.Object) field == (System.Object) term.Field())
  50. {
  51. System.String searchText = term.Text();
  52. if (searchText.StartsWith(pre))
  53. {
  54. // return pattern.matcher(searchText).matches();    {{Aroush-1.9}} how do we do this in .NET 1.1?!
  55.                     return (false);
  56. }
  57. }
  58. endEnum = true;
  59. return false;
  60. }
  61. public override float Difference()
  62. {
  63. // TODO: adjust difference based on distance of searchTerm.text() and term().text()
  64. return 1.0f;
  65. }
  66. public override bool EndEnum()
  67. {
  68. return endEnum;
  69. }
  70. public override void  Close()
  71. {
  72. base.Close();
  73. field = null;
  74. }
  75. }
  76. }