fixed getters and setters + more idiomatic error handling

This commit is contained in:
Maxime Van Hees 2025-07-10 11:52:45 +02:00
parent 568a5b0a49
commit 0e63efda61
5 changed files with 133 additions and 173 deletions

View File

@ -167,8 +167,13 @@ try {
container.detach = true; container.detach = true;
assert_eq(container.detach, true, "Container detach should be true"); assert_eq(container.detach, true, "Container detach should be true");
// TODO: Test health_check setter and getter // Test health_check setter and getter
print("Testing health_check setter and getter..."); print("Testing health_check setter and getter...");
let health_check_new = health_check_new("example_cmd");
container.health_check = health_check_new;
container.health_check.interval = "example_interval";
assert_eq(container.health_check.cmd, "example_cmd", "Container health check cmd should match");
assert_eq(container.health_check.interval, "example_interval", "Container health check interval should match");
// Test snapshotter setter and getter // Test snapshotter setter and getter
print("Testing snapshotter setter and getter..."); print("Testing snapshotter setter and getter...");

View File

@ -2,7 +2,6 @@ use crate::buildah::{
execute_buildah_command, set_thread_local_debug, thread_local_debug, BuildahError, Image, execute_buildah_command, set_thread_local_debug, thread_local_debug, BuildahError, Image,
}; };
use sal_process::CommandResult; use sal_process::CommandResult;
use std::collections::HashMap;
/// Builder struct for buildah operations /// Builder struct for buildah operations
#[derive(Clone)] #[derive(Clone)]

View File

