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
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
use bolt_proto_derive::*;

use crate::{impl_try_from_message, Value};

pub(crate) const MARKER: u8 = 0xB1;
pub(crate) const SIGNATURE: u8 = 0x71;

#[derive(Debug, Clone, Eq, PartialEq, Signature, Marker, Serialize, Deserialize)]
pub struct Record {
    pub(crate) fields: Vec<Value>,
}

impl Record {
    pub fn new(fields: Vec<Value>) -> Self {
        Self { fields }
    }

    pub fn fields(&self) -> &[Value] {
        &self.fields
    }
}

impl_try_from_message!(Record, Record);

#[cfg(test)]
mod tests {
    use std::collections::HashMap;
    use std::convert::TryFrom;
    use std::iter::FromIterator;
    use std::sync::{Arc, Mutex};

    use bytes::Bytes;

    use crate::serialization::*;
    use crate::value::*;

    use super::*;

    fn new_msg() -> Record {
        Record::new(vec![
            Value::from(1200_i16),
            Value::from("hi there"),
            Value::from(HashMap::<&str, Value>::from_iter(vec![(
                "key",
                Value::from("value"),
            )])),
        ])
    }

    #[test]
    fn get_marker() {
        assert_eq!(new_msg().get_marker().unwrap(), MARKER);
    }

    #[test]
    fn get_signature() {
        assert_eq!(new_msg().get_signature(), SIGNATURE);
    }

    #[test]
    fn try_into_bytes() {
        let msg = new_msg();
        assert_eq!(
            msg.try_into_bytes().unwrap(),
            Bytes::from_static(&[
                MARKER,
                SIGNATURE,
                list::MARKER_TINY | 3,
                integer::MARKER_INT_16,
                0x04,
                0xB0,
                string::MARKER_TINY | 8,
                b'h',
                b'i',
                b' ',
                b't',
                b'h',
                b'e',
                b'r',
                b'e',
                map::MARKER_TINY | 1,
                string::MARKER_TINY | 3,
                b'k',
                b'e',
                b'y',
                string::MARKER_TINY | 5,
                b'v',
                b'a',
                b'l',
                b'u',
                b'e'
            ])
        );
    }

    #[test]
    fn try_from_bytes() {
        let msg = new_msg();
        let msg_bytes = &[
            list::MARKER_TINY | 3,
            integer::MARKER_INT_16,
            0x04,
            0xB0,
            string::MARKER_TINY | 8,
            b'h',
            b'i',
            b' ',
            b't',
            b'h',
            b'e',
            b'r',
            b'e',
            map::MARKER_TINY | 1,
            string::MARKER_TINY | 3,
            b'k',
            b'e',
            b'y',
            string::MARKER_TINY | 5,
            b'v',
            b'a',
            b'l',
            b'u',
            b'e',
        ];
        assert_eq!(
            Record::try_from(Arc::new(Mutex::new(Bytes::from_static(msg_bytes)))).unwrap(),
            msg
        );
    }
}