/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 AttributeSource = Lucene.Net.Util.AttributeSource;
namespace Lucene.Net.Index
{
/// This class tracks the number and position / offset parameters of terms
/// being added to the index. The information collected in this class is
/// also used to calculate the normalization factor for a field.
///
/// WARNING: This API is new and experimental, and may suddenly
/// change.
///
public sealed class FieldInvertState
{
internal int position;
internal int length;
internal int numOverlap;
internal int offset;
internal float boost;
internal AttributeSource attributeSource;
public FieldInvertState()
{
}
public FieldInvertState(int position, int length, int numOverlap, int offset, float boost)
{
this.position = position;
this.length = length;
this.numOverlap = numOverlap;
this.offset = offset;
this.boost = boost;
}
/// Re-initialize the state, using this boost value.
/// boost value to use.
///
internal void Reset(float docBoost)
{
position = 0;
length = 0;
numOverlap = 0;
offset = 0;
boost = docBoost;
attributeSource = null;
}
/// Get the last processed term position.
/// the position
public int Position
{
get { return position; }
}
/// Get total number of terms in this field.
/// the length
public int Length
{
get { return length; }
}
/// Get the number of terms with positionIncrement == 0.
/// the numOverlap
public int NumOverlap
{
get { return numOverlap; }
}
/// Get end offset of the last processed term.
/// the offset
public int Offset
{
get { return offset; }
}
/// Get boost value. This is the cumulative product of
/// document boost and field boost for all field instances
/// sharing the same field name.
///
/// the boost
public float Boost
{
get { return boost; }
}
public AttributeSource AttributeSource
{
get { return attributeSource; }
}
}
}