blob: c2502cb21bd29ece3b91ca6d09ae5bd32b2ceb35 [file]
using System;
using System.Collections.Generic;
using System.Diagnostics;
namespace Lucene.Net.Index
{
/*
* 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 IBits = Lucene.Net.Util.IBits;
using BytesRef = Lucene.Net.Util.BytesRef;
/// <summary>
/// Implements a <seealso cref="TermsEnum"/> wrapping a provided
/// <seealso cref="SortedSetDocValues"/>.
/// </summary>
#if FEATURE_SERIALIZABLE
[Serializable]
#endif
internal class SortedSetDocValuesTermsEnum : TermsEnum
{
private readonly SortedSetDocValues values;
private long currentOrd = -1;
private readonly BytesRef term = new BytesRef();
/// <summary>
/// Creates a new TermsEnum over the provided values </summary>
public SortedSetDocValuesTermsEnum(SortedSetDocValues values)
{
this.values = values;
}
public override SeekStatus SeekCeil(BytesRef text)
{
long ord = values.LookupTerm(text);
if (ord >= 0)
{
currentOrd = ord;
term.Offset = 0;
// TODO: is there a cleaner way?
// term.bytes may be pointing to codec-private byte[]
// storage, so we must force new byte[] allocation:
term.Bytes = new byte[text.Length];
term.CopyBytes(text);
return SeekStatus.FOUND;
}
else
{
currentOrd = -ord - 1;
if (currentOrd == values.ValueCount)
{
return SeekStatus.END;
}
else
{
// TODO: hmm can we avoid this "extra" lookup?:
values.LookupOrd(currentOrd, term);
return SeekStatus.NOT_FOUND;
}
}
}
public override bool SeekExact(BytesRef text)
{
long ord = values.LookupTerm(text);
if (ord >= 0)
{
term.Offset = 0;
// TODO: is there a cleaner way?
// term.bytes may be pointing to codec-private byte[]
// storage, so we must force new byte[] allocation:
term.Bytes = new byte[text.Length];
term.CopyBytes(text);
currentOrd = ord;
return true;
}
else
{
return false;
}
}
public override void SeekExact(long ord)
{
Debug.Assert(ord >= 0 && ord < values.ValueCount);
currentOrd = (int)ord;
values.LookupOrd(currentOrd, term);
}
public override BytesRef Next()
{
currentOrd++;
if (currentOrd >= values.ValueCount)
{
return null;
}
values.LookupOrd(currentOrd, term);
return term;
}
public override BytesRef Term
{
get { return term; }
}
public override long Ord
{
get { return currentOrd; }
}
public override int DocFreq
{
get { throw new System.NotSupportedException(); }
}
public override long TotalTermFreq
{
get { return -1; }
}
public override DocsEnum Docs(IBits liveDocs, DocsEnum reuse, DocsFlags flags)
{
throw new System.NotSupportedException();
}
public override DocsAndPositionsEnum DocsAndPositions(IBits liveDocs, DocsAndPositionsEnum reuse, DocsAndPositionsFlags flags)
{
throw new System.NotSupportedException();
}
public override IComparer<BytesRef> Comparer
{
get
{
return BytesRef.UTF8SortedAsUnicodeComparer;
}
}
public override void SeekExact(BytesRef term, TermState state)
{
Debug.Assert(state != null && state is OrdTermState);
this.SeekExact(((OrdTermState)state).Ord);
}
public override TermState GetTermState()
{
OrdTermState state = new OrdTermState();
state.Ord = currentOrd;
return state;
}
}
}