assay-registry 3.5.1

Pack registry client for remote pack distribution (SPEC-Pack-Registry-v1)
Documentation
//! Lockfile IO boundary for Step2 split.

use std::path::Path;

use tokio::fs;
use tracing::info;

use crate::error::{RegistryError, RegistryResult};

use super::super::Lockfile;

pub(crate) async fn load_impl(path: impl AsRef<Path>) -> RegistryResult<Lockfile> {
    let path = path.as_ref();

    if !path.exists() {
        return Err(RegistryError::Lockfile {
            message: format!("lockfile not found: {}", path.display()),
        });
    }

    let content = fs::read_to_string(path)
        .await
        .map_err(|e| RegistryError::Lockfile {
            message: format!("failed to read lockfile: {}", e),
        })?;

    Lockfile::parse(&content)
}

pub(crate) async fn save_impl(lockfile: &Lockfile, path: impl AsRef<Path>) -> RegistryResult<()> {
    let path = path.as_ref();
    let content = lockfile.to_yaml()?;

    fs::write(path, content)
        .await
        .map_err(|e| RegistryError::Lockfile {
            message: format!("failed to write lockfile: {}", e),
        })?;

    info!(path = %path.display(), "saved lockfile");
    Ok(())
}