001/* 002 * Licensed to the Apache Software Foundation (ASF) under one 003 * or more contributor license agreements. See the NOTICE file 004 * distributed with this work for additional information 005 * regarding copyright ownership. The ASF licenses this file 006 * to you under the Apache License, Version 2.0 (the 007 * "License"); you may not use this file except in compliance 008 * with the License. You may obtain a copy of the License at 009 * 010 * http://www.apache.org/licenses/LICENSE-2.0 011 * 012 * Unless required by applicable law or agreed to in writing, software 013 * distributed under the License is distributed on an "AS IS" BASIS, 014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 015 * See the License for the specific language governing permissions and 016 * limitations under the License. 017 */ 018package org.apache.hadoop.hbase.coprocessor; 019 020import com.google.protobuf.Message; 021import java.io.IOException; 022import org.apache.hadoop.hbase.Cell; 023import org.apache.hadoop.hbase.HBaseInterfaceAudience; 024import org.apache.yetus.audience.InterfaceAudience; 025import org.apache.yetus.audience.InterfaceStability; 026 027/** 028 * Defines how value for specific column is interpreted and provides utility methods like compare, 029 * add, multiply etc for them. Takes column family, column qualifier and return the cell value. Its 030 * concrete implementation should handle null case gracefully. Refer to 031 * {@link org.apache.hadoop.hbase.client.coprocessor.LongColumnInterpreter} for an example. 032 * <p> 033 * Takes two generic parameters and three Message parameters. The cell value type of the interpreter 034 * is <T>. During some computations like sum, average, the return type can be different than 035 * the cell value data type, for eg, sum of int cell values might overflow in case of a int result, 036 * we should use Long for its result. Therefore, this class mandates to use a different (promoted) 037 * data type for result of these computations <S>. All computations are performed on the 038 * promoted data type <S>. There is a conversion method 039 * {@link ColumnInterpreter#castToReturnType(Object)} which takes a <T> type and returns a 040 * <S> type. The AggregateIm>lementation uses PB messages to initialize the user's 041 * ColumnInterpreter implementation, and for sending the responses back to AggregationClient. 042 * <p> 043 * <T> Cell value data type<br> 044 * <S> Promoted data type<br> 045 * <P> PB message that is used to transport initializer specific bytes<br> 046 * <Q> PB message that is used to transport Cell (<T>) instance<br> 047 * <R> PB message that is used to transport Promoted (<S>) instance 048 */ 049@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.COPROC) 050@InterfaceStability.Evolving 051public abstract class ColumnInterpreter<T, S, P extends Message, Q extends Message, 052 R extends Message> { 053 054 /** Returns value of type T */ 055 public abstract T getValue(byte[] colFamily, byte[] colQualifier, Cell c) throws IOException; 056 057 /** Returns sum or non null value among (if either of them is null); otherwise returns a null. */ 058 public abstract S add(S l1, S l2); 059 060 /** 061 * returns the maximum value for this type T 062 */ 063 public abstract T getMaxValue(); 064 065 public abstract T getMinValue(); 066 067 /** Returns multiplication */ 068 public abstract S multiply(S o1, S o2); 069 070 /** Returns increment */ 071 public abstract S increment(S o); 072 073 /** 074 * provides casting opportunity between the data types. 075 */ 076 public abstract S castToReturnType(T o); 077 078 /** 079 * This takes care if either of arguments are null. returns 0 if they are equal or both are null; 080 * <ul> 081 * <li>> 0 if l1 > l2 or l1 is not null and l2 is null.</li> 082 * <li>< 0 if l1 < l2 or l1 is null and l2 is not null.</li> 083 * </ul> 084 */ 085 public abstract int compare(final T l1, final T l2); 086 087 /** 088 * used for computing average of <S> data values. Not providing the divide method that takes 089 * two <S> values as it is not needed as of now. 090 */ 091 public abstract double divideForAvg(S o, Long l); 092 093 /** 094 * This method should return any additional data that is needed on the server side to construct 095 * the ColumnInterpreter. The server will pass this to the {@link #initialize} method. If there is 096 * no ColumnInterpreter specific data (for e.g., 097 * {@link org.apache.hadoop.hbase.client.coprocessor.LongColumnInterpreter}) then null should be 098 * returned. 099 * @return the PB message 100 */ 101 public abstract P getRequestData(); 102 103 /** 104 * This method should initialize any field(s) of the ColumnInterpreter with a parsing of the 105 * passed message bytes (used on the server side). 106 */ 107 public abstract void initialize(P msg); 108 109 /** 110 * This method gets the PB message corresponding to the cell type 111 * @return the PB message for the cell-type instance 112 */ 113 public abstract Q getProtoForCellType(T t); 114 115 /** 116 * This method gets the PB message corresponding to the cell type 117 * @return the cell-type instance from the PB message 118 */ 119 public abstract T getCellValueFromProto(Q q); 120 121 /** 122 * This method gets the PB message corresponding to the promoted type 123 * @return the PB message for the promoted-type instance 124 */ 125 public abstract R getProtoForPromotedType(S s); 126 127 /** 128 * This method gets the promoted type from the proto message 129 * @return the promoted-type instance from the PB message 130 */ 131 public abstract S getPromotedValueFromProto(R r); 132 133 /** 134 * The response message comes as type S. This will convert/cast it to T. In some sense, performs 135 * the opposite of {@link #castToReturnType(Object)} 136 */ 137 public abstract T castToCellType(S response); 138}