author | alfadur |
Tue, 09 Apr 2019 23:03:12 +0300 | |
changeset 14801 | 65861ba8b4e8 |
parent 14800 | f43ab2bd76ae |
child 14802 | 01f8ab45f806 |
permissions | -rw-r--r-- |
14413 | 1 |
use std::{ |
2 |
fs::{File, OpenOptions}, |
|
14478 | 3 |
io::{Error, ErrorKind, Read, Result, Write}, |
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
4 |
sync::mpsc, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
5 |
thread, |
14413 | 6 |
}; |
7 |
||
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
8 |
use crate::server::{ |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
9 |
database::Database, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
10 |
handlers::{IoResult, IoTask}, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
11 |
}; |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
12 |
use mio::{Evented, Poll, PollOpt}; |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
13 |
use mio_extras::channel; |
14801 | 14 |
use log::*; |
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
15 |
|
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
16 |
pub type RequestId = u32; |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
17 |
|
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
18 |
pub struct IOThread { |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
19 |
core_tx: mpsc::Sender<(RequestId, IoTask)>, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
20 |
core_rx: channel::Receiver<(RequestId, IoResult)>, |
14413 | 21 |
} |
22 |
||
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
23 |
impl IOThread { |
14413 | 24 |
pub fn new() -> Self { |
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
25 |
let (core_tx, io_rx) = mpsc::channel(); |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
26 |
let (io_tx, core_rx) = channel::channel(); |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
27 |
|
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
28 |
let mut db = Database::new(); |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
29 |
db.connect("localhost"); |
14413 | 30 |
|
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
31 |
thread::spawn(move || { |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
32 |
while let Ok((request_id, task)) = io_rx.try_recv() { |
14801 | 33 |
let response = match task { |
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
34 |
IoTask::GetAccount { |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
35 |
nick, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
36 |
protocol, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
37 |
password_hash, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
38 |
client_salt, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
39 |
server_salt, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
40 |
} => { |
14801 | 41 |
match db.get_account( |
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
42 |
&nick, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
43 |
protocol, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
44 |
&password_hash, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
45 |
&client_salt, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
46 |
&server_salt, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
47 |
) { |
14801 | 48 |
Ok(account) => { |
49 |
IoResult::Account(account) |
|
50 |
} |
|
51 |
Err(..) => { |
|
52 |
warn!("Unable to get account data: {}", 0); |
|
53 |
IoResult::Account(None) |
|
54 |
} |
|
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
55 |
} |
14801 | 56 |
}, |
57 |
||
58 |
IoTask::SaveRoom { room_id, filename, contents} => { |
|
59 |
let result = match save_file(&filename, &contents) { |
|
60 |
Ok(()) => true, |
|
61 |
Err(e) => { |
|
62 |
warn!( |
|
63 |
"Error while writing the room config file \"{}\": {}", |
|
64 |
filename, e |
|
65 |
); |
|
66 |
false |
|
67 |
} |
|
68 |
}; |
|
69 |
IoResult::SaveRoom(room_id, result) |
|
70 |
}, |
|
71 |
||
72 |
IoTask::LoadRoom {room_id, filename} => { |
|
73 |
let result = match load_file(&filename) { |
|
74 |
Ok(contents) => Some(contents), |
|
75 |
Err(e) => { |
|
76 |
warn!( |
|
77 |
"Error while writing the room config file \"{}\": {}", |
|
78 |
filename, e |
|
79 |
); |
|
80 |
None |
|
81 |
} |
|
82 |
}; |
|
83 |
IoResult::LoadRoom(room_id, result) |
|
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
84 |
} |
14801 | 85 |
}; |
86 |
io_tx.send((request_id, response)); |
|
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
87 |
} |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
88 |
}); |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
89 |
|
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
90 |
Self { core_rx, core_tx } |
14413 | 91 |
} |
92 |
||
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
93 |
pub fn send(&self, request_id: RequestId, task: IoTask) { |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
94 |
self.core_tx.send((request_id, task)).unwrap(); |
14413 | 95 |
} |
96 |
||
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
97 |
pub fn try_recv(&self) -> Option<(RequestId, IoResult)> { |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
98 |
match self.core_rx.try_recv() { |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
99 |
Ok(result) => Some(result), |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
100 |
Err(mpsc::TryRecvError::Empty) => None, |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
101 |
Err(mpsc::TryRecvError::Disconnected) => unreachable!(), |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
102 |
} |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
103 |
} |
14413 | 104 |
|
14800
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
105 |
pub fn register_rx(&self, poll: &mio::Poll, token: mio::Token) -> Result<()> { |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
106 |
self.core_rx |
f43ab2bd76ae
add a thread for internal server IO and implement account checking with it
alfadur
parents:
14478
diff
changeset
|
107 |
.register(poll, token, mio::Ready::readable(), PollOpt::edge()) |
14413 | 108 |
} |
109 |
} |
|
14801 | 110 |
|
111 |
fn save_file(filename: &str, contents: &str) -> Result<()> { |
|
112 |
let mut writer = OpenOptions::new().create(true).write(true).open(filename)?; |
|
113 |
writer.write_all(contents.as_bytes()) |
|
114 |
} |
|
115 |
||
116 |
fn load_file(filename: &str) -> Result<String> { |
|
117 |
let mut reader = File::open(filename)?; |
|
118 |
let mut result = String::new(); |
|
119 |
reader.read_to_string(&mut result)?; |
|
120 |
Ok(result) |
|
121 |
} |