/* * * 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.KeyValue; import org.apache.hadoop.hbase.protobuf.generated.FilterProtos; import org.apache.hadoop.hbase.util.Bytes; import java.util.ArrayList; import com.google.common.base.Preconditions; import com.google.protobuf.ByteString; import com.google.protobuf.InvalidProtocolBufferException; /** * This filter is used for selecting only those keys with columns that are * between minColumn to maxColumn. For example, if minColumn is 'an', and * maxColumn is 'be', it will pass keys with columns like 'ana', 'bad', but not * keys with columns like 'bed', 'eye' * * If minColumn is null, there is no lower bound. If maxColumn is null, there is * no upper bound. * * minColumnInclusive and maxColumnInclusive specify if the ranges are inclusive * or not. */ @InterfaceAudience.Public @InterfaceStability.Stable public class ColumnRangeFilter extends FilterBase { protected byte[] minColumn = null; protected boolean minColumnInclusive = true; protected byte[] maxColumn = null; protected boolean maxColumnInclusive = false; /** * Create a filter to select those keys with columns that are between minColumn * and maxColumn. * @param minColumn minimum value for the column range. If if it's null, * there is no lower bound. * @param minColumnInclusive if true, include minColumn in the range. * @param maxColumn maximum value for the column range. If it's null, * @param maxColumnInclusive if true, include maxColumn in the range. * there is no upper bound. */ public ColumnRangeFilter(final byte[] minColumn, boolean minColumnInclusive, final byte[] maxColumn, boolean maxColumnInclusive) { this.minColumn = minColumn; this.minColumnInclusive = minColumnInclusive; this.maxColumn = maxColumn; this.maxColumnInclusive = maxColumnInclusive; } /** * @return if min column range is inclusive. */ public boolean isMinColumnInclusive() { return minColumnInclusive; } /** * @return if max column range is inclusive. */ public boolean isMaxColumnInclusive() { return maxColumnInclusive; } /** * @return the min column range for the filter */ public byte[] getMinColumn() { return this.minColumn; } /** * @return true if min column is inclusive, false otherwise */ public boolean getMinColumnInclusive() { return this.minColumnInclusive; } /** * @return the max column range for the filter */ public byte[] getMaxColumn() { return this.maxColumn; } /** * @return true if max column is inclusive, false otherwise */ public boolean getMaxColumnInclusive() { return this.maxColumnInclusive; } @Override public ReturnCode filterKeyValue(KeyValue kv) { byte[] buffer = kv.getBuffer(); int qualifierOffset = kv.getQualifierOffset(); int qualifierLength = kv.getQualifierLength(); int cmpMin = 1; if (this.minColumn != null) { cmpMin = Bytes.compareTo(buffer, qualifierOffset, qualifierLength, this.minColumn, 0, this.minColumn.length); } if (cmpMin < 0) { return ReturnCode.SEEK_NEXT_USING_HINT; } if (!this.minColumnInclusive && cmpMin == 0) { return ReturnCode.SKIP; } if (this.maxColumn == null) { return ReturnCode.INCLUDE; } int cmpMax = Bytes.compareTo(buffer, qualifierOffset, qualifierLength, this.maxColumn, 0, this.maxColumn.length); if (this.maxColumnInclusive && cmpMax <= 0 || !this.maxColumnInclusive && cmpMax < 0) { return ReturnCode.INCLUDE; } return ReturnCode.NEXT_ROW; } public static Filter createFilterFromArguments(ArrayList<byte []> filterArguments) { Preconditions.checkArgument(filterArguments.size() == 4, "Expected 4 but got: %s", filterArguments.size()); byte [] minColumn = ParseFilter.removeQuotesFromByteArray(filterArguments.get(0)); boolean minColumnInclusive = ParseFilter.convertByteArrayToBoolean(filterArguments.get(1)); byte [] maxColumn = ParseFilter.removeQuotesFromByteArray(filterArguments.get(2)); boolean maxColumnInclusive = ParseFilter.convertByteArrayToBoolean(filterArguments.get(3)); if (minColumn.length == 0) minColumn = null; if (maxColumn.length == 0) maxColumn = null; return new ColumnRangeFilter(minColumn, minColumnInclusive, maxColumn, maxColumnInclusive); } /** * @return The filter serialized using pb */ public byte [] toByteArray() { FilterProtos.ColumnRangeFilter.Builder builder = FilterProtos.ColumnRangeFilter.newBuilder(); if (this.minColumn != null) builder.setMinColumn(ByteString.copyFrom(this.minColumn)); builder.setMinColumnInclusive(this.minColumnInclusive); if (this.maxColumn != null) builder.setMaxColumn(ByteString.copyFrom(this.maxColumn)); builder.setMaxColumnInclusive(this.maxColumnInclusive); return builder.build().toByteArray(); } /** * @param pbBytes A pb serialized {@link ColumnRangeFilter} instance * @return An instance of {@link ColumnRangeFilter} made from <code>bytes</code> * @throws DeserializationException * @see {@link #toByteArray()} */ public static ColumnRangeFilter parseFrom(final byte [] pbBytes) throws DeserializationException { FilterProtos.ColumnRangeFilter proto; try { proto = FilterProtos.ColumnRangeFilter.parseFrom(pbBytes); } catch (InvalidProtocolBufferException e) { throw new DeserializationException(e); } return new ColumnRangeFilter(proto.hasMinColumn()?proto.getMinColumn().toByteArray():null, proto.getMinColumnInclusive(),proto.hasMaxColumn()?proto.getMaxColumn().toByteArray():null, proto.getMaxColumnInclusive()); } /** * @param other * @return true if and only if the fields of the filter that are serialized * are equal to the corresponding fields in other. Used for testing. */ boolean areSerializedFieldsEqual(Filter o) { if (o == this) return true; if (!(o instanceof ColumnRangeFilter)) return false; ColumnRangeFilter other = (ColumnRangeFilter)o; return Bytes.equals(this.getMinColumn(),other.getMinColumn()) && this.getMinColumnInclusive() == other.getMinColumnInclusive() && Bytes.equals(this.getMaxColumn(), other.getMaxColumn()) && this.getMaxColumnInclusive() == other.getMaxColumnInclusive(); } @Override public KeyValue getNextKeyHint(KeyValue kv) { return KeyValue.createFirstOnRow(kv.getBuffer(), kv.getRowOffset(), kv .getRowLength(), kv.getBuffer(), kv.getFamilyOffset(), kv .getFamilyLength(), this.minColumn, 0, this.minColumn == null ? 0 : this.minColumn.length); } @Override public String toString() { return this.getClass().getSimpleName() + " " + (this.minColumnInclusive ? "[" : "(") + Bytes.toStringBinary(this.minColumn) + ", " + Bytes.toStringBinary(this.maxColumn) + (this.maxColumnInclusive ? "]" : ")"); } }