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
#[macro_export]
macro_rules! message_struct {
    ( $name:ident $( { $( $field:ident: $t:ty ),* $(,)? } )? ) => {
        $crate::streamable_struct!( $name $( { $( $field: $t, )* } )? );

        impl ChikProtocolMessage for $name {
            fn msg_type() -> $crate::ProtocolMessageTypes {
                $crate::ProtocolMessageTypes::$name
            }
        }
    };
}

#[macro_export]
macro_rules! streamable_struct {
    ( $name:ident { $( $field:ident: $t:ty ),+ $(,)? } ) => {
        $crate::streamable_struct!( impl $name { $( $field: $t, )* } );
    };

    ( $name:ident {} ) => {
        $crate::streamable_struct!( impl $name {} );

        impl Default for $name {
            fn default() -> Self {
                Self {}
            }
        }
    };

    ( $name:ident ) => {
        $crate::streamable_struct!( impl $name );

        impl Default for $name {
            fn default() -> Self {
                Self
            }
        }
    };

    ( impl $name:ident $( { $( $field:ident: $t:ty ),* $(,)? } )? ) => {
        #[cfg_attr(feature = "py-bindings", pyo3::pyclass(frozen), derive(chik_py_streamable_macro::PyJsonDict, chik_py_streamable_macro::PyStreamable, chik_py_streamable_macro::PyGetters))]
        #[derive(Streamable, Hash, Debug, Clone, Eq, PartialEq)]
        #[cfg_attr(fuzzing, derive(arbitrary::Arbitrary))]
        pub struct $name $( {
            $( pub $field: $t ),*
        } )?

        #[cfg(not(feature = "py-bindings"))]
        #[allow(clippy::too_many_arguments)]
        impl $name {
            pub fn new ( $( $( $field: $t),* )? ) -> $name {
                Self $( { $($field),* } )?
            }
        }
    };
}