author | alfadur |
Wed, 10 Apr 2019 18:12:30 +0300 | |
changeset 14804 | b3adc030104b |
parent 14800 | f43ab2bd76ae |
child 14813 | 38e66519e585 |
permissions | -rw-r--r-- |
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)] |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
3 |
|
14478 | 4 |
use log::*; |
12853 | 5 |
use mio::net::*; |
12125 | 6 |
use mio::*; |
7 |
||
14478 | 8 |
mod protocol; |
9 |
mod server; |
|
12125 | 10 |
mod utils; |
11 |
||
13666 | 12 |
use crate::server::network::NetworkLayer; |
13414 | 13 |
use std::time::Duration; |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
14 |
|
12125 | 15 |
fn main() { |
13769 | 16 |
env_logger::init(); |
12137
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12133
diff
changeset
|
17 |
|
14804 | 18 |
info!("Hedgewars game server, protocol {}", utils::SERVER_VERSION); |
12125 | 19 |
|
20 |
let address = "0.0.0.0:46631".parse().unwrap(); |
|
12126 | 21 |
let listener = TcpListener::bind(&address).unwrap(); |
12125 | 22 |
|
23 |
let poll = Poll::new().unwrap(); |
|
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
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:
12853
diff
changeset
|
25 |
hw_network.register_server(&poll).unwrap(); |
12125 | 26 |
|
27 |
let mut events = Events::with_capacity(1024); |
|
28 |
||
29 |
loop { |
|
13414 | 30 |
let timeout = if hw_network.has_pending_operations() { |
31 |
Some(Duration::from_millis(1)) |
|
32 |
} else { |
|
33 |
None |
|
34 |
}; |
|
35 |
poll.poll(&mut events, timeout).unwrap(); |
|
12125 | 36 |
|
37 |
for event in events.iter() { |
|
12853 | 38 |
if event.readiness() & Ready::readable() == Ready::readable() { |
12127 | 39 |
match event.token() { |
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14712
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:
14712
diff
changeset
|
41 |
#[cfg(feature = "official-server")] |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14712
diff
changeset
|
42 |
utils::IO_TOKEN => hw_network.handle_io_result(), |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
43 |
Token(tok) => hw_network.client_readable(&poll, tok).unwrap(), |
12127 | 44 |
} |
45 |
} |
|
12853 | 46 |
if event.readiness() & Ready::writable() == Ready::writable() { |
12127 | 47 |
match event.token() { |
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14712
diff
changeset
|
48 |
utils::SERVER_TOKEN => unreachable!(), |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14712
diff
changeset
|
49 |
utils::IO_TOKEN => unreachable!(), |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
50 |
Token(tok) => hw_network.client_writable(&poll, tok).unwrap(), |
12127 | 51 |
} |
12125 | 52 |
} |
14478 | 53 |
// if event.kind().is_hup() || event.kind().is_error() { |
54 |
// match event.token() { |
|
55 |
// utils::SERVER => unreachable!(), |
|
56 |
// Token(tok) => server.client_error(&poll, tok).unwrap(), |
|
57 |
// } |
|
58 |
// } |
|
12125 | 59 |
} |
13414 | 60 |
hw_network.on_idle(&poll).unwrap(); |
12125 | 61 |
} |
62 |
} |