
org.apache.lucene.document.BinaryRangeDocValues Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.lucene
Show all versions of org.apache.servicemix.bundles.lucene
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
/*
* 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.document;
import java.io.IOException;
import org.apache.lucene.index.BinaryDocValues;
import org.apache.lucene.util.BytesRef;
/** A binary representation of a range that wraps a BinaryDocValues field */
public class BinaryRangeDocValues extends BinaryDocValues {
private final BinaryDocValues in;
private byte[] packedValue;
private final int numDims;
private final int numBytesPerDimension;
private int docID = -1;
/**
* Constructor for BinaryRangeDocValues
*
* @param in the binary doc values source field
* @param numDims the number of dimensions in each doc values field
* @param numBytesPerDimension size of each dimension (2 * encoded value size)
*/
public BinaryRangeDocValues(BinaryDocValues in, int numDims, int numBytesPerDimension) {
assert in != null;
this.in = in;
this.numBytesPerDimension = numBytesPerDimension;
this.numDims = numDims;
this.packedValue = new byte[2 * numDims * numBytesPerDimension];
}
@Override
public int nextDoc() throws IOException {
docID = in.nextDoc();
if (docID != NO_MORE_DOCS) {
decodeRanges();
}
return docID;
}
@Override
public int docID() {
return in.docID();
}
@Override
public long cost() {
return in.cost();
}
@Override
public int advance(int target) throws IOException {
int res = in.advance(target);
if (res != NO_MORE_DOCS) {
decodeRanges();
}
return res;
}
@Override
public boolean advanceExact(int target) throws IOException {
boolean res = in.advanceExact(target);
if (res) {
decodeRanges();
}
return res;
}
@Override
public BytesRef binaryValue() throws IOException {
return in.binaryValue();
}
/**
* Gets the packed value that represents this range
*
* @return the packed value that represents this range
*/
public byte[] getPackedValue() {
return packedValue;
}
private void decodeRanges() throws IOException {
BytesRef bytesRef = in.binaryValue();
// We reuse the existing allocated memory for packed values since all docvalues in this iterator
// should be exactly same in indexed structure, hence the byte representations in length should
// be identical
System.arraycopy(
bytesRef.bytes, bytesRef.offset, packedValue, 0, 2 * numDims * numBytesPerDimension);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy