mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-15 00:00:15 +02:00
This patch integrate the new timer implementation with the runtime by initializing a timer per worker thread. This allows minimizing the amount of synchronization needed for using timers.
130 lines
3.5 KiB
Rust
130 lines
3.5 KiB
Rust
use runtime::{Inner, Runtime};
|
|
|
|
use reactor::Reactor;
|
|
|
|
use std::io;
|
|
|
|
use tokio_reactor;
|
|
use tokio_threadpool::Builder as ThreadPoolBuilder;
|
|
use tokio_threadpool::park::DefaultPark;
|
|
use tokio_timer::timer::{self, Timer};
|
|
|
|
/// Builds Tokio Runtime with custom configuration values.
|
|
///
|
|
/// Methods can be chanined in order to set the configuration values. The
|
|
/// Runtime is constructed by calling [`build`].
|
|
///
|
|
/// New instances of `Builder` are obtained via [`Builder::new`].
|
|
///
|
|
/// See function level documentation for details on the various configuration
|
|
/// settings.
|
|
///
|
|
/// [`build`]: #method.build
|
|
/// [`Builder::new`]: #method.new
|
|
///
|
|
/// # Examples
|
|
///
|
|
/// ```
|
|
/// # extern crate tokio;
|
|
/// # extern crate tokio_threadpool;
|
|
/// # use tokio::runtime::Builder;
|
|
///
|
|
/// # pub fn main() {
|
|
/// // create and configure ThreadPool
|
|
/// let mut threadpool_builder = tokio_threadpool::Builder::new();
|
|
/// threadpool_builder
|
|
/// .name_prefix("my-runtime-worker-")
|
|
/// .pool_size(4);
|
|
///
|
|
/// // build Runtime
|
|
/// let runtime = Builder::new()
|
|
/// .threadpool_builder(threadpool_builder)
|
|
/// .build();
|
|
/// // ... call runtime.run(...)
|
|
/// # let _ = runtime;
|
|
/// # }
|
|
/// ```
|
|
#[derive(Debug)]
|
|
pub struct Builder {
|
|
/// Thread pool specific builder
|
|
threadpool_builder: ThreadPoolBuilder,
|
|
}
|
|
|
|
impl Builder {
|
|
/// Returns a new runtime builder initialized with default configuration
|
|
/// values.
|
|
///
|
|
/// Configuration methods can be chained on the return value.
|
|
pub fn new() -> Builder {
|
|
let mut threadpool_builder = ThreadPoolBuilder::new();
|
|
threadpool_builder.name_prefix("tokio-runtime-worker-");
|
|
|
|
Builder { threadpool_builder }
|
|
}
|
|
|
|
/// Set builder to set up the thread pool instance.
|
|
pub fn threadpool_builder(&mut self, val: ThreadPoolBuilder) -> &mut Self {
|
|
self.threadpool_builder = val;
|
|
self
|
|
}
|
|
|
|
/// Create the configured `Runtime`.
|
|
///
|
|
/// The returned `ThreadPool` instance is ready to spawn tasks.
|
|
///
|
|
/// # Examples
|
|
///
|
|
/// ```
|
|
/// # extern crate tokio;
|
|
/// # use tokio::runtime::Builder;
|
|
/// # pub fn main() {
|
|
/// let runtime = Builder::new().build();
|
|
/// // ... call runtime.run(...)
|
|
/// # let _ = runtime;
|
|
/// # }
|
|
/// ```
|
|
pub fn build(&mut self) -> io::Result<Runtime> {
|
|
use std::collections::HashMap;
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
let timers = Arc::new(Mutex::new(HashMap::<_, timer::Handle>::new()));
|
|
let t1 = timers.clone();
|
|
|
|
// Spawn a reactor on a background thread.
|
|
let reactor = Reactor::new()?.background()?;
|
|
|
|
// Get a handle to the reactor.
|
|
let reactor_handle = reactor.handle().clone();
|
|
|
|
let pool = self.threadpool_builder
|
|
.around_worker(move |w, enter| {
|
|
let timer_handle = t1.lock().unwrap()
|
|
.get(w.id()).unwrap()
|
|
.clone();
|
|
|
|
tokio_reactor::with_default(&reactor_handle, enter, |enter| {
|
|
timer::with_default(&timer_handle, enter, |_| {
|
|
w.run();
|
|
});
|
|
});
|
|
})
|
|
.custom_park(move |worker_id| {
|
|
// Create a new timer
|
|
let timer = Timer::new(DefaultPark::new());
|
|
|
|
timers.lock().unwrap()
|
|
.insert(worker_id.clone(), timer.handle());
|
|
|
|
timer
|
|
})
|
|
.build();
|
|
|
|
Ok(Runtime {
|
|
inner: Some(Inner {
|
|
reactor,
|
|
pool,
|
|
}),
|
|
})
|
|
}
|
|
}
|