RangeQuery.cs :  » Search-Engines » dotLucene » Lucene » Net » Search » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Search Engines » dotLucene 
dotLucene » Lucene » Net » Search » RangeQuery.cs
/*
 * Copyright 2004 The Apache Software Foundation
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

using System;
using IndexReaderLucene.Net.Index.IndexReader;
using TermLucene.Net.Index.Term;
using TermEnumLucene.Net.Index.TermEnum;
using ToStringUtilsLucene.Net.Util.ToStringUtils;

namespace Lucene.Net.Search{
  
  /// <summary> A Query that matches documents within an exclusive range. A RangeQuery
  /// is built by QueryParser for input like <code>[010 TO 120]</code>.
  /// 
  /// </summary>
  /// <version>  $Id: RangeQuery.java 329381 2005-10-29 09:26:21Z ehatcher $
  /// </version>
  [Serializable]
  public class RangeQuery : Query
  {
    private Term lowerTerm;
    private Term upperTerm;
    private bool inclusive;
    
    /// <summary>Constructs a query selecting all terms greater than
    /// <code>lowerTerm</code> but less than <code>upperTerm</code>.
    /// There must be at least one term and either term may be null,
    /// in which case there is no bound on that side, but if there are
    /// two terms, both terms <b>must</b> be for the same field.
    /// </summary>
    public RangeQuery(Term lowerTerm, Term upperTerm, bool inclusive)
    {
      if (lowerTerm == null && upperTerm == null)
      {
        throw new System.ArgumentException("At least one term must be non-null");
      }
      if (lowerTerm != null && upperTerm != null && lowerTerm.Field() != upperTerm.Field())
      {
        throw new System.ArgumentException("Both terms must be for the same field");
      }
      
      // if we have a lowerTerm, start there. otherwise, start at beginning
      if (lowerTerm != null)
      {
        this.lowerTerm = lowerTerm;
      }
      else
      {
        this.lowerTerm = new Term(upperTerm.Field(), "");
      }
      
      this.upperTerm = upperTerm;
      this.inclusive = inclusive;
    }
    
    public override Query Rewrite(IndexReader reader)
    {
      
      BooleanQuery query = new BooleanQuery(true);
      TermEnum enumerator = reader.Terms(lowerTerm);
      
      try
      {
        
        bool checkLower = false;
        if (!inclusive)
        // make adjustments to set to exclusive
          checkLower = true;
        
        System.String testField = GetField();
        
        do 
        {
          Term term = enumerator.Term();
          if (term != null && term.Field() == testField)
          {
            if (!checkLower || String.CompareOrdinal(term.Text(), lowerTerm.Text()) > 0)
            {
              checkLower = false;
              if (upperTerm != null)
              {
                int compare = String.CompareOrdinal(upperTerm.Text(), term.Text());
                /* if beyond the upper term, or is exclusive and
                * this is equal to the upper term, break out */
                if ((compare < 0) || (!inclusive && compare == 0))
                  break;
              }
              TermQuery tq = new TermQuery(term); // found a match
              tq.SetBoost(GetBoost()); // set the boost
              query.Add(tq, BooleanClause.Occur.SHOULD); // add to query
            }
          }
          else
          {
            break;
          }
        }
        while (enumerator.Next());
      }
      finally
      {
        enumerator.Close();
      }
      return query;
    }
    
    /// <summary>Returns the field name for this query </summary>
    public virtual System.String GetField()
    {
      return (lowerTerm != null?lowerTerm.Field():upperTerm.Field());
    }
    
    /// <summary>Returns the lower term of this range query </summary>
    public virtual Term GetLowerTerm()
    {
      return lowerTerm;
    }
    
    /// <summary>Returns the upper term of this range query </summary>
    public virtual Term GetUpperTerm()
    {
      return upperTerm;
    }
    
    /// <summary>Returns <code>true</code> if the range query is inclusive </summary>
    public virtual bool IsInclusive()
    {
      return inclusive;
    }
    
    
    /// <summary>Prints a user-readable version of this query. </summary>
    public override System.String ToString(System.String field)
    {
      System.Text.StringBuilder buffer = new System.Text.StringBuilder();
      if (!GetField().Equals(field))
      {
        buffer.Append(GetField());
        buffer.Append(":");
      }
      buffer.Append(inclusive?"[":"{");
      buffer.Append(lowerTerm != null ? lowerTerm.Text() : "null");
      buffer.Append(" TO ");
      buffer.Append(upperTerm != null ? upperTerm.Text() : "null");
      buffer.Append(inclusive ? "]" : "}");
      buffer.Append(ToStringUtils.Boost(GetBoost()));
      return buffer.ToString();
    }
    
    /// <summary>Returns true iff <code>o</code> is equal to this. </summary>
    public  override bool Equals(System.Object o)
    {
      if (this == o)
        return true;
      if (!(o is RangeQuery))
        return false;
      
      RangeQuery other = (RangeQuery) o;
      if (this.GetBoost() != other.GetBoost())
        return false;
      if (this.inclusive != other.inclusive)
        return false;
      // one of lowerTerm and upperTerm can be null
      if (this.lowerTerm != null?!this.lowerTerm.Equals(other.lowerTerm):other.lowerTerm != null)
        return false;
      if (this.upperTerm != null?!this.upperTerm.Equals(other.upperTerm):other.upperTerm != null)
        return false;
      return true;
    }
    
    /// <summary>Returns a hash code value for this object.</summary>
    public override int GetHashCode()
    {
      return BitConverter.ToInt32(BitConverter.GetBytes(GetBoost()), 0) ^ (lowerTerm != null ? lowerTerm.GetHashCode():0) ^ (upperTerm != null?upperTerm.GetHashCode() : 0) ^ (this.inclusive ? 1 : 0);
    }
    // {{Aroush-1.9}} Do we need this?!
    override public System.Object Clone()
    {
      return null;
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.