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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
use std::convert::TryInto;
use std::io::{Cursor, Read, Write};
use flate2::read::ZlibDecoder;
use flate2::write::ZlibEncoder;
use flate2::Compression;
use nom::Err;
use serde::Deserialize;
use serde_json::json;
pub use types::*;
use crate::config::StreamConfig;
use crate::errors::{IncompleteResult, ParseError};
mod parser;
mod types;
#[cfg(test)]
mod tests;
type Result<T, E = ParseError> = std::result::Result<T, E>;
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct Packet {
packet_length: u32,
header_length: u16,
protocol_version: Protocol,
op: Operation,
seq_id: u32,
data: Vec<u8>,
}
impl Packet {
pub fn set_proto(&mut self, protocol_version: Protocol) {
self.protocol_version = protocol_version;
}
pub fn set_op(&mut self, op: Operation) {
self.op = op;
}
pub fn set_seq_id(&mut self, seq_id: u32) {
self.seq_id = seq_id;
}
pub fn set_data<T: Into<Vec<u8>>>(&mut self, data: T) {
self.data = data.into();
self.packet_length = self.header_length as u32 + self.data.len() as u32;
}
}
impl Packet {
pub fn new<T: Into<Vec<u8>>>(op: Operation, protocol_version: Protocol, data: T) -> Self {
let data = data.into();
Self {
packet_length: data.len() as u32 + 16,
header_length: 16,
protocol_version,
op,
seq_id: 1,
data,
}
}
pub fn compress(self) -> Result<Self> {
let raw = self.encode();
let mut z = ZlibEncoder::new(Vec::new(), Compression::default());
z.write_all(&raw)?;
let data = z.finish()?;
Ok(Self::new(self.op, Protocol::Zlib, data))
}
}
impl Packet {
#[allow(clippy::missing_panics_doc)]
#[must_use]
pub fn new_room_enter(config: &StreamConfig) -> Self {
Self::new(
Operation::RoomEnter,
Protocol::Json,
serde_json::to_vec(&json!({
"uid": config.uid(),
"roomid": config.room_id(),
"protover": 2,
"platform": "web",
"clientver": "1.8.2",
"type": 2,
"key": config.token()
}))
.unwrap(),
)
}
}
impl Packet {
#[must_use]
pub const fn packet_length(&self) -> u32 {
self.packet_length
}
#[must_use]
pub const fn header_length(&self) -> u16 {
self.header_length
}
#[must_use]
pub const fn seq_id(&self) -> u32 {
self.seq_id
}
#[must_use]
pub const fn op(&self) -> Operation {
self.op
}
#[must_use]
pub const fn proto(&self) -> Protocol {
self.protocol_version
}
#[must_use]
pub fn bytes(&self) -> &[u8] {
&self.data
}
pub fn json<'a, T: Deserialize<'a>>(&'a self) -> Result<T> {
serde_json::from_slice(&self.data).map_err(ParseError::Json)
}
pub fn int32_be(&self) -> Result<i32> {
Ok(i32::from_be_bytes(
self.data
.as_slice()
.try_into()
.map_err(|_| ParseError::Int32BE)?,
))
}
}
impl Packet {
#[must_use]
pub fn encode(&self) -> Vec<u8> {
let mut buf = Vec::with_capacity(self.packet_length as usize);
buf.extend(self.packet_length.to_be_bytes());
buf.extend(self.header_length.to_be_bytes());
buf.extend((self.protocol_version as u16).to_be_bytes());
buf.extend((self.op as u32).to_be_bytes());
buf.extend(self.seq_id.to_be_bytes());
buf.extend(&self.data);
buf
}
#[must_use]
pub fn parse(input: &[u8]) -> IncompleteResult<(&[u8], Self)> {
match parser::parse(input) {
Ok((input, packet)) => {
if let Protocol::Zlib = packet.protocol_version {
let mut z = ZlibDecoder::new(Cursor::new(packet.data));
let mut buf = Vec::new();
if let Err(e) = z.read_to_end(&mut buf) {
return IncompleteResult::Err(ParseError::ZlibError(e));
}
match parser::parse(&buf) {
Ok((_, packet)) => IncompleteResult::Ok((input, packet)),
Err(Err::Incomplete(needed)) => {
IncompleteResult::Err(ParseError::PacketError(format!(
"incomplete buffer: {:?} needed",
needed
)))
}
Err(Err::Error(e) | Err::Failure(e)) => {
IncompleteResult::Err(ParseError::PacketError(format!("{:?}", e)))
}
}
} else {
IncompleteResult::Ok((input, packet))
}
}
Err(Err::Incomplete(needed)) => IncompleteResult::Incomplete(needed),
Err(Err::Error(e) | Err::Failure(e)) => {
IncompleteResult::Err(ParseError::PacketError(format!("{:?}", e)))
}
}
}
}