1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
// This file is part of OpenEthereum.

// OpenEthereum 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.

// OpenEthereum 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 OpenEthereum.  If not, see <http://www.gnu.org/licenses/>.

use deque;
use futures::future::{self, Loop};
use service_mio::{HandlerId, IoChannel, IoContext};
use std::{
    sync::{
        atomic::{AtomicBool, Ordering as AtomicOrdering},
        Arc,
    },
    thread::{self, JoinHandle},
};
use tokio::{self};
use IoHandler;
use LOCAL_STACK_SIZE;

use parking_lot::{Condvar, Mutex};

const STACK_SIZE: usize = 16 * 1024 * 1024;

pub enum WorkType<Message> {
    Readable,
    Writable,
    Hup,
    Timeout,
    Message(Arc<Message>),
}

pub struct Work<Message> {
    pub work_type: WorkType<Message>,
    pub token: usize,
    pub handler_id: HandlerId,
    pub handler: Arc<dyn IoHandler<Message>>,
}

/// An IO worker thread
/// Sorts them ready for blockchain insertion.
pub struct Worker {
    thread: Option<JoinHandle<()>>,
    wait: Arc<Condvar>,
    deleting: Arc<AtomicBool>,
    wait_mutex: Arc<Mutex<()>>,
}

impl Worker {
    /// Creates a new worker instance.
    pub fn new<Message>(
        name: &str,
        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)
                .name(format!("Worker {}", name))
                .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();
                                if deleting.load(AtomicOrdering::SeqCst) {
                                    return Ok(Loop::Break(()));
                                }
                                wait.wait(&mut lock);
                            }

                            while !deleting.load(AtomicOrdering::SeqCst) {
                                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
    }

    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);
            }
        }
    }
}

impl Drop for Worker {
    fn drop(&mut self) {
        trace!(target: "shutdown", "[IoWorker] Closing...");
        let _ = self.wait_mutex.lock();
        self.deleting.store(true, AtomicOrdering::SeqCst);
        self.wait.notify_all();
        if let Some(thread) = self.thread.take() {
            thread.join().ok();
        }
        trace!(target: "shutdown", "[IoWorker] Closed");
    }
}