author | alfadur |
Wed, 05 Sep 2018 18:09:06 +0300 | |
changeset 13769 | c5edfcfac68b |
parent 13713 | 59ea2403f62d |
child 13773 | c8fd12db6215 |
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)] |
13666 | 3 |
#![feature(rust_2018_preview)] |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
4 |
|
12125 | 5 |
extern crate rand; |
6 |
extern crate mio; |
|
12126 | 7 |
extern crate slab; |
12127 | 8 |
extern crate netbuf; |
13423 | 9 |
extern crate base64; |
12133 | 10 |
#[macro_use] |
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; |
13713 | 15 |
#[cfg(test)] |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
16 |
#[macro_use] extern crate proptest; |
13493
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13430
diff
changeset
|
17 |
#[macro_use] extern crate bitflags; |
13529 | 18 |
extern crate serde; |
19 |
extern crate serde_yaml; |
|
20 |
#[macro_use] extern crate serde_derive; |
|
12125 | 21 |
|
12126 | 22 |
//use std::io::*; |
12125 | 23 |
//use rand::Rng; |
24 |
//use std::cmp::Ordering; |
|
12853 | 25 |
use mio::net::*; |
12125 | 26 |
use mio::*; |
27 |
||
28 |
mod utils; |
|
12126 | 29 |
mod server; |
12129 | 30 |
mod protocol; |
12125 | 31 |
|
13666 | 32 |
use crate::server::network::NetworkLayer; |
13414 | 33 |
use std::time::Duration; |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
34 |
|
12125 | 35 |
fn main() { |
13769 | 36 |
env_logger::init(); |
12137
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12133
diff
changeset
|
37 |
|
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12133
diff
changeset
|
38 |
info!("Hedgewars game server, protocol {}", utils::PROTOCOL_VERSION); |
12125 | 39 |
|
40 |
let address = "0.0.0.0:46631".parse().unwrap(); |
|
12126 | 41 |
let listener = TcpListener::bind(&address).unwrap(); |
12125 | 42 |
|
43 |
let poll = Poll::new().unwrap(); |
|
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
44 |
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
|
45 |
hw_network.register_server(&poll).unwrap(); |
12125 | 46 |
|
47 |
let mut events = Events::with_capacity(1024); |
|
48 |
||
49 |
loop { |
|
13414 | 50 |
let timeout = if hw_network.has_pending_operations() { |
51 |
Some(Duration::from_millis(1)) |
|
52 |
} else { |
|
53 |
None |
|
54 |
}; |
|
55 |
poll.poll(&mut events, timeout).unwrap(); |
|
12125 | 56 |
|
57 |
for event in events.iter() { |
|
12853 | 58 |
if event.readiness() & Ready::readable() == Ready::readable() { |
12127 | 59 |
match event.token() { |
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
60 |
utils::SERVER => hw_network.accept_client(&poll).unwrap(), |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
61 |
Token(tok) => hw_network.client_readable(&poll, tok).unwrap(), |
12127 | 62 |
} |
63 |
} |
|
12853 | 64 |
if event.readiness() & Ready::writable() == Ready::writable() { |
12127 | 65 |
match event.token() { |
66 |
utils::SERVER => unreachable!(), |
|
13119
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12853
diff
changeset
|
67 |
Token(tok) => hw_network.client_writable(&poll, tok).unwrap(), |
12127 | 68 |
} |
12125 | 69 |
} |
12853 | 70 |
// if event.kind().is_hup() || event.kind().is_error() { |
71 |
// match event.token() { |
|
72 |
// utils::SERVER => unreachable!(), |
|
73 |
// Token(tok) => server.client_error(&poll, tok).unwrap(), |
|
74 |
// } |
|
75 |
// } |
|
12125 | 76 |
} |
13414 | 77 |
hw_network.on_idle(&poll).unwrap(); |
12125 | 78 |
} |
79 |
} |