Files
krata/crates/oci/src/packer/cache.rs

85 lines
3.2 KiB
Rust
Raw Normal View History

use crate::packer::{OciImagePacked, OciPackedFormat};
use anyhow::Result;
2024-01-18 00:02:21 -08:00
use log::debug;
2024-01-18 00:15:36 -08:00
use oci_spec::image::{ImageConfiguration, ImageManifest};
2024-01-18 00:02:21 -08:00
use std::path::{Path, PathBuf};
2024-03-07 05:26:35 +00:00
use tokio::fs;
2024-01-18 00:02:21 -08:00
2024-04-02 00:56:18 +00:00
#[derive(Clone)]
pub struct OciPackerCache {
2024-01-18 00:02:21 -08:00
cache_dir: PathBuf,
}
impl OciPackerCache {
pub fn new(cache_dir: &Path) -> Result<OciPackerCache> {
Ok(OciPackerCache {
2024-01-18 00:02:21 -08:00
cache_dir: cache_dir.to_path_buf(),
})
}
pub async fn recall(
&self,
digest: &str,
format: OciPackedFormat,
) -> Result<Option<OciImagePacked>> {
let mut fs_path = self.cache_dir.clone();
2024-01-18 00:15:36 -08:00
let mut config_path = self.cache_dir.clone();
2024-01-18 00:02:21 -08:00
let mut manifest_path = self.cache_dir.clone();
fs_path.push(format!("{}.{}", digest, format.extension()));
2024-01-18 00:15:36 -08:00
manifest_path.push(format!("{}.manifest.json", digest));
config_path.push(format!("{}.config.json", digest));
Ok(
if fs_path.exists() && manifest_path.exists() && config_path.exists() {
let image_metadata = fs::metadata(&fs_path).await?;
2024-03-07 05:26:35 +00:00
let manifest_metadata = fs::metadata(&manifest_path).await?;
let config_metadata = fs::metadata(&config_path).await?;
if image_metadata.is_file()
2024-01-18 00:15:36 -08:00
&& manifest_metadata.is_file()
&& config_metadata.is_file()
{
2024-03-07 05:26:35 +00:00
let manifest_text = fs::read_to_string(&manifest_path).await?;
2024-01-18 00:15:36 -08:00
let manifest: ImageManifest = serde_json::from_str(&manifest_text)?;
2024-03-07 05:26:35 +00:00
let config_text = fs::read_to_string(&config_path).await?;
2024-01-18 00:15:36 -08:00
let config: ImageConfiguration = serde_json::from_str(&config_text)?;
debug!("cache hit digest={}", digest);
Some(OciImagePacked::new(
digest.to_string(),
fs_path.clone(),
format,
config,
manifest,
))
2024-01-18 00:15:36 -08:00
} else {
None
}
2024-01-18 00:02:21 -08:00
} else {
2024-01-18 00:15:36 -08:00
debug!("cache miss digest={}", digest);
2024-01-18 00:02:21 -08:00
None
2024-01-18 00:15:36 -08:00
},
)
2024-01-18 00:02:21 -08:00
}
pub async fn store(&self, packed: OciImagePacked) -> Result<OciImagePacked> {
debug!("cache store digest={}", packed.digest);
let mut fs_path = self.cache_dir.clone();
2024-01-18 00:02:21 -08:00
let mut manifest_path = self.cache_dir.clone();
2024-01-18 00:15:36 -08:00
let mut config_path = self.cache_dir.clone();
fs_path.push(format!("{}.{}", packed.digest, packed.format.extension()));
manifest_path.push(format!("{}.manifest.json", packed.digest));
config_path.push(format!("{}.config.json", packed.digest));
fs::copy(&packed.path, &fs_path).await?;
let manifest_text = serde_json::to_string_pretty(&packed.manifest)?;
2024-03-07 05:26:35 +00:00
fs::write(&manifest_path, manifest_text).await?;
let config_text = serde_json::to_string_pretty(&packed.config)?;
2024-03-07 05:26:35 +00:00
fs::write(&config_path, config_text).await?;
Ok(OciImagePacked::new(
packed.digest,
fs_path.clone(),
packed.format,
packed.config,
packed.manifest,
))
2024-01-18 00:02:21 -08:00
}
}