mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
60 lines
1.4 KiB
Rust
60 lines
1.4 KiB
Rust
use flowy_sys::prelude::{EventResponse, FlowySystem, Module, Sender, SenderData, SenderRunner};
|
|
use std::{cell::RefCell, sync::Once};
|
|
|
|
#[allow(dead_code)]
|
|
pub fn setup_env() {
|
|
static INIT: Once = Once::new();
|
|
INIT.call_once(|| {
|
|
std::env::set_var("RUST_LOG", "flowy_sys=debug,debug");
|
|
env_logger::init();
|
|
});
|
|
}
|
|
|
|
pub struct ExecutorAction {
|
|
command: String,
|
|
}
|
|
|
|
pub struct FlowySystemExecutor {}
|
|
|
|
thread_local!(
|
|
static SENDER: RefCell<Option<Sender<i64>>> = RefCell::new(None);
|
|
);
|
|
|
|
pub fn sync_send(data: SenderData<i64>) -> EventResponse {
|
|
SENDER.with(|cell| match &*cell.borrow() {
|
|
Some(stream) => stream.sync_send(data),
|
|
None => panic!(""),
|
|
})
|
|
}
|
|
|
|
pub fn async_send(data: SenderData<i64>) {
|
|
SENDER.with(|cell| match &*cell.borrow() {
|
|
Some(stream) => {
|
|
stream.async_send(data);
|
|
},
|
|
None => panic!(""),
|
|
});
|
|
}
|
|
|
|
pub fn init_system<F>(modules: Vec<Module>, f: F)
|
|
where
|
|
F: FnOnce() + 'static,
|
|
{
|
|
FlowySystem::construct(
|
|
|| modules,
|
|
|module_map, runtime| {
|
|
let mut sender = Sender::<i64>::new(module_map.clone());
|
|
runtime.spawn(SenderRunner::new(module_map, sender.take_rx()));
|
|
|
|
SENDER.with(|cell| {
|
|
*cell.borrow_mut() = Some(sender);
|
|
});
|
|
},
|
|
)
|
|
.spawn(async { f() })
|
|
.run()
|
|
.unwrap();
|
|
}
|
|
|
|
pub fn stop_system() { FlowySystem::current().stop(); }
|