feat: add run_backup_container skeleton

This commit is contained in:
Alexander Navarro 2025-06-26 17:00:23 -04:00
parent 1f194ca7f1
commit d0afb2955b
5 changed files with 299 additions and 27 deletions

View file

@ -1,10 +1,11 @@
use crate::docker::Container;
use crate::docker::{Container, ContainerBuilder};
use crate::Error;
use bollard::models::ContainerSummary;
use bollard::Docker;
use futures::future::try_join_all;
use futures::StreamExt;
use std::collections::HashMap;
use tracing::info;
use tracing::{debug, info, instrument};
/// Namespace to manage containers together (like compose projects)
type ServiceGroup = String;
@ -12,7 +13,7 @@ type ServiceGroup = String;
const DEFAULT_GROUP: &str = "NONE";
#[derive(Debug)]
struct Services(HashMap<ServiceGroup, Vec<crate::docker::Container>>);
struct Services(HashMap<ServiceGroup, Vec<Container>>);
impl From<&Vec<ContainerSummary>> for Services {
fn from(value: &Vec<ContainerSummary>) -> Self {
@ -38,7 +39,7 @@ impl From<&Vec<ContainerSummary>> for Services {
Some(group) => group.to_owned(),
};
let list: &mut Vec<crate::docker::Container> = services.entry(group).or_default();
let list: &mut Vec<Container> = services.entry(group).or_default();
list.push(container);
}
@ -48,43 +49,115 @@ impl From<&Vec<ContainerSummary>> for Services {
#[tracing::instrument(skip(containers))]
pub async fn manage(containers: &Vec<ContainerSummary>) -> crate::Result<()> {
let total_containers = containers.len();
let services = Services::from(containers);
info!(
"Found {} containers, grouped into {} groups",
total_containers,
services.0.len()
);
// TODO: reuse main instance
let docker = Docker::connect_with_local_defaults()?;
// TODO: iterate over groups in parallel
for (group, containers) in services.0.iter() {
// stop containers of service group
try_join_all(containers.into_iter().map(|container | stop_container(&docker, container))).await?;
// create container with the same mounts as each container in the group
// run the new container
// restart the containers
try_join_all(containers.into_iter().map(|container| start_container(&docker, container))).await?;
handle_group(&docker, group, containers).await?;
}
// Do cleanup to ensure all containers that are created are also deleted
Ok(())
}
async fn stop_container(docker: &Docker, container: &crate::docker::Container) -> crate::Result<()> {
info!("Stoping container: {:#?}", container.id);
#[tracing::instrument(skip(docker, containers))]
async fn handle_group(
docker: &Docker,
_group: &ServiceGroup,
containers: &Vec<Container>,
) -> Result<(), Error> {
// stop containers of service group
try_join_all(
containers
.into_iter()
.map(|container| stop_container(&docker, &container.id)),
)
.await?;
// create container with the same mounts as each container in the group
let backup_container = ContainerBuilder::new().with_image("hello-world").build();
run_backup_container(&docker, &backup_container).await?;
// run the new container
// restart the containers
try_join_all(
containers
.into_iter()
.map(|container| start_container(&docker, &container.id)),
)
.await?;
Ok(())
}
async fn stop_container(
docker: &Docker,
container_id: impl AsRef<str>,
) -> crate::Result<()> {
let container_id = container_id.as_ref();
info!("Stoping container: {}", container_id);
let stop_opts = bollard::query_parameters::StopContainerOptionsBuilder::new().build();
docker.stop_container(&container.id, Some(stop_opts)).await?;
docker
.stop_container(container_id, Some(stop_opts))
.await?;
Ok::<(), crate::Error>(())
Ok(())
}
async fn start_container(docker: &Docker, container: &crate::docker::Container) -> crate::Result<()> {
info!("Starting container: {:#?}", container.id);
async fn start_container(
docker: &Docker,
container_id: impl AsRef<str>,
) -> crate::Result<()> {
let container_id = container_id.as_ref();
info!("Starting container: {}", container_id);
let start_opts = bollard::query_parameters::StartContainerOptionsBuilder::new().build();
docker.start_container(&container.id, Some(start_opts)).await?;
docker
.start_container(container_id, Some(start_opts))
.await?;
Ok::<(), crate::Error>(())
Ok(())
}
#[instrument(skip_all, fields(container_id))]
async fn run_backup_container(docker: &Docker, container: &Container) -> crate::Result<()> {
info!("Creating container from image {:?}",&container.image);
debug!("{:#?}", &container);
let create_opts = bollard::query_parameters::CreateContainerOptionsBuilder::default().build();
let create_conf = bollard::models::ContainerCreateBody::from(container);
let response = docker
.create_container(Some(create_opts), create_conf)
.await?;
tracing::Span::current().record("container_id", &response.id);
start_container(docker, &response.id).await?;
let wait_opts = bollard::query_parameters::WaitContainerOptionsBuilder::default().build();
let mut stream = docker.wait_container(&response.id, Some(wait_opts));
while let Some(status) = stream.next().await {
debug!("Received status: {:?}", status?);
}
stop_container(docker, &response.id).await?;
Ok(())
}