forked from google/distbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprotocol_driver_grpc.h
216 lines (174 loc) · 7.64 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
// Copyright 2021 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_threadpool.h"
#include "distbench_utils.h"
#include "protocol_driver.h"
namespace distbench {
class GrpcPollingClientDriver : public ProtocolDriverClient {
public:
GrpcPollingClientDriver();
~GrpcPollingClientDriver() override;
absl::Status Initialize(const ProtocolDriverOptions& pd_opts) override;
void SetNumPeers(int num_peers) 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;
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();
std::string transport_;
absl::Notification shutdown_;
std::atomic<int> pending_rpcs_ = 0;
std::vector<std::unique_ptr<Traffic::Stub>> grpc_client_stubs_;
std::thread cq_poller_;
grpc::CompletionQueue cq_;
};
class GrpcInlineServerDriver : public ProtocolDriverServer {
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;
absl::StatusOr<std::string> HandlePreConnect(
std::string_view remote_connection_info, int peer) override;
void ShutdownServer() override;
void HandleConnectFailure(std::string_view local_connection_info) override;
std::vector<TransportStat> GetTransportStats() override;
private:
std::unique_ptr<Traffic::Service> traffic_service_;
std::unique_ptr<grpc::Server> server_;
int server_port_ = 0;
DeviceIpAddress server_ip_address_;
std::string server_socket_address_;
std::string transport_;
};
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;
// 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;
std::vector<TransportStat> GetTransportStats() 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;
private:
std::unique_ptr<distbench::ProtocolDriverClient> client_;
std::unique_ptr<distbench::ProtocolDriverServer> server_;
};
class GrpcCallbackClientDriver : public ProtocolDriverClient {
public:
GrpcCallbackClientDriver();
~GrpcCallbackClientDriver() override;
absl::Status Initialize(const ProtocolDriverOptions& pd_opts) override;
void SetNumPeers(int num_peers) 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;
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:
std::atomic<int> pending_rpcs_ = 0;
std::vector<std::unique_ptr<Traffic::Stub>> grpc_client_stubs_;
std::string transport_;
};
class GrpcHandoffServerDriver : public ProtocolDriverServer {
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;
absl::StatusOr<std::string> HandlePreConnect(
std::string_view remote_connection_info, int peer) override;
void ShutdownServer() override;
void HandleConnectFailure(std::string_view local_connection_info) override;
std::vector<TransportStat> GetTransportStats() override;
private:
std::unique_ptr<Traffic::ExperimentalCallbackService> traffic_service_;
std::unique_ptr<grpc::Server> server_;
int server_port_ = 0;
DeviceIpAddress server_ip_address_;
std::string server_socket_address_;
std::string transport_;
};
class GrpcPollingServerDriver : public ProtocolDriverServer {
public:
// TODO: Add a struct of threadpool options in future.
GrpcPollingServerDriver(int threadpool_size);
~GrpcPollingServerDriver() override;
absl::Status Initialize(const ProtocolDriverOptions& pd_opts,
int* port) override;
void SetHandler(std::function<std::function<void()>(ServerRpcState* state)>
handler) override;
absl::StatusOr<std::string> HandlePreConnect(
std::string_view remote_connection_info, int peer) override;
void ShutdownServer() override;
void HandleConnectFailure(std::string_view local_connection_info) override;
std::vector<TransportStat> GetTransportStats() override;
void ProcessGenericRpc(GenericRequest* request, GenericResponse* response);
void HandleRpcs();
std::thread handle_rpcs_;
private:
std::unique_ptr<grpc::Server> server_;
int server_port_ = 0;
DeviceIpAddress server_ip_address_;
std::string server_socket_address_;
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_;
DistbenchThreadpool thread_pool_;
SafeNotification server_shutdown_detected_;
absl::Notification handle_rpcs_started_;
SafeNotification handler_set_;
std::string transport_;
};
} // namespace distbench
#endif // DISTBENCH_PROTOCOL_DRIVER_GRPC_H_