mirror of
https://github.com/hinto-janai/cuprate.git
synced 2025-01-09 20:39:55 +00:00
5f20342736
* abscissa init * remove package in cargo.toml * cargo fmt + remove more stuff fro toml * bump rust edition
88 lines
2.6 KiB
Rust
88 lines
2.6 KiB
Rust
//! Cuprate Abscissa Application
|
|
|
|
use crate::{commands::EntryPoint, config::CuprateConfig};
|
|
use abscissa_core::{
|
|
application::{self, AppCell},
|
|
config::{self, CfgCell},
|
|
trace, Application, FrameworkError, StandardPaths,
|
|
};
|
|
|
|
/// Application state
|
|
pub static APP: AppCell<CuprateApp> = AppCell::new();
|
|
|
|
/// Cuprate Application
|
|
#[derive(Debug)]
|
|
pub struct CuprateApp {
|
|
/// Application configuration.
|
|
config: CfgCell<CuprateConfig>,
|
|
|
|
/// Application state.
|
|
state: application::State<Self>,
|
|
}
|
|
|
|
/// Initialize a new application instance.
|
|
///
|
|
/// By default no configuration is loaded, and the framework state is
|
|
/// initialized to a default, empty state (no components, threads, etc).
|
|
impl Default for CuprateApp {
|
|
fn default() -> Self {
|
|
Self {
|
|
config: CfgCell::default(),
|
|
state: application::State::default(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Application for CuprateApp {
|
|
/// Entrypoint command for this application.
|
|
type Cmd = EntryPoint;
|
|
|
|
/// Application configuration.
|
|
type Cfg = CuprateConfig;
|
|
|
|
/// Paths to resources within the application.
|
|
type Paths = StandardPaths;
|
|
|
|
/// Accessor for application configuration.
|
|
fn config(&self) -> config::Reader<CuprateConfig> {
|
|
self.config.read()
|
|
}
|
|
|
|
/// Borrow the application state immutably.
|
|
fn state(&self) -> &application::State<Self> {
|
|
&self.state
|
|
}
|
|
|
|
/// Register all components used by this application.
|
|
///
|
|
/// If you would like to add additional components to your application
|
|
/// beyond the default ones provided by the framework, this is the place
|
|
/// to do so.
|
|
fn register_components(&mut self, command: &Self::Cmd) -> Result<(), FrameworkError> {
|
|
let framework_components = self.framework_components(command)?;
|
|
let mut app_components = self.state.components_mut();
|
|
app_components.register(framework_components)
|
|
}
|
|
|
|
/// Post-configuration lifecycle callback.
|
|
///
|
|
/// Called regardless of whether config is loaded to indicate this is the
|
|
/// time in app lifecycle when configuration would be loaded if
|
|
/// possible.
|
|
fn after_config(&mut self, config: Self::Cfg) -> Result<(), FrameworkError> {
|
|
// Configure components
|
|
let mut components = self.state.components_mut();
|
|
components.after_config(&config)?;
|
|
self.config.set_once(config);
|
|
Ok(())
|
|
}
|
|
|
|
/// Get tracing configuration from command-line options
|
|
fn tracing_config(&self, command: &EntryPoint) -> trace::Config {
|
|
if command.verbose {
|
|
trace::Config::verbose()
|
|
} else {
|
|
trace::Config::default()
|
|
}
|
|
}
|
|
}
|