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.ipc; 019 020import java.io.IOException; 021import java.net.InetAddress; 022 023import org.apache.hadoop.hbase.CellScanner; 024import org.apache.yetus.audience.InterfaceAudience; 025import org.apache.hadoop.hbase.io.ByteBufferPool; 026import org.apache.hadoop.hbase.ipc.RpcServer.CallCleanup; 027import org.apache.hbase.thirdparty.com.google.protobuf.BlockingService; 028import org.apache.hbase.thirdparty.com.google.protobuf.Descriptors.MethodDescriptor; 029import org.apache.hbase.thirdparty.com.google.protobuf.Message; 030import org.apache.hadoop.hbase.shaded.protobuf.generated.RPCProtos.RequestHeader; 031 032/** 033 * Datastructure that holds all necessary to a method invocation and then afterward, carries the 034 * result. 035 */ 036@InterfaceAudience.Private 037class SimpleServerCall extends ServerCall<SimpleServerRpcConnection> { 038 039 final SimpleRpcServerResponder responder; 040 041 @edu.umd.cs.findbugs.annotations.SuppressWarnings(value = "NP_NULL_ON_SOME_PATH", 042 justification = "Can't figure why this complaint is happening... see below") 043 SimpleServerCall(int id, final BlockingService service, final MethodDescriptor md, 044 RequestHeader header, Message param, CellScanner cellScanner, 045 SimpleServerRpcConnection connection, long size, 046 final InetAddress remoteAddress, long receiveTime, int timeout, ByteBufferPool reservoir, 047 CellBlockBuilder cellBlockBuilder, CallCleanup reqCleanup, SimpleRpcServerResponder responder) { 048 super(id, service, md, header, param, cellScanner, connection, size, remoteAddress, 049 receiveTime, timeout, reservoir, cellBlockBuilder, reqCleanup); 050 this.responder = responder; 051 } 052 053 /** 054 * Call is done. Execution happened and we returned results to client. It is now safe to cleanup. 055 */ 056 @edu.umd.cs.findbugs.annotations.SuppressWarnings(value = "IS2_INCONSISTENT_SYNC", 057 justification = "Presume the lock on processing request held by caller is protection enough") 058 @Override 059 public void done() { 060 super.done(); 061 this.getConnection().decRpcCount(); // Say that we're done with this call. 062 } 063 064 @Override 065 public synchronized void sendResponseIfReady() throws IOException { 066 // set param null to reduce memory pressure 067 this.param = null; 068 this.responder.doRespond(getConnection(), this); 069 } 070 071 SimpleServerRpcConnection getConnection() { 072 return this.connection; 073 } 074}