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