2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2016-02-05 13:40:41 +01:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2016-02-05 13:40:41 +01:00
|
|
|
// 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.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2016-02-05 13:40:41 +01:00
|
|
|
// 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
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-02-05 13:40:41 +01:00
|
|
|
|
2018-09-29 22:25:16 +02:00
|
|
|
use deque;
|
2020-08-05 06:08:03 +02:00
|
|
|
use futures::future::{self, Loop};
|
2018-05-10 12:34:36 +02:00
|
|
|
use service_mio::{HandlerId, IoChannel, IoContext};
|
2020-08-05 06:08:03 +02:00
|
|
|
use std::{
|
|
|
|
sync::{
|
|
|
|
atomic::{AtomicBool, Ordering as AtomicOrdering},
|
|
|
|
Arc,
|
|
|
|
},
|
|
|
|
thread::{self, JoinHandle},
|
|
|
|
};
|
2018-12-03 15:35:46 +01:00
|
|
|
use tokio::{self};
|
2016-08-05 10:32:04 +02:00
|
|
|
use IoHandler;
|
2018-05-10 12:34:36 +02:00
|
|
|
use LOCAL_STACK_SIZE;
|
2016-07-13 19:59:59 +02:00
|
|
|
|
2018-08-22 16:01:07 +02:00
|
|
|
use parking_lot::{Condvar, Mutex};
|
2016-01-21 17:21:51 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
const STACK_SIZE: usize = 16 * 1024 * 1024;
|
2016-10-06 18:42:54 +02:00
|
|
|
|
2016-01-21 17:21:51 +01:00
|
|
|
pub enum WorkType<Message> {
|
2020-08-05 06:08:03 +02:00
|
|
|
Readable,
|
|
|
|
Writable,
|
|
|
|
Hup,
|
|
|
|
Timeout,
|
|
|
|
Message(Arc<Message>),
|
2016-01-21 17:21:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Work<Message> {
|
2020-08-05 06:08:03 +02:00
|
|
|
pub work_type: WorkType<Message>,
|
|
|
|
pub token: usize,
|
|
|
|
pub handler_id: HandlerId,
|
2020-07-29 10:36:15 +02:00
|
|
|
pub handler: Arc<dyn IoHandler<Message>>,
|
2016-01-21 17:21:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// An IO worker thread
|
|
|
|
/// Sorts them ready for blockchain insertion.
|
|
|
|
pub struct Worker {
|
2020-08-05 06:08:03 +02:00
|
|
|
thread: Option<JoinHandle<()>>,
|
|
|
|
wait: Arc<Condvar>,
|
|
|
|
deleting: Arc<AtomicBool>,
|
|
|
|
wait_mutex: Arc<Mutex<()>>,
|
2016-01-21 17:21:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Worker {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// Creates a new worker instance.
|
|
|
|
pub fn new<Message>(
|
2021-01-14 15:55:52 +01:00
|
|
|
name: &str,
|
2020-08-05 06:08:03 +02:00
|
|
|
stealer: deque::Stealer<Work<Message>>,
|
|
|
|
channel: IoChannel<Message>,
|
|
|
|
wait: Arc<Condvar>,
|
|
|
|
wait_mutex: Arc<Mutex<()>>,
|
|
|
|
) -> Worker
|
|
|
|
where
|
|
|
|
Message: Send + Sync + 'static,
|
|
|
|
{
|
|
|
|
let deleting = Arc::new(AtomicBool::new(false));
|
|
|
|
let mut worker = Worker {
|
|
|
|
thread: None,
|
|
|
|
wait: wait.clone(),
|
|
|
|
deleting: deleting.clone(),
|
|
|
|
wait_mutex: wait_mutex.clone(),
|
|
|
|
};
|
|
|
|
worker.thread = Some(
|
|
|
|
thread::Builder::new()
|
|
|
|
.stack_size(STACK_SIZE)
|
2021-01-14 15:55:52 +01:00
|
|
|
.name(format!("Worker {}", name))
|
2020-08-05 06:08:03 +02:00
|
|
|
.spawn(move || {
|
|
|
|
LOCAL_STACK_SIZE.with(|val| val.set(STACK_SIZE));
|
|
|
|
let ini = (stealer, channel.clone(), wait, wait_mutex.clone(), deleting);
|
|
|
|
let future =
|
|
|
|
future::loop_fn(ini, |(stealer, channel, wait, wait_mutex, deleting)| {
|
|
|
|
{
|
|
|
|
let mut lock = wait_mutex.lock();
|
2021-03-10 12:36:23 +01:00
|
|
|
if deleting.load(AtomicOrdering::SeqCst) {
|
2020-08-05 06:08:03 +02:00
|
|
|
return Ok(Loop::Break(()));
|
|
|
|
}
|
|
|
|
wait.wait(&mut lock);
|
|
|
|
}
|
2018-12-03 15:35:46 +01:00
|
|
|
|
2021-03-10 12:36:23 +01:00
|
|
|
while !deleting.load(AtomicOrdering::SeqCst) {
|
2020-08-05 06:08:03 +02:00
|
|
|
match stealer.steal() {
|
|
|
|
deque::Steal::Data(work) => {
|
|
|
|
Worker::do_work(work, channel.clone())
|
|
|
|
}
|
|
|
|
deque::Steal::Retry => {}
|
|
|
|
deque::Steal::Empty => break,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(Loop::Continue((
|
|
|
|
stealer, channel, wait, wait_mutex, deleting,
|
|
|
|
)))
|
|
|
|
});
|
|
|
|
if let Err(()) = tokio::runtime::current_thread::block_on_all(future) {
|
|
|
|
error!(target: "ioworker", "error while executing future")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.expect("Error creating worker thread"),
|
|
|
|
);
|
|
|
|
worker
|
|
|
|
}
|
2016-01-21 17:21:51 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
fn do_work<Message>(work: Work<Message>, channel: IoChannel<Message>)
|
|
|
|
where
|
|
|
|
Message: Send + Sync + 'static,
|
|
|
|
{
|
|
|
|
match work.work_type {
|
|
|
|
WorkType::Readable => {
|
|
|
|
work.handler
|
|
|
|
.stream_readable(&IoContext::new(channel, work.handler_id), work.token);
|
|
|
|
}
|
|
|
|
WorkType::Writable => {
|
|
|
|
work.handler
|
|
|
|
.stream_writable(&IoContext::new(channel, work.handler_id), work.token);
|
|
|
|
}
|
|
|
|
WorkType::Hup => {
|
|
|
|
work.handler
|
|
|
|
.stream_hup(&IoContext::new(channel, work.handler_id), work.token);
|
|
|
|
}
|
|
|
|
WorkType::Timeout => {
|
|
|
|
work.handler
|
|
|
|
.timeout(&IoContext::new(channel, work.handler_id), work.token);
|
|
|
|
}
|
|
|
|
WorkType::Message(message) => {
|
|
|
|
work.handler
|
|
|
|
.message(&IoContext::new(channel, work.handler_id), &*message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-21 17:21:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Worker {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn drop(&mut self) {
|
|
|
|
trace!(target: "shutdown", "[IoWorker] Closing...");
|
|
|
|
let _ = self.wait_mutex.lock();
|
2021-03-10 12:36:23 +01:00
|
|
|
self.deleting.store(true, AtomicOrdering::SeqCst);
|
2020-08-05 06:08:03 +02:00
|
|
|
self.wait.notify_all();
|
|
|
|
if let Some(thread) = self.thread.take() {
|
|
|
|
thread.join().ok();
|
|
|
|
}
|
|
|
|
trace!(target: "shutdown", "[IoWorker] Closed");
|
|
|
|
}
|
2016-01-21 17:21:51 +01:00
|
|
|
}
|