blob: 6d0d73d26ec2f39afc02e7c1a2efc596e96d099e [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.solr.handler.export;
import java.io.IOException;
import org.apache.lucene.index.DocValues;
import org.apache.lucene.index.LeafReaderContext;
import org.apache.lucene.index.NumericDocValues;
class FloatValue implements SortValue {
protected NumericDocValues vals;
protected String field;
protected float currentValue;
protected FloatComp comp;
private int lastDocID;
private boolean present;
public FloatValue(String field, FloatComp comp) {
this.field = field;
this.comp = comp;
this.currentValue = comp.resetValue();
this.present = false;
}
public Object getCurrentValue() {
assert present == true;
return currentValue;
}
public String getField() {
return field;
}
public FloatValue copy() {
return new FloatValue(field, comp);
}
public void setNextReader(LeafReaderContext context) throws IOException {
this.vals = DocValues.getNumeric(context.reader(), field);
lastDocID = 0;
}
public void setCurrentValue(int docId) throws IOException {
if (docId < lastDocID) {
throw new AssertionError("docs were sent out-of-order: lastDocID=" + lastDocID + " vs doc=" + docId);
}
lastDocID = docId;
int curDocID = vals.docID();
if (docId > curDocID) {
curDocID = vals.advance(docId);
}
if (docId == curDocID) {
present = true;
currentValue = Float.intBitsToFloat((int)vals.longValue());
} else {
present = false;
currentValue = 0f;
}
}
@Override
public boolean isPresent() {
return present;
}
public void setCurrentValue(SortValue sv) {
FloatValue fv = (FloatValue)sv;
this.currentValue = fv.currentValue;
this.present = fv.present;
}
public void reset() {
this.currentValue = comp.resetValue();
this.present = false;
}
public int compareTo(SortValue o) {
FloatValue fv = (FloatValue)o;
return comp.compare(currentValue, fv.currentValue);
}
}