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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
use crate::{
message::{BidiStreaming, ClientStreaming, Msg, Rpc, ServerStreaming},
ChannelTypes, ClientChannel, Service,
};
use futures::{
future::BoxFuture, stream::BoxStream, FutureExt, Sink, SinkExt, Stream, StreamExt, TryFutureExt,
};
use pin_project::pin_project;
use std::{
error,
fmt::{self, Debug},
marker::PhantomData,
pin::Pin,
result,
task::{Context, Poll},
};
#[derive(Debug)]
pub struct RpcClient<S: Service, C: ChannelTypes> {
channel: C::ClientChannel<S::Res, S::Req>,
}
impl<S: Service, C: ChannelTypes> Clone for RpcClient<S, C> {
fn clone(&self) -> Self {
Self {
channel: self.channel.clone(),
}
}
}
#[pin_project]
#[derive(Debug)]
pub struct UpdateSink<S: Service, C: ChannelTypes, M: Msg<S>>(
#[pin] C::SendSink<S::Req>,
PhantomData<M>,
);
impl<S: Service, C: ChannelTypes, M: Msg<S>> Sink<M::Update> for UpdateSink<S, C, M> {
type Error = C::SendError;
fn poll_ready(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
self.project().0.poll_ready_unpin(cx)
}
fn start_send(self: Pin<&mut Self>, item: M::Update) -> Result<(), Self::Error> {
let req: S::Req = item.into();
self.project().0.start_send_unpin(req)
}
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
self.project().0.poll_flush_unpin(cx)
}
fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
self.project().0.poll_close_unpin(cx)
}
}
impl<S: Service, C: ChannelTypes> RpcClient<S, C> {
pub fn new(channel: C::ClientChannel<S::Res, S::Req>) -> Self {
Self { channel }
}
async fn open_bi(
&self,
) -> result::Result<(C::SendSink<S::Req>, C::RecvStream<S::Res>), C::OpenBiError> {
self.channel.open_bi().await
}
pub async fn rpc<M>(&self, msg: M) -> result::Result<M::Response, RpcClientError<C>>
where
M: Msg<S, Pattern = Rpc> + Into<S::Req>,
{
let msg = msg.into();
let (mut send, mut recv) = self.open_bi().await.map_err(RpcClientError::Open)?;
send.send(msg).await.map_err(RpcClientError::<C>::Send)?;
let res = recv
.next()
.await
.ok_or(RpcClientError::<C>::EarlyClose)?
.map_err(RpcClientError::<C>::RecvError)?;
drop(send);
M::Response::try_from(res).map_err(|_| RpcClientError::DowncastError)
}
pub async fn server_streaming<M>(
&self,
msg: M,
) -> result::Result<
BoxStream<'static, result::Result<M::Response, StreamingResponseItemError<C>>>,
StreamingResponseError<C>,
>
where
M: Msg<S, Pattern = ServerStreaming> + Into<S::Req>,
{
let msg = msg.into();
let (mut send, recv) = self.open_bi().await.map_err(StreamingResponseError::Open)?;
send.send(msg)
.map_err(StreamingResponseError::<C>::Send)
.await?;
let recv = recv.map(move |x| match x {
Ok(x) => {
M::Response::try_from(x).map_err(|_| StreamingResponseItemError::DowncastError)
}
Err(e) => Err(StreamingResponseItemError::RecvError(e)),
});
let recv = DeferDrop(recv, send).boxed();
Ok(recv)
}
pub async fn client_streaming<M>(
&self,
msg: M,
) -> result::Result<
(
UpdateSink<S, C, M>,
BoxFuture<'static, result::Result<M::Response, ClientStreamingItemError<C>>>,
),
ClientStreamingError<C>,
>
where
M: Msg<S, Pattern = ClientStreaming> + Into<S::Req>,
{
let msg = msg.into();
let (mut send, mut recv) = self.open_bi().await.map_err(ClientStreamingError::Open)?;
send.send(msg).map_err(ClientStreamingError::Send).await?;
let send = UpdateSink::<S, C, M>(send, PhantomData);
let recv = async move {
let item = recv
.next()
.await
.ok_or(ClientStreamingItemError::EarlyClose)?;
match item {
Ok(x) => {
M::Response::try_from(x).map_err(|_| ClientStreamingItemError::DowncastError)
}
Err(e) => Err(ClientStreamingItemError::RecvError(e)),
}
}
.boxed();
Ok((send, recv))
}
pub async fn bidi<M>(
&self,
msg: M,
) -> result::Result<
(
UpdateSink<S, C, M>,
BoxStream<'static, result::Result<M::Response, BidiItemError<C>>>,
),
BidiError<C>,
>
where
M: Msg<S, Pattern = BidiStreaming> + Into<S::Req>,
{
let msg = msg.into();
let (mut send, recv) = self.open_bi().await.map_err(BidiError::Open)?;
send.send(msg).await.map_err(BidiError::<C>::Send)?;
let send = UpdateSink(send, PhantomData);
let recv = recv
.map(|x| match x {
Ok(x) => M::Response::try_from(x).map_err(|_| BidiItemError::DowncastError),
Err(e) => Err(BidiItemError::RecvError(e)),
})
.boxed();
Ok((send, recv))
}
}
#[derive(Debug)]
pub enum RpcClientError<C: ChannelTypes> {
Open(C::OpenBiError),
Send(C::SendError),
EarlyClose,
RecvError(C::RecvError),
DowncastError,
}
impl<C: ChannelTypes> fmt::Display for RpcClientError<C> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Debug::fmt(self, f)
}
}
impl<C: ChannelTypes> error::Error for RpcClientError<C> {}
#[derive(Debug)]
pub enum BidiError<C: ChannelTypes> {
Open(C::OpenBiError),
Send(C::SendError),
}
impl<C: ChannelTypes> fmt::Display for BidiError<C> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Debug::fmt(self, f)
}
}
impl<C: ChannelTypes> error::Error for BidiError<C> {}
#[derive(Debug)]
pub enum BidiItemError<C: ChannelTypes> {
RecvError(C::RecvError),
DowncastError,
}
impl<C: ChannelTypes> fmt::Display for BidiItemError<C> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Debug::fmt(self, f)
}
}
impl<C: ChannelTypes> error::Error for BidiItemError<C> {}
#[derive(Debug)]
pub enum ClientStreamingError<C: ChannelTypes> {
Open(C::OpenBiError),
Send(C::SendError),
}
impl<C: ChannelTypes> fmt::Display for ClientStreamingError<C> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Debug::fmt(self, f)
}
}
impl<C: ChannelTypes> error::Error for ClientStreamingError<C> {}
#[derive(Debug)]
pub enum ClientStreamingItemError<C: ChannelTypes> {
EarlyClose,
RecvError(C::RecvError),
DowncastError,
}
impl<C: ChannelTypes> fmt::Display for ClientStreamingItemError<C> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Debug::fmt(self, f)
}
}
impl<C: ChannelTypes> error::Error for ClientStreamingItemError<C> {}
#[derive(Debug)]
pub enum StreamingResponseError<C: ChannelTypes> {
Open(C::OpenBiError),
Send(C::SendError),
}
impl<C: ChannelTypes> fmt::Display for StreamingResponseError<C> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Debug::fmt(self, f)
}
}
impl<C: ChannelTypes> error::Error for StreamingResponseError<C> {}
#[derive(Debug)]
pub enum StreamingResponseItemError<C: ChannelTypes> {
RecvError(C::RecvError),
DowncastError,
}
impl<C: ChannelTypes> fmt::Display for StreamingResponseItemError<C> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt::Debug::fmt(self, f)
}
}
impl<C: ChannelTypes> error::Error for StreamingResponseItemError<C> {}
#[pin_project]
struct DeferDrop<S: Stream, X>(#[pin] S, X);
impl<S: Stream, X> Stream for DeferDrop<S, X> {
type Item = S::Item;
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
self.project().0.poll_next(cx)
}
}