author | Wuzzy <Wuzzy2@mail.ru> |
Thu, 26 Jul 2018 13:03:35 +0200 | |
changeset 13560 | 43b72629d453 |
parent 13534 | 662f7df89d06 |
child 13671 | 09f4a30e50cc |
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)] |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
3 |
|
12130 | 4 |
extern crate rand; |
5 |
extern crate mio; |
|
12131 | 6 |
extern crate slab; |
12132 | 7 |
extern crate netbuf; |
13428 | 8 |
extern crate base64; |
12138 | 9 |
#[macro_use] |
10 |
extern crate nom; |
|
12142
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12138
diff
changeset
|
11 |
#[macro_use] |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12138
diff
changeset
|
12 |
extern crate log; |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12138
diff
changeset
|
13 |
extern crate env_logger; |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
14 |
#[macro_use] extern crate proptest; |
13527
282e5e54386f
Something down in the food chain already uses bitflags, so might as well switch to them
alfadur
parents:
13435
diff
changeset
|
15 |
#[macro_use] extern crate bitflags; |
13534 | 16 |
extern crate serde; |
17 |
extern crate serde_yaml; |
|
18 |
#[macro_use] extern crate serde_derive; |
|
12130 | 19 |
|
12131 | 20 |
//use std::io::*; |
12130 | 21 |
//use rand::Rng; |
22 |
//use std::cmp::Ordering; |
|
12858 | 23 |
use mio::net::*; |
12130 | 24 |
use mio::*; |
25 |
||
26 |
mod utils; |
|
12131 | 27 |
mod server; |
12134 | 28 |
mod protocol; |
12130 | 29 |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
30 |
use server::network::NetworkLayer; |
13419 | 31 |
use std::time::Duration; |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
32 |
|
12130 | 33 |
fn main() { |
12142
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12138
diff
changeset
|
34 |
env_logger::init().unwrap(); |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12138
diff
changeset
|
35 |
|
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12138
diff
changeset
|
36 |
info!("Hedgewars game server, protocol {}", utils::PROTOCOL_VERSION); |
12130 | 37 |
|
38 |
let address = "0.0.0.0:46631".parse().unwrap(); |
|
12131 | 39 |
let listener = TcpListener::bind(&address).unwrap(); |
12130 | 40 |
|
41 |
let poll = Poll::new().unwrap(); |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
42 |
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
|
43 |
hw_network.register_server(&poll).unwrap(); |
12130 | 44 |
|
45 |
let mut events = Events::with_capacity(1024); |
|
46 |
||
47 |
loop { |
|
13419 | 48 |
let timeout = if hw_network.has_pending_operations() { |
49 |
Some(Duration::from_millis(1)) |
|
50 |
} else { |
|
51 |
None |
|
52 |
}; |
|
53 |
poll.poll(&mut events, timeout).unwrap(); |
|
12130 | 54 |
|
55 |
for event in events.iter() { |
|
12858 | 56 |
if event.readiness() & Ready::readable() == Ready::readable() { |
12132 | 57 |
match event.token() { |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
58 |
utils::SERVER => hw_network.accept_client(&poll).unwrap(), |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
59 |
Token(tok) => hw_network.client_readable(&poll, tok).unwrap(), |
12132 | 60 |
} |
61 |
} |
|
12858 | 62 |
if event.readiness() & Ready::writable() == Ready::writable() { |
12132 | 63 |
match event.token() { |
64 |
utils::SERVER => unreachable!(), |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12858
diff
changeset
|
65 |
Token(tok) => hw_network.client_writable(&poll, tok).unwrap(), |
12132 | 66 |
} |
12130 | 67 |
} |
12858 | 68 |
// if event.kind().is_hup() || event.kind().is_error() { |
69 |
// match event.token() { |
|
70 |
// utils::SERVER => unreachable!(), |
|
71 |
// Token(tok) => server.client_error(&poll, tok).unwrap(), |
|
72 |
// } |
|
73 |
// } |
|
12130 | 74 |
} |
13419 | 75 |
hw_network.on_idle(&poll).unwrap(); |
12130 | 76 |
} |
77 |
} |