/** * * 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.hadoop.hbase.filter; import org.apache.hadoop.classification.InterfaceAudience; import org.apache.hadoop.classification.InterfaceStability; import org.apache.hadoop.hbase.DeserializationException; import org.apache.hadoop.hbase.protobuf.generated.ComparatorProtos; import org.apache.hadoop.hbase.util.Bytes; import com.google.protobuf.ByteString; /** Base class for byte array comparators */ @InterfaceAudience.Public @InterfaceStability.Stable public abstract class ByteArrayComparable implements Comparable<byte[]> { byte[] value; /** * Constructor. * @param value the value to compare against */ public ByteArrayComparable(byte [] value) { this.value = value; } public byte[] getValue() { return value; } /** * @return The comparator serialized using pb */ public abstract byte [] toByteArray(); ComparatorProtos.ByteArrayComparable convert() { ComparatorProtos.ByteArrayComparable.Builder builder = ComparatorProtos.ByteArrayComparable.newBuilder(); if (value != null) builder.setValue(ByteString.copyFrom(value)); return builder.build(); } /** * @param pbBytes A pb serialized {@link ByteArrayComparable} instance * @return An instance of {@link ByteArrayComparable} made from <code>bytes</code> * @throws DeserializationException * @see {@link #toByteArray()} */ public static ByteArrayComparable parseFrom(final byte [] pbBytes) throws DeserializationException { throw new DeserializationException( "parseFrom called on base ByteArrayComparable, but should be called on derived type"); } /** * @param other * @return true if and only if the fields of the comparator that are serialized * are equal to the corresponding fields in other. Used for testing. */ boolean areSerializedFieldsEqual(ByteArrayComparable o) { if (o == this) return true; if (!(o instanceof ByteArrayComparable)) return false; return Bytes.equals(this.getValue(), o.getValue()); } @Override public int compareTo(byte [] value) { return compareTo(value, 0, value.length); } /** * Special compareTo method for subclasses, to avoid * copying byte[] unnecessarily. * @param value byte[] to compare * @param offset offset into value * @param length number of bytes to compare * @return a negative integer, zero, or a positive integer as this object * is less than, equal to, or greater than the specified object. */ public abstract int compareTo(byte [] value, int offset, int length); }