mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 20:43:41 +00:00
58 lines
1.5 KiB
Rust
58 lines
1.5 KiB
Rust
use std::ops::Deref;
|
|
use std::sync::Arc;
|
|
|
|
use rpc_toolkit::Context;
|
|
use rpc_toolkit::yajrc::RpcError;
|
|
use tokio::sync::broadcast::Sender;
|
|
use tracing::instrument;
|
|
|
|
use crate::context::config::ServerConfig;
|
|
use crate::prelude::*;
|
|
use crate::rpc_continuations::RpcContinuations;
|
|
use crate::shutdown::Shutdown;
|
|
|
|
pub struct DiagnosticContextSeed {
|
|
pub shutdown: Sender<Shutdown>,
|
|
pub error: Arc<RpcError>,
|
|
pub disk_guid: Option<InternedString>,
|
|
pub rpc_continuations: RpcContinuations,
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
pub struct DiagnosticContext(Arc<DiagnosticContextSeed>);
|
|
impl DiagnosticContext {
|
|
#[instrument(skip_all)]
|
|
pub fn init(
|
|
_config: &ServerConfig,
|
|
disk_guid: Option<InternedString>,
|
|
error: Error,
|
|
) -> Result<Self, Error> {
|
|
tracing::error!(
|
|
"{}",
|
|
t!("context.diagnostic.starting-diagnostic-ui", error = error)
|
|
);
|
|
tracing::debug!("{:?}", error);
|
|
|
|
let (shutdown, _) = tokio::sync::broadcast::channel(1);
|
|
|
|
Ok(Self(Arc::new(DiagnosticContextSeed {
|
|
shutdown,
|
|
disk_guid,
|
|
error: Arc::new(error.into()),
|
|
rpc_continuations: RpcContinuations::new(),
|
|
})))
|
|
}
|
|
}
|
|
impl AsRef<RpcContinuations> for DiagnosticContext {
|
|
fn as_ref(&self) -> &RpcContinuations {
|
|
&self.rpc_continuations
|
|
}
|
|
}
|
|
impl Context for DiagnosticContext {}
|
|
impl Deref for DiagnosticContext {
|
|
type Target = DiagnosticContextSeed;
|
|
fn deref(&self) -> &Self::Target {
|
|
&*self.0
|
|
}
|
|
}
|