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
//! Rust Implementation of Erlang Distribution Protocol.
//!
//! Distribution protocol is used to communicate with distributed erlang nodes.
//!
//! Reference: [12 Distribution Protocol](http://erlang.org/doc/apps/erts/erl_dist_protocol.html)
//!
//! # Examples
//!
//! - Client Node Example: [send_msg.rs]
//!                        (https://github.com/sile/erl_dist/blob/master/examples/send_msg.rs)
//! - Server Node Example: [recv_msg.rs]
//!                        (https://github.com/sile/erl_dist/blob/master/examples/recv_msg.rs)
#![warn(missing_docs)]

extern crate eetf;
extern crate futures;
extern crate handy_async;
extern crate md5;
extern crate rand;
#[macro_use]
extern crate bitflags;

macro_rules! invalid_data {
    ($fmt:expr) => { invalid_data!($fmt,); };
    ($fmt:expr, $($arg:tt)*) => {
        ::std::io::Error::new(::std::io::ErrorKind::InvalidData, format!($fmt, $($arg)*));
    };
}

pub use epmd::EpmdClient;
pub use message::Message;
pub use handshake::Handshake;

pub mod epmd;
pub mod channel;
pub mod message;
pub mod handshake;

/// The generation number of a distributed node.
///
/// If a node restarts, the count will be incremented.
///
/// Note the counter will wrap around, if it exceeds four.
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Creation(u8);
impl Creation {
    fn from_u16(c: u16) -> Option<Self> {
        if c < 4 { Some(Creation(c as u8)) } else { None }
    }

    /// Returns the inner counter value of this `Creation`.
    ///
    /// The range of this value is limited to `0..4`.
    pub fn as_u8(&self) -> u8 {
        self.0
    }
}

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {}
}