All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.index.fielddata.plain.GeoPointBinaryDVAtomicFieldData Maven / Gradle / Ivy

/*
 * Licensed to Elasticsearch under one or more contributor
 * license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright
 * ownership. Elasticsearch 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.elasticsearch.index.fielddata.plain;

import org.apache.lucene.index.AtomicReader;
import org.apache.lucene.index.BinaryDocValues;
import org.apache.lucene.util.BytesRef;
import org.elasticsearch.common.geo.GeoPoint;
import org.elasticsearch.common.util.ByteUtils;
import org.elasticsearch.index.fielddata.AtomicGeoPointFieldData;
import org.elasticsearch.index.fielddata.GeoPointValues;
import org.elasticsearch.index.fielddata.ScriptDocValues;

final class GeoPointBinaryDVAtomicFieldData extends AtomicGeoPointFieldData {

    private final AtomicReader reader;
    private final BinaryDocValues values;

    GeoPointBinaryDVAtomicFieldData(AtomicReader reader, BinaryDocValues values) {
        super();
        this.reader = reader;
        this.values = values == null ? BinaryDocValues.EMPTY : values;
    }

    @Override
    public boolean isMultiValued() {
        return false;
    }

    @Override
    public boolean isValuesOrdered() {
        return false;
    }

    @Override
    public int getNumDocs() {
        return reader.maxDoc();
    }

    @Override
    public long getNumberUniqueValues() {
        return Long.MAX_VALUE;
    }

    @Override
    public long getMemorySizeInBytes() {
        return -1; // not exposed by Lucene
    }

    @Override
    public ScriptDocValues getScriptValues() {
        return new ScriptDocValues.GeoPoints(getGeoPointValues());
    }

    @Override
    public void close() {
        // no-op
    }

    @Override
    public GeoPointValues getGeoPointValues() {
        return new GeoPointValues(true) {

            final BytesRef bytes = new BytesRef();
            int i = Integer.MAX_VALUE;
            int valueCount = 0;
            final GeoPoint point = new GeoPoint();

            @Override
            public int setDocument(int docId) {
                values.get(docId, bytes);
                assert bytes.length % 16 == 0;
                i = 0;
                return valueCount = (bytes.length >>> 4);
            }

            @Override
            public GeoPoint nextValue() {
                assert i < 2 * valueCount;
                final double lat = ByteUtils.readDoubleLE(bytes.bytes, bytes.offset + i++ * 8);
                final double lon = ByteUtils.readDoubleLE(bytes.bytes, bytes.offset + i++ * 8);
                return point.reset(lat, lon);
            }

        };
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy