Lucene.Net  3.0.3
Lucene.Net is a port of the Lucene search engine library, written in C# and targeted at .NET runtime users.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties Pages
KeywordTokenizer.cs
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 using Lucene.Net.Analysis.Tokenattributes;
19 using AttributeSource = Lucene.Net.Util.AttributeSource;
20 
21 namespace Lucene.Net.Analysis
22 {
23 
24  /// <summary> Emits the entire input as a single token.</summary>
25  public sealed class KeywordTokenizer:Tokenizer
26  {
27 
28  private const int DEFAULT_BUFFER_SIZE = 256;
29 
30  private bool done;
31  private int finalOffset;
32  private ITermAttribute termAtt;
33  private IOffsetAttribute offsetAtt;
34 
35  public KeywordTokenizer(System.IO.TextReader input):this(input, DEFAULT_BUFFER_SIZE)
36  {
37  }
38 
39  public KeywordTokenizer(System.IO.TextReader input, int bufferSize):base(input)
40  {
41  Init(bufferSize);
42  }
43 
44  public KeywordTokenizer(AttributeSource source, System.IO.TextReader input, int bufferSize):base(source, input)
45  {
46  Init(bufferSize);
47  }
48 
49  public KeywordTokenizer(AttributeFactory factory, System.IO.TextReader input, int bufferSize):base(factory, input)
50  {
51  Init(bufferSize);
52  }
53 
54  private void Init(int bufferSize)
55  {
56  this.done = false;
57  termAtt = AddAttribute<ITermAttribute>();
58  offsetAtt = AddAttribute<IOffsetAttribute>();
59  termAtt.ResizeTermBuffer(bufferSize);
60  }
61 
62  public override bool IncrementToken()
63  {
64  if (!done)
65  {
66  ClearAttributes();
67  done = true;
68  int upto = 0;
69  char[] buffer = termAtt.TermBuffer();
70  while (true)
71  {
72  int length = input.Read(buffer, upto, buffer.Length - upto);
73  if (length == 0)
74  break;
75  upto += length;
76  if (upto == buffer.Length)
77  buffer = termAtt.ResizeTermBuffer(1 + buffer.Length);
78  }
79  termAtt.SetTermLength(upto);
80  finalOffset = CorrectOffset(upto);
81  offsetAtt.SetOffset(CorrectOffset(0), finalOffset);
82  return true;
83  }
84  return false;
85  }
86 
87  public override void End()
88  {
89  // set final offset
90  offsetAtt.SetOffset(finalOffset, finalOffset);
91  }
92 
93  public override void Reset(System.IO.TextReader input)
94  {
95  base.Reset(input);
96  this.done = false;
97  }
98  }
99 }