rust/hedgewars-server/src/main.rs
author alfadur
Wed, 10 Apr 2019 18:12:30 +0300
changeset 14788 b3adc030104b
parent 14784 f43ab2bd76ae
child 14797 38e66519e585
permissions -rw-r--r--
implement server vars
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13124
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12858
diff changeset
     1
#![allow(unused_imports)]
13426
d1368c776a4f Enable all lints from the rust-2018-idioms suite.
marmistrz
parents: 13419
diff changeset
     2
#![deny(bare_trait_objects)]
13124
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12858
diff changeset
     3
14462
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14420
diff changeset
     4
use log::*;
12858
a9d105dc5c95 Improve this code a bit more
unc0rr
parents: 12857
diff changeset
     5
use mio::net::*;
12130
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     6
use mio::*;
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     7
14462
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14420
diff changeset
     8
mod protocol;
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14420
diff changeset
     9
mod server;
12130
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    10
mod utils;
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    11
13671
09f4a30e50cc Rust 2018 conversion
alfadur
parents: 13534
diff changeset
    12
use crate::server::network::NetworkLayer;
13419
28b314ad566d handle edge polling properly
alfadur
parents: 13124
diff changeset
    13
use std::time::Duration;
13124
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12858
diff changeset
    14
12130
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    15
fn main() {
13802
c5edfcfac68b Bump dependencies
alfadur
parents: 13801
diff changeset
    16
    env_logger::init();
12142
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12138
diff changeset
    17
14788
b3adc030104b implement server vars
alfadur
parents: 14784
diff changeset
    18
    info!("Hedgewars game server, protocol {}", utils::SERVER_VERSION);
12130
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    19
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    20
    let address = "0.0.0.0:46631".parse().unwrap();
12131
4348997e502b Refactor code to add more structure to it
unc0rr
parents: 12130
diff changeset
    21
    let listener = TcpListener::bind(&address).unwrap();
12130
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    22
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    23
    let poll = Poll::new().unwrap();
13124
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12858
diff changeset
    24
    let mut hw_network = NetworkLayer::new(listener, 1024, 512);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12858
diff changeset
    25
    hw_network.register_server(&poll).unwrap();
12130
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    26
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    27
    let mut events = Events::with_capacity(1024);
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    28
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    29
    loop {
13419
28b314ad566d handle edge polling properly
alfadur
parents: 13124
diff changeset
    30
        let timeout = if hw_network.has_pending_operations() {
28b314ad566d handle edge polling properly
alfadur
parents: 13124
diff changeset
    31
            Some(Duration::from_millis(1))
28b314ad566d handle edge polling properly
alfadur
parents: 13124
diff changeset
    32
        } else {
28b314ad566d handle edge polling properly
alfadur
parents: 13124
diff changeset
    33
            None
28b314ad566d handle edge polling properly
alfadur
parents: 13124
diff changeset
    34
        };
28b314ad566d handle edge polling properly
alfadur
parents: 13124
diff changeset
    35
        poll.poll(&mut events, timeout).unwrap();
12130
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    36
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    37
        for event in events.iter() {
12858
a9d105dc5c95 Improve this code a bit more
unc0rr
parents: 12857
diff changeset
    38
            if event.readiness() & Ready::readable() == Ready::readable() {
12132
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12131
diff changeset
    39
                match event.token() {
14784
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    40
                    utils::SERVER_TOKEN => hw_network.accept_client(&poll).unwrap(),
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    41
                    #[cfg(feature = "official-server")]
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    42
                    utils::IO_TOKEN => hw_network.handle_io_result(),
13124
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12858
diff changeset
    43
                    Token(tok) => hw_network.client_readable(&poll, tok).unwrap(),
12132
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12131
diff changeset
    44
                }
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12131
diff changeset
    45
            }
12858
a9d105dc5c95 Improve this code a bit more
unc0rr
parents: 12857
diff changeset
    46
            if event.readiness() & Ready::writable() == Ready::writable() {
12132
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12131
diff changeset
    47
                match event.token() {
14784
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    48
                    utils::SERVER_TOKEN => unreachable!(),
f43ab2bd76ae add a thread for internal server IO and implement account checking with it
alfadur
parents: 14696
diff changeset
    49
                    utils::IO_TOKEN => unreachable!(),
13124
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12858
diff changeset
    50
                    Token(tok) => hw_network.client_writable(&poll, tok).unwrap(),
12132
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12131
diff changeset
    51
                }
12130
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    52
            }
14462
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14420
diff changeset
    53
            //            if event.kind().is_hup() || event.kind().is_error() {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14420
diff changeset
    54
            //                match event.token() {
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14420
diff changeset
    55
            //                    utils::SERVER => unreachable!(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14420
diff changeset
    56
            //                    Token(tok) => server.client_error(&poll, tok).unwrap(),
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14420
diff changeset
    57
            //                }
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14420
diff changeset
    58
            //            }
12130
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    59
        }
13419
28b314ad566d handle edge polling properly
alfadur
parents: 13124
diff changeset
    60
        hw_network.on_idle(&poll).unwrap();
12130
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    61
    }
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    62
}