2018-12-11 03:08:33 +01:00
|
|
|
use actix_codec::{Decoder, Encoder};
|
2018-11-18 22:48:42 +01:00
|
|
|
use bytes::{Bytes, BytesMut};
|
2018-10-05 21:47:22 +02:00
|
|
|
|
2018-10-10 22:20:00 +02:00
|
|
|
use super::frame::Parser;
|
2018-10-05 21:47:22 +02:00
|
|
|
use super::proto::{CloseReason, OpCode};
|
|
|
|
use super::ProtocolError;
|
|
|
|
|
|
|
|
/// `WebSocket` Message
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
|
|
pub enum Message {
|
|
|
|
/// Text message
|
|
|
|
Text(String),
|
|
|
|
/// Binary message
|
2018-11-18 22:48:42 +01:00
|
|
|
Binary(Bytes),
|
2019-12-12 09:06:54 +01:00
|
|
|
/// Continuation
|
|
|
|
Continuation(Item),
|
2018-10-05 21:47:22 +02:00
|
|
|
/// Ping message
|
2019-12-09 02:01:22 +01:00
|
|
|
Ping(Bytes),
|
2018-10-05 21:47:22 +02:00
|
|
|
/// Pong message
|
2019-12-09 02:01:22 +01:00
|
|
|
Pong(Bytes),
|
2018-10-05 21:47:22 +02:00
|
|
|
/// Close message with optional reason
|
|
|
|
Close(Option<CloseReason>),
|
2019-03-30 02:22:49 +01:00
|
|
|
/// No-op. Useful for actix-net services
|
|
|
|
Nop,
|
2018-10-05 21:47:22 +02:00
|
|
|
}
|
|
|
|
|
2018-10-10 22:20:00 +02:00
|
|
|
/// `WebSocket` frame
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
|
|
pub enum Frame {
|
|
|
|
/// Text frame, codec does not verify utf8 encoding
|
2019-12-12 09:06:54 +01:00
|
|
|
Text(Bytes),
|
2018-10-10 22:20:00 +02:00
|
|
|
/// Binary frame
|
2019-12-12 09:06:54 +01:00
|
|
|
Binary(Bytes),
|
|
|
|
/// Continuation
|
|
|
|
Continuation(Item),
|
2018-10-10 22:20:00 +02:00
|
|
|
/// Ping message
|
2019-12-09 02:01:22 +01:00
|
|
|
Ping(Bytes),
|
2018-10-10 22:20:00 +02:00
|
|
|
/// Pong message
|
2019-12-09 02:01:22 +01:00
|
|
|
Pong(Bytes),
|
2018-10-10 22:20:00 +02:00
|
|
|
/// Close message with optional reason
|
|
|
|
Close(Option<CloseReason>),
|
|
|
|
}
|
|
|
|
|
2019-12-12 09:06:54 +01:00
|
|
|
/// `WebSocket` continuation item
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
|
|
pub enum Item {
|
|
|
|
FirstText(Bytes),
|
|
|
|
FirstBinary(Bytes),
|
|
|
|
Continue(Bytes),
|
|
|
|
Last(Bytes),
|
|
|
|
}
|
|
|
|
|
2019-06-28 06:49:03 +02:00
|
|
|
#[derive(Debug, Copy, Clone)]
|
2018-10-05 21:47:22 +02:00
|
|
|
/// WebSockets protocol codec
|
|
|
|
pub struct Codec {
|
2019-12-12 09:06:54 +01:00
|
|
|
flags: Flags,
|
2018-10-05 21:47:22 +02:00
|
|
|
max_size: usize,
|
2019-12-12 09:06:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bitflags::bitflags! {
|
|
|
|
struct Flags: u8 {
|
|
|
|
const SERVER = 0b0000_0001;
|
|
|
|
const CONTINUATION = 0b0000_0010;
|
|
|
|
const W_CONTINUATION = 0b0000_0100;
|
|
|
|
}
|
2018-10-05 21:47:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Codec {
|
|
|
|
/// Create new websocket frames decoder
|
|
|
|
pub fn new() -> Codec {
|
|
|
|
Codec {
|
|
|
|
max_size: 65_536,
|
2019-12-12 09:06:54 +01:00
|
|
|
flags: Flags::SERVER,
|
2018-10-05 21:47:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set max frame size
|
|
|
|
///
|
|
|
|
/// By default max size is set to 64kb
|
|
|
|
pub fn max_size(mut self, size: usize) -> Self {
|
|
|
|
self.max_size = size;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set decoder to client mode.
|
|
|
|
///
|
|
|
|
/// By default decoder works in server mode.
|
|
|
|
pub fn client_mode(mut self) -> Self {
|
2019-12-12 09:06:54 +01:00
|
|
|
self.flags.remove(Flags::SERVER);
|
2018-10-05 21:47:22 +02:00
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-24 11:13:35 +02:00
|
|
|
impl Encoder<Message> for Codec {
|
2018-10-05 21:47:22 +02:00
|
|
|
type Error = ProtocolError;
|
|
|
|
|
|
|
|
fn encode(&mut self, item: Message, dst: &mut BytesMut) -> Result<(), Self::Error> {
|
|
|
|
match item {
|
2019-12-12 09:06:54 +01:00
|
|
|
Message::Text(txt) => Parser::write_message(
|
|
|
|
dst,
|
|
|
|
txt,
|
|
|
|
OpCode::Text,
|
|
|
|
true,
|
|
|
|
!self.flags.contains(Flags::SERVER),
|
|
|
|
),
|
|
|
|
Message::Binary(bin) => Parser::write_message(
|
|
|
|
dst,
|
|
|
|
bin,
|
|
|
|
OpCode::Binary,
|
|
|
|
true,
|
|
|
|
!self.flags.contains(Flags::SERVER),
|
|
|
|
),
|
|
|
|
Message::Ping(txt) => Parser::write_message(
|
|
|
|
dst,
|
|
|
|
txt,
|
|
|
|
OpCode::Ping,
|
|
|
|
true,
|
|
|
|
!self.flags.contains(Flags::SERVER),
|
|
|
|
),
|
|
|
|
Message::Pong(txt) => Parser::write_message(
|
|
|
|
dst,
|
|
|
|
txt,
|
|
|
|
OpCode::Pong,
|
|
|
|
true,
|
|
|
|
!self.flags.contains(Flags::SERVER),
|
|
|
|
),
|
|
|
|
Message::Close(reason) => {
|
|
|
|
Parser::write_close(dst, reason, !self.flags.contains(Flags::SERVER))
|
2018-10-05 21:47:22 +02:00
|
|
|
}
|
2019-12-12 09:06:54 +01:00
|
|
|
Message::Continuation(cont) => match cont {
|
|
|
|
Item::FirstText(data) => {
|
|
|
|
if self.flags.contains(Flags::W_CONTINUATION) {
|
|
|
|
return Err(ProtocolError::ContinuationStarted);
|
|
|
|
} else {
|
|
|
|
self.flags.insert(Flags::W_CONTINUATION);
|
|
|
|
Parser::write_message(
|
|
|
|
dst,
|
|
|
|
&data[..],
|
2020-04-29 04:13:09 +02:00
|
|
|
OpCode::Text,
|
2019-12-12 09:06:54 +01:00
|
|
|
false,
|
|
|
|
!self.flags.contains(Flags::SERVER),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Item::FirstBinary(data) => {
|
|
|
|
if self.flags.contains(Flags::W_CONTINUATION) {
|
|
|
|
return Err(ProtocolError::ContinuationStarted);
|
|
|
|
} else {
|
|
|
|
self.flags.insert(Flags::W_CONTINUATION);
|
|
|
|
Parser::write_message(
|
|
|
|
dst,
|
|
|
|
&data[..],
|
2020-04-29 04:13:09 +02:00
|
|
|
OpCode::Binary,
|
2019-12-12 09:06:54 +01:00
|
|
|
false,
|
|
|
|
!self.flags.contains(Flags::SERVER),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Item::Continue(data) => {
|
|
|
|
if self.flags.contains(Flags::W_CONTINUATION) {
|
|
|
|
Parser::write_message(
|
|
|
|
dst,
|
|
|
|
&data[..],
|
|
|
|
OpCode::Continue,
|
|
|
|
false,
|
|
|
|
!self.flags.contains(Flags::SERVER),
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
return Err(ProtocolError::ContinuationNotStarted);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Item::Last(data) => {
|
|
|
|
if self.flags.contains(Flags::W_CONTINUATION) {
|
|
|
|
self.flags.remove(Flags::W_CONTINUATION);
|
|
|
|
Parser::write_message(
|
|
|
|
dst,
|
|
|
|
&data[..],
|
|
|
|
OpCode::Continue,
|
|
|
|
true,
|
|
|
|
!self.flags.contains(Flags::SERVER),
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
return Err(ProtocolError::ContinuationNotStarted);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2019-03-30 02:22:49 +01:00
|
|
|
Message::Nop => (),
|
2018-10-05 21:47:22 +02:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Decoder for Codec {
|
2018-10-10 22:20:00 +02:00
|
|
|
type Item = Frame;
|
2018-10-05 21:47:22 +02:00
|
|
|
type Error = ProtocolError;
|
|
|
|
|
|
|
|
fn decode(&mut self, src: &mut BytesMut) -> Result<Option<Self::Item>, Self::Error> {
|
2019-12-12 09:06:54 +01:00
|
|
|
match Parser::parse(src, self.flags.contains(Flags::SERVER), self.max_size) {
|
2018-10-05 21:47:22 +02:00
|
|
|
Ok(Some((finished, opcode, payload))) => {
|
|
|
|
// continuation is not supported
|
|
|
|
if !finished {
|
2019-12-12 09:06:54 +01:00
|
|
|
return match opcode {
|
|
|
|
OpCode::Continue => {
|
|
|
|
if self.flags.contains(Flags::CONTINUATION) {
|
|
|
|
Ok(Some(Frame::Continuation(Item::Continue(
|
|
|
|
payload
|
|
|
|
.map(|pl| pl.freeze())
|
|
|
|
.unwrap_or_else(Bytes::new),
|
|
|
|
))))
|
|
|
|
} else {
|
|
|
|
Err(ProtocolError::ContinuationNotStarted)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
OpCode::Binary => {
|
|
|
|
if !self.flags.contains(Flags::CONTINUATION) {
|
|
|
|
self.flags.insert(Flags::CONTINUATION);
|
|
|
|
Ok(Some(Frame::Continuation(Item::FirstBinary(
|
|
|
|
payload
|
|
|
|
.map(|pl| pl.freeze())
|
|
|
|
.unwrap_or_else(Bytes::new),
|
|
|
|
))))
|
|
|
|
} else {
|
|
|
|
Err(ProtocolError::ContinuationStarted)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
OpCode::Text => {
|
|
|
|
if !self.flags.contains(Flags::CONTINUATION) {
|
|
|
|
self.flags.insert(Flags::CONTINUATION);
|
|
|
|
Ok(Some(Frame::Continuation(Item::FirstText(
|
|
|
|
payload
|
|
|
|
.map(|pl| pl.freeze())
|
|
|
|
.unwrap_or_else(Bytes::new),
|
|
|
|
))))
|
|
|
|
} else {
|
|
|
|
Err(ProtocolError::ContinuationStarted)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
error!("Unfinished fragment {:?}", opcode);
|
|
|
|
Err(ProtocolError::ContinuationFragment(opcode))
|
|
|
|
}
|
|
|
|
};
|
2018-10-05 21:47:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
match opcode {
|
2019-12-12 09:06:54 +01:00
|
|
|
OpCode::Continue => {
|
|
|
|
if self.flags.contains(Flags::CONTINUATION) {
|
|
|
|
self.flags.remove(Flags::CONTINUATION);
|
|
|
|
Ok(Some(Frame::Continuation(Item::Last(
|
|
|
|
payload.map(|pl| pl.freeze()).unwrap_or_else(Bytes::new),
|
|
|
|
))))
|
|
|
|
} else {
|
|
|
|
Err(ProtocolError::ContinuationNotStarted)
|
|
|
|
}
|
|
|
|
}
|
2018-10-05 21:47:22 +02:00
|
|
|
OpCode::Bad => Err(ProtocolError::BadOpCode),
|
|
|
|
OpCode::Close => {
|
2018-10-10 22:20:00 +02:00
|
|
|
if let Some(ref pl) = payload {
|
|
|
|
let close_reason = Parser::parse_close_payload(pl);
|
|
|
|
Ok(Some(Frame::Close(close_reason)))
|
|
|
|
} else {
|
|
|
|
Ok(Some(Frame::Close(None)))
|
|
|
|
}
|
2018-10-05 21:47:22 +02:00
|
|
|
}
|
2019-12-12 09:06:54 +01:00
|
|
|
OpCode::Ping => Ok(Some(Frame::Ping(
|
|
|
|
payload.map(|pl| pl.freeze()).unwrap_or_else(Bytes::new),
|
|
|
|
))),
|
|
|
|
OpCode::Pong => Ok(Some(Frame::Pong(
|
|
|
|
payload.map(|pl| pl.freeze()).unwrap_or_else(Bytes::new),
|
|
|
|
))),
|
|
|
|
OpCode::Binary => Ok(Some(Frame::Binary(
|
|
|
|
payload.map(|pl| pl.freeze()).unwrap_or_else(Bytes::new),
|
|
|
|
))),
|
|
|
|
OpCode::Text => Ok(Some(Frame::Text(
|
|
|
|
payload.map(|pl| pl.freeze()).unwrap_or_else(Bytes::new),
|
|
|
|
))),
|
2018-10-05 21:47:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(None) => Ok(None),
|
|
|
|
Err(e) => Err(e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|