gameServer2/src/server/server.rs
author alfadur
Fri, 14 Sep 2018 23:14:19 +0300
changeset 13805 0463a4221327
parent 13798 4664da990556
child 14350 31717e1436cd
permissions -rw-r--r--
cleanup crate imports
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
     1
use slab;
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13524
diff changeset
     2
use crate::utils;
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
     3
use super::{
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
     4
    client::HWClient, room::HWRoom, actions, handlers,
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
     5
    coretypes::{ClientId, RoomId},
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
     6
    actions::{Destination, PendingMessage}
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
     7
};
13666
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13524
diff changeset
     8
use crate::protocol::messages::*;
13798
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
     9
use rand::{RngCore, thread_rng};
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
    10
use base64::{encode};
13805
0463a4221327 cleanup crate imports
alfadur
parents: 13798
diff changeset
    11
use log::*;
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    12
12852
bd35cb2302b3 Quick dirty fix for building
unc0rr
parents: 12148
diff changeset
    13
type Slab<T> = slab::Slab<T>;
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    14
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    15
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    16
pub struct HWServer {
12143
7e874846afe3 Toss code around
unc0rr
parents: 12142
diff changeset
    17
    pub clients: Slab<HWClient>,
7e874846afe3 Toss code around
unc0rr
parents: 12142
diff changeset
    18
    pub rooms: Slab<HWRoom>,
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    19
    pub lobby_id: RoomId,
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    20
    pub output: Vec<(Vec<ClientId>, HWServerMessage)>,
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    21
    pub removed_clients: Vec<ClientId>,
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    22
}
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    23
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    24
impl HWServer {
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    25
    pub fn new(clients_limit: usize, rooms_limit: usize) -> HWServer {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    26
        let rooms = Slab::with_capacity(rooms_limit);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    27
        let clients = Slab::with_capacity(clients_limit);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    28
        let mut server = HWServer {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    29
            clients, rooms,
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    30
            lobby_id: 0,
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    31
            output: vec![],
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    32
            removed_clients: vec![]
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    33
        };
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    34
        server.lobby_id = server.add_room();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    35
        server
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    36
    }
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    37
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    38
    pub fn add_client(&mut self) -> ClientId {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    39
        let key: ClientId;
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    40
        {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    41
            let entry = self.clients.vacant_entry();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    42
            key = entry.key();
13798
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
    43
            let mut salt = [0u8; 18];
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
    44
            thread_rng().fill_bytes(&mut salt);
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
    45
4664da990556 Add official server feature to cargo
alfadur
parents: 13666
diff changeset
    46
            let client = HWClient::new(entry.key(), encode(&salt));
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    47
            entry.insert(client);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    48
        }
13524
5359ff75da3a indulge clippy
alfadur
parents: 13521
diff changeset
    49
        self.send(key, &Destination::ToSelf, HWServerMessage::Connected(utils::PROTOCOL_VERSION));
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    50
        key
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents:
diff changeset
    51
    }
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    52
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    53
    pub fn client_lost(&mut self, client_id: ClientId) {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    54
        actions::run_action(self, client_id,
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    55
                            actions::Action::ByeClient("Connection reset".to_string()));
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    56
    }
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    57
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    58
    pub fn add_room(&mut self) -> RoomId {
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    59
        let entry = self.rooms.vacant_entry();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    60
        let key = entry.key();
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    61
        let room = HWRoom::new(entry.key());
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    62
        entry.insert(room);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    63
        key
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    64
    }
12137
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12136
diff changeset
    65
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    66
    pub fn handle_msg(&mut self, client_id: ClientId, msg: HWProtocolMessage) {
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    67
        debug!("Handling message {:?} for client {}", msg, client_id);
13442
c6a3784ff2c1 Check for client's existence before handling messages
alfadur
parents: 13426
diff changeset
    68
        if self.clients.contains(client_id) {
c6a3784ff2c1 Check for client's existence before handling messages
alfadur
parents: 13426
diff changeset
    69
            handlers::handle(self, client_id, msg);
c6a3784ff2c1 Check for client's existence before handling messages
alfadur
parents: 13426
diff changeset
    70
        }
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    71
    }
12139
f3121d7dedec - Handle errors
unc0rr
parents: 12138
diff changeset
    72
13524
5359ff75da3a indulge clippy
alfadur
parents: 13521
diff changeset
    73
    fn get_recipients(&self, client_id: ClientId, destination: &Destination) -> Vec<ClientId> {
5359ff75da3a indulge clippy
alfadur
parents: 13521
diff changeset
    74
        let mut ids = match *destination {
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    75
            Destination::ToSelf => vec![client_id],
13426
f091f69d59e4 Additional round cleanup
alfadur
parents: 13422
diff changeset
    76
            Destination::ToId(id) => vec![id],
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    77
            Destination::ToAll {room_id: Some(id), ..} =>
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    78
                self.room_clients(id),
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    79
            Destination::ToAll {protocol: Some(proto), ..} =>
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    80
                self.protocol_clients(proto),
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    81
            Destination::ToAll {..} =>
13422
5fb27f94fc3b Implement game config messages
alfadur
parents: 13419
diff changeset
    82
                self.clients.iter().map(|(id, _)| id).collect::<Vec<_>>()
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    83
        };
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    84
        if let Destination::ToAll {skip_self: true, ..} = destination {
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    85
            if let Some(index) = ids.iter().position(|id| *id == client_id) {
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    86
                ids.remove(index);
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    87
            }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    88
        }
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    89
        ids
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    90
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    91
13524
5359ff75da3a indulge clippy
alfadur
parents: 13521
diff changeset
    92
    pub fn send(&mut self, client_id: ClientId, destination: &Destination, message: HWServerMessage) {
5359ff75da3a indulge clippy
alfadur
parents: 13521
diff changeset
    93
        let ids = self.get_recipients(client_id, &destination);
13419
81e0ed105f5d implementation of team related messages
alfadur
parents: 13416
diff changeset
    94
        self.output.push((ids, message));
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    95
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
    96
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    97
    pub fn react(&mut self, client_id: ClientId, actions: Vec<actions::Action>) {
12139
f3121d7dedec - Handle errors
unc0rr
parents: 12138
diff changeset
    98
        for action in actions {
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12852
diff changeset
    99
            actions::run_action(self, client_id, action);
12138
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents: 12137
diff changeset
   100
        }
e0bf51609062 Introduce actions, just like in the old server
unc0rr
parents: 12137
diff changeset
   101
    }
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   102
13521
ba5211dddb21 Assorted chat fixes
alfadur
parents: 13520
diff changeset
   103
    pub fn lobby(&self) -> &HWRoom { &self.rooms[self.lobby_id] }
ba5211dddb21 Assorted chat fixes
alfadur
parents: 13520
diff changeset
   104
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   105
    pub fn has_room(&self, name: &str) -> bool {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   106
        self.rooms.iter().any(|(_, r)| r.name == name)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   107
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   108
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   109
    pub fn find_room(&self, name: &str) -> Option<&HWRoom> {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   110
        self.rooms.iter().find(|(_, r)| r.name == name).map(|(_, r)| r)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   111
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   112
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   113
    pub fn find_room_mut(&mut self, name: &str) -> Option<&mut HWRoom> {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   114
        self.rooms.iter_mut().find(|(_, r)| r.name == name).map(|(_, r)| r)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   115
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   116
13478
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   117
    pub fn find_client(&self, nick: &str) -> Option<&HWClient> {
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   118
        self.clients.iter().find(|(_, c)| c.nick == nick).map(|(_, c)| c)
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   119
    }
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   120
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   121
    pub fn find_client_mut(&mut self, nick: &str) -> Option<&mut HWClient> {
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   122
        self.clients.iter_mut().find(|(_, c)| c.nick == nick).map(|(_, c)| c)
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   123
    }
d79795acaa73 Mostly implement voting
alfadur
parents: 13445
diff changeset
   124
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   125
    pub fn select_clients<F>(&self, f: F) -> Vec<ClientId>
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   126
        where F: Fn(&(usize, &HWClient)) -> bool {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   127
        self.clients.iter().filter(f)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   128
            .map(|(_, c)| c.id).collect()
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   129
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   130
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   131
    pub fn room_clients(&self, room_id: RoomId) -> Vec<ClientId> {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   132
        self.select_clients(|(_, c)| c.room_id == Some(room_id))
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   133
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   134
13520
1ee192f13456 Better packing for clients
alfadur
parents: 13478
diff changeset
   135
    pub fn protocol_clients(&self, protocol: u16) -> Vec<ClientId> {
13416
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   136
        self.select_clients(|(_, c)| c.protocol_number == protocol)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   137
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   138
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   139
    pub fn other_clients_in_room(&self, self_id: ClientId) -> Vec<ClientId> {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   140
        let room_id = self.clients[self_id].room_id;
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   141
        self.select_clients(|(id, c)| *id != self_id && c.room_id == room_id )
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   142
    }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   143
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   144
    pub fn client_and_room(&mut self, client_id: ClientId) -> (&mut HWClient, Option<&mut HWRoom>) {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   145
        let c = &mut self.clients[client_id];
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   146
        if let Some(room_id) = c.room_id {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   147
            (c, Some(&mut self.rooms[room_id]))
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   148
        } else {
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   149
            (c, None)
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   150
        }
cdf69667593b partial room implementation
alfadur
parents: 13119
diff changeset
   151
    }
13445
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   152
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   153
    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: 13442
diff changeset
   154
        self.client_and_room(client_id).1
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   155
    }
d3c86ade3d4d Send the rnd reply to the room only.
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents: 13442
diff changeset
   156
}