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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
use serde::{Deserialize, Serialize};

#[derive(Deserialize, Serialize, PartialEq, Debug)]
pub enum Atom {
    Latin1(String),
    UTF8Small(String),
    UTF8(String),
}

impl<'a> From<&'a str> for Atom {
    fn from(s: &'a str) -> Self {
        Atom::UTF8Small(s.to_string())
    }
}

#[derive(Deserialize, Serialize, PartialEq, Debug)]
pub struct Pid {
    pub node: Atom,
    pub num: u32,
    pub serial: u32,
    pub creation: u32,
}

#[derive(Deserialize, Serialize, PartialEq, Debug)]
pub enum Port {
    NewPort { node: Atom, id: u32, creation: u32 },
    V4Port { node: Atom, id: u64, creation: u32 },
}

#[derive(Deserialize, Serialize, PartialEq, Debug)]
pub struct Ref {
    pub len: i16, // 0..5
    pub node: Atom,
    pub creation: u32,
    pub n: Option<Vec<u32>>,
}

#[derive(Deserialize, Serialize, PartialEq, Debug)]
pub struct Trace(
    pub i64, // 0: flags
    pub i64, // 1: label
    pub i64, // 2: serial
    pub Pid, // 3: from
    pub i64, // 4: prev
);

#[derive(Deserialize, Serialize, PartialEq, Debug)]
pub enum Msg {
    Send {
        cookie: Atom,
        to: Pid,
    },
    SendTT {
        cookie: Atom,
        to: Pid,
        token: Trace,
    },
    RegSend {
        from: Pid,
        cookie: Atom,
        toname: Atom,
    },
    RegSendTT {
        from: Pid,
        cookie: Atom,
        toname: Atom,
        token: Trace,
    },
    Exit {
        from: Pid,
        to: Pid,
        reason: String,
    },
    ExitTT {
        from: Pid,
        to: Pid,
        token: Trace,
        reason: String,
    },
}