TermQuery.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 TermDocs = Lucene.Net.Index.TermDocs;
  20. using ToStringUtils = Lucene.Net.Util.ToStringUtils;
  21. namespace Lucene.Net.Search
  22. {
  23. /// <summary>A Query that matches documents containing a term.
  24. /// This may be combined with other terms with a {@link BooleanQuery}.
  25. /// </summary>
  26. [Serializable]
  27. public class TermQuery : Query
  28. {
  29. private Term term;
  30. [Serializable]
  31. private class TermWeight : Weight
  32. {
  33. private void  InitBlock(TermQuery enclosingInstance)
  34. {
  35. this.enclosingInstance = enclosingInstance;
  36. }
  37. private TermQuery enclosingInstance;
  38. public TermQuery Enclosing_Instance
  39. {
  40. get
  41. {
  42. return enclosingInstance;
  43. }
  44. }
  45. private Similarity similarity;
  46. private float value_Renamed;
  47. private float idf;
  48. private float queryNorm;
  49. private float queryWeight;
  50. public TermWeight(TermQuery enclosingInstance, Searcher searcher)
  51. {
  52. InitBlock(enclosingInstance);
  53. this.similarity = Enclosing_Instance.GetSimilarity(searcher);
  54. idf = similarity.Idf(Enclosing_Instance.term, searcher); // compute idf
  55. }
  56. public override System.String ToString()
  57. {
  58. return "weight(" + Enclosing_Instance + ")";
  59. }
  60. public virtual Query GetQuery()
  61. {
  62. return Enclosing_Instance;
  63. }
  64. public virtual float GetValue()
  65. {
  66. return value_Renamed;
  67. }
  68. public virtual float SumOfSquaredWeights()
  69. {
  70. queryWeight = idf * Enclosing_Instance.GetBoost(); // compute query weight
  71. return queryWeight * queryWeight; // square it
  72. }
  73. public virtual void  Normalize(float queryNorm)
  74. {
  75. this.queryNorm = queryNorm;
  76. queryWeight *= queryNorm; // normalize query weight
  77. value_Renamed = queryWeight * idf; // idf for document
  78. }
  79. public virtual Scorer Scorer(IndexReader reader)
  80. {
  81. TermDocs termDocs = reader.TermDocs(Enclosing_Instance.term);
  82. if (termDocs == null)
  83. return null;
  84. return new TermScorer(this, termDocs, similarity, reader.Norms(Enclosing_Instance.term.Field()));
  85. }
  86. public virtual Explanation Explain(IndexReader reader, int doc)
  87. {
  88. Explanation result = new Explanation();
  89. result.SetDescription("weight(" + GetQuery() + " in " + doc + "), product of:");
  90. Explanation idfExpl = new Explanation(idf, "idf(docFreq=" + reader.DocFreq(Enclosing_Instance.term) + ")");
  91. // explain query weight
  92. Explanation queryExpl = new Explanation();
  93. queryExpl.SetDescription("queryWeight(" + GetQuery() + "), product of:");
  94. Explanation boostExpl = new Explanation(Enclosing_Instance.GetBoost(), "boost");
  95. if (Enclosing_Instance.GetBoost() != 1.0f)
  96. queryExpl.AddDetail(boostExpl);
  97. queryExpl.AddDetail(idfExpl);
  98. Explanation queryNormExpl = new Explanation(queryNorm, "queryNorm");
  99. queryExpl.AddDetail(queryNormExpl);
  100. queryExpl.SetValue(boostExpl.GetValue() * idfExpl.GetValue() * queryNormExpl.GetValue());
  101. result.AddDetail(queryExpl);
  102. // explain field weight
  103. System.String field = Enclosing_Instance.term.Field();
  104. Explanation fieldExpl = new Explanation();
  105. fieldExpl.SetDescription("fieldWeight(" + Enclosing_Instance.term + " in " + doc + "), product of:");
  106. Explanation tfExpl = Scorer(reader).Explain(doc);
  107. fieldExpl.AddDetail(tfExpl);
  108. fieldExpl.AddDetail(idfExpl);
  109. Explanation fieldNormExpl = new Explanation();
  110. byte[] fieldNorms = reader.Norms(field);
  111. float fieldNorm = fieldNorms != null ? Similarity.DecodeNorm(fieldNorms[doc]) : 0.0f;
  112. fieldNormExpl.SetValue(fieldNorm);
  113. fieldNormExpl.SetDescription("fieldNorm(field=" + field + ", doc=" + doc + ")");
  114. fieldExpl.AddDetail(fieldNormExpl);
  115. fieldExpl.SetValue(tfExpl.GetValue() * idfExpl.GetValue() * fieldNormExpl.GetValue());
  116. result.AddDetail(fieldExpl);
  117. // combine them
  118. result.SetValue(queryExpl.GetValue() * fieldExpl.GetValue());
  119. if (queryExpl.GetValue() == 1.0f)
  120. return fieldExpl;
  121. return result;
  122. }
  123. }
  124. /// <summary>Constructs a query for the term <code>t</code>. </summary>
  125. public TermQuery(Term t)
  126. {
  127. term = t;
  128. }
  129. /// <summary>Returns the term of this query. </summary>
  130. public virtual Term GetTerm()
  131. {
  132. return term;
  133. }
  134. protected internal override Weight CreateWeight(Searcher searcher)
  135. {
  136. return new TermWeight(this, searcher);
  137. }
  138. public override void  ExtractTerms(System.Collections.Hashtable terms)
  139. {
  140.             Term term = GetTerm();
  141. terms.Add(term, term);
  142. }
  143. /// <summary>Prints a user-readable version of this query. </summary>
  144. public override System.String ToString(System.String field)
  145. {
  146. System.Text.StringBuilder buffer = new System.Text.StringBuilder();
  147. if (!term.Field().Equals(field))
  148. {
  149. buffer.Append(term.Field());
  150. buffer.Append(":");
  151. }
  152. buffer.Append(term.Text());
  153. buffer.Append(ToStringUtils.Boost(GetBoost()));
  154. return buffer.ToString();
  155. }
  156. /// <summary>Returns true iff <code>o</code> is equal to this. </summary>
  157. public  override bool Equals(System.Object o)
  158. {
  159. if (!(o is TermQuery))
  160. return false;
  161. TermQuery other = (TermQuery) o;
  162. return (this.GetBoost() == other.GetBoost()) && this.term.Equals(other.term);
  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) ^ term.GetHashCode();
  168. }
  169. // {{Aroush-1.9}} Do we need this?!
  170. public override System.Object Clone()
  171. {
  172. return null;
  173. }
  174. }
  175. }