mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 05:10:55 +00:00
99 lines
2.4 KiB
Rust
99 lines
2.4 KiB
Rust
|
use std::collections::BTreeMap;
|
||
|
|
||
|
use tokio::sync::broadcast::Sender;
|
||
|
|
||
|
#[derive(Clone, Debug)]
|
||
|
pub struct OciProgress {
|
||
|
pub id: String,
|
||
|
pub phase: OciProgressPhase,
|
||
|
pub layers: BTreeMap<String, OciProgressLayer>,
|
||
|
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());
|
||
|
}
|
||
|
}
|