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