-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathprotocol_driver_grpc.h
224 lines (178 loc) · 7.69 KB
/
protocol_driver_grpc.h
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
// Copyright 2023 Google LLC
//
// 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
//
// https://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.
#ifndef DISTBENCH_PROTOCOL_DRIVER_GRPC_H_
#define DISTBENCH_PROTOCOL_DRIVER_GRPC_H_
#include "distbench.grpc.pb.h"
#include "distbench_netutils.h"
#include "distbench_thread_support.h"
#include "distbench_threadpool.h"
#include "distbench_utils.h"
#include "protocol_driver.h"
namespace distbench {
class GrpcCommonClientDriver : public ProtocolDriverClient {
public:
GrpcCommonClientDriver();
~GrpcCommonClientDriver() override;
void SetNumPeers(int num_peers) override;
void SetNumMultiServerChannels(int num_channels) override;
// Allocate local resources that are needed to establish a connection
// E.g. an unconnected RoCE QueuePair. Returns opaque data. If no local
// resources are needed, this is a NOP.
// absl::StatusOr<std::string> Preconnect() override;
// Actually establish a conection, given the opaque data from the
// the responder. E.g. connect the local and remote RoCE queue pairs.
absl::Status HandleConnect(std::string remote_connection_info,
int peer) override;
absl::Status SetupMultiServerChannel(
const ::google::protobuf::RepeatedPtrField<NamedSetting>& settings,
const std::vector<int>& peer_ids, int channel_id) override;
protected:
std::vector<std::string> peer_connection_info_;
std::string transport_;
std::vector<std::unique_ptr<Traffic::Stub>> grpc_client_stubs_;
std::vector<std::unique_ptr<Traffic::Stub>> multiserver_stubs_;
std::atomic<int> pending_rpcs_ = 0;
};
class GrpcPollingClientDriver : public GrpcCommonClientDriver {
public:
GrpcPollingClientDriver();
~GrpcPollingClientDriver() override;
absl::Status Initialize(const ProtocolDriverOptions& pd_opts) override;
void InitiateRpcToMultiServerChannel(
int channel_index, ClientRpcState* state,
std::function<void(void)> done_callback) override;
void InitiateRpc(int peer_index, ClientRpcState* state,
std::function<void(void)> done_callback) override;
void ChurnConnection(int peer) override;
void ShutdownClient() override;
virtual std::vector<TransportStat> GetTransportStats() override;
private:
void RpcCompletionThread();
absl::Notification shutdown_;
std::thread cq_poller_;
grpc::CompletionQueue cq_;
};
class GrpcCallbackClientDriver : public GrpcCommonClientDriver {
public:
GrpcCallbackClientDriver();
~GrpcCallbackClientDriver() override;
absl::Status Initialize(const ProtocolDriverOptions& pd_opts) override;
void InitiateRpcToMultiServerChannel(
int channel_index, ClientRpcState* state,
std::function<void(void)> done_callback) override;
void InitiateRpc(int peer_index, ClientRpcState* state,
std::function<void(void)> done_callback) override;
void ChurnConnection(int peer) override;
void ShutdownClient() override;
virtual std::vector<TransportStat> GetTransportStats() override;
};
class GrpcCommonServerDriver : public ProtocolDriverServer {
public:
GrpcCommonServerDriver() {}
~GrpcCommonServerDriver() override {}
absl::StatusOr<std::string> HandlePreConnect(
std::string_view remote_connection_info, int peer) override;
void HandleConnectFailure(std::string_view local_connection_info) override;
protected:
std::unique_ptr<grpc::Server> grpc_server_;
int server_port_ = 0;
DeviceIpAddress server_ip_address_;
std::string server_socket_address_;
std::string transport_;
};
class GrpcInlineServerDriver : public GrpcCommonServerDriver {
public:
GrpcInlineServerDriver();
~GrpcInlineServerDriver() override;
absl::Status Initialize(const ProtocolDriverOptions& pd_opts,
int* port) override;
void SetHandler(std::function<std::function<void()>(ServerRpcState* state)>
handler) override;
void ShutdownServer() override;
std::vector<TransportStat> GetTransportStats() override;
private:
std::unique_ptr<Traffic::Service> traffic_service_;
};
class GrpcHandoffServerDriver : public GrpcCommonServerDriver {
public:
GrpcHandoffServerDriver();
~GrpcHandoffServerDriver() override;
absl::Status Initialize(const ProtocolDriverOptions& pd_opts,
int* port) override;
void SetHandler(std::function<std::function<void()>(ServerRpcState* state)>
handler) override;
void ShutdownServer() override;
std::vector<TransportStat> GetTransportStats() override;
private:
std::unique_ptr<Traffic::ExperimentalCallbackService> traffic_service_;
};
class GrpcPollingServerDriver : public GrpcCommonServerDriver {
public:
GrpcPollingServerDriver(std::unique_ptr<AbstractThreadpool> tp);
~GrpcPollingServerDriver() override;
absl::Status Initialize(const ProtocolDriverOptions& pd_opts,
int* port) override;
void SetHandler(std::function<std::function<void()>(ServerRpcState* state)>
handler) override;
void ShutdownServer() override;
std::vector<TransportStat> GetTransportStats() override;
void ProcessGenericRpc(GenericRequestResponse* request,
GenericRequestResponse* response);
void HandleRpcs();
private:
std::unique_ptr<grpc::ServerCompletionQueue> server_cq_;
std::unique_ptr<Traffic::AsyncService> traffic_async_service_;
grpc::ServerContext context;
std::function<std::function<void()>(ServerRpcState* state)> handler_;
std::unique_ptr<AbstractThreadpool> thread_pool_;
SafeNotification server_shutdown_detected_;
absl::Notification handle_rpcs_started_;
SafeNotification handler_set_;
std::thread handle_rpcs_;
};
class ProtocolDriverGrpc : public ProtocolDriver {
public:
ProtocolDriverGrpc();
~ProtocolDriverGrpc() override;
absl::Status Initialize(const ProtocolDriverOptions& pd_opts,
int* port) override;
void SetHandler(std::function<std::function<void()>(ServerRpcState* state)>
handler) override;
void SetNumPeers(int num_peers) override;
void SetNumMultiServerChannels(int num_channels) override;
// Connects to the actual GRPC service.
absl::Status HandleConnect(std::string remote_connection_info,
int peer) override;
// Returns the address of the GRPC service.
absl::StatusOr<std::string> HandlePreConnect(
std::string_view remote_connection_info, int peer) override;
void HandleConnectFailure(std::string_view local_connection_info) override;
absl::Status SetupMultiServerChannel(
const ::google::protobuf::RepeatedPtrField<NamedSetting>& settings,
const std::vector<int>& peer_ids, int channel_id) override;
void InitiateRpcToMultiServerChannel(
int channel_index, ClientRpcState* state,
std::function<void(void)> done_callback) override;
void InitiateRpc(int peer_index, ClientRpcState* state,
std::function<void(void)> done_callback) override;
void ChurnConnection(int peer) override;
void ShutdownServer() override;
void ShutdownClient() override;
std::vector<TransportStat> GetTransportStats() override;
private:
std::unique_ptr<distbench::GrpcCommonClientDriver> client_;
std::unique_ptr<distbench::GrpcCommonServerDriver> server_;
};
} // namespace distbench
#endif // DISTBENCH_PROTOCOL_DRIVER_GRPC_H_