schemaui-cli 0.5.1

CLI wrapper for schemaui, rendering JSON Schemas as TUIs
Documentation
use std::path::Path;

use schemaui::DocumentFormat;

use super::diagnostics::DiagnosticCollector;

pub use schemaui::DocumentFormatProbe as ExtensionFormat;

#[derive(Debug, Clone, Copy, Default)]
pub struct FormatHint {
    pub format: DocumentFormat,
    pub from_extension: bool,
}

impl FormatHint {
    pub fn extension_value(&self) -> Option<DocumentFormat> {
        self.from_extension.then_some(self.format)
    }
}

#[derive(Debug, Clone, Copy)]
pub struct FormatResolution {
    pub hint: FormatHint,
    pub blocked: bool,
}

pub fn resolve_format_hint(
    path_hint: Option<&str>,
    label: &str,
    diagnostics: &mut DiagnosticCollector,
) -> FormatResolution {
    if let Some(path) = path_hint
        && path != "-"
    {
        match probe_format_from_extension(Path::new(path)) {
            ExtensionFormat::Known(format) => {
                return FormatResolution {
                    hint: FormatHint {
                        format,
                        from_extension: true,
                    },
                    blocked: false,
                };
            }
            ExtensionFormat::UnsupportedFeature {
                format_name,
                feature_flag,
            } => {
                diagnostics.push_input(
                    label,
                    format!(
                        "{label} '{path}' requires {format_name} support, but this build lacks the '{feature_flag}' feature"
                    ),
                );
                return FormatResolution {
                    hint: FormatHint::default(),
                    blocked: true,
                };
            }
            ExtensionFormat::Unknown => {}
        }
    }

    FormatResolution {
        hint: FormatHint::default(),
        blocked: false,
    }
}

pub fn probe_format_from_extension(path: &Path) -> ExtensionFormat {
    DocumentFormat::probe_extension(path)
}