messaging implementation using valkey pubsub and websockets #12

Merged
radical merged 7 commits from wip/messaging-wss into main 2025-05-18 18:14:41 +00:00
Showing only changes of commit 95964e6fec - Show all commits

View file

@ -63,31 +63,50 @@ pub async fn echo(req: HttpRequest, path: web::Path<(Uuid, Uuid)>, stream: web::
} }
} }
let (res, mut session, stream) = actix_ws::handle(&req, stream)?; let (res, mut session_1, stream) = actix_ws::handle(&req, stream)?;
let mut stream = stream let mut stream = stream
.aggregate_continuations() .aggregate_continuations()
// aggregate continuation frames up to 1MiB // aggregate continuation frames up to 1MiB
.max_continuation_size(2_usize.pow(20)); .max_continuation_size(2_usize.pow(20));
let pubsub_result = data.cache_pool.get_async_pubsub().await;
if let Err(error) = pubsub_result {
error!("{}", error);
return Ok(HttpResponse::InternalServerError().finish())
}
let mut session_2 = session_1.clone();
rt::spawn(async move {
let mut pubsub = pubsub_result.unwrap();
pubsub.subscribe(channel_uuid.to_string()).await.unwrap();
while let Some(msg) = pubsub.on_message().next().await {
let payload: String = msg.get_payload().unwrap();
session_1.text(payload).await.unwrap();
}
});
// start task but don't wait for it // start task but don't wait for it
rt::spawn(async move { rt::spawn(async move {
let mut conn = data.cache_pool.get_multiplexed_tokio_connection().await.unwrap();
// receive messages from websocket // receive messages from websocket
while let Some(msg) = stream.next().await { while let Some(msg) = stream.next().await {
match msg { match msg {
Ok(AggregatedMessage::Text(text)) => { Ok(AggregatedMessage::Text(text)) => {
// echo text message // echo text message
session.text(text).await.unwrap(); redis::cmd("PUBLISH").arg(&[channel_uuid.to_string(), text.to_string()]).exec_async(&mut conn).await.unwrap();
} }
Ok(AggregatedMessage::Binary(bin)) => { Ok(AggregatedMessage::Binary(bin)) => {
// echo binary message // echo binary message
session.binary(bin).await.unwrap(); session_2.binary(bin).await.unwrap();
} }
Ok(AggregatedMessage::Ping(msg)) => { Ok(AggregatedMessage::Ping(msg)) => {
// respond to PING frame with PONG frame // respond to PING frame with PONG frame
session.pong(&msg).await.unwrap(); session_2.pong(&msg).await.unwrap();
} }
_ => {} _ => {}