// file: crates/ksp-app-solprices-desk/src/lib.rs // version: 2 //! Tauri desktop application scaffold for provider-neutral SOL/USD price visualization. #![forbid(unsafe_code)] #![deny(unreachable_pub)] #![warn(missing_docs)] mod app_state; mod bootstrap; mod constants; mod dto_common; mod errors; mod frontend_logging; mod logging_runtime; mod offchain_runtime; mod splash; mod tauri; mod tw_main; mod tw_splash; /// Runs the KSP SOL prices desktop application. pub use self::tauri::run; /// Shared SOL Prices Desk application state managed by Tauri. pub(crate) use self::app_state::AppState; /// Crate-internal Logging startup state shared by the application state. pub(crate) use self::bootstrap::LoggingStartup; /// Builds the Config management facade from the common KSP CLI bootstrap contract. pub(crate) use self::bootstrap::config_management; /// Initializes the scaffold Logging runtime from Config, with a bounded in-memory fallback. pub(crate) use self::bootstrap::initialize_logging; /// Loads the SOL Prices Desk composite selected by its registered logical file identifier. pub(crate) use self::bootstrap::load_solprices_desk_composite; /// Resolves one required standard Config profile from the SOL Prices Desk composite. pub(crate) use self::bootstrap::required_composite_component_profile; /// Composite-local identifier for the standard Logging component. pub(crate) use self::constants::COMPOSITE_COMPONENT_ID_LOGGING; /// Composite-local identifier for the standard Off-chain Transport component. pub(crate) use self::constants::COMPOSITE_COMPONENT_ID_OFFCHAIN_TRANSPORT; /// Structured domain used while bootstrapping Config and Logging. pub(crate) use self::constants::TRACING_DOMAIN_BOOTSTRAP; /// Structured domain used by technical frontend events. pub(crate) use self::constants::TRACING_DOMAIN_FRONTEND; /// Structured domain used by the Config-selected Off-chain Transport runtime. pub(crate) use self::constants::TRACING_DOMAIN_OFFCHAIN_TRANSPORT; /// Structured domain used by the SOL Prices Desk shell. pub(crate) use self::constants::TRACING_DOMAIN_SHELL; /// Structured domain used by Tauri window lifecycle operations. pub(crate) use self::constants::TRACING_DOMAIN_WINDOWS; /// Owning target for backend events emitted by SOL Prices Desk. pub(crate) use self::constants::TRACING_TARGET; /// Owning target for generic frontend events emitted through the KSP bridge. pub(crate) use self::constants::TRACING_TARGET_FRONTEND; /// Owning target for main-window frontend events. pub(crate) use self::constants::TRACING_TARGET_FRONTEND_MAIN; /// Owning target for splash-window frontend events. pub(crate) use self::constants::TRACING_TARGET_FRONTEND_SPLASH; /// Safe command error projection exposed to Tauri commands. pub(crate) use self::dto_common::CommandErrorDto; /// Safe scaffold runtime snapshot exposed to the shell. pub(crate) use self::dto_common::RuntimeStatusDto; /// Shared SOL Prices Desk application state is internally inconsistent. pub(crate) use self::errors::ERROR_CODE_APP_STATE_INVALID; /// Shared SOL Prices Desk runtime state cannot be locked safely. pub(crate) use self::errors::ERROR_CODE_APP_STATE_LOCK_FAILED; /// The SOL Prices Desk Config composite is missing or misroutes a required component. pub(crate) use self::errors::ERROR_CODE_CONFIG_COMPOSITE_INVALID; /// Frontend logging requested an unsupported level. pub(crate) use self::errors::ERROR_CODE_FRONTEND_LOG_LEVEL_INVALID; /// Frontend logging requested a target outside the application whitelist. pub(crate) use self::errors::ERROR_CODE_FRONTEND_LOG_TARGET_INVALID; /// SOL Prices Desk could not install the managed Logging runtime or its safe fallback. pub(crate) use self::errors::ERROR_CODE_LOGGING_BOOTSTRAP_FAILED; /// Splash readiness was invoked from a window other than the splash window. pub(crate) use self::errors::ERROR_CODE_SPLASH_ORIGIN_INVALID; /// A KSP desk splash environment duration is malformed or exceeds its safety bound. pub(crate) use self::errors::ERROR_CODE_SPLASH_SETTING_INVALID; /// Tauri runtime assembly or execution failed. pub(crate) use self::errors::ERROR_CODE_TAURI_RUNTIME_FAILED; /// A required Tauri window is missing from the configured application runtime. pub(crate) use self::errors::ERROR_CODE_TAURI_WINDOW_MISSING; /// A Tauri window show/focus/destroy/event operation failed. pub(crate) use self::errors::ERROR_CODE_TAURI_WINDOW_OPERATION_FAILED; /// Log payload sent by SOL Prices Desk frontend scripts. pub(crate) use self::frontend_logging::FrontendLogPayloadDto; /// Emits one validated frontend event through the KSP Logging facade. pub(crate) use self::frontend_logging::emit_frontend_log_event; /// Creates the stable runtime identity for this SOL Prices Desk process launch. pub(crate) use self::logging_runtime::launch_identity; /// Resolved composite and Off-chain Transport configuration retained by SOL Prices Desk. pub(crate) use self::offchain_runtime::OffchainTransportStartup; /// Resolves the composite-selected Off-chain Transport profile and constructs the Config-owned service. pub(crate) use self::offchain_runtime::initialize_offchain_transport; /// Command emitted by Rust to the splash frontend. pub(crate) use self::splash::SplashOrderDto; /// Runtime timings used by the common desk splash lifecycle. pub(crate) use self::splash::SplashSettings; /// Resolves the required main window or returns a typed error. pub(crate) use self::tw_main::require_main_window; /// Shows and focuses the main SOL Prices Desk window. pub(crate) use self::tw_main::show_main_window; /// Resolves the required splash window or returns a typed error. pub(crate) use self::tw_splash::require_splash_window; /// Starts the one-shot splash lifecycle after the splash frontend reports readiness. pub(crate) use self::tw_splash::splash_frontend_ready_service;