rudof_cli 0.3.9

RDF and Knowledge Graphs processing tool
use crate::cli::parser::ShapemapArgs;
use crate::commands::base::{Command, CommandContext};
use anyhow::Result;

/// Implementation of the `shapemap` command.
///
/// This struct holds the specific arguments parsed by `clap` and
/// implements the [Command] trait to execute Shapemap logic.
pub struct ShapemapCommand {
    /// Arguments specific to shapemap.
    args: ShapemapArgs,
}

impl ShapemapCommand {
    pub fn new(args: ShapemapArgs) -> Self {
        Self { args }
    }
}

impl Command for ShapemapCommand {
    /// Returns the unique identifier for this command.
    fn name(&self) -> &'static str {
        "shapemap"
    }

    /// Executes the shapemap logic.
    ///
    /// With no `--shapemap`, there is nothing new to load, so this just
    /// re-serializes whatever shapemap is already loaded in the session
    /// (useful in the interactive shell, where state persists across
    /// commands).
    fn execute(&self, ctx: &mut CommandContext) -> Result<()> {
        let format = self.args.shapemap_format.into();
        let result_format = self.args.result_shapemap_format.into();

        if let Some(shapemap) = &self.args.shapemap {
            let mut shapemap_loading = ctx.rudof.load_shapemap(shapemap).with_shapemap_format(&format);
            if let Some(base_data) = self.args.base_data.as_deref() {
                shapemap_loading = shapemap_loading.with_base_nodes(base_data);
            }
            if let Some(base_schema) = self.args.base_schema.as_deref() {
                shapemap_loading = shapemap_loading.with_base_shapes(base_schema);
            }
            shapemap_loading.execute()?;
        }

        ctx.rudof
            .serialize_shapemap(&mut ctx.writer)
            .with_result_shapemap_format(&result_format)
            .execute()?;

        Ok(())
    }
}