mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
70 lines
1.4 KiB
Rust
70 lines
1.4 KiB
Rust
use crate::{
|
|
errors::{DispatchError, InternalError},
|
|
request::{payload::Payload, EventRequest, FromRequest},
|
|
util::ready::{ready, Ready},
|
|
};
|
|
use std::{any::type_name, ops::Deref, sync::Arc};
|
|
|
|
pub struct AppData<T: ?Sized + Send + Sync>(Arc<T>);
|
|
|
|
impl<T> AppData<T>
|
|
where
|
|
T: Send + Sync,
|
|
{
|
|
pub fn new(data: T) -> Self {
|
|
AppData(Arc::new(data))
|
|
}
|
|
|
|
pub fn get_ref(&self) -> &T {
|
|
self.0.as_ref()
|
|
}
|
|
}
|
|
|
|
impl<T> Deref for AppData<T>
|
|
where
|
|
T: ?Sized + Send + Sync,
|
|
{
|
|
type Target = Arc<T>;
|
|
|
|
fn deref(&self) -> &Arc<T> {
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
impl<T> Clone for AppData<T>
|
|
where
|
|
T: ?Sized + Send + Sync,
|
|
{
|
|
fn clone(&self) -> AppData<T> {
|
|
AppData(self.0.clone())
|
|
}
|
|
}
|
|
|
|
impl<T> From<Arc<T>> for AppData<T>
|
|
where
|
|
T: ?Sized + Send + Sync,
|
|
{
|
|
fn from(arc: Arc<T>) -> Self {
|
|
AppData(arc)
|
|
}
|
|
}
|
|
|
|
impl<T> FromRequest for AppData<T>
|
|
where
|
|
T: ?Sized + Send + Sync + 'static,
|
|
{
|
|
type Error = DispatchError;
|
|
type Future = Ready<Result<Self, DispatchError>>;
|
|
|
|
#[inline]
|
|
fn from_request(req: &EventRequest, _: &mut Payload) -> Self::Future {
|
|
if let Some(data) = req.module_data::<AppData<T>>() {
|
|
ready(Ok(data.clone()))
|
|
} else {
|
|
let msg = format!("Failed to get the module data of type: {}", type_name::<T>());
|
|
log::error!("{}", msg,);
|
|
ready(Err(InternalError::Other(msg).into()))
|
|
}
|
|
}
|
|
}
|