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
//! Message serializer trait
//!
//! This trait must be realized be any object which will be used as component of
//! Remote/NetworkActorSystem.

use crate::actors::message::Message;
use std::fmt;

pub struct SerializedMessage {
    pub marker: u32,
    pub blob: Vec<u8>
}

impl fmt::Display for SerializedMessage {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "SerializedMessage [ marker={:?}, blob={:X?} ]", self.marker, self.blob)
    }
}

#[derive(Debug)]
pub enum SerializationError {
    UnsupportedMessage,
    DamagedBlob
}

pub trait MessagesSerializer {
    fn to_binary(&mut self, msg: Message) -> Result<SerializedMessage, SerializationError>;
    fn from_binary(&mut self, marker: u32, blob: Vec<u8>) -> Result<Message, SerializationError>;
}