rudof_lib 0.2.14

RDF data shapes implementation in Rust
use crate::{
    Result, Rudof,
    api::dctap::DctapOperations,
    formats::{DCTapFormat, InputSpec},
};

/// Builder for `load_dctap` operation.
///
/// Provides a fluent interface for configuring and executing DC-TAP loading
/// operations with optional parameters.
pub struct LoadDctapBuilder<'a> {
    rudof: &'a mut Rudof,
    dctap: &'a InputSpec,
    dctap_format: Option<&'a DCTapFormat>,
}

impl<'a> LoadDctapBuilder<'a> {
    /// Creates a new builder instance.
    ///
    /// This is called internally by `Rudof::load_dctap()` and should not
    /// be constructed directly.
    pub(crate) fn new(rudof: &'a mut Rudof, dctap: &'a InputSpec) -> Self {
        Self {
            rudof,
            dctap,
            dctap_format: None,
        }
    }

    /// Sets the DC-TAP format for loading.
    ///
    /// # Arguments
    ///
    /// * `dctap_format` - The format to use when loading the DC-TAP profile
    pub fn with_dctap_format(mut self, dctap_format: &'a DCTapFormat) -> Self {
        self.dctap_format = Some(dctap_format);
        self
    }

    /// Executes the DC-TAP loading operation with the configured parameters.
    pub fn execute(self) -> Result<()> {
        <Rudof as DctapOperations>::load_dctap(self.rudof, self.dctap, self.dctap_format)
    }
}