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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
#include "roaming_channel.h"
#include "channel_detail.h"
#include "client.h"
#include <yt/yt/core/actions/future.h>
namespace NYT::NRpc {
using namespace NBus;
using namespace NYson;
using namespace NYTree;
////////////////////////////////////////////////////////////////////////////////
class TRoamingRequestControl
: public TClientRequestControlThunk
{
public:
TRoamingRequestControl(
TFuture<IChannelPtr> asyncChannel,
IClientRequestPtr request,
IClientResponseHandlerPtr responseHandler,
const TSendOptions& options)
: Request_(std::move(request))
, ResponseHandler_(std::move(responseHandler))
, Options_(options)
, StartTime_(TInstant::Now())
{
if (Options_.Timeout) {
asyncChannel = asyncChannel.WithTimeout(*Options_.Timeout, TFutureTimeoutOptions{
.Error = TError("Error getting channel")
});
}
asyncChannel.Subscribe(BIND(&TRoamingRequestControl::OnGotChannel, MakeStrong(this)));
}
void Cancel() override
{
if (!TryAcquireSemaphore()) {
TClientRequestControlThunk::Cancel();
return;
}
ResponseHandler_->HandleError(TError(NYT::EErrorCode::Canceled, "RPC request canceled")
<< TErrorAttribute("request_id", Request_->GetRequestId())
<< TErrorAttribute("realm_id", Request_->GetRealmId())
<< TErrorAttribute("service", Request_->GetService())
<< TErrorAttribute("method", Request_->GetMethod()));
Request_.Reset();
ResponseHandler_.Reset();
}
private:
IClientRequestPtr Request_;
IClientResponseHandlerPtr ResponseHandler_;
const TSendOptions Options_;
const TInstant StartTime_;
std::atomic<bool> Semaphore_ = false;
bool TryAcquireSemaphore()
{
bool expected = false;
return Semaphore_.compare_exchange_strong(expected, true);
}
void OnGotChannel(const TErrorOr<IChannelPtr>& result)
{
if (!TryAcquireSemaphore()) {
return;
}
auto request = std::move(Request_);
auto responseHandler = std::move(ResponseHandler_);
if (!result.IsOK()) {
responseHandler->HandleError(result);
return;
}
auto adjustedOptions = Options_;
if (Options_.Timeout) {
auto now = TInstant::Now();
auto deadline = StartTime_ + *Options_.Timeout;
adjustedOptions.Timeout = now > deadline ? TDuration::Zero() : deadline - now;
}
const auto& channel = result.Value();
auto requestControl = channel->Send(
request,
responseHandler,
adjustedOptions);
SetUnderlying(std::move(requestControl));
}
};
class TSyncRoamingRequestControl
: public TClientRequestControlThunk
{
public:
TSyncRoamingRequestControl(
IClientRequestControlPtr requestControl,
IChannelPtr channel)
: Channel_(std::move(channel))
{
SetUnderlying(std::move(requestControl));
}
private:
const IChannelPtr Channel_;
};
////////////////////////////////////////////////////////////////////////////////
class TRoamingChannel
: public IChannel
{
public:
explicit TRoamingChannel(IRoamingChannelProviderPtr provider)
: Provider_(std::move(provider))
{ }
const TString& GetEndpointDescription() const override
{
return Provider_->GetEndpointDescription();
}
const IAttributeDictionary& GetEndpointAttributes() const override
{
return Provider_->GetEndpointAttributes();
}
IClientRequestControlPtr Send(
IClientRequestPtr request,
IClientResponseHandlerPtr responseHandler,
const TSendOptions& options) override
{
YT_ASSERT(request);
YT_ASSERT(responseHandler);
auto asyncChannel = Provider_->GetChannel(request);
// NB: Optimize for the typical case of sync channel acquisition.
if (auto channelOrError = asyncChannel.TryGet()) {
if (channelOrError->IsOK()) {
const auto& channel = channelOrError->Value();
return New<TSyncRoamingRequestControl>(
channel->Send(
std::move(request),
std::move(responseHandler),
options),
channel);
} else {
responseHandler->HandleError(std::move(*channelOrError));
return New<TClientRequestControlThunk>();
}
}
return New<TRoamingRequestControl>(
std::move(asyncChannel),
std::move(request),
std::move(responseHandler),
options);
}
void Terminate(const TError& error) override
{
Provider_->Terminate(error);
}
void SubscribeTerminated(const TCallback<void(const TError&)>& /*callback*/) override
{ }
void UnsubscribeTerminated(const TCallback<void(const TError&)>& /*callback*/) override
{ }
int GetInflightRequestCount() override
{
return 0;
}
const IMemoryUsageTrackerPtr& GetChannelMemoryTracker() override
{
return MemoryUsageTracker_;
}
private:
const IRoamingChannelProviderPtr Provider_;
const IMemoryUsageTrackerPtr MemoryUsageTracker_ = GetNullMemoryUsageTracker();
};
IChannelPtr CreateRoamingChannel(IRoamingChannelProviderPtr provider)
{
YT_VERIFY(provider);
return New<TRoamingChannel>(std::move(provider));
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT::NRpc
|