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

搜索引擎

开发平台:

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 System.Runtime.InteropServices;
  18. using IndexReader = Lucene.Net.Index.IndexReader;
  19. namespace Lucene.Net.Search
  20. {
  21. /// <summary>Constrains search results to only match those which also match a provided
  22. /// query.  Results are cached, so that searches after the first on the same
  23. /// index using this filter are much faster.
  24. /// 
  25. /// <p> This could be used, for example, with a {@link RangeQuery} on a suitably
  26. /// formatted date field to implement date filtering.  One could re-use a single
  27. /// QueryFilter that matches, e.g., only documents modified within the last
  28. /// week.  The QueryFilter and RangeQuery would only need to be reconstructed
  29. /// once per day.
  30. /// 
  31. /// </summary>
  32. /// <version>  $Id: QueryFilter.java 328729 2005-10-26 21:05:35Z yonik $
  33. /// </version>
  34. [Serializable]
  35. public class QueryFilter : Filter
  36. {
  37. private class AnonymousClassHitCollector : HitCollector
  38. {
  39. public AnonymousClassHitCollector(System.Collections.BitArray bits, QueryFilter enclosingInstance)
  40. {
  41. InitBlock(bits, enclosingInstance);
  42. }
  43. private void  InitBlock(System.Collections.BitArray bits, QueryFilter enclosingInstance)
  44. {
  45. this.bits = bits;
  46. this.enclosingInstance = enclosingInstance;
  47. }
  48. private System.Collections.BitArray bits;
  49. private QueryFilter enclosingInstance;
  50. public QueryFilter Enclosing_Instance
  51. {
  52. get
  53. {
  54. return enclosingInstance;
  55. }
  56. }
  57. public override void  Collect(int doc, float score)
  58. {
  59. bits.Set(doc, true); // set bit for hit
  60. }
  61. }
  62. private Query query;
  63. [NonSerialized]
  64. private System.Collections.Hashtable cache = null;
  65. /// <summary>Constructs a filter which only matches documents matching
  66. /// <code>query</code>.
  67. /// </summary>
  68. public QueryFilter(Query query)
  69. {
  70. this.query = query;
  71. }
  72. public override System.Collections.BitArray Bits(IndexReader reader)
  73. {
  74. if (cache == null)
  75. {
  76. cache = new System.Collections.Hashtable();
  77. }
  78. lock (cache.SyncRoot)
  79. {
  80. // check cache
  81. System.Collections.BitArray cached = (System.Collections.BitArray) cache[reader];
  82. if (cached != null)
  83. {
  84. return cached;
  85. }
  86. }
  87. System.Collections.BitArray bits = new System.Collections.BitArray((reader.MaxDoc() % 64 == 0?reader.MaxDoc() / 64:reader.MaxDoc() / 64 + 1) * 64);
  88. new IndexSearcher(reader).Search(query, new AnonymousClassHitCollector(bits, this));
  89. lock (cache.SyncRoot)
  90. {
  91. // update cache
  92. cache[reader] = bits;
  93. }
  94. return bits;
  95. }
  96. public override System.String ToString()
  97. {
  98. return "QueryFilter(" + query + ")";
  99. }
  100. public  override bool Equals(System.Object o)
  101. {
  102. if (!(o is QueryFilter))
  103. return false;
  104. return this.query.Equals(((QueryFilter) o).query);
  105. }
  106. public override int GetHashCode()
  107. {
  108. return query.GetHashCode() ^ (unchecked((int) 0x923F64B9L));     // {{Aroush-1.9}} Is this OK?!
  109. }
  110. }
  111. }