View Javadoc

1   /**
2    *
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *     http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing, software
14   * distributed under the License is distributed on an "AS IS" BASIS,
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   * See the License for the specific language governing permissions and
17   * limitations under the License.
18   */
19  
20  package org.apache.hadoop.hbase.filter;
21  
22  import java.io.IOException;
23  import java.util.ArrayList;
24  
25  import org.apache.hadoop.hbase.classification.InterfaceAudience;
26  import org.apache.hadoop.hbase.classification.InterfaceStability;
27  import org.apache.hadoop.hbase.Cell;
28  import org.apache.hadoop.hbase.exceptions.DeserializationException;
29  import org.apache.hadoop.hbase.protobuf.ProtobufUtil;
30  import org.apache.hadoop.hbase.protobuf.generated.FilterProtos;
31  
32  import com.google.protobuf.InvalidProtocolBufferException;
33  
34  /**
35   * This filter is used to filter based on the column qualifier. It takes an
36   * operator (equal, greater, not equal, etc) and a byte [] comparator for the
37   * column qualifier portion of a key.
38   * <p>
39   * This filter can be wrapped with {@link WhileMatchFilter} and {@link SkipFilter}
40   * to add more control.
41   * <p>
42   * Multiple filters can be combined using {@link FilterList}.
43   * <p>
44   * If an already known column qualifier is looked for, use 
45   * {@link org.apache.hadoop.hbase.client.Get#addColumn}
46   * directly rather than a filter.
47   */
48  @InterfaceAudience.Public
49  @InterfaceStability.Stable
50  public class QualifierFilter extends CompareFilter {
51  
52    /**
53     * Constructor.
54     * @param op the compare op for column qualifier matching
55     * @param qualifierComparator the comparator for column qualifier matching
56     */
57    public QualifierFilter(final CompareOp op,
58        final ByteArrayComparable qualifierComparator) {
59      super(op, qualifierComparator);
60    }
61  
62    @Override
63    public ReturnCode filterKeyValue(Cell v) {
64      if (doCompare(this.compareOp, this.comparator, v.getQualifierArray(),
65          v.getQualifierOffset(), v.getQualifierLength())) {
66        return ReturnCode.SKIP;
67      }
68      return ReturnCode.INCLUDE;
69    }
70  
71    public static Filter createFilterFromArguments(ArrayList<byte []> filterArguments) {
72      ArrayList<?> arguments = CompareFilter.extractArguments(filterArguments);
73      CompareOp compareOp = (CompareOp)arguments.get(0);
74      ByteArrayComparable comparator = (ByteArrayComparable)arguments.get(1);
75      return new QualifierFilter(compareOp, comparator);
76    }
77  
78    /**
79     * @return The filter serialized using pb
80     */
81    public byte [] toByteArray() {
82      FilterProtos.QualifierFilter.Builder builder =
83        FilterProtos.QualifierFilter.newBuilder();
84      builder.setCompareFilter(super.convert());
85      return builder.build().toByteArray();
86    }
87  
88    /**
89     * @param pbBytes A pb serialized {@link QualifierFilter} instance
90     * @return An instance of {@link QualifierFilter} made from <code>bytes</code>
91     * @throws org.apache.hadoop.hbase.exceptions.DeserializationException
92     * @see #toByteArray
93     */
94    public static QualifierFilter parseFrom(final byte [] pbBytes)
95    throws DeserializationException {
96      FilterProtos.QualifierFilter proto;
97      try {
98        proto = FilterProtos.QualifierFilter.parseFrom(pbBytes);
99      } catch (InvalidProtocolBufferException e) {
100       throw new DeserializationException(e);
101     }
102     final CompareOp valueCompareOp =
103       CompareOp.valueOf(proto.getCompareFilter().getCompareOp().name());
104     ByteArrayComparable valueComparator = null;
105     try {
106       if (proto.getCompareFilter().hasComparator()) {
107         valueComparator = ProtobufUtil.toComparator(proto.getCompareFilter().getComparator());
108       }
109     } catch (IOException ioe) {
110       throw new DeserializationException(ioe);
111     }
112     return new QualifierFilter(valueCompareOp,valueComparator);
113   }
114 
115   /**
116    * @param other
117    * @return true if and only if the fields of the filter that are serialized
118    * are equal to the corresponding fields in other.  Used for testing.
119    */
120   boolean areSerializedFieldsEqual(Filter o) {
121     if (o == this) return true;
122     if (!(o instanceof QualifierFilter)) return false;
123 
124     return super.areSerializedFieldsEqual(o);
125   }
126 }