#![cfg(feature = "v1")]
use tokio1 as tokio;
use tokio::runtime::{Builder, Runtime};
use tokio::task::JoinHandle;
use std::future::Future;
use std::sync::{Mutex, RwLock, RwLockReadGuard};
struct Common {
used_runtime: bool,
runtime: Option<Runtime>,
}
lazy_static::lazy_static! {
static ref COMMON : Mutex<Common> = Mutex::new(Common{
used_runtime: false,
runtime: None,
});
static ref RUNTIME : RwLock<Runtime> = {
let mut c = COMMON.lock().expect("unable to lock untokio::v1::COMMON");
c.used_runtime = true;
RwLock::new(c.runtime.take().unwrap_or_else(|| Builder::new_multi_thread()
.enable_all()
.thread_name("untokio::v1")
.build()
.expect("unable to create untokio::v1::RUNTIME")
))
};
}
pub fn runtime() -> RwLockReadGuard<'static, Runtime> {
RUNTIME.read().expect("unable to lock untokio::v1::RUNTIME")
}
pub fn try_set_runtime(runtime: Runtime) -> Result<(), &'static str> {
let mut c = COMMON.lock().map_err(|_| "unable to lock untokio::v1::COMMON")?;
if c.used_runtime { return Err("untokio::v1::RUNTIME already in use"); }
c.runtime = Some(runtime);
Ok(())
}
pub fn set_runtime(runtime: Runtime) {
try_set_runtime(runtime).unwrap();
}
pub fn spawn<F>(future: F) -> JoinHandle<F::Output> where F : Future + Send + 'static, F::Output : Send + 'static {
runtime().spawn(future)
}