@ -42,7 +42,7 @@ pub struct Container {
} }
/// Health check configuration for a container /// Health check configuration for a container
#[derive(Debug, Clone)] #[derive(Debug, Clone, PartialEq)]
pub struct HealthCheck { pub struct HealthCheck {
/// Command to run for health check /// Command to run for health check
pub cmd: String, pub cmd: String,

View File

@ -3,9 +3,8 @@
//! This module provides Rhai wrappers for the functions in the Buildah module. //! This module provides Rhai wrappers for the functions in the Buildah module.
use crate::buildah::{BuildahError, Builder, ContentOperations, Image}; use crate::buildah::{BuildahError, Builder, ContentOperations, Image};
use rhai::{Array, Dynamic, Engine, EvalAltResult, Map}; use rhai::{Array, Dynamic, Engine, EvalAltResult};
use sal_process::CommandResult; use sal_process::CommandResult;
use std::collections::HashMap;
/// Register Buildah module functions with the Rhai engine /// Register Buildah module functions with the Rhai engine
/// ///
@ -45,7 +44,6 @@ pub fn register_bah_module(engine: &mut Engine) -> Result<(), Box<EvalAltResult>
engine.register_fn("image_push", builder_image_push); engine.register_fn("image_push", builder_image_push);
engine.register_fn("image_tag", builder_image_tag); engine.register_fn("image_tag", builder_image_tag);
engine.register_fn("build", builder_build); engine.register_fn("build", builder_build);
engine.register_fn("read_content", builder_read_content);
Ok(()) Ok(())
} }
@ -89,13 +87,13 @@ fn register_bah_types(engine: &mut Engine) -> Result<(), Box<EvalAltResult>> {
} }
// Helper functions for error conversion // Helper functions for error conversion
fn bah_error_to_rhai_error<T>(result: Result<T, BuildahError>) -> Result<T, Box<EvalAltResult>> { impl From<BuildahError> for Box<EvalAltResult> {
result.map_err(|e| { fn from(err: BuildahError) -> Self {
Box::new(EvalAltResult::ErrorRuntime( Box::new(EvalAltResult::ErrorRuntime(
format!("Buildah error: {}", e).into(), format!("Buildah error: {}", err).into(),
rhai::Position::NONE, rhai::Position::NONE,
)) ))
}) }
} }
// Helper function to convert Rhai Array of pairs to a Vec of tuples // Helper function to convert Rhai Array of pairs to a Vec of tuples
@ -141,7 +139,7 @@ fn convert_array_to_vec(
/// Create a new Builder /// Create a new Builder
pub fn bah_new(name: &str, image: &str) -> Result<Builder, Box<EvalAltResult>> { pub fn bah_new(name: &str, image: &str) -> Result<Builder, Box<EvalAltResult>> {
bah_error_to_rhai_error(Builder::new(name, image)) Builder::new(name, image).map_err(Into::into)
} }
// Builder instance methods // Builder instance methods
@ -149,7 +147,7 @@ pub fn builder_run(
builder: &mut Builder, builder: &mut Builder,
command: &str, command: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
bah_error_to_rhai_error(builder.run(command)) builder.run(command).map_err(Into::into)
} }
pub fn builder_run_with_isolation( pub fn builder_run_with_isolation(
@ -157,7 +155,9 @@ pub fn builder_run_with_isolation(
command: &str, command: &str,
isolation: &str, isolation: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
bah_error_to_rhai_error(builder.run_with_isolation(command, isolation)) builder
.run_with_isolation(command, isolation)
.map_err(Into::into)
} }
pub fn builder_copy( pub fn builder_copy(
@ -165,7 +165,7 @@ pub fn builder_copy(
source: &str, source: &str,
dest: &str, dest: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
bah_error_to_rhai_error(builder.copy(source, dest)) builder.copy(source, dest).map_err(Into::into)
} }
pub fn builder_add( pub fn builder_add(
@ -173,7 +173,7 @@ pub fn builder_add(
source: &str, source: &str,
dest: &str, dest: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
bah_error_to_rhai_error(builder.add(source, dest)) builder.add(source, dest).map_err(Into::into)
} }
pub fn builder_commit( pub fn builder_commit(
@ -182,11 +182,13 @@ pub fn builder_commit(
options: Array, options: Array,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
let commit_options = convert_array_to_vec(options)?; let commit_options = convert_array_to_vec(options)?;
bah_error_to_rhai_error(builder.commit(image_name, Some(commit_options))) builder
.commit(image_name, Some(commit_options))
.map_err(Into::into)
} }
pub fn builder_remove(builder: &mut Builder) -> Result<CommandResult, Box<EvalAltResult>> { pub fn builder_remove(builder: &mut Builder) -> Result<CommandResult, Box<EvalAltResult>> {
bah_error_to_rhai_error(builder.remove()) builder.remove().map_err(Into::into)
} }
pub fn builder_config( pub fn builder_config(
@ -194,7 +196,7 @@ pub fn builder_config(
options: Array, options: Array,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
let config_options = convert_array_to_vec(options)?; let config_options = convert_array_to_vec(options)?;
bah_error_to_rhai_error(builder.config(config_options)) builder.config(config_options).map_err(Into::into)
} }
/// Set the entrypoint for the container /// Set the entrypoint for the container
@ -206,7 +208,7 @@ pub fn builder_set_entrypoint(
.into_iter() .into_iter()
.map(|item| item.into_string().unwrap_or_default()) .map(|item| item.into_string().unwrap_or_default())
.collect(); .collect();
bah_error_to_rhai_error(builder.set_entrypoint(entrypoint_vec)) builder.set_entrypoint(entrypoint_vec).map_err(Into::into)
} }
/// Set the default command for the container /// Set the default command for the container
@ -218,7 +220,7 @@ pub fn builder_set_cmd(
.into_iter() .into_iter()
.map(|item| item.into_string().unwrap_or_default()) .map(|item| item.into_string().unwrap_or_default())
.collect(); .collect();
bah_error_to_rhai_error(builder.set_cmd(cmd_vec)) builder.set_cmd(cmd_vec).map_err(Into::into)
} }
/// Write content to a file in the container /// Write content to a file in the container
@ -228,11 +230,7 @@ pub fn builder_write_content(
dest_path: &str, dest_path: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
if let Some(container_id) = builder.container_id() { if let Some(container_id) = builder.container_id() {
bah_error_to_rhai_error(ContentOperations::write_content( ContentOperations::write_content(container_id, content, dest_path).map_err(Into::into)
container_id,
content,
dest_path,
))
} else { } else {
Err(Box::new(EvalAltResult::ErrorRuntime( Err(Box::new(EvalAltResult::ErrorRuntime(
"No container ID available".into(), "No container ID available".into(),
@ -247,7 +245,7 @@ pub fn builder_read_content(
source_path: &str, source_path: &str,
) -> Result<String, Box<EvalAltResult>> { ) -> Result<String, Box<EvalAltResult>> {
if let Some(container_id) = builder.container_id() { if let Some(container_id) = builder.container_id() {
bah_error_to_rhai_error(ContentOperations::read_content(container_id, source_path)) ContentOperations::read_content(container_id, source_path).map_err(Into::into)
} else { } else {
Err(Box::new(EvalAltResult::ErrorRuntime( Err(Box::new(EvalAltResult::ErrorRuntime(
"No container ID available".into(), "No container ID available".into(),
@ -258,7 +256,7 @@ pub fn builder_read_content(
// Builder static methods // Builder static methods
pub fn builder_images(_builder: &mut Builder) -> Result<Array, Box<EvalAltResult>> { pub fn builder_images(_builder: &mut Builder) -> Result<Array, Box<EvalAltResult>> {
let images = bah_error_to_rhai_error(Builder::images())?; let images = Builder::images()?;
// Convert Vec<Image> to Rhai Array // Convert Vec<Image> to Rhai Array
let mut array = Array::new(); let mut array = Array::new();
@ -273,7 +271,7 @@ pub fn builder_image_remove(
_builder: &mut Builder, _builder: &mut Builder,
image: &str, image: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
bah_error_to_rhai_error(Builder::image_remove(image)) Builder::image_remove(image).map_err(Into::into)
} }
pub fn builder_image_pull( pub fn builder_image_pull(
@ -281,7 +279,7 @@ pub fn builder_image_pull(
image: &str, image: &str,
tls_verify: bool, tls_verify: bool,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
bah_error_to_rhai_error(Builder::image_pull(image, tls_verify)) Builder::image_pull(image, tls_verify).map_err(Into::into)
} }
pub fn builder_image_push( pub fn builder_image_push(
@ -290,7 +288,7 @@ pub fn builder_image_push(
destination: &str, destination: &str,
tls_verify: bool, tls_verify: bool,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
bah_error_to_rhai_error(Builder::image_push(image, destination, tls_verify)) Builder::image_push(image, destination, tls_verify).map_err(Into::into)
} }
pub fn builder_image_tag( pub fn builder_image_tag(
@ -298,7 +296,7 @@ pub fn builder_image_tag(
image: &str, image: &str,
new_name: &str, new_name: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
bah_error_to_rhai_error(Builder::image_tag(image, new_name)) Builder::image_tag(image, new_name).map_err(Into::into)
} }
// Getter functions for Builder properties // Getter functions for Builder properties
@ -329,7 +327,7 @@ pub fn set_builder_debug(builder: &mut Builder, debug: bool) {
// Reset function for Builder // Reset function for Builder
pub fn builder_reset(builder: &mut Builder) -> Result<(), Box<EvalAltResult>> { pub fn builder_reset(builder: &mut Builder) -> Result<(), Box<EvalAltResult>> {
bah_error_to_rhai_error(builder.reset()) builder.reset().map_err(Into::into)
} }
// Build function for Builder // Build function for Builder
@ -340,10 +338,5 @@ pub fn builder_build(
file: &str, file: &str,
isolation: &str, isolation: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
bah_error_to_rhai_error(Builder::build( Builder::build(Some(tag), context_dir, file, Some(isolation)).map_err(Into::into)
Some(tag),
context_dir,
file,
Some(isolation),
))
} }

View File

@ -7,33 +7,32 @@ use rhai::{Array, Dynamic, Engine, EvalAltResult, Map};
use sal_process::CommandResult; use sal_process::CommandResult;
// Helper functions for error conversion with improved context // Helper functions for error conversion with improved context
fn nerdctl_error_to_rhai_error<T>( impl From<NerdctlError> for Box<EvalAltResult> {
result: Result<T, NerdctlError>, fn from(err: NerdctlError) -> Self {
) -> Result<T, Box<EvalAltResult>> { let error_message = match err {
result.map_err(|e| { NerdctlError::CommandExecutionFailed(io_err) => format!(
// Create a more detailed error message based on the error type "Failed to execute nerdctl command: {}. This may indicate nerdctl is not installed or not in PATH.",
let error_message = match &e { io_err
NerdctlError::CommandExecutionFailed(io_err) => { ),
format!("Failed to execute nerdctl command: {}. This may indicate nerdctl is not installed or not in PATH.", io_err) NerdctlError::CommandFailed(msg) => format!(
}, "Nerdctl command failed: {}. Check container status and logs for more details.",
NerdctlError::CommandFailed(msg) => { msg
format!("Nerdctl command failed: {}. Check container status and logs for more details.", msg) ),
}, NerdctlError::JsonParseError(msg) => format!(
NerdctlError::JsonParseError(msg) => { "Failed to parse nerdctl JSON output: {}. This may indicate an incompatible nerdctl version.",
format!("Failed to parse nerdctl JSON output: {}. This may indicate an incompatible nerdctl version.", msg) msg
}, ),
NerdctlError::ConversionError(msg) => { NerdctlError::ConversionError(msg) => format!(
format!("Data conversion error: {}. This may indicate unexpected output format from nerdctl.", msg) "Data conversion error: {}. This may indicate unexpected output format from nerdctl.",
}, msg
NerdctlError::Other(msg) => { ),
format!("Nerdctl error: {}. This is an unexpected error.", msg) NerdctlError::Other(msg) => format!("Nerdctl error: {}. This is an unexpected error.", msg),
},
}; };
Box::new(EvalAltResult::ErrorRuntime( Box::new(EvalAltResult::ErrorRuntime(
error_message.into(), error_message.into(),
rhai::Position::NONE rhai::Position::NONE,
)) ))
}) }
} }
// //
@ -42,12 +41,7 @@ fn nerdctl_error_to_rhai_error<T>(
/// Create a new Container /// Create a new Container
pub fn container_new(name: &str) -> Result<Container, Box<EvalAltResult>> { pub fn container_new(name: &str) -> Result<Container, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(Container::new(name)) Container::new(name).map_err(Into::into)
}
/// Create a Container from an image
pub fn container_from_image(name: &str, image: &str) -> Result<Container, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(Container::from_image(name, image))
} }
/// Reset the container configuration to defaults while keeping the name and image /// Reset the container configuration to defaults while keeping the name and image
@ -55,19 +49,10 @@ pub fn container_reset(container: Container) -> Container {
container.reset() container.reset()
} }
// TODO: remove? pub fn health_check_new(cmd: &str) -> Result<HealthCheck, Box<EvalAltResult>> {
/// Set health check with options for a Container let health_check = HealthCheck::new(cmd);
pub fn container_with_health_check_options(
container: Container, Ok(health_check)
cmd: &str,
interval: Option<&str>,
timeout: Option<&str>,
retries: Option<i64>,
start_period: Option<&str>,
) -> Container {
// Convert i64 to u32 for retries
let retries_u32 = retries.map(|r| r as u32);
container.with_health_check_options(cmd, interval, timeout, retries_u32, start_period)
} }
/// Build and run the Container /// Build and run the Container
@ -134,7 +119,7 @@ pub fn container_build(container: Container) -> Result<Container, Box<EvalAltRes
_ => err, _ => err,
}; };
nerdctl_error_to_rhai_error(Err(enhanced_error)) Err(enhanced_error.into())
} }
} }
} }
@ -191,19 +176,19 @@ pub fn container_start(container: &mut Container) -> Result<CommandResult, Box<E
_ => err, _ => err,
}; };
nerdctl_error_to_rhai_error(Err(enhanced_error)) Err(enhanced_error.into())
} }
} }
} }
/// Stop the Container /// Stop the Container
pub fn container_stop(container: &mut Container) -> Result<CommandResult, Box<EvalAltResult>> { pub fn container_stop(container: &mut Container) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(container.stop()) container.stop().map_err(Into::into)
} }
/// Remove the Container /// Remove the Container
pub fn container_remove(container: &mut Container) -> Result<CommandResult, Box<EvalAltResult>> { pub fn container_remove(container: &mut Container) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(container.remove()) container.remove().map_err(Into::into)
} }
/// Execute a command in the Container /// Execute a command in the Container
@ -211,7 +196,7 @@ pub fn container_exec(
container: &mut Container, container: &mut Container,
command: &str, command: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(container.exec(command)) container.exec(command).map_err(Into::into)
} }
/// Get container logs /// Get container logs
@ -235,7 +220,7 @@ pub fn container_logs(container: &mut Container) -> Result<CommandResult, Box<Ev
container_name, container_id, err container_name, container_id, err
)); ));
nerdctl_error_to_rhai_error(Err(enhanced_error)) Err(enhanced_error.into())
} }
} }
} }
@ -246,7 +231,7 @@ pub fn container_copy(
source: &str, source: &str,
dest: &str, dest: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(container.copy(source, dest)) container.copy(source, dest).map_err(Into::into)
} }
/// Create a new Map with default run options /// Create a new Map with default run options
@ -267,12 +252,12 @@ pub fn new_run_options() -> Map {
/// ///
/// Run a container from an image. /// Run a container from an image.
pub fn nerdctl_run(image: &str) -> Result<CommandResult, Box<EvalAltResult>> { pub fn nerdctl_run(image: &str) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::run(image, None, true, None, None)) nerdctl::run(image, None, true, None, None).map_err(Into::into)
} }
/// Run a container with a name /// Run a container with a name
pub fn nerdctl_run_with_name(image: &str, name: &str) -> Result<CommandResult, Box<EvalAltResult>> { pub fn nerdctl_run_with_name(image: &str, name: &str) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::run(image, Some(name), true, None, None)) nerdctl::run(image, Some(name), true, None, None).map_err(Into::into)
} }
/// Run a container with a port mapping /// Run a container with a port mapping
@ -282,49 +267,49 @@ pub fn nerdctl_run_with_port(
port: &str, port: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
let ports = vec![port]; let ports = vec![port];
nerdctl_error_to_rhai_error(nerdctl::run(image, Some(name), true, Some(&ports), None)) nerdctl::run(image, Some(name), true, Some(&ports), None).map_err(Into::into)
} }
/// Wrapper for nerdctl::exec /// Wrapper for nerdctl::exec
/// ///
/// Execute a command in a container. /// Execute a command in a container.
pub fn nerdctl_exec(container: &str, command: &str) -> Result<CommandResult, Box<EvalAltResult>> { pub fn nerdctl_exec(container: &str, command: &str) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::exec(container, command)) nerdctl::exec(container, command).map_err(Into::into)
} }
/// Wrapper for nerdctl::copy /// Wrapper for nerdctl::copy
/// ///
/// Copy files between container and local filesystem. /// Copy files between container and local filesystem.
pub fn nerdctl_copy(source: &str, dest: &str) -> Result<CommandResult, Box<EvalAltResult>> { pub fn nerdctl_copy(source: &str, dest: &str) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::copy(source, dest)) nerdctl::copy(source, dest).map_err(Into::into)
} }
/// Wrapper for nerdctl::stop /// Wrapper for nerdctl::stop
/// ///
/// Stop a container. /// Stop a container.
pub fn nerdctl_stop(container: &str) -> Result<CommandResult, Box<EvalAltResult>> { pub fn nerdctl_stop(container: &str) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::stop(container)) nerdctl::stop(container).map_err(Into::into)
} }
/// Wrapper for nerdctl::remove /// Wrapper for nerdctl::remove
/// ///
/// Remove a container. /// Remove a container.
pub fn nerdctl_remove(container: &str) -> Result<CommandResult, Box<EvalAltResult>> { pub fn nerdctl_remove(container: &str) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::remove(container)) nerdctl::remove(container).map_err(Into::into)
} }
/// Wrapper for nerdctl::list /// Wrapper for nerdctl::list
/// ///
/// List containers. /// List containers.
pub fn nerdctl_list(all: bool) -> Result<CommandResult, Box<EvalAltResult>> { pub fn nerdctl_list(all: bool) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::list(all)) nerdctl::list(all).map_err(Into::into)
} }
/// Wrapper for nerdctl::logs /// Wrapper for nerdctl::logs
/// ///
/// Get container logs. /// Get container logs.
pub fn nerdctl_logs(container: &str) -> Result<CommandResult, Box<EvalAltResult>> { pub fn nerdctl_logs(container: &str) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::logs(container)) nerdctl::logs(container).map_err(Into::into)
} }
// //
@ -335,14 +320,14 @@ pub fn nerdctl_logs(container: &str) -> Result<CommandResult, Box<EvalAltResult>
/// ///
/// List images in local storage. /// List images in local storage.
pub fn nerdctl_images() -> Result<CommandResult, Box<EvalAltResult>> { pub fn nerdctl_images() -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::images()) nerdctl::images().map_err(Into::into)
} }
/// Wrapper for nerdctl::image_remove /// Wrapper for nerdctl::image_remove
/// ///
/// Remove one or more images. /// Remove one or more images.
pub fn nerdctl_image_remove(image: &str) -> Result<CommandResult, Box<EvalAltResult>> { pub fn nerdctl_image_remove(image: &str) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::image_remove(image)) nerdctl::image_remove(image).map_err(Into::into)
} }
/// Wrapper for nerdctl::image_push /// Wrapper for nerdctl::image_push
@ -352,21 +337,21 @@ pub fn nerdctl_image_push(
image: &str, image: &str,
destination: &str, destination: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::image_push(image, destination)) nerdctl::image_push(image, destination).map_err(Into::into)
} }
/// Wrapper for nerdctl::image_tag /// Wrapper for nerdctl::image_tag
/// ///
/// Add an additional name to a local image. /// Add an additional name to a local image.
pub fn nerdctl_image_tag(image: &str, new_name: &str) -> Result<CommandResult, Box<EvalAltResult>> { pub fn nerdctl_image_tag(image: &str, new_name: &str) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::image_tag(image, new_name)) nerdctl::image_tag(image, new_name).map_err(Into::into)
} }
/// Wrapper for nerdctl::image_pull /// Wrapper for nerdctl::image_pull
/// ///
/// Pull an image from a registry. /// Pull an image from a registry.
pub fn nerdctl_image_pull(image: &str) -> Result<CommandResult, Box<EvalAltResult>> { pub fn nerdctl_image_pull(image: &str) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::image_pull(image)) nerdctl::image_pull(image).map_err(Into::into)
} }
/// Wrapper for nerdctl::image_commit /// Wrapper for nerdctl::image_commit
@ -376,7 +361,7 @@ pub fn nerdctl_image_commit(
container: &str, container: &str,
image_name: &str, image_name: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::image_commit(container, image_name)) nerdctl::image_commit(container, image_name).map_err(Into::into)
} }
/// Wrapper for nerdctl::image_build /// Wrapper for nerdctl::image_build
@ -386,7 +371,7 @@ pub fn nerdctl_image_build(
tag: &str, tag: &str,
context_path: &str, context_path: &str,
) -> Result<CommandResult, Box<EvalAltResult>> { ) -> Result<CommandResult, Box<EvalAltResult>> {
nerdctl_error_to_rhai_error(nerdctl::image_build(tag, context_path)) nerdctl::image_build(tag, context_path).map_err(Into::into)
} }
/// Register Nerdctl module functions with the Rhai engine /// Register Nerdctl module functions with the Rhai engine
@ -404,36 +389,13 @@ pub fn register_nerdctl_module(engine: &mut Engine) -> Result<(), Box<EvalAltRes
// Register Container constructor // Register Container constructor
engine.register_fn("nerdctl_container_new", container_new); engine.register_fn("nerdctl_container_new", container_new);
engine.register_fn("nerdctl_container_from_image", container_from_image);
// TODO: check if this works! // Register HealthCheck constructor
engine.register_fn("health_check_new", health_check_new);
// Register Container instance methods // Register Container instance methods
engine.register_fn("reset", container_reset); engine.register_fn("reset", container_reset);
// TODO: these functions should be getters and setter like the buildah example
// engine.register_fn("with_image", container_with_image);
// engine.register_fn("with_port", container_with_port);
// engine.register_fn("with_volume", container_with_volume);
// engine.register_fn("with_env", container_with_env);
// engine.register_fn("with_network", container_with_network);
// engine.register_fn("with_network_alias", container_with_network_alias);
// engine.register_fn("with_cpu_limit", container_with_cpu_limit);
// engine.register_fn("with_memory_limit", container_with_memory_limit);
// engine.register_fn("with_restart_policy", container_with_restart_policy);
// engine.register_fn("with_health_check", container_with_health_check);
// engine.register_fn("with_ports", container_with_ports);
// engine.register_fn("with_volumes", container_with_volumes);
// engine.register_fn("with_envs", container_with_envs);
// engine.register_fn("with_network_aliases", container_with_network_aliases);
// engine.register_fn("with_memory_swap_limit", container_with_memory_swap_limit);
// engine.register_fn("with_cpu_shares", container_with_cpu_shares);
// engine.register_fn(
// "with_health_check_options",
// container_with_health_check_options,
// );
// engine.register_fn("with_snapshotter", container_with_snapshotter);
// engine.register_fn("with_detach", container_with_detach);
engine.register_fn("build", container_build); engine.register_fn("build", container_build);
engine.register_fn("start", container_start); engine.register_fn("start", container_start);
engine.register_fn("stop", container_stop); engine.register_fn("stop", container_stop);
@ -468,42 +430,11 @@ pub fn register_nerdctl_module(engine: &mut Engine) -> Result<(), Box<EvalAltRes
/// Register Nerdctl module types with the Rhai engine /// Register Nerdctl module types with the Rhai engine
fn register_nerdctl_types(engine: &mut Engine) -> Result<(), Box<EvalAltResult>> { fn register_nerdctl_types(engine: &mut Engine) -> Result<(), Box<EvalAltResult>> {
// Register Container type // Register Container type
engine.register_type_with_name::<Container>("NerdctlContainer"); engine.register_type_with_name::<Container>("NerdctlContainer");
engine.register_type_with_name::<HealthCheck>("NerdctlHealthCheck");
// Register getters & setters for HealthCheck properties
engine.register_get("cmd", |hc: &mut HealthCheck| hc.cmd.clone());
engine.register_set("cmd", |hc: &mut HealthCheck, cmd: &str| {
hc.cmd = cmd.to_string();
});
engine.register_get("interval", |hc: &mut HealthCheck| {
hc.interval.clone().unwrap_or_default()
});
engine.register_set("interval", |hc: &mut HealthCheck, interval: &str| {
hc.interval = Some(interval.to_string());
});
engine.register_get("timeout", |hc: &mut HealthCheck| {
hc.timeout.clone().unwrap_or_default()
});
engine.register_set("timeout", |hc: &mut HealthCheck, timeout: &str| {
hc.timeout = Some(timeout.to_string());
});
engine.register_get("retries", |hc: &mut HealthCheck| {
hc.retries.map_or(0, |r| r as i64)
});
engine.register_set("retries", |hc: &mut HealthCheck, retries: i64| {
hc.retries = Some(retries as u32);
});
engine.register_get("start_period", |hc: &mut HealthCheck| {
hc.start_period.clone().unwrap_or_default()
});
engine.register_set("start_period", |hc: &mut HealthCheck, start_period: &str| {
hc.start_period = Some(start_period.to_string());
});
// Register getters & setters for Container properties // Register getters & setters for Container properties
// -- name // -- name
engine.register_get("name", |container: &mut Container| container.name.clone()); engine.register_get("name", |container: &mut Container| container.name.clone());
engine.register_set("image", |container: &mut Container, image: &str| { engine.register_set("image", |container: &mut Container, image: &str| {
@ -665,17 +596,50 @@ fn register_nerdctl_types(engine: &mut Engine) -> Result<(), Box<EvalAltResult>>
}, },
); );
// TODO: setters and getters for health_check
// -- health_check // -- health_check
// engine.register_get("health_check", |container: &mut Container| { engine.register_type_with_name::<HealthCheck>("NerdctlHealthCheck");
// container.health_check.clone() engine.register_get("health_check", |container: &mut Container| {
// }); if let Some(health_check) = container.health_check.clone() {
// engine.register_set( Dynamic::from(health_check)
// "health_check", } else {
// |container: &mut Container, health_check: HealthCheck| { Dynamic::UNIT
// container.health_check = Some(health_check); }
// }, });
// ); engine.register_set(
"health_check",
|container: &mut Container, health_check: HealthCheck| {
container.health_check = Some(health_check);
},
);
// Register getters & setters for HealthCheck properties
engine.register_get("cmd", |hc: &mut HealthCheck| hc.cmd.clone());
engine.register_set("cmd", |hc: &mut HealthCheck, cmd: &str| {
hc.cmd = cmd.to_string();
});
engine.register_get("interval", |hc: &mut HealthCheck| {
hc.interval.clone().unwrap_or_default()
});
engine.register_set("interval", |hc: &mut HealthCheck, interval: &str| {
hc.interval = Some(interval.to_string());
});
engine.register_get("timeout", |hc: &mut HealthCheck| {
hc.timeout.clone().unwrap_or_default()
});
engine.register_set("timeout", |hc: &mut HealthCheck, timeout: &str| {
hc.timeout = Some(timeout.to_string());
});
engine.register_get("retries", |hc: &mut HealthCheck| {
hc.retries.map_or(0, |r| r as i64)
});
engine.register_set("retries", |hc: &mut HealthCheck, retries: i64| {
hc.retries = Some(retries as u32);
});
engine.register_get("start_period", |hc: &mut HealthCheck| {
hc.start_period.clone().unwrap_or_default()
});
engine.register_set("start_period", |hc: &mut HealthCheck, start_period: &str| {
hc.start_period = Some(start_period.to_string());
});
// -- detach // -- detach
engine.register_get("detach", |container: &mut Container| container.detach); engine.register_get("detach", |container: &mut Container| container.detach);
@ -693,7 +657,6 @@ fn register_nerdctl_types(engine: &mut Engine) -> Result<(), Box<EvalAltResult>>
// Register Image type and methods // Register Image type and methods
engine.register_type_with_name::<Image>("NerdctlImage"); engine.register_type_with_name::<Image>("NerdctlImage");
// Register getters for Image properties // Register getters for Image properties
engine.register_get("id", |img: &mut Image| img.id.clone()); engine.register_get("id", |img: &mut Image| img.id.clone());
engine.register_get("repository", |img: &mut Image| img.repository.clone()); engine.register_get("repository", |img: &mut Image| img.repository.clone());