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

搜索引擎

开发平台:

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 IndexInput = Lucene.Net.Store.IndexInput;
  18. namespace Lucene.Net.Index
  19. {
  20. sealed class TermBuffer : System.ICloneable
  21. {
  22. private static readonly char[] NO_CHARS = new char[0];
  23. private System.String field;
  24. private char[] text = NO_CHARS;
  25. private int textLength;
  26. private Term term; // cached
  27. public int CompareTo(TermBuffer other)
  28. {
  29. if ((System.Object) field == (System.Object) other.field)
  30.      // fields are interned
  31. return CompareChars(text, textLength, other.text, other.textLength);
  32. else
  33. return String.CompareOrdinal(field, other.field);
  34. }
  35. private static int CompareChars(char[] v1, int len1, char[] v2, int len2)
  36. {
  37. int end = System.Math.Min(len1, len2);
  38. for (int k = 0; k < end; k++)
  39. {
  40. char c1 = v1[k];
  41. char c2 = v2[k];
  42. if (c1 != c2)
  43. {
  44. return c1 - c2;
  45. }
  46. }
  47. return len1 - len2;
  48. }
  49. private void  SetTextLength(int newLength)
  50. {
  51. if (text.Length < newLength)
  52. {
  53. char[] newText = new char[newLength];
  54. Array.Copy(text, 0, newText, 0, textLength);
  55. text = newText;
  56. }
  57. textLength = newLength;
  58. }
  59. public void  Read(IndexInput input, FieldInfos fieldInfos)
  60. {
  61. this.term = null; // invalidate cache
  62. int start = input.ReadVInt();
  63. int length = input.ReadVInt();
  64. int totalLength = start + length;
  65. SetTextLength(totalLength);
  66. input.ReadChars(this.text, start, length);
  67. this.field = fieldInfos.FieldName(input.ReadVInt());
  68. }
  69. public void  Set(Term term)
  70. {
  71. if (term == null)
  72. {
  73. Reset();
  74. return ;
  75. }
  76. // copy text into the buffer
  77. SetTextLength(term.Text().Length);
  78.             System.String sourceString = term.Text();
  79.             int sourceEnd = term.Text().Length;
  80.             for (int i = 0; i < sourceEnd; i++)
  81.             {
  82.                 text[i] = (char) sourceString[i];
  83.             }
  84. this.field = term.Field();
  85. this.term = term;
  86. }
  87. public void  Set(TermBuffer other)
  88. {
  89. SetTextLength(other.textLength);
  90. Array.Copy(other.text, 0, text, 0, textLength);
  91. this.field = other.field;
  92. this.term = other.term;
  93. }
  94. public void  Reset()
  95. {
  96. this.field = null;
  97. this.textLength = 0;
  98. this.term = null;
  99. }
  100. public Term ToTerm()
  101. {
  102. if (field == null)
  103.      // unset
  104. return null;
  105. if (term == null)
  106. term = new Term(field, new System.String(text, 0, textLength), false);
  107. return term;
  108. }
  109. public System.Object Clone()
  110. {
  111. TermBuffer clone = null;
  112. try
  113. {
  114. clone = (TermBuffer) base.MemberwiseClone();
  115. }
  116. catch (System.Exception)
  117. {
  118. }
  119. clone.text = new char[text.Length];
  120. Array.Copy(text, 0, clone.text, 0, textLength);
  121. return clone;
  122. }
  123. }
  124. }