mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
* refactor: user manager * refactor: user manager * refactor: session location * refactor: user manager * chore: gen ts files * feat: implement indexeddb persistence * chore: integrate user manager * chore: update * chore: run on web thread * chore: run on web thread * chore: fix test * chore: add test * chore: add test * chore: add user & sign in with password * chore: fix test * chore: update docs * chore: fix warnings * chore: gen files * chore: add user * chore: add files * chore: update config * chore: update scirpt * chore: update scirpt * fix: build * chore: update command * fix: ci * ci: fix * fix: compile * fix: compile * fix: ci * fix: compile * fix: tauri build * chore: fix test * chore: fix test
118 lines
2.5 KiB
Rust
118 lines
2.5 KiB
Rust
use std::fmt::{Display, Formatter};
|
|
use std::future::Future;
|
|
use std::io;
|
|
|
|
use tokio::runtime;
|
|
use tokio::runtime::Runtime;
|
|
use tokio::task::JoinHandle;
|
|
|
|
pub struct AFPluginRuntime {
|
|
inner: Runtime,
|
|
#[cfg(target_arch = "wasm32")]
|
|
local: tokio::task::LocalSet,
|
|
}
|
|
|
|
impl Display for AFPluginRuntime {
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
if cfg!(target_arch = "wasm32") {
|
|
write!(f, "Runtime(single_thread)")
|
|
} else {
|
|
write!(f, "Runtime(multi_thread)")
|
|
}
|
|
}
|
|
}
|
|
|
|
impl AFPluginRuntime {
|
|
pub fn new() -> io::Result<Self> {
|
|
let inner = default_tokio_runtime()?;
|
|
Ok(Self {
|
|
inner,
|
|
#[cfg(target_arch = "wasm32")]
|
|
local: tokio::task::LocalSet::new(),
|
|
})
|
|
}
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
#[track_caller]
|
|
pub fn spawn<F>(&self, future: F) -> JoinHandle<F::Output>
|
|
where
|
|
F: Future + 'static,
|
|
{
|
|
self.local.spawn_local(future)
|
|
}
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
#[track_caller]
|
|
pub fn spawn<F>(&self, future: F) -> JoinHandle<F::Output>
|
|
where
|
|
F: Future + Send + 'static,
|
|
<F as Future>::Output: Send + 'static,
|
|
{
|
|
self.inner.spawn(future)
|
|
}
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
pub async fn run_until<F>(&self, future: F) -> F::Output
|
|
where
|
|
F: Future,
|
|
{
|
|
self.local.run_until(future).await
|
|
}
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
pub async fn run_until<F>(&self, future: F) -> F::Output
|
|
where
|
|
F: Future,
|
|
{
|
|
future.await
|
|
}
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
#[track_caller]
|
|
pub fn block_on<F>(&self, f: F) -> F::Output
|
|
where
|
|
F: Future,
|
|
{
|
|
self.local.block_on(&self.inner, f)
|
|
}
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
#[track_caller]
|
|
pub fn block_on<F>(&self, f: F) -> F::Output
|
|
where
|
|
F: Future,
|
|
{
|
|
self.inner.block_on(f)
|
|
}
|
|
}
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
pub fn default_tokio_runtime() -> io::Result<Runtime> {
|
|
runtime::Builder::new_current_thread()
|
|
.thread_name("dispatch-rt-st")
|
|
.build()
|
|
}
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
pub fn default_tokio_runtime() -> io::Result<Runtime> {
|
|
runtime::Builder::new_multi_thread()
|
|
.thread_name("dispatch-rt-mt")
|
|
.enable_io()
|
|
.enable_time()
|
|
.on_thread_start(move || {
|
|
tracing::trace!(
|
|
"{:?} thread started: thread_id= {}",
|
|
std::thread::current(),
|
|
thread_id::get()
|
|
);
|
|
})
|
|
.on_thread_stop(move || {
|
|
tracing::trace!(
|
|
"{:?} thread stopping: thread_id= {}",
|
|
std::thread::current(),
|
|
thread_id::get(),
|
|
);
|
|
})
|
|
.build()
|
|
}
|