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
use std::task::Poll;
use ntex::{framed::State, util::poll_fn};
use super::cmd::Command;
use super::codec::Codec;
use super::errors::{CommandError, Error};
pub struct SimpleClient {
state: State,
}
impl SimpleClient {
pub(crate) fn new(state: State) -> Self {
SimpleClient { state }
}
pub async fn exec<U>(&mut self, cmd: U) -> Result<U::Output, CommandError>
where
U: Command,
{
self.state.write().encode(cmd.to_request(), &Codec)?;
let read = self.state.read();
poll_fn(|cx| {
if let Some(item) = read.decode(&Codec)? {
return Poll::Ready(U::to_output(
item.into_result().map_err(CommandError::Error)?,
));
}
if !self.state.is_open() {
return Poll::Ready(Err(CommandError::Protocol(Error::Disconnected)));
}
self.state.register_dispatcher(cx.waker());
Poll::Pending
})
.await
}
}