author | alfadur |
Thu, 28 Jun 2018 00:10:15 +0300 | |
changeset 13434 | 4c5ed27b1ff8 |
parent 13428 | 87a6cad20c90 |
child 13435 | eb91b889101b |
permissions | -rw-r--r-- |
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)] |
d1368c776a4f
Enable all lints from the rust-2018-idioms suite.
marmistrz
parents:
13419
diff
changeset
|
3 |
#![warn(unreachable_pub)] |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
4 |
|
12130 | 5 |
extern crate rand; |
6 |
extern crate mio; |
|
12131 | 7 |
extern crate slab; |
12132 | 8 |
extern crate netbuf; |
13428 | 9 |
extern crate base64; |
12138 | 10 |
#[macro_use] |
11 |
extern crate nom; |
|
12142
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12138
diff
changeset
|
12 |
#[macro_use] |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12138
diff
changeset
|
13 |
extern crate log; |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12138
diff
changeset
|
14 |
extern crate env_logger; |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
15 |
#[macro_use] extern crate proptest; |
12130 | 16 |
|
12131 | 17 |
//use std::io::*; |
12130 | 18 |
//use rand::Rng; |
19 |
//use std::cmp::Ordering; |
|
12858 | 20 |
use mio::net::*; |
12130 | 21 |
use mio::*; |
22 |
||
23 |
mod utils; |
|
12131 | 24 |
mod server; |
12134 | 25 |
mod protocol; |
12130 | 26 |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
27 |
use server::network::NetworkLayer; |
13419 | 28 |
use std::time::Duration; |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
29 |
|
12130 | 30 |
fn main() { |
12142
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12138
diff
changeset
|
31 |
env_logger::init().unwrap(); |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12138
diff
changeset
|
32 |
|
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12138
diff
changeset
|
33 |
info!("Hedgewars game server, protocol {}", utils::PROTOCOL_VERSION); |
12130 | 34 |
|
35 |
let address = "0.0.0.0:46631".parse().unwrap(); |
|
12131 | 36 |
let listener = TcpListener::bind(&address).unwrap(); |
12130 | 37 |
|
38 |
let poll = Poll::new().unwrap(); |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
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:
12858
diff
changeset
|
40 |
hw_network.register_server(&poll).unwrap(); |
12130 | 41 |
|
42 |
let mut events = Events::with_capacity(1024); |
|
43 |
||
44 |
loop { |
|
13419 | 45 |
let timeout = if hw_network.has_pending_operations() { |
46 |
Some(Duration::from_millis(1)) |
|
47 |
} else { |
|
48 |
None |
|
49 |
}; |
|
50 |
poll.poll(&mut events, timeout).unwrap(); |
|
12130 | 51 |
|
52 |
for event in events.iter() { |
|
12858 | 53 |
if event.readiness() & Ready::readable() == Ready::readable() { |
12132 | 54 |
match event.token() { |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
55 |
utils::SERVER => hw_network.accept_client(&poll).unwrap(), |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
56 |
Token(tok) => hw_network.client_readable(&poll, tok).unwrap(), |
12132 | 57 |
} |
58 |
} |
|
12858 | 59 |
if event.readiness() & Ready::writable() == Ready::writable() { |
12132 | 60 |
match event.token() { |
61 |
utils::SERVER => unreachable!(), |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
62 |
Token(tok) => hw_network.client_writable(&poll, tok).unwrap(), |
12132 | 63 |
} |
12130 | 64 |
} |
12858 | 65 |
// if event.kind().is_hup() || event.kind().is_error() { |
66 |
// match event.token() { |
|
67 |
// utils::SERVER => unreachable!(), |
|
68 |
// Token(tok) => server.client_error(&poll, tok).unwrap(), |
|
69 |
// } |
|
70 |
// } |
|
12130 | 71 |
} |
13419 | 72 |
hw_network.on_idle(&poll).unwrap(); |
12130 | 73 |
} |
74 |
} |