mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-29 22:16:00 +00:00
b79cf8abde
* Move message-queue to a fully binary representation Additionally adds a timeout to the message queue test. * coordinator clippy * Remove contention for the message-queue socket by using per-request sockets * clippy
46 lines
1.5 KiB
Rust
46 lines
1.5 KiB
Rust
use std::sync::Arc;
|
|
|
|
use serai_client::primitives::NetworkId;
|
|
use processor_messages::{ProcessorMessage, CoordinatorMessage};
|
|
|
|
use message_queue::{Service, Metadata, client::MessageQueue};
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
|
pub struct Message {
|
|
pub id: u64,
|
|
pub network: NetworkId,
|
|
pub msg: ProcessorMessage,
|
|
}
|
|
|
|
#[async_trait::async_trait]
|
|
pub trait Processors: 'static + Send + Sync + Clone {
|
|
async fn send(&self, network: NetworkId, msg: impl Send + Into<CoordinatorMessage>);
|
|
async fn recv(&self, network: NetworkId) -> Message;
|
|
async fn ack(&self, msg: Message);
|
|
}
|
|
|
|
#[async_trait::async_trait]
|
|
impl Processors for Arc<MessageQueue> {
|
|
async fn send(&self, network: NetworkId, msg: impl Send + Into<CoordinatorMessage>) {
|
|
let msg: CoordinatorMessage = msg.into();
|
|
let metadata =
|
|
Metadata { from: self.service, to: Service::Processor(network), intent: msg.intent() };
|
|
let msg = borsh::to_vec(&msg).unwrap();
|
|
self.queue(metadata, msg).await;
|
|
}
|
|
async fn recv(&self, network: NetworkId) -> Message {
|
|
let msg = self.next(Service::Processor(network)).await;
|
|
assert_eq!(msg.from, Service::Processor(network));
|
|
|
|
let id = msg.id;
|
|
|
|
// Deserialize it into a ProcessorMessage
|
|
let msg: ProcessorMessage =
|
|
borsh::from_slice(&msg.msg).expect("message wasn't a borsh-encoded ProcessorMessage");
|
|
|
|
return Message { id, network, msg };
|
|
}
|
|
async fn ack(&self, msg: Message) {
|
|
MessageQueue::ack(self, Service::Processor(msg.network), msg.id).await
|
|
}
|
|
}
|