2016-02-05 13:40:41 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-07-13 19:59:59 +02:00
|
|
|
use std::sync::Arc;
|
2016-01-21 17:21:51 +01:00
|
|
|
use std::thread::{JoinHandle, self};
|
|
|
|
use std::sync::atomic::{AtomicBool, Ordering as AtomicOrdering};
|
|
|
|
use crossbeam::sync::chase_lev;
|
2016-08-05 10:32:04 +02:00
|
|
|
use service::{HandlerId, IoChannel, IoContext};
|
|
|
|
use IoHandler;
|
2016-02-10 12:50:27 +01:00
|
|
|
use panics::*;
|
2016-10-06 18:42:54 +02:00
|
|
|
use std::cell::Cell;
|
2016-07-13 19:59:59 +02:00
|
|
|
|
2016-07-27 11:39:24 +02:00
|
|
|
use std::sync::{Condvar as SCondvar, Mutex as SMutex};
|
2016-01-21 17:21:51 +01:00
|
|
|
|
2016-10-06 18:42:54 +02:00
|
|
|
const STACK_SIZE: usize = 16*1024*1024;
|
|
|
|
|
|
|
|
thread_local! {
|
|
|
|
/// Stack size
|
|
|
|
/// Should be modified if it is changed in Rust since it is no way
|
|
|
|
/// to know or get it
|
|
|
|
pub static LOCAL_STACK_SIZE: Cell<usize> = Cell::new(::std::env::var("RUST_MIN_STACK").ok().and_then(|s| s.parse().ok()).unwrap_or(2 * 1024 * 1024));
|
|
|
|
}
|
|
|
|
|
2016-01-21 17:21:51 +01:00
|
|
|
pub enum WorkType<Message> {
|
|
|
|
Readable,
|
|
|
|
Writable,
|
|
|
|
Hup,
|
|
|
|
Timeout,
|
|
|
|
Message(Message)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Work<Message> {
|
|
|
|
pub work_type: WorkType<Message>,
|
|
|
|
pub token: usize,
|
|
|
|
pub handler_id: HandlerId,
|
|
|
|
pub handler: Arc<IoHandler<Message>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// An IO worker thread
|
|
|
|
/// Sorts them ready for blockchain insertion.
|
|
|
|
pub struct Worker {
|
|
|
|
thread: Option<JoinHandle<()>>,
|
2016-07-27 11:39:24 +02:00
|
|
|
wait: Arc<SCondvar>,
|
2016-01-21 17:21:51 +01:00
|
|
|
deleting: Arc<AtomicBool>,
|
2016-07-27 11:39:24 +02:00
|
|
|
wait_mutex: Arc<SMutex<()>>,
|
2016-01-21 17:21:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Worker {
|
|
|
|
/// Creates a new worker instance.
|
2016-02-10 12:50:27 +01:00
|
|
|
pub fn new<Message>(index: usize,
|
|
|
|
stealer: chase_lev::Stealer<Work<Message>>,
|
2016-01-21 17:21:51 +01:00
|
|
|
channel: IoChannel<Message>,
|
2016-07-27 11:39:24 +02:00
|
|
|
wait: Arc<SCondvar>,
|
|
|
|
wait_mutex: Arc<SMutex<()>>,
|
2016-02-10 16:35:52 +01:00
|
|
|
panic_handler: Arc<PanicHandler>
|
|
|
|
) -> Worker
|
|
|
|
where Message: Send + Sync + Clone + 'static {
|
2016-01-21 17:21:51 +01:00
|
|
|
let deleting = Arc::new(AtomicBool::new(false));
|
|
|
|
let mut worker = Worker {
|
|
|
|
thread: None,
|
|
|
|
wait: wait.clone(),
|
|
|
|
deleting: deleting.clone(),
|
2016-02-16 17:53:31 +01:00
|
|
|
wait_mutex: wait_mutex.clone(),
|
2016-01-21 17:21:51 +01:00
|
|
|
};
|
2016-10-06 18:42:54 +02:00
|
|
|
worker.thread = Some(thread::Builder::new().stack_size(STACK_SIZE).name(format!("IO Worker #{}", index)).spawn(
|
2016-02-10 12:50:27 +01:00
|
|
|
move || {
|
2016-10-06 18:42:54 +02:00
|
|
|
LOCAL_STACK_SIZE.with(|val| val.set(STACK_SIZE));
|
2016-02-10 14:49:31 +01:00
|
|
|
panic_handler.catch_panic(move || {
|
2016-02-10 12:50:27 +01:00
|
|
|
Worker::work_loop(stealer, channel.clone(), wait, wait_mutex.clone(), deleting)
|
2016-10-31 19:58:47 +01:00
|
|
|
}).expect("Error starting panic handler")
|
2016-02-10 12:50:27 +01:00
|
|
|
})
|
2016-01-21 17:21:51 +01:00
|
|
|
.expect("Error creating worker thread"));
|
|
|
|
worker
|
|
|
|
}
|
|
|
|
|
|
|
|
fn work_loop<Message>(stealer: chase_lev::Stealer<Work<Message>>,
|
2016-07-27 11:39:24 +02:00
|
|
|
channel: IoChannel<Message>, wait: Arc<SCondvar>,
|
|
|
|
wait_mutex: Arc<SMutex<()>>,
|
2016-02-10 12:50:27 +01:00
|
|
|
deleting: Arc<AtomicBool>)
|
2016-01-21 17:21:51 +01:00
|
|
|
where Message: Send + Sync + Clone + 'static {
|
2016-02-16 17:53:31 +01:00
|
|
|
loop {
|
2016-01-21 17:21:51 +01:00
|
|
|
{
|
2016-10-31 19:58:47 +01:00
|
|
|
let lock = wait_mutex.lock().expect("Poisoned work_loop mutex");
|
2016-02-16 17:53:31 +01:00
|
|
|
if deleting.load(AtomicOrdering::Acquire) {
|
2016-01-21 17:21:51 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-07-27 11:39:24 +02:00
|
|
|
let _ = wait.wait(lock);
|
2016-02-16 17:53:31 +01:00
|
|
|
}
|
|
|
|
|
2016-10-18 18:16:00 +02:00
|
|
|
while !deleting.load(AtomicOrdering::Acquire) {
|
|
|
|
match stealer.steal() {
|
|
|
|
chase_lev::Steal::Data(work) => Worker::do_work(work, channel.clone()),
|
|
|
|
_ => break,
|
|
|
|
}
|
2016-01-21 17:21:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn do_work<Message>(work: Work<Message>, channel: IoChannel<Message>) where Message: Send + Sync + Clone + 'static {
|
|
|
|
match work.work_type {
|
|
|
|
WorkType::Readable => {
|
2016-01-22 14:44:17 +01:00
|
|
|
work.handler.stream_readable(&IoContext::new(channel, work.handler_id), work.token);
|
2016-01-21 17:21:51 +01:00
|
|
|
},
|
|
|
|
WorkType::Writable => {
|
2016-01-22 14:44:17 +01:00
|
|
|
work.handler.stream_writable(&IoContext::new(channel, work.handler_id), work.token);
|
2016-01-21 17:21:51 +01:00
|
|
|
}
|
|
|
|
WorkType::Hup => {
|
2016-01-22 14:44:17 +01:00
|
|
|
work.handler.stream_hup(&IoContext::new(channel, work.handler_id), work.token);
|
2016-01-21 17:21:51 +01:00
|
|
|
}
|
|
|
|
WorkType::Timeout => {
|
2016-01-22 14:44:17 +01:00
|
|
|
work.handler.timeout(&IoContext::new(channel, work.handler_id), work.token);
|
2016-01-21 17:21:51 +01:00
|
|
|
}
|
|
|
|
WorkType::Message(message) => {
|
2016-01-22 14:44:17 +01:00
|
|
|
work.handler.message(&IoContext::new(channel, work.handler_id), &message);
|
2016-01-21 17:21:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Worker {
|
|
|
|
fn drop(&mut self) {
|
2016-04-06 23:45:19 +02:00
|
|
|
trace!(target: "shutdown", "[IoWorker] Closing...");
|
2016-10-31 19:58:47 +01:00
|
|
|
let _ = self.wait_mutex.lock().expect("Poisoned work_loop mutex");
|
2016-02-16 17:53:31 +01:00
|
|
|
self.deleting.store(true, AtomicOrdering::Release);
|
2016-01-21 17:21:51 +01:00
|
|
|
self.wait.notify_all();
|
2016-10-31 19:58:47 +01:00
|
|
|
if let Some(thread) = self.thread.take() {
|
|
|
|
thread.join().ok();
|
|
|
|
}
|
2016-04-06 23:45:19 +02:00
|
|
|
trace!(target: "shutdown", "[IoWorker] Closed");
|
2016-01-21 17:21:51 +01:00
|
|
|
}
|
|
|
|
}
|