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

搜索引擎

开发平台:

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 TermEnum = Lucene.Net.Index.TermEnum;
  20. using ToStringUtils = Lucene.Net.Util.ToStringUtils;
  21. namespace Lucene.Net.Search
  22. {
  23. /// <summary> A Query that matches documents within an exclusive range. A RangeQuery
  24. /// is built by QueryParser for input like <code>[010 TO 120]</code>.
  25. /// 
  26. /// </summary>
  27. /// <version>  $Id: RangeQuery.java 329381 2005-10-29 09:26:21Z ehatcher $
  28. /// </version>
  29. [Serializable]
  30. public class RangeQuery : Query
  31. {
  32. private Term lowerTerm;
  33. private Term upperTerm;
  34. private bool inclusive;
  35. /// <summary>Constructs a query selecting all terms greater than
  36. /// <code>lowerTerm</code> but less than <code>upperTerm</code>.
  37. /// There must be at least one term and either term may be null,
  38. /// in which case there is no bound on that side, but if there are
  39. /// two terms, both terms <b>must</b> be for the same field.
  40. /// </summary>
  41. public RangeQuery(Term lowerTerm, Term upperTerm, bool inclusive)
  42. {
  43. if (lowerTerm == null && upperTerm == null)
  44. {
  45. throw new System.ArgumentException("At least one term must be non-null");
  46. }
  47. if (lowerTerm != null && upperTerm != null && lowerTerm.Field() != upperTerm.Field())
  48. {
  49. throw new System.ArgumentException("Both terms must be for the same field");
  50. }
  51. // if we have a lowerTerm, start there. otherwise, start at beginning
  52. if (lowerTerm != null)
  53. {
  54. this.lowerTerm = lowerTerm;
  55. }
  56. else
  57. {
  58. this.lowerTerm = new Term(upperTerm.Field(), "");
  59. }
  60. this.upperTerm = upperTerm;
  61. this.inclusive = inclusive;
  62. }
  63. public override Query Rewrite(IndexReader reader)
  64. {
  65. BooleanQuery query = new BooleanQuery(true);
  66. TermEnum enumerator = reader.Terms(lowerTerm);
  67. try
  68. {
  69. bool checkLower = false;
  70. if (!inclusive)
  71. // make adjustments to set to exclusive
  72. checkLower = true;
  73. System.String testField = GetField();
  74. do 
  75. {
  76. Term term = enumerator.Term();
  77. if (term != null && term.Field() == testField)
  78. {
  79. if (!checkLower || String.CompareOrdinal(term.Text(), lowerTerm.Text()) > 0)
  80. {
  81. checkLower = false;
  82. if (upperTerm != null)
  83. {
  84. int compare = String.CompareOrdinal(upperTerm.Text(), term.Text());
  85. /* if beyond the upper term, or is exclusive and
  86. * this is equal to the upper term, break out */
  87. if ((compare < 0) || (!inclusive && compare == 0))
  88. break;
  89. }
  90. TermQuery tq = new TermQuery(term); // found a match
  91. tq.SetBoost(GetBoost()); // set the boost
  92. query.Add(tq, BooleanClause.Occur.SHOULD); // add to query
  93. }
  94. }
  95. else
  96. {
  97. break;
  98. }
  99. }
  100. while (enumerator.Next());
  101. }
  102. finally
  103. {
  104. enumerator.Close();
  105. }
  106. return query;
  107. }
  108. /// <summary>Returns the field name for this query </summary>
  109. public virtual System.String GetField()
  110. {
  111. return (lowerTerm != null?lowerTerm.Field():upperTerm.Field());
  112. }
  113. /// <summary>Returns the lower term of this range query </summary>
  114. public virtual Term GetLowerTerm()
  115. {
  116. return lowerTerm;
  117. }
  118. /// <summary>Returns the upper term of this range query </summary>
  119. public virtual Term GetUpperTerm()
  120. {
  121. return upperTerm;
  122. }
  123. /// <summary>Returns <code>true</code> if the range query is inclusive </summary>
  124. public virtual bool IsInclusive()
  125. {
  126. return inclusive;
  127. }
  128. /// <summary>Prints a user-readable version of this query. </summary>
  129. public override System.String ToString(System.String field)
  130. {
  131. System.Text.StringBuilder buffer = new System.Text.StringBuilder();
  132. if (!GetField().Equals(field))
  133. {
  134. buffer.Append(GetField());
  135. buffer.Append(":");
  136. }
  137. buffer.Append(inclusive?"[":"{");
  138. buffer.Append(lowerTerm != null ? lowerTerm.Text() : "null");
  139. buffer.Append(" TO ");
  140. buffer.Append(upperTerm != null ? upperTerm.Text() : "null");
  141. buffer.Append(inclusive ? "]" : "}");
  142. buffer.Append(ToStringUtils.Boost(GetBoost()));
  143. return buffer.ToString();
  144. }
  145. /// <summary>Returns true iff <code>o</code> is equal to this. </summary>
  146. public  override bool Equals(System.Object o)
  147. {
  148. if (this == o)
  149. return true;
  150. if (!(o is RangeQuery))
  151. return false;
  152. RangeQuery other = (RangeQuery) o;
  153. if (this.GetBoost() != other.GetBoost())
  154. return false;
  155. if (this.inclusive != other.inclusive)
  156. return false;
  157. // one of lowerTerm and upperTerm can be null
  158. if (this.lowerTerm != null?!this.lowerTerm.Equals(other.lowerTerm):other.lowerTerm != null)
  159. return false;
  160. if (this.upperTerm != null?!this.upperTerm.Equals(other.upperTerm):other.upperTerm != null)
  161. return false;
  162. return true;
  163. }
  164. /// <summary>Returns a hash code value for this object.</summary>
  165. public override int GetHashCode()
  166. {
  167. return BitConverter.ToInt32(BitConverter.GetBytes(GetBoost()), 0) ^ (lowerTerm != null ? lowerTerm.GetHashCode():0) ^ (upperTerm != null?upperTerm.GetHashCode() : 0) ^ (this.inclusive ? 1 : 0);
  168. }
  169. // {{Aroush-1.9}} Do we need this?!
  170. override public System.Object Clone()
  171. {
  172. return null;
  173. }
  174. }
  175. }