123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- use crate::runtime::FlowyRuntime;
- use crate::{
- errors::{DispatchError, Error, InternalError},
- module::{as_module_map, Module, ModuleMap, ModuleRequest},
- response::EventResponse,
- service::{Service, ServiceFactory},
- };
- use derivative::*;
- use futures_core::future::BoxFuture;
- use futures_util::task::Context;
- use pin_project::pin_project;
- use std::{future::Future, sync::Arc};
- use tokio::macros::support::{Pin, Poll};
- pub struct EventDispatcher {
- module_map: ModuleMap,
- runtime: FlowyRuntime,
- }
- impl EventDispatcher {
- pub fn construct<F>(runtime: FlowyRuntime, module_factory: F) -> EventDispatcher
- where
- F: FnOnce() -> Vec<Module>,
- {
- let modules = module_factory();
- tracing::trace!("{}", module_info(&modules));
- let module_map = as_module_map(modules);
- EventDispatcher { module_map, runtime }
- }
- pub fn async_send<Req>(dispatch: Arc<EventDispatcher>, request: Req) -> DispatchFuture<EventResponse>
- where
- Req: std::convert::Into<ModuleRequest>,
- {
- EventDispatcher::async_send_with_callback(dispatch, request, |_| Box::pin(async {}))
- }
- pub fn async_send_with_callback<Req, Callback>(
- dispatch: Arc<EventDispatcher>,
- 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();
- let module_map = dispatch.module_map.clone();
- let service = Box::new(DispatchService { module_map });
- tracing::trace!("Async event: {:?}", &request.event);
- let service_ctx = DispatchContext {
- request,
- callback: Some(Box::new(callback)),
- };
- let join_handle = dispatch.runtime.spawn(async move {
- service
- .call(service_ctx)
- .await
- .unwrap_or_else(|e| InternalError::Other(format!("{:?}", e)).as_response())
- });
- DispatchFuture {
- fut: Box::pin(async move {
- join_handle.await.unwrap_or_else(|e| {
- let error = InternalError::JoinError(format!("EVENT_DISPATCH join error: {:?}", e));
- error.as_response()
- })
- }),
- }
- }
- pub fn sync_send(dispatch: Arc<EventDispatcher>, request: ModuleRequest) -> EventResponse {
- futures::executor::block_on(async {
- EventDispatcher::async_send_with_callback(dispatch, request, |_| Box::pin(async {})).await
- })
- }
- pub fn spawn<F>(&self, f: F)
- where
- F: Future<Output = ()> + Send + 'static,
- {
- self.runtime.spawn(f);
- }
- }
- #[pin_project]
- pub struct DispatchFuture<T: Send + Sync> {
- #[pin]
- pub fut: Pin<Box<dyn Future<Output = T> + Sync + Send>>,
- }
- impl<T> Future for DispatchFuture<T>
- where
- T: Send + Sync,
- {
- type Output = T;
- fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
- let this = self.as_mut().project();
- 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")]
- pub callback: Option<BoxFutureCallback>,
- }
- impl DispatchContext {
- pub(crate) fn into_parts(self) -> (ModuleRequest, Option<BoxFutureCallback>) {
- let DispatchContext { request, callback } = self;
- (request, callback)
- }
- }
- 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>>;
- #[cfg_attr(
- feature = "use_tracing",
- tracing::instrument(name = "DispatchService", level = "debug", skip(self, ctx))
- )]
- 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 = {
- // print_module_map_info(&module_map);
- match module_map.get(&request.event) {
- Some(module) => {
- tracing::trace!("Handle event: {:?} by {:?}", &request.event, module.name);
- let fut = module.new_service(());
- let service_fut = fut.await?.call(request);
- service_fut.await
- }
- None => {
- let msg = format!("Can not find the event handler. {:?}", request);
- tracing::error!("{}", msg);
- Err(InternalError::HandleNotFound(msg).into())
- }
- }
- };
- let response = result.unwrap_or_else(|e| e.into());
- tracing::trace!("Dispatch result: {:?}", response);
- if let Some(callback) = callback {
- callback(response.clone()).await;
- }
- Ok(response)
- })
- }
- }
- #[allow(dead_code)]
- fn module_info(modules: &[Module]) -> String {
- let mut info = format!("{} modules loaded\n", modules.len());
- for module in modules {
- info.push_str(&format!("-> {} loaded \n", module.name));
- }
- info
- }
- #[allow(dead_code)]
- fn print_module_map_info(module_map: &ModuleMap) {
- module_map.iter().for_each(|(k, v)| {
- tracing::info!("Event: {:?} module: {:?}", k, v.name);
- })
- }
|