sheave_core/messages/
on_status.rs

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
153
154
mod publishing_failure;

use std::io::Result as IOResult;
use crate::{
    ByteBuffer,
    Decoder,
    Encoder,
    messages::{
        Channel,
        ChunkData,
        Command,
        amf::v0::{
            Object,
            Null
        },
        headers::MessageType
    }
};
pub use self::publishing_failure::*;

/// The response message for Publish requests.
#[derive(Debug, Clone, Default, PartialEq)]
pub struct OnStatus(Object);

impl OnStatus {
    /// Constructs an OnStatus command.
    pub fn new(info_object: Object) -> Self {
        Self(info_object)
    }

    /// Gets the info object.
    pub fn get_info_object(&self) -> &Object {
        &self.0
    }
}

impl From<OnStatus> for Object {
    fn from(on_status: OnStatus) -> Self {
        on_status.0
    }
}

impl ChunkData for OnStatus {
    const CHANNEL: Channel = Channel::System;
    const MESSAGE_TYPE: MessageType = MessageType::Command;
}

impl Command for OnStatus {}

impl Decoder<OnStatus> for ByteBuffer {
    /// Decodes bytes into an OnStatus command.
    ///
    /// # Errors
    ///
    /// * [`InsufficientBufferLength`]
    ///
    /// When some field misses.
    ///
    /// * [`InconsistentMarker`]
    ///
    /// When some value is inconsistent with its marker.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use sheave_core::{
    ///     ByteBuffer,
    ///     Decoder,
    ///     Encoder,
    ///     messages::{
    ///         OnStatus,
    ///         amf::v0::{
    ///             Object,
    ///             Null
    ///         }
    ///     }
    /// };
    ///
    /// let mut buffer = ByteBuffer::default();
    /// buffer.encode(&Null);
    /// buffer.encode(&Object::default());
    /// assert!(Decoder::<OnStatus>::decode(&mut buffer).is_ok());
    ///
    /// let mut buffer = ByteBuffer::default();
    /// assert!(Decoder::<OnStatus>::decode(&mut buffer).is_err())
    /// ```
    ///
    /// [`InsufficientBufferLength`]: crate::byte_buffer::InsufficientBufferLength
    /// [`InconsistentMarker`]: crate::messages::amf::InconsistentMarker
    fn decode(&mut self) -> IOResult<OnStatus> {
        Decoder::<Null>::decode(self)?;
        let info_object: Object = self.decode()?;

        Ok(OnStatus(info_object))
    }
}

impl Encoder<OnStatus> for ByteBuffer {
    /// Encodes an OnStatus command into bytes.
    fn encode(&mut self, on_status: &OnStatus) {
        self.encode(&Null);
        self.encode(on_status.get_info_object());
    }
}

#[cfg(test)]
mod tests {
    use crate::{
        messages::amf::v0::AmfString,
        object
    };
    use super::*;

    #[test]
    fn decode_on_status() {
        let mut buffer = ByteBuffer::default();
        buffer.encode(&Null);
        buffer.encode(
            &object!(
                "level" => AmfString::from("status"),
                "code" => AmfString::from("NetStream.Publish.Start"),
                "description" => AmfString::new(format!("{} is now published", "filename")),
                "details" => AmfString::from("filename")
            )
        );
        let result: IOResult<OnStatus> = buffer.decode();
        assert!(result.is_ok());
        let actual = result.unwrap();
        let expected = OnStatus::new(
            object!(
                "level" => AmfString::from("status"),
                "code" => AmfString::from("NetStream.Publish.Start"),
                "description" => AmfString::new(format!("{} is now published", "filename")),
                "details" => AmfString::from("filename")
            )
        );
        assert_eq!(expected, actual);
    }

    #[test]
    fn encode_on_status() {
        let mut buffer = ByteBuffer::default();
        let expected_info_object = object!(
            "level" => AmfString::from("status"),
            "code" => AmfString::from("NetStream.Publish.Start"),
            "description" => AmfString::new(format!("{} is now published", "filename")),
            "details" => AmfString::from("filename")
        );
        buffer.encode(&OnStatus::new(expected_info_object.clone()));
        Decoder::<Null>::decode(&mut buffer).unwrap();
        let actual_info_object: Object = buffer.decode().unwrap();
        assert_eq!(expected_info_object, actual_info_object)
    }
}