2024-04-15 00:19:38 +00:00
|
|
|
use indexmap::IndexMap;
|
2024-04-12 18:09:26 +00:00
|
|
|
use tokio::sync::broadcast::Sender;
|
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct OciProgress {
|
|
|
|
pub id: String,
|
|
|
|
pub phase: OciProgressPhase,
|
2024-04-15 00:19:38 +00:00
|
|
|
pub layers: IndexMap<String, OciProgressLayer>,
|
2024-04-12 18:09:26 +00:00
|
|
|
pub value: u64,
|
|
|
|
pub total: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl OciProgress {
|
|
|
|
pub fn add_layer(&mut self, id: &str) {
|
|
|
|
self.layers.insert(
|
|
|
|
id.to_string(),
|
|
|
|
OciProgressLayer {
|
|
|
|
id: id.to_string(),
|
|
|
|
phase: OciProgressLayerPhase::Waiting,
|
|
|
|
value: 0,
|
|
|
|
total: 0,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn downloading_layer(&mut self, id: &str, downloaded: usize, total: usize) {
|
|
|
|
if let Some(entry) = self.layers.get_mut(id) {
|
|
|
|
entry.phase = OciProgressLayerPhase::Downloading;
|
|
|
|
entry.value = downloaded as u64;
|
|
|
|
entry.total = total as u64;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn downloaded_layer(&mut self, id: &str) {
|
|
|
|
if let Some(entry) = self.layers.get_mut(id) {
|
|
|
|
entry.phase = OciProgressLayerPhase::Downloaded;
|
|
|
|
entry.value = entry.total;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn extracting_layer(&mut self, id: &str, extracted: usize, total: usize) {
|
|
|
|
if let Some(entry) = self.layers.get_mut(id) {
|
|
|
|
entry.phase = OciProgressLayerPhase::Extracting;
|
|
|
|
entry.value = extracted as u64;
|
|
|
|
entry.total = total as u64;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn extracted_layer(&mut self, id: &str) {
|
|
|
|
if let Some(entry) = self.layers.get_mut(id) {
|
|
|
|
entry.phase = OciProgressLayerPhase::Extracted;
|
|
|
|
entry.value = entry.total;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub enum OciProgressPhase {
|
|
|
|
Resolving,
|
|
|
|
Resolved,
|
|
|
|
ConfigAcquire,
|
|
|
|
LayerAcquire,
|
|
|
|
Packing,
|
|
|
|
Complete,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct OciProgressLayer {
|
|
|
|
pub id: String,
|
|
|
|
pub phase: OciProgressLayerPhase,
|
|
|
|
pub value: u64,
|
|
|
|
pub total: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub enum OciProgressLayerPhase {
|
|
|
|
Waiting,
|
|
|
|
Downloading,
|
|
|
|
Downloaded,
|
|
|
|
Extracting,
|
|
|
|
Extracted,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct OciProgressContext {
|
|
|
|
sender: Sender<OciProgress>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl OciProgressContext {
|
|
|
|
pub fn new(sender: Sender<OciProgress>) -> OciProgressContext {
|
|
|
|
OciProgressContext { sender }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn update(&self, progress: &OciProgress) {
|
|
|
|
let _ = self.sender.send(progress.clone());
|
|
|
|
}
|
|
|
|
}
|