blob: 8d1f66ea17d5b746d1374c2ed046b62be24460d1 [file] [log] [blame]
// Lucene version compatibility level 4.8.1
using Lucene.Net.Util.Mutable;
using System;
using System.Globalization;
namespace Lucene.Net.Queries.Function.DocValues
{
/*
* 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.
*/
/// <summary>
/// Abstract <see cref="FunctionValues"/> implementation which supports retrieving <see cref="float"/> values.
/// Implementations can control how the <see cref="float"/> values are loaded through <see cref="SingleVal(int)"/>
/// <para/>
/// NOTE: This was FloatDocValues in Lucene
/// </summary>
public abstract class SingleDocValues : FunctionValues
{
protected readonly ValueSource m_vs;
protected SingleDocValues(ValueSource vs) // LUCENENET: CA1012: Abstract types should not have constructors (marked protected)
{
this.m_vs = vs;
}
public override byte ByteVal(int doc)
{
return (byte)SingleVal(doc);
}
/// <summary>
/// NOTE: This was shortVal() in Lucene
/// </summary>
public override short Int16Val(int doc)
{
return (short)SingleVal(doc);
}
/// <summary>
/// NOTE: This was floatVal() in Lucene
/// </summary>
public override abstract float SingleVal(int doc);
/// <summary>
/// NOTE: This was intVal() in Lucene
/// </summary>
public override int Int32Val(int doc)
{
return (int)SingleVal(doc);
}
/// <summary>
/// NOTE: This was longVal() in Lucene
/// </summary>
public override long Int64Val(int doc)
{
return (long)SingleVal(doc);
}
public override double DoubleVal(int doc)
{
return (double)SingleVal(doc);
}
public override string StrVal(int doc)
{
return SingleVal(doc).ToString("R", CultureInfo.InvariantCulture);
}
public override object ObjectVal(int doc)
{
return Exists(doc) ? SingleVal(doc) : (float?)null;
}
public override string ToString(int doc)
{
return m_vs.GetDescription() + '=' + StrVal(doc);
}
public override ValueFiller GetValueFiller()
{
return new ValueFiller.AnonymousValueFiller<MutableValueSingle>(new MutableValueSingle(), fillValue: (doc, mutableValue) =>
{
mutableValue.Value = SingleVal(doc);
mutableValue.Exists = Exists(doc);
});
}
}
}