123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- use crate::{
- errors::{internal_error, WsError},
- MsgReceiver,
- MsgSender,
- };
- use futures_core::{future::BoxFuture, ready};
- use futures_util::{FutureExt, StreamExt};
- use pin_project::pin_project;
- use std::{
- fmt,
- future::Future,
- pin::Pin,
- task::{Context, Poll},
- };
- use tokio::net::TcpStream;
- use tokio_tungstenite::{
- connect_async,
- tungstenite::{handshake::client::Response, Error, Message},
- MaybeTlsStream,
- WebSocketStream,
- };
- #[pin_project]
- pub struct WsConnectionFuture {
- msg_tx: Option<MsgSender>,
- ws_rx: Option<MsgReceiver>,
- #[pin]
- fut: Pin<
- Box<dyn Future<Output = Result<(WebSocketStream<MaybeTlsStream<TcpStream>>, Response), Error>> + Send + Sync>,
- >,
- }
- impl WsConnectionFuture {
- pub fn new(msg_tx: MsgSender, ws_rx: MsgReceiver, addr: String) -> Self {
- WsConnectionFuture {
- msg_tx: Some(msg_tx),
- ws_rx: Some(ws_rx),
- fut: Box::pin(async move { connect_async(&addr).await }),
- }
- }
- }
- impl Future for WsConnectionFuture {
- type Output = Result<WsStream, WsError>;
- fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
- // [[pin]]
- // poll async function. The following methods not work.
- // 1.
- // let f = connect_async("");
- // pin_mut!(f);
- // ready!(Pin::new(&mut a).poll(cx))
- //
- // 2.ready!(Pin::new(&mut Box::pin(connect_async(""))).poll(cx))
- //
- // An async method calls poll multiple times and might return to the executor. A
- // single poll call can only return to the executor once and will get
- // resumed through another poll invocation. the connect_async call multiple time
- // from the beginning. So I use fut to hold the future and continue to
- // poll it. (Fix me if i was wrong)
- loop {
- return match ready!(self.as_mut().project().fut.poll(cx)) {
- Ok((stream, _)) => {
- tracing::debug!("🐴 ws connect success");
- let (msg_tx, ws_rx) = (
- self.msg_tx.take().expect("WsConnection should be call once "),
- self.ws_rx.take().expect("WsConnection should be call once "),
- );
- Poll::Ready(Ok(WsStream::new(msg_tx, ws_rx, stream)))
- },
- Err(error) => {
- tracing::debug!("🐴 ws connect failed: {:?}", error);
- Poll::Ready(Err(error.into()))
- },
- };
- }
- }
- }
- type Fut = BoxFuture<'static, Result<(), WsError>>;
- #[pin_project]
- pub struct WsStream {
- #[allow(dead_code)]
- msg_tx: MsgSender,
- #[pin]
- inner: Option<(Fut, Fut)>,
- }
- impl WsStream {
- pub fn new(msg_tx: MsgSender, ws_rx: MsgReceiver, stream: WebSocketStream<MaybeTlsStream<TcpStream>>) -> Self {
- let (ws_write, ws_read) = stream.split();
- Self {
- msg_tx: msg_tx.clone(),
- inner: Some((
- Box::pin(async move {
- let (tx, mut rx) = tokio::sync::mpsc::channel(100);
- let read = async {
- ws_read
- .for_each(|message| async {
- match tx.send(post_message(msg_tx.clone(), message)).await {
- Ok(_) => {},
- Err(e) => log::error!("WsStream tx closed unexpectedly: {} ", e),
- }
- })
- .await;
- Ok(())
- };
- let ret = async {
- loop {
- match rx.recv().await {
- None => {
- return Err(WsError::internal().context("WsStream rx closed unexpectedly"));
- },
- Some(result) => {
- if result.is_err() {
- return result;
- }
- },
- }
- }
- };
- futures::pin_mut!(ret);
- futures::pin_mut!(read);
- tokio::select! {
- result = read => {return result},
- result = ret => {return result},
- };
- }),
- Box::pin(async move {
- let result = ws_rx.map(Ok).forward(ws_write).await.map_err(internal_error);
- result
- }),
- )),
- }
- }
- }
- impl fmt::Debug for WsStream {
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.debug_struct("WsStream").finish() }
- }
- impl Future for WsStream {
- type Output = Result<(), WsError>;
- fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
- let (mut ws_read, mut ws_write) = self.inner.take().unwrap();
- match ws_read.poll_unpin(cx) {
- Poll::Ready(l) => Poll::Ready(l),
- Poll::Pending => {
- //
- match ws_write.poll_unpin(cx) {
- Poll::Ready(r) => Poll::Ready(r),
- Poll::Pending => {
- self.inner = Some((ws_read, ws_write));
- Poll::Pending
- },
- }
- },
- }
- }
- }
- fn post_message(tx: MsgSender, message: Result<Message, Error>) -> Result<(), WsError> {
- match message {
- Ok(Message::Binary(bytes)) => tx.unbounded_send(Message::Binary(bytes)).map_err(internal_error),
- Ok(_) => Ok(()),
- Err(e) => Err(WsError::internal().context(e)),
- }
- }
- #[allow(dead_code)]
- pub struct Retry<F> {
- f: F,
- #[allow(dead_code)]
- retry_time: usize,
- addr: String,
- }
- impl<F> Retry<F>
- where
- F: Fn(&str),
- {
- #[allow(dead_code)]
- pub fn new(addr: &str, f: F) -> Self {
- Self {
- f,
- retry_time: 3,
- addr: addr.to_owned(),
- }
- }
- }
- impl<F> Future for Retry<F>
- where
- F: Fn(&str),
- {
- type Output = ();
- fn poll(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Self::Output> {
- (self.f)(&self.addr);
- Poll::Ready(())
- }
- }
|