gameServer2/src/main.rs
author alfadur
Thu, 28 Jun 2018 00:10:15 +0300
changeset 13429 4c5ed27b1ff8
parent 13423 87a6cad20c90
child 13430 eb91b889101b
permissions -rw-r--r--
stabilization
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12853
diff changeset
     1
#![allow(unused_imports)]
13421
d1368c776a4f Enable all lints from the rust-2018-idioms suite.
marmistrz
parents: 13414
diff changeset
     2
#![deny(bare_trait_objects)]
d1368c776a4f Enable all lints from the rust-2018-idioms suite.
marmistrz
parents: 13414
diff changeset
     3
#![warn(unreachable_pub)]
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12853
diff changeset
     4
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     5
extern crate rand;
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
     6
extern crate mio;
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents: 12125
diff changeset
     7
extern crate slab;
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
     8
extern crate netbuf;
13423
87a6cad20c90 Implement game start & engine messages
alfadur
parents: 13421
diff changeset
     9
extern crate base64;
12133
81df2e1f9ae9 Some parsing using nom
unc0rr
parents: 12129
diff changeset
    10
#[macro_use]
81df2e1f9ae9 Some parsing using nom
unc0rr
parents: 12129
diff changeset
    11
extern crate nom;
12137
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12133
diff changeset
    12
#[macro_use]
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12133
diff changeset
    13
extern crate log;
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12133
diff changeset
    14
extern crate env_logger;
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12853
diff changeset
    15
#[macro_use] extern crate proptest;
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    16
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents: 12125
diff changeset
    17
//use std::io::*;
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    18
//use rand::Rng;
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    19
//use std::cmp::Ordering;
12853
a9d105dc5c95 Improve this code a bit more
unc0rr
parents: 12852
diff changeset
    20
use mio::net::*;
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    21
use mio::*;
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    22
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    23
mod utils;
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents: 12125
diff changeset
    24
mod server;
12129
07972a8c2433 - Start protocol parser implementation
unc0rr
parents: 12128
diff changeset
    25
mod protocol;
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    26
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12853
diff changeset
    27
use server::network::NetworkLayer;
13414
28b314ad566d handle edge polling properly
alfadur
parents: 13119
diff changeset
    28
use std::time::Duration;
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12853
diff changeset
    29
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    30
fn main() {
12137
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12133
diff changeset
    31
    env_logger::init().unwrap();
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12133
diff changeset
    32
193dfdcb0620 - Use logging facilities instead of plain println!
unc0rr
parents: 12133
diff changeset
    33
    info!("Hedgewars game server, protocol {}", utils::PROTOCOL_VERSION);
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    34
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    35
    let address = "0.0.0.0:46631".parse().unwrap();
12126
4348997e502b Refactor code to add more structure to it
unc0rr
parents: 12125
diff changeset
    36
    let listener = TcpListener::bind(&address).unwrap();
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    37
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    38
    let poll = Poll::new().unwrap();
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12853
diff changeset
    39
    let mut hw_network = NetworkLayer::new(listener, 1024, 512);
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12853
diff changeset
    40
    hw_network.register_server(&poll).unwrap();
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    41
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    42
    let mut events = Events::with_capacity(1024);
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    43
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    44
    loop {
13414
28b314ad566d handle edge polling properly
alfadur
parents: 13119
diff changeset
    45
        let timeout = if hw_network.has_pending_operations() {
28b314ad566d handle edge polling properly
alfadur
parents: 13119
diff changeset
    46
            Some(Duration::from_millis(1))
28b314ad566d handle edge polling properly
alfadur
parents: 13119
diff changeset
    47
        } else {
28b314ad566d handle edge polling properly
alfadur
parents: 13119
diff changeset
    48
            None
28b314ad566d handle edge polling properly
alfadur
parents: 13119
diff changeset
    49
        };
28b314ad566d handle edge polling properly
alfadur
parents: 13119
diff changeset
    50
        poll.poll(&mut events, timeout).unwrap();
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    51
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    52
        for event in events.iter() {
12853
a9d105dc5c95 Improve this code a bit more
unc0rr
parents: 12852
diff changeset
    53
            if event.readiness() & Ready::readable() == Ready::readable() {
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    54
                match event.token() {
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12853
diff changeset
    55
                    utils::SERVER => hw_network.accept_client(&poll).unwrap(),
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12853
diff changeset
    56
                    Token(tok) => hw_network.client_readable(&poll, tok).unwrap(),
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    57
                }
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    58
            }
12853
a9d105dc5c95 Improve this code a bit more
unc0rr
parents: 12852
diff changeset
    59
            if event.readiness() & Ready::writable() == Ready::writable() {
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    60
                match event.token() {
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    61
                    utils::SERVER => unreachable!(),
13119
1e39b8749072 separated the server logic from all the async io mess.
alfadur
parents: 12853
diff changeset
    62
                    Token(tok) => hw_network.client_writable(&poll, tok).unwrap(),
12127
36ac9c075d0d - Use netbuf buffers for client connection stream
unc0rr
parents: 12126
diff changeset
    63
                }
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    64
            }
12853
a9d105dc5c95 Improve this code a bit more
unc0rr
parents: 12852
diff changeset
    65
//            if event.kind().is_hup() || event.kind().is_error() {
a9d105dc5c95 Improve this code a bit more
unc0rr
parents: 12852
diff changeset
    66
//                match event.token() {
a9d105dc5c95 Improve this code a bit more
unc0rr
parents: 12852
diff changeset
    67
//                    utils::SERVER => unreachable!(),
a9d105dc5c95 Improve this code a bit more
unc0rr
parents: 12852
diff changeset
    68
//                    Token(tok) => server.client_error(&poll, tok).unwrap(),
a9d105dc5c95 Improve this code a bit more
unc0rr
parents: 12852
diff changeset
    69
//                }
a9d105dc5c95 Improve this code a bit more
unc0rr
parents: 12852
diff changeset
    70
//            }
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    71
        }
13414
28b314ad566d handle edge polling properly
alfadur
parents: 13119
diff changeset
    72
        hw_network.on_idle(&poll).unwrap();
12125
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    73
    }
858bf4d04c54 Start server implementation in rust
unc0rr
parents:
diff changeset
    74
}