AppFlowy/rust-lib/flowy-dispatch/src/dispatch.rs

190 lines
5.9 KiB
Rust
Raw Normal View History

use crate::{
errors::{DispatchError, Error, InternalError},
module::{as_module_map, Module, ModuleMap, ModuleRequest},
response::{EventResponse, Responder},
service::{Service, ServiceFactory},
util::tokio_default_runtime,
};
use derivative::*;
use futures_core::future::BoxFuture;
2021-07-03 06:14:10 +00:00
use futures_util::task::Context;
use lazy_static::lazy_static;
2021-07-03 06:14:10 +00:00
use pin_project::pin_project;
use std::{future::Future, sync::RwLock};
2021-07-03 14:24:02 +00:00
use tokio::macros::support::{Pin, Poll};
lazy_static! {
pub static ref EVENT_DISPATCH: RwLock<Option<EventDispatch>> = RwLock::new(None);
}
pub struct EventDispatch {
module_map: ModuleMap,
runtime: tokio::runtime::Runtime,
}
impl EventDispatch {
pub fn construct<F>(module_factory: F)
where
F: FnOnce() -> Vec<Module>,
{
let modules = module_factory();
2021-07-08 13:23:44 +00:00
log::trace!("{}", module_info(&modules));
let module_map = as_module_map(modules);
let runtime = tokio_default_runtime().unwrap();
let dispatch = EventDispatch {
module_map,
runtime,
};
*(EVENT_DISPATCH.write().unwrap()) = Some(dispatch);
}
pub fn async_send<Req>(request: Req) -> DispatchFuture<EventResponse>
2021-07-16 15:18:12 +00:00
where
Req: std::convert::Into<ModuleRequest>,
{
EventDispatch::async_send_with_callback(request, |_| Box::pin(async {}))
}
pub fn async_send_with_callback<Req, Callback>(
request: Req,
callback: Callback,
) -> DispatchFuture<EventResponse>
where
Req: std::convert::Into<ModuleRequest>,
Callback: FnOnce(EventResponse) -> BoxFuture<'static, ()> + 'static + Send + Sync,
{
let request: ModuleRequest = request.into();
match EVENT_DISPATCH.read() {
Ok(dispatch) => {
let dispatch = dispatch.as_ref().unwrap();
let module_map = dispatch.module_map.clone();
let service = Box::new(DispatchService { module_map });
2021-07-09 09:47:15 +00:00
log::trace!("Async event: {:?}", &request.event);
let service_ctx = DispatchContext {
request,
callback: Some(Box::new(callback)),
};
2021-07-03 06:14:10 +00:00
let join_handle = dispatch.runtime.spawn(async move {
service
.call(service_ctx)
2021-07-03 06:14:10 +00:00
.await
.unwrap_or_else(|e| InternalError::new(format!("{:?}", e)).as_response())
});
DispatchFuture {
fut: Box::pin(async move {
join_handle.await.unwrap_or_else(|e| {
InternalError::new(format!("EVENT_DISPATCH join error: {:?}", e))
2021-07-03 06:14:10 +00:00
.as_response()
})
}),
}
},
Err(e) => {
2021-07-08 13:23:44 +00:00
let msg = format!("EVENT_DISPATCH read failed. {:?}", e);
log::error!("{}", msg);
2021-07-03 06:14:10 +00:00
DispatchFuture {
fut: Box::pin(async { InternalError::new(msg).as_response() }),
}
},
}
}
pub fn sync_send(request: ModuleRequest) -> EventResponse {
futures::executor::block_on(async {
2021-07-16 15:18:12 +00:00
EventDispatch::async_send_with_callback(request, |_| Box::pin(async {})).await
})
}
}
2021-07-03 06:14:10 +00:00
#[pin_project]
pub struct DispatchFuture<T: Send + Sync> {
2021-07-03 06:14:10 +00:00
#[pin]
pub fut: Pin<Box<dyn Future<Output = T> + Sync + Send>>,
2021-07-03 06:14:10 +00:00
}
impl<T> Future for DispatchFuture<T>
where
T: Send + Sync,
{
type Output = T;
2021-07-03 06:14:10 +00:00
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let this = self.as_mut().project();
loop {
return Poll::Ready(futures_core::ready!(this.fut.poll(cx)));
}
}
}
pub type BoxFutureCallback =
Box<dyn FnOnce(EventResponse) -> BoxFuture<'static, ()> + 'static + Send + Sync>;
#[derive(Derivative)]
#[derivative(Debug)]
pub struct DispatchContext {
pub request: ModuleRequest,
#[derivative(Debug = "ignore")]
2021-07-03 06:14:10 +00:00
pub callback: Option<BoxFutureCallback>,
}
impl DispatchContext {
2021-07-03 06:14:10 +00:00
pub(crate) fn into_parts(self) -> (ModuleRequest, Option<BoxFutureCallback>) {
let DispatchContext { request, callback } = self;
(request, callback)
2021-07-03 06:14:10 +00:00
}
}
pub(crate) struct DispatchService {
pub(crate) module_map: ModuleMap,
}
impl Service<DispatchContext> for DispatchService {
type Response = EventResponse;
type Error = DispatchError;
type Future = BoxFuture<'static, Result<Self::Response, Self::Error>>;
2021-07-03 13:40:13 +00:00
#[cfg_attr(
feature = "use_tracing",
tracing::instrument(name = "DispatchService", level = "debug", skip(self, ctx))
2021-07-03 13:40:13 +00:00
)]
fn call(&self, ctx: DispatchContext) -> Self::Future {
let module_map = self.module_map.clone();
let (request, callback) = ctx.into_parts();
Box::pin(async move {
let result = {
2021-07-09 09:47:15 +00:00
match module_map.get(&request.event) {
Some(module) => {
let fut = module.new_service(());
let service_fut = fut.await?.call(request);
service_fut.await
},
None => {
2021-07-08 13:23:44 +00:00
let msg = format!("Can not find the event handler. {:?}", request);
2021-07-03 06:14:10 +00:00
log::trace!("{}", msg);
Err(InternalError::new(msg).into())
},
}
};
let response = result.unwrap_or_else(|e| e.into());
2021-07-03 06:14:10 +00:00
log::trace!("Dispatch result: {:?}", response);
if let Some(callback) = callback {
2021-07-03 06:14:10 +00:00
callback(response.clone()).await;
}
Ok(response)
})
}
}
2021-07-03 06:14:10 +00:00
fn module_info(modules: &Vec<Module>) -> String {
let mut info = format!("{} modules loaded\n", modules.len());
for module in modules {
info.push_str(&format!("-> {} loaded \n", module.name));
}
info
}