canic-host 0.99.4

Host-side App build, Fleet install, deployment, and release-set library for Canic workspaces
Documentation
use crate::release_set::config::{AppConfigDeclaration, AppConfigError, AppConfigTomlOperation};
use canic_core::bootstrap::compiled::ConfigModel;
use toml::Value as TomlValue;

// Read only the App identity required to deduplicate incomplete discovery candidates.
pub(in crate::release_set) fn app_identity_from_source(
    config_source: &str,
) -> Result<String, AppConfigError> {
    let config =
        toml::from_str::<TomlValue>(config_source).map_err(|source| AppConfigError::Toml {
            operation: AppConfigTomlOperation::ParseAppIdentity,
            source,
        })?;
    config
        .get("app")
        .and_then(TomlValue::as_table)
        .and_then(|app| app.get("name"))
        .and_then(TomlValue::as_str)
        .map(str::to_string)
        .ok_or(AppConfigError::DeclarationMissing {
            declaration: AppConfigDeclaration::AppName,
        })
}

// Enumerate configured top-level deployment controllers from one validated snapshot.
pub(in crate::release_set) fn configured_controllers_from_config(
    config: &ConfigModel,
) -> Vec<String> {
    let mut controllers = config
        .controllers
        .iter()
        .map(canic_core::cdk::types::Principal::to_text)
        .collect::<Vec<_>>();
    controllers.sort();
    controllers.dedup();
    controllers
}