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

org.apache.phoenix.schema.tuple.PositionBasedMultiKeyValueTuple Maven / Gradle / Ivy

The newest version!
/*
 * 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.phoenix.schema.tuple;

import static com.google.common.base.Preconditions.checkArgument;

import java.util.List;

import org.apache.hadoop.hbase.Cell;
import org.apache.hadoop.hbase.io.ImmutableBytesWritable;

/**
 * Tuple that is closely tied with {@link EncodedColumnQualiferCellsList}. It essentially provides a
 * way of getting hold of cell belonging to a cq/cf by doing a position based look up as opposed to
 * a MultiKeyValueTuple where we have to do a binary search in the List.
 */
public class PositionBasedMultiKeyValueTuple extends BaseTuple {
    private EncodedColumnQualiferCellsList values;

    public PositionBasedMultiKeyValueTuple() {
    }

    public PositionBasedMultiKeyValueTuple(List values) {
        checkArgument(values instanceof EncodedColumnQualiferCellsList,
            "PositionBasedMultiKeyValueTuple only works with lists of type EncodedColumnQualiferCellsList");
        this.values = (EncodedColumnQualiferCellsList) values;
    }

    /** Caller must not modify the list that is passed here */
    @Override
    public void setKeyValues(List values) {
        checkArgument(values instanceof EncodedColumnQualiferCellsList,
            "PositionBasedMultiKeyValueTuple only works with lists of type EncodedColumnQualiferCellsList");
        this.values = (EncodedColumnQualiferCellsList) values;
    }

    @Override
    public void getKey(ImmutableBytesWritable ptr) {
        Cell value = values.getFirstCell();
        ptr.set(value.getRowArray(), value.getRowOffset(), value.getRowLength());
    }

    @Override
    public boolean isImmutable() {
        return true;
    }

    @Override
    public Cell getValue(byte[] family, byte[] qualifier) {
        return values.getCellForColumnQualifier(qualifier);
    }

    @Override
    public String toString() {
        return values.toString();
    }

    @Override
    public int size() {
        return values.size();
    }

    @Override
    public Cell getValue(int index) {
        return values.get(index);
    }

    @Override
    public boolean getValue(byte[] family, byte[] qualifier, ImmutableBytesWritable ptr) {
        Cell kv = getValue(family, qualifier);
        if (kv == null) return false;
        ptr.set(kv.getValueArray(), kv.getValueOffset(), kv.getValueLength());
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy