sheave_core/messages/
connect.rsuse std::io::Result as IOResult;
use super::{
Channel,
ChunkData,
Command,
headers::MessageType
};
use crate::{
Decoder,
Encoder,
ByteBuffer,
messages::amf::v0::Object,
};
#[derive(Debug, Clone, Default, PartialEq)]
pub struct Connect(Object);
impl Connect {
pub fn new(command_object: Object) -> Self {
Self(command_object)
}
pub fn get_command_object(&self) -> &Object {
&self.0
}
}
impl From<Connect> for Object {
fn from(connect: Connect) -> Self {
connect.0
}
}
impl Decoder<Connect> for ByteBuffer {
fn decode(&mut self) -> IOResult<Connect> {
let command_object: Object = self.decode()?;
Ok(Connect(command_object))
}
}
impl Encoder<Connect> for ByteBuffer {
fn encode(&mut self, connect: &Connect) {
self.encode(connect.get_command_object());
}
}
impl ChunkData for Connect {
const CHANNEL: Channel = Channel::System;
const MESSAGE_TYPE: MessageType = MessageType::Command;
}
impl Command for Connect {}
#[cfg(test)]
mod tests {
use crate::{
messages::amf::v0::AmfString,
object
};
use super::*;
#[test]
fn decode_connect_input() {
let mut buffer = ByteBuffer::default();
buffer.encode(
&object!(
"app" => AmfString::from("ondemand"),
"type" => AmfString::from("nonprivate"),
"flashVer" => AmfString::from("FMLE/3.0 (compatible; Lavf 60.10.100)"),
"tcUrl" => AmfString::from("rtmp://localhost")
)
);
let result: IOResult<Connect> = buffer.decode();
assert!(result.is_ok());
let actual = result.unwrap();
let expected = Connect::new(
object!(
"app" => AmfString::from("ondemand"),
"type" => AmfString::from("nonprivate"),
"flashVer" => AmfString::from("FMLE/3.0 (compatible; Lavf 60.10.100)"),
"tcUrl" => AmfString::from("rtmp://localhost")
)
);
assert_eq!(expected, actual)
}
#[test]
fn encode_connect_input() {
let mut buffer = ByteBuffer::default();
let expected_command_object = object!(
"app" => AmfString::from("ondemand"),
"type" => AmfString::from("nonprivate"),
"flashVer" => AmfString::from("FMLE/3.0 (compatible; Lavf 60.10.100)"),
"tcUrl" => AmfString::from("rtmp://localhost")
);
let expected = Connect::new(expected_command_object.clone());
buffer.encode(&expected);
let actual_command_object: Object = buffer.decode().unwrap();
assert_eq!(expected_command_object, actual_command_object)
}
}