mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-05 06:01:32 +00:00
feat: oci progress bars on launch
This commit is contained in:
54
Cargo.lock
generated
54
Cargo.lock
generated
@ -421,6 +421,19 @@ dependencies = [
|
|||||||
"unicode-width",
|
"unicode-width",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "console"
|
||||||
|
version = "0.15.8"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
|
||||||
|
dependencies = [
|
||||||
|
"encode_unicode",
|
||||||
|
"lazy_static",
|
||||||
|
"libc",
|
||||||
|
"unicode-width",
|
||||||
|
"windows-sys 0.52.0",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "core-foundation-sys"
|
name = "core-foundation-sys"
|
||||||
version = "0.8.6"
|
version = "0.8.6"
|
||||||
@ -693,6 +706,12 @@ version = "0.7.4"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4445909572dbd556c457c849c4ca58623d84b27c8fff1e74b0b4227d8b90d17b"
|
checksum = "4445909572dbd556c457c849c4ca58623d84b27c8fff1e74b0b4227d8b90d17b"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "encode_unicode"
|
||||||
|
version = "0.3.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "env_filter"
|
name = "env_filter"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
@ -1223,6 +1242,28 @@ dependencies = [
|
|||||||
"hashbrown 0.14.3",
|
"hashbrown 0.14.3",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "indicatif"
|
||||||
|
version = "0.17.8"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3"
|
||||||
|
dependencies = [
|
||||||
|
"console",
|
||||||
|
"instant",
|
||||||
|
"number_prefix",
|
||||||
|
"portable-atomic",
|
||||||
|
"unicode-width",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "instant"
|
||||||
|
version = "0.1.12"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ipnet"
|
name = "ipnet"
|
||||||
version = "2.9.0"
|
version = "2.9.0"
|
||||||
@ -1321,6 +1362,7 @@ dependencies = [
|
|||||||
"env_logger",
|
"env_logger",
|
||||||
"fancy-duration",
|
"fancy-duration",
|
||||||
"human_bytes",
|
"human_bytes",
|
||||||
|
"indicatif",
|
||||||
"krata",
|
"krata",
|
||||||
"log",
|
"log",
|
||||||
"prost-reflect",
|
"prost-reflect",
|
||||||
@ -1802,6 +1844,12 @@ dependencies = [
|
|||||||
"libc",
|
"libc",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "number_prefix"
|
||||||
|
version = "0.4.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "object"
|
name = "object"
|
||||||
version = "0.32.2"
|
version = "0.32.2"
|
||||||
@ -1946,6 +1994,12 @@ version = "0.3.30"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "portable-atomic"
|
||||||
|
version = "1.6.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ppv-lite86"
|
name = "ppv-lite86"
|
||||||
version = "0.2.17"
|
version = "0.2.17"
|
||||||
|
@ -42,6 +42,7 @@ fancy-duration = "0.9.2"
|
|||||||
flate2 = "1.0"
|
flate2 = "1.0"
|
||||||
futures = "0.3.30"
|
futures = "0.3.30"
|
||||||
human_bytes = "0.4"
|
human_bytes = "0.4"
|
||||||
|
indicatif = "0.17.8"
|
||||||
ipnetwork = "0.20.0"
|
ipnetwork = "0.20.0"
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
log = "0.4.20"
|
log = "0.4.20"
|
||||||
|
@ -18,6 +18,7 @@ ctrlc = { workspace = true, features = ["termination"] }
|
|||||||
env_logger = { workspace = true }
|
env_logger = { workspace = true }
|
||||||
fancy-duration = { workspace = true }
|
fancy-duration = { workspace = true }
|
||||||
human_bytes = { workspace = true }
|
human_bytes = { workspace = true }
|
||||||
|
indicatif = { workspace = true }
|
||||||
krata = { path = "../krata", version = "^0.0.8" }
|
krata = { path = "../krata", version = "^0.0.8" }
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
prost-reflect = { workspace = true, features = ["serde"] }
|
prost-reflect = { workspace = true, features = ["serde"] }
|
||||||
|
@ -2,6 +2,7 @@ use std::collections::HashMap;
|
|||||||
|
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use clap::Parser;
|
use clap::Parser;
|
||||||
|
use indicatif::{MultiProgress, ProgressBar, ProgressStyle};
|
||||||
use krata::{
|
use krata::{
|
||||||
events::EventStream,
|
events::EventStream,
|
||||||
v1::{
|
v1::{
|
||||||
@ -11,7 +12,7 @@ use krata::{
|
|||||||
},
|
},
|
||||||
control::{
|
control::{
|
||||||
control_service_client::ControlServiceClient, watch_events_reply::Event,
|
control_service_client::ControlServiceClient, watch_events_reply::Event,
|
||||||
CreateGuestRequest,
|
CreateGuestRequest, OciProgressEventLayerPhase, OciProgressEventPhase,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@ -125,9 +126,14 @@ impl LauchCommand {
|
|||||||
|
|
||||||
async fn wait_guest_started(id: &str, events: EventStream) -> Result<()> {
|
async fn wait_guest_started(id: &str, events: EventStream) -> Result<()> {
|
||||||
let mut stream = events.subscribe();
|
let mut stream = events.subscribe();
|
||||||
|
let mut multi_progress: Option<(MultiProgress, HashMap<String, ProgressBar>)> = None;
|
||||||
while let Ok(event) = stream.recv().await {
|
while let Ok(event) = stream.recv().await {
|
||||||
match event {
|
match event {
|
||||||
Event::GuestChanged(changed) => {
|
Event::GuestChanged(changed) => {
|
||||||
|
if let Some((multi_progress, _)) = multi_progress.as_mut() {
|
||||||
|
let _ = multi_progress.clear();
|
||||||
|
}
|
||||||
|
|
||||||
let Some(guest) = changed.guest else {
|
let Some(guest) = changed.guest else {
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
@ -159,7 +165,83 @@ async fn wait_guest_started(id: &str, events: EventStream) -> Result<()> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Event::OciProgress(_oci) => {}
|
Event::OciProgress(oci) => {
|
||||||
|
if multi_progress.is_none() {
|
||||||
|
multi_progress = Some((MultiProgress::new(), HashMap::new()));
|
||||||
|
}
|
||||||
|
|
||||||
|
let Some((multi_progress, progresses)) = multi_progress.as_mut() else {
|
||||||
|
continue;
|
||||||
|
};
|
||||||
|
|
||||||
|
match oci.phase() {
|
||||||
|
OciProgressEventPhase::Resolved
|
||||||
|
| OciProgressEventPhase::ConfigAcquire
|
||||||
|
| OciProgressEventPhase::LayerAcquire => {
|
||||||
|
if progresses.is_empty() && !oci.layers.is_empty() {
|
||||||
|
for layer in &oci.layers {
|
||||||
|
let bar = ProgressBar::new(layer.total);
|
||||||
|
bar.set_style(
|
||||||
|
ProgressStyle::with_template("{msg} {wide_bar} {pos}/{len}")
|
||||||
|
.unwrap(),
|
||||||
|
);
|
||||||
|
progresses.insert(layer.id.clone(), bar.clone());
|
||||||
|
multi_progress.add(bar);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for layer in oci.layers {
|
||||||
|
let Some(progress) = progresses.get_mut(&layer.id) else {
|
||||||
|
continue;
|
||||||
|
};
|
||||||
|
|
||||||
|
let phase = match layer.phase() {
|
||||||
|
OciProgressEventLayerPhase::Waiting => "waiting",
|
||||||
|
OciProgressEventLayerPhase::Downloading => "downloading",
|
||||||
|
OciProgressEventLayerPhase::Downloaded => "downloaded",
|
||||||
|
OciProgressEventLayerPhase::Extracting => "extracting",
|
||||||
|
OciProgressEventLayerPhase::Extracted => "extracted",
|
||||||
|
_ => "unknown",
|
||||||
|
};
|
||||||
|
|
||||||
|
progress.set_message(format!("{} {}", layer.id, phase));
|
||||||
|
progress.set_length(layer.total);
|
||||||
|
progress.set_position(layer.value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
OciProgressEventPhase::Packing => {
|
||||||
|
for (key, progress) in &mut *progresses {
|
||||||
|
if key == "packing" {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
progress.finish_and_clear();
|
||||||
|
multi_progress.remove(progress);
|
||||||
|
}
|
||||||
|
progresses.retain(|k, _| k == "packing");
|
||||||
|
if progresses.is_empty() {
|
||||||
|
let progress = ProgressBar::new(100);
|
||||||
|
progress.set_style(
|
||||||
|
ProgressStyle::with_template("{msg} {wide_bar} {pos}/{len}")
|
||||||
|
.unwrap(),
|
||||||
|
);
|
||||||
|
progresses.insert("packing".to_string(), progress);
|
||||||
|
}
|
||||||
|
let Some(progress) = progresses.get("packing") else {
|
||||||
|
continue;
|
||||||
|
};
|
||||||
|
progress.set_message("packing image");
|
||||||
|
progress.set_length(oci.total);
|
||||||
|
progress.set_position(oci.value);
|
||||||
|
}
|
||||||
|
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
|
||||||
|
for progress in progresses {
|
||||||
|
progress.1.tick();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
|
@ -14,7 +14,8 @@ fn convert_oci_layer_progress(layer: OciProgressLayer) -> OciProgressEventLayer
|
|||||||
OciProgressLayerPhase::Extracted => OciProgressEventLayerPhase::Extracted,
|
OciProgressLayerPhase::Extracted => OciProgressEventLayerPhase::Extracted,
|
||||||
}
|
}
|
||||||
.into(),
|
.into(),
|
||||||
progress: layer.progress,
|
value: layer.value,
|
||||||
|
total: layer.total,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -35,6 +36,7 @@ pub fn convert_oci_progress(oci: OciProgress) -> OciProgressEvent {
|
|||||||
.into_values()
|
.into_values()
|
||||||
.map(convert_oci_layer_progress)
|
.map(convert_oci_layer_progress)
|
||||||
.collect::<Vec<_>>(),
|
.collect::<Vec<_>>(),
|
||||||
progress: oci.progress,
|
value: oci.value,
|
||||||
|
total: oci.total,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -81,7 +81,8 @@ enum OciProgressEventLayerPhase {
|
|||||||
message OciProgressEventLayer {
|
message OciProgressEventLayer {
|
||||||
string id = 1;
|
string id = 1;
|
||||||
OciProgressEventLayerPhase phase = 2;
|
OciProgressEventLayerPhase phase = 2;
|
||||||
double progress = 3;
|
uint64 value = 3;
|
||||||
|
uint64 total = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum OciProgressEventPhase {
|
enum OciProgressEventPhase {
|
||||||
@ -98,7 +99,8 @@ message OciProgressEvent {
|
|||||||
string guest_id = 1;
|
string guest_id = 1;
|
||||||
OciProgressEventPhase phase = 2;
|
OciProgressEventPhase phase = 2;
|
||||||
repeated OciProgressEventLayer layers = 3;
|
repeated OciProgressEventLayer layers = 3;
|
||||||
double progress = 4;
|
uint64 value = 4;
|
||||||
|
uint64 total = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
message ReadGuestMetricsRequest {
|
message ReadGuestMetricsRequest {
|
||||||
|
@ -97,7 +97,8 @@ impl ImageCompiler<'_> {
|
|||||||
id: id.to_string(),
|
id: id.to_string(),
|
||||||
phase: OciProgressPhase::Resolving,
|
phase: OciProgressPhase::Resolving,
|
||||||
layers: BTreeMap::new(),
|
layers: BTreeMap::new(),
|
||||||
progress: 0.0,
|
value: 0,
|
||||||
|
total: 0,
|
||||||
};
|
};
|
||||||
self.progress.update(&progress);
|
self.progress.update(&progress);
|
||||||
let downloader = OciImageDownloader::new(
|
let downloader = OciImageDownloader::new(
|
||||||
@ -148,8 +149,8 @@ impl ImageCompiler<'_> {
|
|||||||
let path = entry.path()?;
|
let path = entry.path()?;
|
||||||
let mut maybe_whiteout_path_str =
|
let mut maybe_whiteout_path_str =
|
||||||
path.to_str().map(|x| x.to_string()).unwrap_or_default();
|
path.to_str().map(|x| x.to_string()).unwrap_or_default();
|
||||||
completed += 1;
|
|
||||||
progress.extracting_layer(&layer.digest, completed, count);
|
progress.extracting_layer(&layer.digest, completed, count);
|
||||||
|
completed += 1;
|
||||||
self.progress.update(&progress);
|
self.progress.update(&progress);
|
||||||
if whiteouts.contains(&maybe_whiteout_path_str) {
|
if whiteouts.contains(&maybe_whiteout_path_str) {
|
||||||
continue;
|
continue;
|
||||||
@ -159,10 +160,10 @@ impl ImageCompiler<'_> {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
let Some(name) = path.file_name() else {
|
let Some(name) = path.file_name() else {
|
||||||
return Err(anyhow!("unable to get file name"));
|
continue;
|
||||||
};
|
};
|
||||||
let Some(name) = name.to_str() else {
|
let Some(name) = name.to_str() else {
|
||||||
return Err(anyhow!("unable to get file name as string"));
|
continue;
|
||||||
};
|
};
|
||||||
|
|
||||||
if name.starts_with(".wh.") {
|
if name.starts_with(".wh.") {
|
||||||
@ -172,6 +173,8 @@ impl ImageCompiler<'_> {
|
|||||||
.await?;
|
.await?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
progress.extracted_layer(&layer.digest);
|
||||||
|
self.progress.update(&progress);
|
||||||
}
|
}
|
||||||
|
|
||||||
for layer in &local.layers {
|
for layer in &local.layers {
|
||||||
@ -180,13 +183,31 @@ impl ImageCompiler<'_> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
self.squash(image_dir, squash_file, &mut progress)?;
|
let image_dir_squash = image_dir.to_path_buf();
|
||||||
|
let squash_file_squash = squash_file.to_path_buf();
|
||||||
|
let progress_squash = progress.clone();
|
||||||
|
let progress_context = self.progress.clone();
|
||||||
|
progress = tokio::task::spawn_blocking(move || {
|
||||||
|
ImageCompiler::squash(
|
||||||
|
&image_dir_squash,
|
||||||
|
&squash_file_squash,
|
||||||
|
progress_squash,
|
||||||
|
progress_context,
|
||||||
|
)
|
||||||
|
})
|
||||||
|
.await??;
|
||||||
|
|
||||||
let info = ImageInfo::new(
|
let info = ImageInfo::new(
|
||||||
squash_file.to_path_buf(),
|
squash_file.to_path_buf(),
|
||||||
local.image.manifest,
|
local.image.manifest,
|
||||||
local.config,
|
local.config,
|
||||||
)?;
|
)?;
|
||||||
self.cache.store(&cache_digest, &info).await
|
let info = self.cache.store(&cache_digest, &info).await?;
|
||||||
|
progress.phase = OciProgressPhase::Complete;
|
||||||
|
progress.value = 0;
|
||||||
|
progress.total = 0;
|
||||||
|
self.progress.update(&progress);
|
||||||
|
Ok(info)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn process_layer_whiteout(
|
async fn process_layer_whiteout(
|
||||||
@ -203,10 +224,10 @@ impl ImageCompiler<'_> {
|
|||||||
count += 1;
|
count += 1;
|
||||||
let path = entry.path()?;
|
let path = entry.path()?;
|
||||||
let Some(name) = path.file_name() else {
|
let Some(name) = path.file_name() else {
|
||||||
return Err(anyhow!("unable to get file name"));
|
continue;
|
||||||
};
|
};
|
||||||
let Some(name) = name.to_str() else {
|
let Some(name) = name.to_str() else {
|
||||||
return Err(anyhow!("unable to get file name as string"));
|
continue;
|
||||||
};
|
};
|
||||||
|
|
||||||
if name.starts_with(".wh.") {
|
if name.starts_with(".wh.") {
|
||||||
@ -339,14 +360,15 @@ impl ImageCompiler<'_> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn squash(
|
fn squash(
|
||||||
&self,
|
|
||||||
image_dir: &Path,
|
image_dir: &Path,
|
||||||
squash_file: &Path,
|
squash_file: &Path,
|
||||||
progress: &mut OciProgress,
|
mut progress: OciProgress,
|
||||||
) -> Result<()> {
|
progress_context: OciProgressContext,
|
||||||
|
) -> Result<OciProgress> {
|
||||||
progress.phase = OciProgressPhase::Packing;
|
progress.phase = OciProgressPhase::Packing;
|
||||||
progress.progress = 0.0;
|
progress.total = 2;
|
||||||
self.progress.update(progress);
|
progress.value = 0;
|
||||||
|
progress_context.update(&progress);
|
||||||
let mut writer = FilesystemWriter::default();
|
let mut writer = FilesystemWriter::default();
|
||||||
writer.set_compressor(FilesystemCompressor::new(Compressor::Gzip, None)?);
|
writer.set_compressor(FilesystemCompressor::new(Compressor::Gzip, None)?);
|
||||||
let walk = WalkDir::new(image_dir).follow_links(false);
|
let walk = WalkDir::new(image_dir).follow_links(false);
|
||||||
@ -405,8 +427,8 @@ impl ImageCompiler<'_> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
progress.phase = OciProgressPhase::Packing;
|
progress.phase = OciProgressPhase::Packing;
|
||||||
progress.progress = 50.0;
|
progress.value = 1;
|
||||||
self.progress.update(progress);
|
progress_context.update(&progress);
|
||||||
|
|
||||||
let squash_file_path = squash_file
|
let squash_file_path = squash_file
|
||||||
.to_str()
|
.to_str()
|
||||||
@ -417,10 +439,10 @@ impl ImageCompiler<'_> {
|
|||||||
trace!("squash generate: {}", squash_file_path);
|
trace!("squash generate: {}", squash_file_path);
|
||||||
writer.write(&mut bufwrite)?;
|
writer.write(&mut bufwrite)?;
|
||||||
std::fs::remove_dir_all(image_dir)?;
|
std::fs::remove_dir_all(image_dir)?;
|
||||||
progress.phase = OciProgressPhase::Complete;
|
progress.phase = OciProgressPhase::Packing;
|
||||||
progress.progress = 100.0;
|
progress.value = 2;
|
||||||
self.progress.update(progress);
|
progress_context.update(&progress);
|
||||||
Ok(())
|
Ok(progress)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,7 +7,8 @@ pub struct OciProgress {
|
|||||||
pub id: String,
|
pub id: String,
|
||||||
pub phase: OciProgressPhase,
|
pub phase: OciProgressPhase,
|
||||||
pub layers: BTreeMap<String, OciProgressLayer>,
|
pub layers: BTreeMap<String, OciProgressLayer>,
|
||||||
pub progress: f64,
|
pub value: u64,
|
||||||
|
pub total: u64,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl OciProgress {
|
impl OciProgress {
|
||||||
@ -17,7 +18,8 @@ impl OciProgress {
|
|||||||
OciProgressLayer {
|
OciProgressLayer {
|
||||||
id: id.to_string(),
|
id: id.to_string(),
|
||||||
phase: OciProgressLayerPhase::Waiting,
|
phase: OciProgressLayerPhase::Waiting,
|
||||||
progress: 0.0,
|
value: 0,
|
||||||
|
total: 0,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -25,36 +27,30 @@ impl OciProgress {
|
|||||||
pub fn downloading_layer(&mut self, id: &str, downloaded: usize, total: usize) {
|
pub fn downloading_layer(&mut self, id: &str, downloaded: usize, total: usize) {
|
||||||
if let Some(entry) = self.layers.get_mut(id) {
|
if let Some(entry) = self.layers.get_mut(id) {
|
||||||
entry.phase = OciProgressLayerPhase::Downloading;
|
entry.phase = OciProgressLayerPhase::Downloading;
|
||||||
entry.progress = if total != 0 {
|
entry.value = downloaded as u64;
|
||||||
(downloaded as f64 / total as f64) * 100.0
|
entry.total = total as u64;
|
||||||
} else {
|
|
||||||
100.0
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn downloaded_layer(&mut self, id: &str) {
|
pub fn downloaded_layer(&mut self, id: &str) {
|
||||||
if let Some(entry) = self.layers.get_mut(id) {
|
if let Some(entry) = self.layers.get_mut(id) {
|
||||||
entry.phase = OciProgressLayerPhase::Downloaded;
|
entry.phase = OciProgressLayerPhase::Downloaded;
|
||||||
entry.progress = 100.0;
|
entry.value = entry.total;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn extracting_layer(&mut self, id: &str, extracted: usize, total: usize) {
|
pub fn extracting_layer(&mut self, id: &str, extracted: usize, total: usize) {
|
||||||
if let Some(entry) = self.layers.get_mut(id) {
|
if let Some(entry) = self.layers.get_mut(id) {
|
||||||
entry.phase = OciProgressLayerPhase::Extracting;
|
entry.phase = OciProgressLayerPhase::Extracting;
|
||||||
entry.progress = if total != 0 {
|
entry.value = extracted as u64;
|
||||||
(extracted as f64 / total as f64) * 100.0
|
entry.total = total as u64;
|
||||||
} else {
|
|
||||||
100.0
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn extracted_layer(&mut self, id: &str) {
|
pub fn extracted_layer(&mut self, id: &str) {
|
||||||
if let Some(entry) = self.layers.get_mut(id) {
|
if let Some(entry) = self.layers.get_mut(id) {
|
||||||
entry.phase = OciProgressLayerPhase::Extracted;
|
entry.phase = OciProgressLayerPhase::Extracted;
|
||||||
entry.progress = 100.0;
|
entry.value = entry.total;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -73,7 +69,8 @@ pub enum OciProgressPhase {
|
|||||||
pub struct OciProgressLayer {
|
pub struct OciProgressLayer {
|
||||||
pub id: String,
|
pub id: String,
|
||||||
pub phase: OciProgressLayerPhase,
|
pub phase: OciProgressLayerPhase,
|
||||||
pub progress: f64,
|
pub value: u64,
|
||||||
|
pub total: u64,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
|
@ -10,7 +10,7 @@ use krata::launchcfg::{
|
|||||||
LaunchInfo, LaunchNetwork, LaunchNetworkIpv4, LaunchNetworkIpv6, LaunchNetworkResolver,
|
LaunchInfo, LaunchNetwork, LaunchNetworkIpv4, LaunchNetworkIpv6, LaunchNetworkResolver,
|
||||||
};
|
};
|
||||||
use krataoci::progress::OciProgressContext;
|
use krataoci::progress::OciProgressContext;
|
||||||
use tokio::sync::{broadcast, Semaphore};
|
use tokio::sync::Semaphore;
|
||||||
use uuid::Uuid;
|
use uuid::Uuid;
|
||||||
use xenclient::{DomainChannel, DomainConfig, DomainDisk, DomainNetworkInterface};
|
use xenclient::{DomainChannel, DomainConfig, DomainDisk, DomainNetworkInterface};
|
||||||
use xenstore::XsdInterface;
|
use xenstore::XsdInterface;
|
||||||
@ -53,7 +53,12 @@ impl GuestLauncher {
|
|||||||
let uuid = request.uuid.unwrap_or_else(Uuid::new_v4);
|
let uuid = request.uuid.unwrap_or_else(Uuid::new_v4);
|
||||||
let xen_name = format!("krata-{uuid}");
|
let xen_name = format!("krata-{uuid}");
|
||||||
let image_info = self
|
let image_info = self
|
||||||
.compile(&uuid.to_string(), request.image, &context.image_cache)
|
.compile(
|
||||||
|
&uuid.to_string(),
|
||||||
|
request.image,
|
||||||
|
&context.image_cache,
|
||||||
|
&context.oci_progress_context,
|
||||||
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
let mut gateway_mac = MacAddr6::random();
|
let mut gateway_mac = MacAddr6::random();
|
||||||
@ -246,11 +251,15 @@ impl GuestLauncher {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn compile(&self, id: &str, image: &str, image_cache: &ImageCache) -> Result<ImageInfo> {
|
async fn compile(
|
||||||
|
&self,
|
||||||
|
id: &str,
|
||||||
|
image: &str,
|
||||||
|
image_cache: &ImageCache,
|
||||||
|
progress: &OciProgressContext,
|
||||||
|
) -> Result<ImageInfo> {
|
||||||
let image = ImageName::parse(image)?;
|
let image = ImageName::parse(image)?;
|
||||||
let (sender, _) = broadcast::channel(1000);
|
let compiler = ImageCompiler::new(image_cache, None, progress.clone())?;
|
||||||
let context = OciProgressContext::new(sender);
|
|
||||||
let compiler = ImageCompiler::new(image_cache, None, context)?;
|
|
||||||
compiler.compile(id, &image).await
|
compiler.compile(id, &image).await
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user