author | Wuzzy <Wuzzy2@mail.ru> |
Sun, 09 Dec 2018 22:28:46 +0100 | |
changeset 14402 | f9a3cfdec1df |
parent 14397 | e335b3120f59 |
permissions | -rw-r--r-- |
12132 | 1 |
use slab; |
13671 | 2 |
use crate::utils; |
13421 | 3 |
use super::{ |
14397 | 4 |
io::HWServerIO, |
13483 | 5 |
client::HWClient, room::HWRoom, actions, handlers, |
6 |
coretypes::{ClientId, RoomId}, |
|
13424 | 7 |
actions::{Destination, PendingMessage} |
13421 | 8 |
}; |
13671 | 9 |
use crate::protocol::messages::*; |
13803 | 10 |
use rand::{RngCore, thread_rng}; |
11 |
use base64::{encode}; |
|
13810 | 12 |
use log::*; |
12131 | 13 |
|
12857 | 14 |
type Slab<T> = slab::Slab<T>; |
12132 | 15 |
|
12131 | 16 |
pub struct HWServer { |
12148 | 17 |
pub clients: Slab<HWClient>, |
18 |
pub rooms: Slab<HWRoom>, |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
19 |
pub lobby_id: RoomId, |
13424 | 20 |
pub output: Vec<(Vec<ClientId>, HWServerMessage)>, |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
21 |
pub removed_clients: Vec<ClientId>, |
14397 | 22 |
pub io: Box<dyn HWServerIO> |
12131 | 23 |
} |
24 |
||
25 |
impl HWServer { |
|
14397 | 26 |
pub fn new(clients_limit: usize, rooms_limit: usize, io: Box<dyn HWServerIO>) -> HWServer { |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
27 |
let rooms = Slab::with_capacity(rooms_limit); |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
28 |
let clients = Slab::with_capacity(clients_limit); |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
29 |
let mut server = HWServer { |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
30 |
clients, rooms, |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
31 |
lobby_id: 0, |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
32 |
output: vec![], |
14397 | 33 |
removed_clients: vec![], |
34 |
io |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
35 |
}; |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
36 |
server.lobby_id = server.add_room(); |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
37 |
server |
12131 | 38 |
} |
39 |
||
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
40 |
pub fn add_client(&mut self) -> ClientId { |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
41 |
let key: ClientId; |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
42 |
{ |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
43 |
let entry = self.clients.vacant_entry(); |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
44 |
key = entry.key(); |
13803 | 45 |
let mut salt = [0u8; 18]; |
46 |
thread_rng().fill_bytes(&mut salt); |
|
47 |
||
48 |
let client = HWClient::new(entry.key(), encode(&salt)); |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
49 |
entry.insert(client); |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
50 |
} |
13529 | 51 |
self.send(key, &Destination::ToSelf, HWServerMessage::Connected(utils::PROTOCOL_VERSION)); |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
52 |
key |
12131 | 53 |
} |
12132 | 54 |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
55 |
pub fn client_lost(&mut self, client_id: ClientId) { |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
56 |
actions::run_action(self, client_id, |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
57 |
actions::Action::ByeClient("Connection reset".to_string())); |
12132 | 58 |
} |
59 |
||
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
60 |
pub fn add_room(&mut self) -> RoomId { |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
61 |
let entry = self.rooms.vacant_entry(); |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
62 |
let key = entry.key(); |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
63 |
let room = HWRoom::new(entry.key()); |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
64 |
entry.insert(room); |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
65 |
key |
12132 | 66 |
} |
12142
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
67 |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
68 |
pub fn handle_msg(&mut self, client_id: ClientId, msg: HWProtocolMessage) { |
13421 | 69 |
debug!("Handling message {:?} for client {}", msg, client_id); |
13447
c6a3784ff2c1
Check for client's existence before handling messages
alfadur
parents:
13431
diff
changeset
|
70 |
if self.clients.contains(client_id) { |
c6a3784ff2c1
Check for client's existence before handling messages
alfadur
parents:
13431
diff
changeset
|
71 |
handlers::handle(self, client_id, msg); |
c6a3784ff2c1
Check for client's existence before handling messages
alfadur
parents:
13431
diff
changeset
|
72 |
} |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
73 |
} |
12144 | 74 |
|
13529 | 75 |
fn get_recipients(&self, client_id: ClientId, destination: &Destination) -> Vec<ClientId> { |
76 |
let mut ids = match *destination { |
|
13424 | 77 |
Destination::ToSelf => vec![client_id], |
13431 | 78 |
Destination::ToId(id) => vec![id], |
13424 | 79 |
Destination::ToAll {room_id: Some(id), ..} => |
80 |
self.room_clients(id), |
|
81 |
Destination::ToAll {protocol: Some(proto), ..} => |
|
82 |
self.protocol_clients(proto), |
|
83 |
Destination::ToAll {..} => |
|
13427 | 84 |
self.clients.iter().map(|(id, _)| id).collect::<Vec<_>>() |
13424 | 85 |
}; |
86 |
if let Destination::ToAll {skip_self: true, ..} = destination { |
|
87 |
if let Some(index) = ids.iter().position(|id| *id == client_id) { |
|
88 |
ids.remove(index); |
|
89 |
} |
|
90 |
} |
|
91 |
ids |
|
13421 | 92 |
} |
93 |
||
13529 | 94 |
pub fn send(&mut self, client_id: ClientId, destination: &Destination, message: HWServerMessage) { |
95 |
let ids = self.get_recipients(client_id, &destination); |
|
13424 | 96 |
self.output.push((ids, message)); |
13421 | 97 |
} |
98 |
||
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
99 |
pub fn react(&mut self, client_id: ClientId, actions: Vec<actions::Action>) { |
12144 | 100 |
for action in actions { |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12857
diff
changeset
|
101 |
actions::run_action(self, client_id, action); |
12143 | 102 |
} |
103 |
} |
|
13421 | 104 |
|
13526 | 105 |
pub fn lobby(&self) -> &HWRoom { &self.rooms[self.lobby_id] } |
106 |
||
13421 | 107 |
pub fn has_room(&self, name: &str) -> bool { |
108 |
self.rooms.iter().any(|(_, r)| r.name == name) |
|
109 |
} |
|
110 |
||
111 |
pub fn find_room(&self, name: &str) -> Option<&HWRoom> { |
|
14355 | 112 |
self.rooms.iter().find_map(|(_, r)| Some(r).filter(|r| r.name == name)) |
13421 | 113 |
} |
114 |
||
115 |
pub fn find_room_mut(&mut self, name: &str) -> Option<&mut HWRoom> { |
|
14355 | 116 |
self.rooms.iter_mut().find_map(|(_, r)| Some(r).filter(|r| r.name == name)) |
13421 | 117 |
} |
118 |
||
13483 | 119 |
pub fn find_client(&self, nick: &str) -> Option<&HWClient> { |
14355 | 120 |
self.clients.iter().find_map(|(_, c)| Some(c).filter(|c| c.nick == nick)) |
13483 | 121 |
} |
122 |
||
123 |
pub fn find_client_mut(&mut self, nick: &str) -> Option<&mut HWClient> { |
|
14355 | 124 |
self.clients.iter_mut().find_map(|(_, c)| Some(c).filter(|c| c.nick == nick)) |
13483 | 125 |
} |
126 |
||
13421 | 127 |
pub fn select_clients<F>(&self, f: F) -> Vec<ClientId> |
128 |
where F: Fn(&(usize, &HWClient)) -> bool { |
|
129 |
self.clients.iter().filter(f) |
|
130 |
.map(|(_, c)| c.id).collect() |
|
131 |
} |
|
132 |
||
133 |
pub fn room_clients(&self, room_id: RoomId) -> Vec<ClientId> { |
|
134 |
self.select_clients(|(_, c)| c.room_id == Some(room_id)) |
|
135 |
} |
|
136 |
||
13525 | 137 |
pub fn protocol_clients(&self, protocol: u16) -> Vec<ClientId> { |
13421 | 138 |
self.select_clients(|(_, c)| c.protocol_number == protocol) |
139 |
} |
|
140 |
||
141 |
pub fn other_clients_in_room(&self, self_id: ClientId) -> Vec<ClientId> { |
|
142 |
let room_id = self.clients[self_id].room_id; |
|
143 |
self.select_clients(|(id, c)| *id != self_id && c.room_id == room_id ) |
|
144 |
} |
|
145 |
||
146 |
pub fn client_and_room(&mut self, client_id: ClientId) -> (&mut HWClient, Option<&mut HWRoom>) { |
|
147 |
let c = &mut self.clients[client_id]; |
|
148 |
if let Some(room_id) = c.room_id { |
|
149 |
(c, Some(&mut self.rooms[room_id])) |
|
150 |
} else { |
|
151 |
(c, None) |
|
152 |
} |
|
153 |
} |
|
13450
d3c86ade3d4d
Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13447
diff
changeset
|
154 |
|
d3c86ade3d4d
Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13447
diff
changeset
|
155 |
pub fn room(&mut self, client_id: ClientId) -> Option<&mut HWRoom> { |
d3c86ade3d4d
Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13447
diff
changeset
|
156 |
self.client_and_room(client_id).1 |
d3c86ade3d4d
Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13447
diff
changeset
|
157 |
} |
d3c86ade3d4d
Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13447
diff
changeset
|
158 |
} |