View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *     http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing, software
13   * distributed under the License is distributed on an "AS IS" BASIS,
14   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   * See the License for the specific language governing permissions and
16   * limitations under the License.
17   */
18  
19  package org.apache.hadoop.hbase.filter;
20  
21  import org.apache.hadoop.hbase.Cell;
22  import org.apache.hadoop.hbase.CellUtil;
23  import org.apache.hadoop.hbase.classification.InterfaceAudience;
24  import org.apache.hadoop.hbase.classification.InterfaceStability;
25  import org.apache.hadoop.hbase.exceptions.DeserializationException;
26  import org.apache.hadoop.hbase.protobuf.generated.FilterProtos;
27  import org.apache.hadoop.hbase.util.ByteStringer;
28  import org.apache.hadoop.hbase.util.Bytes;
29  
30  import com.google.protobuf.ByteString;
31  import com.google.protobuf.InvalidProtocolBufferException;
32  
33  import java.util.Objects;
34  import java.util.Set;
35  import java.util.TreeSet;
36  
37  /**
38   * The filter looks for the given columns in KeyValue. Once there is a match for
39   * any one of the columns, it returns ReturnCode.NEXT_ROW for remaining
40   * KeyValues in the row.
41   * <p>
42   * Note : It may emit KVs which do not have the given columns in them, if
43   * these KVs happen to occur before a KV which does have a match. Given this
44   * caveat, this filter is only useful for special cases
45   * like {@link org.apache.hadoop.hbase.mapreduce.RowCounter}.
46   * <p>
47   */
48  @InterfaceAudience.Public
49  @InterfaceStability.Stable
50  public class FirstKeyValueMatchingQualifiersFilter extends FirstKeyOnlyFilter {
51  
52    private Set<byte []> qualifiers;
53  
54    /**
55     * Constructor which takes a set of columns. As soon as first KeyValue
56     * matching any of these columns is found, filter moves to next row.
57     * 
58     * @param qualifiers the set of columns to me matched.
59     */
60    public FirstKeyValueMatchingQualifiersFilter(Set<byte []> qualifiers) {
61      this.qualifiers = qualifiers;
62    }
63  
64    @Override
65    public ReturnCode filterKeyValue(Cell v) {
66      if (hasFoundKV()) {
67        return ReturnCode.NEXT_ROW;
68      } else if (hasOneMatchingQualifier(v)) {
69        setFoundKV(true);
70      }
71      return ReturnCode.INCLUDE;
72    }
73  
74    private boolean hasOneMatchingQualifier(Cell v) {
75      for (byte[] q : qualifiers) {
76        if (CellUtil.matchingQualifier(v, q)) {
77          return true;
78        }
79      }
80      return false;
81    }
82  
83    /**
84     * @return The filter serialized using pb
85     */
86    @Override
87    public byte [] toByteArray() {
88      FilterProtos.FirstKeyValueMatchingQualifiersFilter.Builder builder =
89        FilterProtos.FirstKeyValueMatchingQualifiersFilter.newBuilder();
90      for (byte[] qualifier : qualifiers) {
91        if (qualifier != null) builder.addQualifiers(ByteStringer.wrap(qualifier));
92      }
93      return builder.build().toByteArray();
94    }
95  
96    /**
97     * @param pbBytes A pb serialized {@link FirstKeyValueMatchingQualifiersFilter} instance
98     * @return An instance of {@link FirstKeyValueMatchingQualifiersFilter} made from <code>bytes</code>
99     * @throws DeserializationException
100    * @see #toByteArray
101    */
102   public static FirstKeyValueMatchingQualifiersFilter parseFrom(final byte [] pbBytes)
103   throws DeserializationException {
104     FilterProtos.FirstKeyValueMatchingQualifiersFilter proto;
105     try {
106       proto = FilterProtos.FirstKeyValueMatchingQualifiersFilter.parseFrom(pbBytes);
107     } catch (InvalidProtocolBufferException e) {
108       throw new DeserializationException(e);
109     }
110 
111     TreeSet<byte []> qualifiers = new TreeSet<byte []>(Bytes.BYTES_COMPARATOR);
112     for (ByteString qualifier : proto.getQualifiersList()) {
113       qualifiers.add(qualifier.toByteArray());
114     }
115     return new FirstKeyValueMatchingQualifiersFilter(qualifiers);
116   }
117 
118   /**
119    * @param other
120    * @return true if and only if the fields of the filter that are serialized
121    * are equal to the corresponding fields in other.  Used for testing.
122    */
123   @Override
124   boolean areSerializedFieldsEqual(Filter o) {
125     if (o == this) return true;
126     if (!(o instanceof FirstKeyValueMatchingQualifiersFilter)) return false;
127 
128     FirstKeyValueMatchingQualifiersFilter other = (FirstKeyValueMatchingQualifiersFilter)o;
129     return this.qualifiers.equals(other.qualifiers);
130   }
131 
132   @Override
133   public boolean equals(Object obj) {
134     return obj instanceof Filter && areSerializedFieldsEqual((Filter) obj);
135   }
136 
137   @Override
138   public int hashCode() {
139     return Objects.hash(this.qualifiers);
140   }
141 }