]> git.lizzy.rs Git - mt_rudp.git/blob - src/main.rs
fix async
[mt_rudp.git] / src / main.rs
1 #![feature(yeet_expr)]
2 #![feature(cursor_remaining)]
3 #![feature(hash_drain_filter)]
4 mod client;
5 pub mod error;
6 mod recv_worker;
7
8 use async_trait::async_trait;
9 use byteorder::{BigEndian, WriteBytesExt};
10 pub use client::{connect, Sender as Client};
11 use num_enum::TryFromPrimitive;
12 use std::future::Future;
13 use std::{
14     io::{self, Write},
15     ops,
16     sync::Arc,
17 };
18 use tokio::sync::mpsc;
19
20 pub const PROTO_ID: u32 = 0x4f457403;
21 pub const UDP_PKT_SIZE: usize = 512;
22 pub const NUM_CHANS: usize = 3;
23 pub const REL_BUFFER: usize = 0x8000;
24 pub const INIT_SEQNUM: u16 = 65500;
25 pub const TIMEOUT: u64 = 30;
26
27 #[async_trait]
28 pub trait UdpSender: Send + Sync + 'static {
29     async fn send(&self, data: Vec<u8>) -> io::Result<()>;
30 }
31
32 #[async_trait]
33 pub trait UdpReceiver: Send + Sync + 'static {
34     async fn recv(&self) -> io::Result<Vec<u8>>;
35 }
36
37 #[derive(Debug, Copy, Clone)]
38 pub enum PeerID {
39     Nil = 0,
40     Srv,
41     CltMin,
42 }
43
44 #[derive(Debug, Copy, Clone, PartialEq, TryFromPrimitive)]
45 #[repr(u8)]
46 pub enum PktType {
47     Ctl = 0,
48     Orig,
49     Split,
50     Rel,
51 }
52
53 #[derive(Debug, Copy, Clone, PartialEq, TryFromPrimitive)]
54 #[repr(u8)]
55 pub enum CtlType {
56     Ack = 0,
57     SetPeerID,
58     Ping,
59     Disco,
60 }
61
62 #[derive(Debug)]
63 pub struct Pkt<T> {
64     unrel: bool,
65     chan: u8,
66     data: T,
67 }
68
69 pub type Error = error::Error;
70 pub type InPkt = Result<Pkt<Vec<u8>>, Error>;
71
72 #[derive(Debug)]
73 pub struct AckChan;
74
75 #[derive(Debug)]
76 pub struct RudpShare<S: UdpSender> {
77     pub id: u16,
78     pub remote_id: u16,
79     pub chans: Vec<AckChan>,
80     udp_tx: S,
81 }
82
83 #[derive(Debug)]
84 pub struct RudpReceiver<S: UdpSender> {
85     share: Arc<RudpShare<S>>,
86     pkt_rx: mpsc::UnboundedReceiver<InPkt>,
87 }
88
89 #[derive(Debug)]
90 pub struct RudpSender<S: UdpSender> {
91     share: Arc<RudpShare<S>>,
92 }
93
94 impl<S: UdpSender> RudpShare<S> {
95     pub async fn send(&self, tp: PktType, pkt: Pkt<&[u8]>) -> io::Result<()> {
96         let mut buf = Vec::with_capacity(4 + 2 + 1 + 1 + pkt.data.len());
97         buf.write_u32::<BigEndian>(PROTO_ID)?;
98         buf.write_u16::<BigEndian>(self.remote_id)?;
99         buf.write_u8(pkt.chan as u8)?;
100         buf.write_u8(tp as u8)?;
101         buf.write(pkt.data)?;
102
103         self.udp_tx.send(buf).await?;
104
105         Ok(())
106     }
107 }
108
109 impl<S: UdpSender> RudpSender<S> {
110     pub async fn send(&self, pkt: Pkt<&[u8]>) -> io::Result<()> {
111         self.share.send(PktType::Orig, pkt).await // TODO
112     }
113 }
114
115 impl<S: UdpSender> ops::Deref for RudpReceiver<S> {
116     type Target = mpsc::UnboundedReceiver<InPkt>;
117
118     fn deref(&self) -> &Self::Target {
119         &self.pkt_rx
120     }
121 }
122
123 impl<S: UdpSender> ops::DerefMut for RudpReceiver<S> {
124     fn deref_mut(&mut self) -> &mut Self::Target {
125         &mut self.pkt_rx
126     }
127 }
128
129 pub fn new<S: UdpSender, R: UdpReceiver>(
130     id: u16,
131     remote_id: u16,
132     udp_tx: S,
133     udp_rx: R,
134 ) -> (RudpSender<S>, RudpReceiver<S>) {
135     let (pkt_tx, pkt_rx) = mpsc::unbounded_channel();
136
137     let share = Arc::new(RudpShare {
138         id,
139         remote_id,
140         udp_tx,
141         chans: (0..NUM_CHANS).map(|_| AckChan).collect(),
142     });
143     let recv_share = Arc::clone(&share);
144
145     tokio::spawn(async {
146         let worker = recv_worker::RecvWorker::new(udp_rx, recv_share, pkt_tx);
147         worker.run().await;
148     });
149
150     (
151         RudpSender {
152             share: Arc::clone(&share),
153         },
154         RudpReceiver { share, pkt_rx },
155     )
156 }
157
158 // connect
159
160 #[tokio::main]
161 async fn main() -> io::Result<()> {
162     //println!("{}", x.deep_size_of());
163     let (tx, mut rx) = connect("127.0.0.1:30000").await?;
164
165     let mut mtpkt = vec![];
166     mtpkt.write_u16::<BigEndian>(2)?; // high level type
167     mtpkt.write_u8(29)?; // serialize ver
168     mtpkt.write_u16::<BigEndian>(0)?; // compression modes
169     mtpkt.write_u16::<BigEndian>(40)?; // MinProtoVer
170     mtpkt.write_u16::<BigEndian>(40)?; // MaxProtoVer
171     mtpkt.write_u16::<BigEndian>(3)?; // player name length
172     mtpkt.write(b"foo")?; // player name
173
174     tx.send(Pkt {
175         unrel: true,
176         chan: 1,
177         data: &mtpkt,
178     })
179     .await?;
180
181     while let Some(result) = rx.recv().await {
182         match result {
183             Ok(pkt) => {
184                 io::stdout().write(pkt.data.as_slice())?;
185             }
186             Err(err) => eprintln!("Error: {}", err),
187         }
188     }
189     println!("disco");
190
191     Ok(())
192 }