gflow 0.4.15

A lightweight, single-node job scheduler written in Rust.
Documentation
use anyhow::Result;
use gflow::tmux::{attach_to_session, is_session_exist};

pub async fn handle_attach(
    config_path: &Option<std::path::PathBuf>,
    job_id_str: &str,
) -> Result<()> {
    let client = gflow::create_client(config_path)?;

    // Resolve job ID (handle @ shorthand)
    let job_id = crate::multicall::gjob::utils::resolve_job_id(&client, job_id_str).await?;

    // Get the job from the daemon
    let Some(job) = gflow::client::get_job_or_warn(&client, job_id).await? else {
        return Ok(());
    };

    // Check if the job has a tmux session
    let session_name = match job.run_name {
        Some(ref name) => name,
        None => {
            eprintln!(
                "Error: Job {} does not have an associated tmux session",
                job_id
            );
            return Ok(());
        }
    };

    // Check if the tmux session exists
    if !is_session_exist(session_name) {
        eprintln!(
            "Error: Tmux session '{}' for job {} does not exist",
            session_name, job_id
        );
        return Ok(());
    }

    // Attach to the tmux session
    println!(
        "Attaching to tmux session '{}' for job {}...",
        session_name, job_id
    );
    attach_to_session(session_name)?;

    Ok(())
}