-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathlocal_call.cc
166 lines (141 loc) · 5.54 KB
/
local_call.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
//
// Copyright (c) YugaByte, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed under the License
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
// or implied. See the License for the specific language governing permissions and limitations
// under the License.
//
//
#include "yb/rpc/local_call.h"
#include "yb/gutil/casts.h"
#include "yb/rpc/rpc_controller.h"
#include "yb/rpc/rpc_header.messages.h"
#include "yb/util/format.h"
#include "yb/util/memory/memory.h"
#include "yb/util/result.h"
#include "yb/util/status_format.h"
namespace yb {
namespace rpc {
using std::shared_ptr;
LocalOutboundCall::LocalOutboundCall(
const RemoteMethod& remote_method,
const shared_ptr<OutboundCallMetrics>& outbound_call_metrics,
AnyMessagePtr response_storage, RpcController* controller,
std::shared_ptr<RpcMetrics> rpc_metrics, ResponseCallback callback,
ThreadPool* callback_thread_pool)
: OutboundCall(remote_method, outbound_call_metrics, /* method_metrics= */ nullptr,
response_storage, controller, std::move(rpc_metrics), std::move(callback),
callback_thread_pool) {
TRACE_TO(trace_, "LocalOutboundCall");
}
Status LocalOutboundCall::SetRequestParam(
AnyMessageConstPtr req, std::unique_ptr<Sidecars> sidecars, const MemTrackerPtr& mem_tracker) {
req_ = req;
if (sidecars) {
return STATUS_FORMAT(NotSupported, "Sidecars not supported for local calls");
}
return Status::OK();
}
void LocalOutboundCall::Serialize(ByteBlocks* output) {
LOG(FATAL) << "Local call should not require serialization";
}
const std::shared_ptr<LocalYBInboundCall>& LocalOutboundCall::CreateLocalInboundCall() {
DCHECK(inbound_call_.get() == nullptr);
const MonoDelta timeout = controller()->timeout();
const CoarseTimePoint deadline =
timeout.Initialized() ? start_ + timeout : CoarseTimePoint::max();
auto outbound_call = std::static_pointer_cast<LocalOutboundCall>(shared_from(this));
inbound_call_ = InboundCall::Create<LocalYBInboundCall>(
&rpc_metrics(), remote_method(), outbound_call, deadline);
return inbound_call_;
}
Result<RefCntSlice> LocalOutboundCall::ExtractSidecar(size_t idx) const {
return inbound_call_->sidecars().Extract(narrow_cast<int>(idx));
}
size_t LocalOutboundCall::TransferSidecars(Sidecars* dest) {
return inbound_call_->sidecars().Transfer(dest);
}
LocalYBInboundCall::LocalYBInboundCall(
RpcMetrics* rpc_metrics,
const RemoteMethod& remote_method,
std::weak_ptr<LocalOutboundCall> outbound_call,
CoarseTimePoint deadline)
: YBInboundCall(rpc_metrics, remote_method), outbound_call_(outbound_call),
deadline_(deadline) {
UpdateWaitStateInfo();
}
const Endpoint& LocalYBInboundCall::remote_address() const {
static const Endpoint endpoint;
return endpoint;
}
const Endpoint& LocalYBInboundCall::local_address() const {
static const Endpoint endpoint;
return endpoint;
}
void LocalYBInboundCall::Respond(AnyMessageConstPtr resp, bool is_success) {
auto call = outbound_call();
if (!call) {
LOG(DFATAL) << "Outbound call is NULL during Respond, looks like double response. "
<< "is_success: " << is_success;
return;
}
if (is_success) {
call->SetFinished();
} else {
std::unique_ptr<ErrorStatusPB> error;
if (resp.is_lightweight()) {
error = std::make_unique<ErrorStatusPB>();
yb::down_cast<const LWErrorStatusPB&>(*resp.lightweight()).ToGoogleProtobuf(error.get());
} else {
error = std::make_unique<ErrorStatusPB>(
yb::down_cast<const ErrorStatusPB&>(*resp.protobuf()));
}
auto status = STATUS(RemoteError, "Local call error", error->message());
call->SetFailed(std::move(status), std::move(error));
}
NotifyTransferred(Status::OK(), /* ConnectionPtr */ nullptr);
}
Status LocalYBInboundCall::ParseParam(RpcCallParams* params) {
LOG(FATAL) << "local call should not require parsing";
}
Status LocalYBInboundCall::ParseRequest(Slice param, const RefCntBuffer& buffer) {
return STATUS(InternalError, "ParseRequest called for local call");
}
AnyMessageConstPtr LocalYBInboundCall::SerializableResponse() {
return outbound_call()->response();
}
void LocalYBInboundCallTracker::CallProcessed(InboundCall* call) {
std::lock_guard lg(lock_);
calls_being_handled_.erase(CHECK_NOTNULL(call)->instance_id());
}
void LocalYBInboundCallTracker::Enqueue(const InboundCallPtr& call) {
CHECK_NOTNULL(call)->SetCallProcessedListener(this);
std::lock_guard lg(lock_);
calls_being_handled_.emplace(call->instance_id(), call);
}
Status LocalYBInboundCallTracker::DumpRunningRpcs(
const DumpRunningRpcsRequestPB& req, DumpRunningRpcsResponsePB* resp) {
decltype(calls_being_handled_) active_calls;
{
std::lock_guard lg(lock_);
active_calls = calls_being_handled_;
}
auto* local_calls = resp->mutable_local_calls();
local_calls->set_remote_ip("local calls");
local_calls->set_state(RpcConnectionPB::StateType::RpcConnectionPB_StateType_OPEN);
local_calls->mutable_calls_in_flight()->Reserve(yb::narrow_cast<int>(active_calls.size()));
for (const auto& [_, weak_call] : active_calls) {
if (auto ptr = weak_call.lock()) {
ptr->DumpPB(req, local_calls->add_calls_in_flight());
}
}
return Status::OK();
}
} // namespace rpc
} // namespace yb