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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
use crossbeam_channel::{unbounded, Receiver, Sender};
use crossbeam_utils::thread;
use std::collections::HashMap;
use std::io::prelude::*;
use std::io::ErrorKind;
use std::net::{Shutdown, TcpStream};
use std::time::Duration;
#[macro_use]
extern crate maplit;
pub mod packets;
mod util;
use util::q;
pub type Icbmsg = Vec<String>;
#[derive(Debug)]
pub struct Config {
pub serverip: String,
pub nickname: String,
pub port: u16,
}
#[derive(Debug, PartialEq)]
pub enum Command {
Bye,
}
#[derive(Debug)]
pub struct Client {
pub nickname: String,
pub cmd_s: Sender<Command>,
pub msg_r: Receiver<Icbmsg>,
}
#[derive(Debug)]
pub struct Server {
hostname: String,
port: u16,
sock: Option<TcpStream>,
cmd_r: Receiver<Command>,
msg_s: Sender<Icbmsg>,
nickname: String,
}
impl Server {
fn new(
hostname: &str,
port: u16,
nickname: &str,
cmd_r: Receiver<Command>,
msg_s: Sender<Icbmsg>,
) -> Server {
Server {
hostname: hostname.to_string(),
port,
cmd_r,
msg_s,
nickname: nickname.to_string(),
sock: None,
}
}
fn read(&mut self, expected: Option<char>) -> Result<HashMap<&str, String>, std::io::Error> {
let mut buffer = [0; 512];
let nbytes = self.sock.as_ref().unwrap().peek(&mut buffer)?;
if nbytes == 0 {
return Ok(hashmap! {"type" => packets::T_INVALID.to_string()});
}
let mut packet_len = 0;
for (i, byte) in buffer.iter().enumerate() {
if *byte != 0 {
q("Non-zero byte found with position and value", &(i, byte))?;
packet_len = *byte as usize;
break;
}
}
if packet_len == 0 {
return Ok(hashmap! {"type" => packets::T_INVALID.to_string()});
}
let mut message = vec![0; packet_len + 1];
self.sock.as_ref().unwrap().read_exact(&mut message)?;
message.remove(0);
q("received message", &message)?;
let packet_type_byte = message[0] as char;
match expected {
Some(t) if (packet_type_byte == t) => {
q("OK! Received packet of expected type", &t)?;
}
Some(t) => {
q(
"FAIL! Mismatch between expectation and result",
&(t, packet_type_byte),
)?;
return Err(std::io::Error::new(
ErrorKind::NotFound,
"Packet type not found",
));
}
_ => {
q("OK! Nothing was expected, just carry on", &())?;
}
}
q("Looking for a packet of type", &packet_type_byte)?;
for packet in &packets::PACKETS {
if packet.packet_type == packet_type_byte {
let data = (packet.parse)(message, packet_len);
q("data", &data)?;
return Ok(data);
}
}
Err(std::io::Error::new(
ErrorKind::InvalidData,
format!(
"Invalid data received from peer of type {}",
packet_type_byte
),
))
}
pub fn run(&mut self) {
self.sock
.as_ref()
.unwrap()
.set_nonblocking(true)
.expect("set_nonblocking on socket failed");
thread::scope(|s| {
s.spawn(|_| loop {
match self.cmd_r.try_recv() {
Ok(m) if m == Command::Bye => {
q("Terminating connection to remote host", &()).unwrap();
self.sock
.as_ref()
.unwrap()
.shutdown(Shutdown::Both)
.unwrap();
break;
}
Ok(m) => q("cmd_r: Received unknown command: {:?}", &m).unwrap(),
Err(_) => {}
}
if let Ok(v) = self.read(None) {
if [packets::T_OPEN, packets::T_PERSONAL]
.contains(&v["type"].chars().next().unwrap())
{
let msg = vec![
v["type"].clone(),
v["nickname"].clone(),
v["message"].clone(),
];
self.msg_s.send(msg).unwrap();
} else if v["type"].chars().next().unwrap() == packets::T_STATUS {
let msg = vec![
v["type"].clone(),
v["category"].clone(),
v["message"].clone(),
];
self.msg_s.send(msg).unwrap();
}
}
std::thread::sleep(Duration::from_millis(1));
});
})
.unwrap();
}
fn login(&mut self) -> std::io::Result<()> {
let login_packet = (packets::LOGIN.create)(vec![
self.nickname.as_str(),
self.nickname.as_str(),
"1",
"login",
]);
self.sock
.as_ref()
.unwrap()
.write_all(login_packet.as_bytes())?;
if self.read(Some(packets::T_LOGIN)).is_err() {
panic!("Login failed.");
}
Ok(())
}
pub fn connect(&mut self) -> std::io::Result<()> {
match TcpStream::connect(format!("{}:{}", &self.hostname, &self.port)) {
Ok(t) => self.sock = Some(t),
Err(_) => panic!("Could not connect to {}:{}", &self.hostname, &self.port),
}
if let Ok(v) = self.read(Some(packets::T_PROTOCOL)) {
q("protocol packet data", &v)?;
q(
"connected to",
&(v.get("hostid").unwrap(), v.get("clientid").unwrap()),
)?;
let msg = vec![
v["type"].clone(),
v["hostid"].clone(),
v["clientid"].clone(),
];
self.msg_s.send(msg).unwrap();
} else {
panic!("Expected a protocol packet, which didn't arrive.")
}
Ok(())
}
}
pub fn init(config: Config) -> Result<(Client, Server), std::io::Error> {
let (msg_s, msg_r) = unbounded();
let (cmd_s, cmd_r) = unbounded();
let mut server = Server::new(&config.serverip, config.port, &config.nickname, cmd_r, msg_s);
server.connect()?;
server.login()?;
let client = Client {
nickname: config.nickname,
cmd_s,
msg_r,
};
Ok((client, server))
}