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.client;
21  
22  import org.apache.hadoop.hbase.classification.InterfaceAudience;
23  import org.apache.hadoop.hbase.classification.InterfaceStability;
24  import org.apache.hadoop.hbase.util.Bytes;
25  import org.apache.hadoop.hbase.util.ClassSize;
26  
27  import java.util.Collections;
28  import java.util.HashMap;
29  import java.util.Map;
30  
31  @InterfaceAudience.Public
32  @InterfaceStability.Evolving
33  public abstract class OperationWithAttributes extends Operation implements Attributes {
34    // An opaque blob of attributes
35    private Map<String, byte[]> attributes;
36  
37    // used for uniquely identifying an operation
38    public static final String ID_ATRIBUTE = "_operation.attributes.id";
39  
40    @Override
41    public void setAttribute(String name, byte[] value) {
42      if (attributes == null && value == null) {
43        return;
44      }
45  
46      if (attributes == null) {
47        attributes = new HashMap<String, byte[]>();
48      }
49  
50      if (value == null) {
51        attributes.remove(name);
52        if (attributes.isEmpty()) {
53          this.attributes = null;
54        }
55      } else {
56        attributes.put(name, value);
57      }
58    }
59  
60    @Override
61    public byte[] getAttribute(String name) {
62      if (attributes == null) {
63        return null;
64      }
65  
66      return attributes.get(name);
67    }
68  
69    @Override
70    public Map<String, byte[]> getAttributesMap() {
71      if (attributes == null) {
72        return Collections.emptyMap();
73      }
74      return Collections.unmodifiableMap(attributes);
75    }
76  
77    protected long getAttributeSize() {
78      long size = 0;
79      if (attributes != null) {
80        size += ClassSize.align(this.attributes.size() * ClassSize.MAP_ENTRY);
81        for(Map.Entry<String, byte[]> entry : this.attributes.entrySet()) {
82          size += ClassSize.align(ClassSize.STRING + entry.getKey().length());
83          size += ClassSize.align(ClassSize.ARRAY + entry.getValue().length);
84        }
85      }
86      return size;
87    }
88  
89    /**
90     * This method allows you to set an identifier on an operation. The original
91     * motivation for this was to allow the identifier to be used in slow query
92     * logging, but this could obviously be useful in other places. One use of
93     * this could be to put a class.method identifier in here to see where the
94     * slow query is coming from.
95     * @param id
96     *          id to set for the scan
97     */
98    public void setId(String id) {
99      setAttribute(ID_ATRIBUTE, Bytes.toBytes(id));
100   }
101 
102   /**
103    * This method allows you to retrieve the identifier for the operation if one
104    * was set.
105    * @return the id or null if not set
106    */
107   public String getId() {
108     byte[] attr = getAttribute(ID_ATRIBUTE);
109     return attr == null? null: Bytes.toString(attr);
110   }
111 }