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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
use std::collections::HashMap;

use bolt_proto_derive::*;

use crate::{impl_try_from_message, Value};

pub(crate) const MARKER: u8 = 0xB3;
pub(crate) const SIGNATURE: u8 = 0x10;

#[derive(Debug, Clone, Eq, PartialEq, Signature, Marker, Serialize, Deserialize)]
pub struct RunWithMetadata {
    pub(crate) statement: String,
    pub(crate) parameters: HashMap<String, Value>,
    pub(crate) metadata: HashMap<String, Value>,
}

impl RunWithMetadata {
    pub fn new(
        statement: String,
        parameters: HashMap<String, Value>,
        metadata: HashMap<String, Value>,
    ) -> Self {
        Self {
            statement,
            parameters,
            metadata,
        }
    }

    pub fn statement(&self) -> &str {
        &self.statement
    }

    pub fn parameters(&self) -> &HashMap<String, Value> {
        &self.parameters
    }

    pub fn metadata(&self) -> &HashMap<String, Value> {
        &self.metadata
    }
}

impl_try_from_message!(RunWithMetadata, RunWithMetadata);

#[cfg(test)]
mod tests {
    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() -> RunWithMetadata {
        RunWithMetadata::new(
            "something;".to_string(),
            HashMap::new(),
            HashMap::from_iter(vec![("arbitrary".to_string(), Value::from("any"))]),
        )
    }

    #[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,
                string::MARKER_TINY | 10,
                b's',
                b'o',
                b'm',
                b'e',
                b't',
                b'h',
                b'i',
                b'n',
                b'g',
                b';',
                map::MARKER_TINY,
                map::MARKER_TINY | 1,
                string::MARKER_TINY | 9,
                b'a',
                b'r',
                b'b',
                b'i',
                b't',
                b'r',
                b'a',
                b'r',
                b'y',
                string::MARKER_TINY | 3,
                b'a',
                b'n',
                b'y',
            ])
        );
    }

    #[test]
    fn try_from_bytes() {
        let msg = new_msg();
        let msg_bytes = &[
            string::MARKER_TINY | 10,
            b's',
            b'o',
            b'm',
            b'e',
            b't',
            b'h',
            b'i',
            b'n',
            b'g',
            b';',
            map::MARKER_TINY,
            map::MARKER_TINY | 1,
            string::MARKER_TINY | 9,
            b'a',
            b'r',
            b'b',
            b'i',
            b't',
            b'r',
            b'a',
            b'r',
            b'y',
            string::MARKER_TINY | 3,
            b'a',
            b'n',
            b'y',
        ];
        assert_eq!(
            RunWithMetadata::try_from(Arc::new(Mutex::new(Bytes::from_static(msg_bytes)))).unwrap(),
            msg
        );
    }
}