2018-03-21 21:23:36 +03:00
|
|
|
use runtime::{Inner, Runtime};
|
|
|
|
|
|
|
|
|
|
use reactor::Reactor;
|
|
|
|
|
|
|
|
|
|
use std::io;
|
|
|
|
|
|
2018-03-30 11:50:02 -07:00
|
|
|
use tokio_reactor;
|
2018-03-21 21:23:36 +03:00
|
|
|
use tokio_threadpool::Builder as ThreadPoolBuilder;
|
2018-03-30 11:50:02 -07:00
|
|
|
use tokio_threadpool::park::DefaultPark;
|
2018-06-06 16:04:39 -07:00
|
|
|
use tokio_timer::clock::{self, Clock};
|
2018-03-30 11:50:02 -07:00
|
|
|
use tokio_timer::timer::{self, Timer};
|
2018-03-21 21:23:36 +03:00
|
|
|
|
|
|
|
|
/// Builds Tokio Runtime with custom configuration values.
|
|
|
|
|
///
|
2018-05-08 14:44:17 -04:00
|
|
|
/// Methods can be chained in order to set the configuration values. The
|
2018-03-21 21:23:36 +03:00
|
|
|
/// 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,
|
2018-06-06 16:04:39 -07:00
|
|
|
|
|
|
|
|
/// The clock to use
|
|
|
|
|
clock: Clock,
|
2018-03-21 21:23:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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-");
|
|
|
|
|
|
2018-06-06 16:04:39 -07:00
|
|
|
Builder {
|
|
|
|
|
threadpool_builder,
|
|
|
|
|
clock: Clock::new(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Set the `Clock` instance that will be used by the runtime.
|
|
|
|
|
pub fn clock(&mut self, clock: Clock) -> &mut Self {
|
|
|
|
|
self.clock = clock;
|
|
|
|
|
self
|
2018-03-21 21:23:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Set builder to set up the thread pool instance.
|
2018-09-19 07:37:45 -07:00
|
|
|
#[deprecated(
|
|
|
|
|
since="0.1.9",
|
|
|
|
|
note="use the `core_threads`, `blocking_threads`, `name_prefix`, \
|
|
|
|
|
and `stack_size` functions on `runtime::Builder`, instead")]
|
|
|
|
|
#[doc(hidden)]
|
2018-03-21 21:23:36 +03:00
|
|
|
pub fn threadpool_builder(&mut self, val: ThreadPoolBuilder) -> &mut Self {
|
|
|
|
|
self.threadpool_builder = val;
|
|
|
|
|
self
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 07:37:45 -07:00
|
|
|
/// Set the maximum number of worker threads for the `Runtime`'s thread pool.
|
|
|
|
|
///
|
|
|
|
|
/// This must be a number between 1 and 32,768 though it is advised to keep
|
|
|
|
|
/// this value on the smaller side.
|
|
|
|
|
///
|
|
|
|
|
/// The default value is the number of cores available to the system.
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # extern crate tokio;
|
|
|
|
|
/// # extern crate futures;
|
|
|
|
|
/// # use tokio::runtime;
|
|
|
|
|
///
|
|
|
|
|
/// # pub fn main() {
|
|
|
|
|
/// let mut rt = runtime::Builder::new()
|
|
|
|
|
/// .core_threads(4)
|
|
|
|
|
/// .build()
|
|
|
|
|
/// .unwrap();
|
|
|
|
|
/// # }
|
|
|
|
|
/// ```
|
|
|
|
|
pub fn core_threads(&mut self, val: usize) -> &mut Self {
|
|
|
|
|
self.threadpool_builder.pool_size(val);
|
|
|
|
|
self
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Set the maximum number of concurrent blocking sections in the `Runtime`'s
|
|
|
|
|
/// thread pool.
|
|
|
|
|
///
|
|
|
|
|
/// When the maximum concurrent `blocking` calls is reached, any further
|
|
|
|
|
/// calls to `blocking` will return `NotReady` and the task is notified once
|
|
|
|
|
/// previously in-flight calls to `blocking` return.
|
|
|
|
|
///
|
|
|
|
|
/// This must be a number between 1 and 32,768 though it is advised to keep
|
|
|
|
|
/// this value on the smaller side.
|
|
|
|
|
///
|
|
|
|
|
/// The default value is 100.
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # extern crate tokio;
|
|
|
|
|
/// # extern crate futures;
|
|
|
|
|
/// # use tokio::runtime;
|
|
|
|
|
///
|
|
|
|
|
/// # pub fn main() {
|
|
|
|
|
/// let mut rt = runtime::Builder::new()
|
|
|
|
|
/// .blocking_threads(200)
|
|
|
|
|
/// .build();
|
|
|
|
|
/// # }
|
|
|
|
|
/// ```
|
|
|
|
|
pub fn blocking_threads(&mut self, val: usize) -> &mut Self {
|
|
|
|
|
self.threadpool_builder.max_blocking(val);
|
|
|
|
|
self
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Set name prefix of threads spawned by the `Runtime`'s thread pool.
|
|
|
|
|
///
|
|
|
|
|
/// Thread name prefix is used for generating thread names. For example, if
|
|
|
|
|
/// prefix is `my-pool-`, then threads in the pool will get names like
|
|
|
|
|
/// `my-pool-1` etc.
|
|
|
|
|
///
|
|
|
|
|
/// The default prefix is "tokio-runtime-worker-".
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # extern crate tokio;
|
|
|
|
|
/// # extern crate futures;
|
|
|
|
|
/// # use tokio::runtime;
|
|
|
|
|
///
|
|
|
|
|
/// # pub fn main() {
|
|
|
|
|
/// let mut rt = runtime::Builder::new()
|
|
|
|
|
/// .name_prefix("my-pool-")
|
|
|
|
|
/// .build();
|
|
|
|
|
/// # }
|
|
|
|
|
/// ```
|
|
|
|
|
pub fn name_prefix<S: Into<String>>(&mut self, val: S) -> &mut Self {
|
|
|
|
|
self.threadpool_builder.name_prefix(val);
|
|
|
|
|
self
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Set the stack size (in bytes) for worker threads.
|
|
|
|
|
///
|
|
|
|
|
/// The actual stack size may be greater than this value if the platform
|
|
|
|
|
/// specifies minimal stack size.
|
|
|
|
|
///
|
|
|
|
|
/// The default stack size for spawned threads is 2 MiB, though this
|
|
|
|
|
/// particular stack size is subject to change in the future.
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # extern crate tokio;
|
|
|
|
|
/// # extern crate futures;
|
|
|
|
|
/// # use tokio::runtime;
|
|
|
|
|
///
|
|
|
|
|
/// # pub fn main() {
|
|
|
|
|
/// let mut rt = runtime::Builder::new()
|
|
|
|
|
/// .stack_size(32 * 1024)
|
|
|
|
|
/// .build();
|
|
|
|
|
/// # }
|
|
|
|
|
/// ```
|
|
|
|
|
pub fn stack_size(&mut self, val: usize) -> &mut Self {
|
|
|
|
|
self.threadpool_builder.stack_size(val);
|
|
|
|
|
self
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-21 21:23:36 +03:00
|
|
|
/// Create the configured `Runtime`.
|
|
|
|
|
///
|
|
|
|
|
/// The returned `ThreadPool` instance is ready to spawn tasks.
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # extern crate tokio;
|
|
|
|
|
/// # use tokio::runtime::Builder;
|
|
|
|
|
/// # pub fn main() {
|
2018-05-02 19:40:42 +03:00
|
|
|
/// let runtime = Builder::new().build().unwrap();
|
2018-03-21 21:23:36 +03:00
|
|
|
/// // ... call runtime.run(...)
|
|
|
|
|
/// # let _ = runtime;
|
|
|
|
|
/// # }
|
|
|
|
|
/// ```
|
|
|
|
|
pub fn build(&mut self) -> io::Result<Runtime> {
|
2018-03-30 11:50:02 -07:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
|
|
2018-06-06 16:04:39 -07:00
|
|
|
// Get a handle to the clock for the runtime.
|
|
|
|
|
let clock1 = self.clock.clone();
|
|
|
|
|
let clock2 = clock1.clone();
|
|
|
|
|
|
2018-03-30 11:50:02 -07:00
|
|
|
let timers = Arc::new(Mutex::new(HashMap::<_, timer::Handle>::new()));
|
|
|
|
|
let t1 = timers.clone();
|
|
|
|
|
|
2018-03-21 21:23:36 +03:00
|
|
|
// Spawn a reactor on a background thread.
|
|
|
|
|
let reactor = Reactor::new()?.background()?;
|
|
|
|
|
|
|
|
|
|
// Get a handle to the reactor.
|
2018-03-30 11:50:02 -07:00
|
|
|
let reactor_handle = reactor.handle().clone();
|
2018-03-21 21:23:36 +03:00
|
|
|
|
|
|
|
|
let pool = self.threadpool_builder
|
|
|
|
|
.around_worker(move |w, enter| {
|
2018-03-30 11:50:02 -07:00
|
|
|
let timer_handle = t1.lock().unwrap()
|
|
|
|
|
.get(w.id()).unwrap()
|
|
|
|
|
.clone();
|
|
|
|
|
|
|
|
|
|
tokio_reactor::with_default(&reactor_handle, enter, |enter| {
|
2018-06-06 16:04:39 -07:00
|
|
|
clock::with_default(&clock1, enter, |enter| {
|
|
|
|
|
timer::with_default(&timer_handle, enter, |_| {
|
|
|
|
|
w.run();
|
|
|
|
|
});
|
|
|
|
|
})
|
2018-03-21 21:23:36 +03:00
|
|
|
});
|
|
|
|
|
})
|
2018-03-30 11:50:02 -07:00
|
|
|
.custom_park(move |worker_id| {
|
|
|
|
|
// Create a new timer
|
2018-06-06 16:04:39 -07:00
|
|
|
let timer = Timer::new_with_now(DefaultPark::new(), clock2.clone());
|
2018-03-30 11:50:02 -07:00
|
|
|
|
|
|
|
|
timers.lock().unwrap()
|
|
|
|
|
.insert(worker_id.clone(), timer.handle());
|
|
|
|
|
|
|
|
|
|
timer
|
|
|
|
|
})
|
2018-03-21 21:23:36 +03:00
|
|
|
.build();
|
|
|
|
|
|
|
|
|
|
Ok(Runtime {
|
|
|
|
|
inner: Some(Inner {
|
|
|
|
|
reactor,
|
|
|
|
|
pool,
|
|
|
|
|
}),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|