-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
hyper_echo.rs
66 lines (55 loc) · 1.99 KB
/
hyper_echo.rs
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
use std::net::SocketAddr;
use hyper::server::conn::http1;
use hyper_util::rt::TokioIo;
use rmpv::Value;
use socketioxide::{
extract::{AckSender, Data, SocketRef},
SocketIo,
};
use tokio::net::TcpListener;
use tracing::{info, Level};
use tracing_subscriber::FmtSubscriber;
fn on_connect(socket: SocketRef, Data(data): Data<Value>) {
info!(ns = socket.ns(), ?socket.id, "Socket.IO connected");
socket.emit("auth", &data).ok();
socket.on("message", |socket: SocketRef, Data::<Value>(data)| {
info!(?data, "Received event");
socket.emit("message-back", &data).ok();
});
socket.on("message-with-ack", |Data::<Value>(data), ack: AckSender| {
info!(?data, "Received event");
ack.send(&data).ok();
});
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let subscriber = FmtSubscriber::builder()
.with_line_number(true)
.with_max_level(Level::TRACE)
.finish();
tracing::subscriber::set_global_default(subscriber)?;
let (svc, io) = SocketIo::new_svc();
io.ns("/", on_connect);
io.ns("/custom", on_connect);
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
let listener = TcpListener::bind(addr).await?;
// We start a loop to continuously accept incoming connections
loop {
let (stream, _) = listener.accept().await?;
// Use an adapter to access something implementing `tokio::io` traits as if they implement
// `hyper::rt` IO traits.
let io = TokioIo::new(stream);
let svc = svc.clone();
// Spawn a tokio task to serve multiple connections concurrently
tokio::task::spawn(async move {
// Finally, we bind the incoming connection to our `hello` service
if let Err(err) = http1::Builder::new()
.serve_connection(io, svc)
.with_upgrades()
.await
{
println!("Error serving connection: {:?}", err);
}
});
}
}