blob: 5e092371f393a85a32d8d65c28c818a67fca4445 [file] [log] [blame]
/*
* 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.
*/
package org.apache.lucene.codecs.memory;
import java.io.IOException;
import org.apache.lucene.index.SortedDocValues;
import org.apache.lucene.util.BytesRef;
/**
* Wraps a {@link LegacySortedDocValues} into a {@link SortedDocValues}.
*
* @deprecated Implement {@link SortedDocValues} directly.
*/
@Deprecated
final class LegacySortedDocValuesWrapper extends SortedDocValues {
private final LegacySortedDocValues values;
private final int maxDoc;
private int docID = -1;
private int ord;
public LegacySortedDocValuesWrapper(LegacySortedDocValues values, int maxDoc) {
this.values = values;
this.maxDoc = maxDoc;
}
@Override
public int docID() {
return docID;
}
@Override
public int nextDoc() {
assert docID != NO_MORE_DOCS;
docID++;
while (docID < maxDoc) {
ord = values.getOrd(docID);
if (ord != -1) {
return docID;
}
docID++;
}
docID = NO_MORE_DOCS;
return NO_MORE_DOCS;
}
@Override
public int advance(int target) {
if (target < docID) {
throw new IllegalArgumentException(
"cannot advance backwards: docID=" + docID + " target=" + target);
}
if (target >= maxDoc) {
this.docID = NO_MORE_DOCS;
} else {
this.docID = target - 1;
nextDoc();
}
return docID;
}
@Override
public boolean advanceExact(int target) throws IOException {
docID = target;
ord = values.getOrd(docID);
return ord != -1;
}
@Override
public long cost() {
return 0;
}
@Override
public int ordValue() {
return ord;
}
@Override
public BytesRef lookupOrd(int ord) {
return values.lookupOrd(ord);
}
@Override
public int getValueCount() {
return values.getValueCount();
}
}