protocol 0.1.6

Easy protocol definitions
Documentation
/// Implements `Type` for some struct.
///
/// This is used to enable serialization of fields for arbitrary structs.
///
/// ```none
/// pub struct Foo { a: u8, b: u16 };
///
/// implement_composite_type!(Foo { a, b });
/// ```
#[macro_export]
macro_rules! implement_composite_type {
    ($ty:ident { $( $field_name:ident ),+ }) => {
        impl $crate::Type for $ty
        {
            fn read(read: &mut ::std::io::Read) -> Result<Self, $crate::Error> {
                Ok($ty {
                    $( $field_name: $crate::Type::read(read)? ),+
                })
            }

            fn write(&self, write: &mut ::std::io::Write) -> Result<(), $crate::Error> {
                $( self.$field_name.write(write)?; )+

                Ok(())
            }
        }
    }
}


/// Defines a type built out of other types.
///
/// ```none
/// define_composite_type!(Foo {
///     a: u8,
///     b: u16
/// });
/// ```
#[macro_export]
macro_rules! define_composite_type {
    ($ty:ident { $( $field_name:ident : $field_ty:ty ),+ }) => {
        #[derive(Clone,Debug, PartialEq)]
        pub struct $ty
        {
            $( pub $field_name : $field_ty ),+
        }

        implement_composite_type!($ty {
            $( $field_name ),+
        });
    }
}

#[cfg(test)]
#[allow(unused_variables)]
mod test
{
    pub use Type;
    pub use std::io::Cursor;

    #[derive(Clone, Debug)]
    pub struct Foo
    {
        baz: String,
        bing: i64,
    }

    implement_composite_type!(Foo { baz, bing });

    define_composite_type!(Bar {
        baz: String,
        bing: i64
    });

    define_composite_type!(Bing {
        a: u8,
        b: u8,
        c: u8
    });

    describe! composite_types {
        before_each {
            let foo = Foo { baz: "baz".to_string(), bing: 32 };
            let bar = Bar { baz: "baz".to_string(), bing: 32 };
            let bing = Bing { a: 3, b: 2, c: 1 };
        }

        describe! macros {
            it "is consistent when using the different macros" {
                assert_eq!(foo.raw_bytes().unwrap(), bar.raw_bytes().unwrap());
            }
        }

        describe! writing {
            it "matches the expected output" {
                assert_eq!(&bing.raw_bytes().unwrap(), &[bing.a, bing.b, bing.c]);
            }
        }

        describe! reading {
            it "reads the expected value" {
                let mut buffer = Cursor::new([bing.a, bing.b, bing.c]);
                let read = Bing::read(&mut buffer).unwrap();

                assert_eq!(read, bing);
            }
        }
    }
}