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

搜索引擎

开发平台:

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 Lucene.Net.Index;
  18. namespace Lucene.Net.Search
  19. {
  20. sealed class PhrasePositions
  21. {
  22. internal int doc; // current doc
  23. internal int position; // position in doc
  24. internal int count; // remaining pos in this doc
  25. internal int offset; // position in phrase
  26. internal TermPositions tp; // stream of positions
  27. internal PhrasePositions next; // used to make lists
  28. internal PhrasePositions(TermPositions t, int o)
  29. {
  30. tp = t;
  31. offset = o;
  32. }
  33. internal bool Next()
  34. {
  35. // increments to next doc
  36. if (!tp.Next())
  37. {
  38. tp.Close(); // close stream
  39. doc = System.Int32.MaxValue; // sentinel value
  40. return false;
  41. }
  42. doc = tp.Doc();
  43. position = 0;
  44. return true;
  45. }
  46. internal bool SkipTo(int target)
  47. {
  48. if (!tp.SkipTo(target))
  49. {
  50. tp.Close(); // close stream
  51. doc = System.Int32.MaxValue; // sentinel value
  52. return false;
  53. }
  54. doc = tp.Doc();
  55. position = 0;
  56. return true;
  57. }
  58. internal void  FirstPosition()
  59. {
  60. count = tp.Freq(); // read first pos
  61. NextPosition();
  62. }
  63. internal bool NextPosition()
  64. {
  65. if (count-- > 0)
  66. {
  67. // read subsequent pos's
  68. position = tp.NextPosition() - offset;
  69. return true;
  70. }
  71. else
  72. return false;
  73. }
  74. }
  75. }