mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-12-01 19:02:43 +01:00
104 lines
3.0 KiB
Rust
104 lines
3.0 KiB
Rust
|
use std::{
|
||
|
fs::canonicalize,
|
||
|
io::{BufRead, BufReader},
|
||
|
path::PathBuf,
|
||
|
process::Stdio,
|
||
|
sync::Arc,
|
||
|
};
|
||
|
|
||
|
use crate::{config::Config, connect_params::ConnectParams};
|
||
|
|
||
|
#[derive(Clone, Debug)]
|
||
|
pub struct CliSession {
|
||
|
inner: Arc<InnerCliSession>,
|
||
|
}
|
||
|
|
||
|
impl CliSession {
|
||
|
pub fn new() -> Self {
|
||
|
Self {
|
||
|
inner: Arc::new(InnerCliSession {}),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub fn connect(&self, config: &Config, cli_path: &PathBuf) -> eyre::Result<ConnectParams> {
|
||
|
self.inner.connect(config, cli_path)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
struct InnerCliSession {}
|
||
|
|
||
|
impl InnerCliSession {
|
||
|
pub fn connect(&self, config: &Config, cli_path: &PathBuf) -> eyre::Result<ConnectParams> {
|
||
|
let mut proc = self.start(config, cli_path)?;
|
||
|
let params = self.get_conn(&mut proc)?;
|
||
|
Ok(params)
|
||
|
}
|
||
|
|
||
|
fn start(&self, config: &Config, cli_path: &PathBuf) -> eyre::Result<std::process::Child> {
|
||
|
let mut args: Vec<String> = vec!["session".into()];
|
||
|
if let Some(workspace) = &config.workdir_path {
|
||
|
let abs_path = canonicalize(workspace)?;
|
||
|
args.extend(["--workdir".into(), abs_path.to_string_lossy().to_string()])
|
||
|
}
|
||
|
if let Some(config_path) = &config.config_path {
|
||
|
let abs_path = canonicalize(config_path)?;
|
||
|
args.extend(["--project".into(), abs_path.to_string_lossy().to_string()])
|
||
|
}
|
||
|
|
||
|
let proc = std::process::Command::new(
|
||
|
cli_path
|
||
|
.to_str()
|
||
|
.ok_or(eyre::anyhow!("could not get string from path"))?,
|
||
|
)
|
||
|
.args(args.as_slice())
|
||
|
.stdin(Stdio::piped())
|
||
|
.stdout(Stdio::piped())
|
||
|
.stderr(Stdio::piped())
|
||
|
.spawn()?;
|
||
|
|
||
|
//TODO: Add retry mechanism
|
||
|
|
||
|
return Ok(proc);
|
||
|
}
|
||
|
|
||
|
fn get_conn(&self, proc: &mut std::process::Child) -> eyre::Result<ConnectParams> {
|
||
|
let stdout = proc
|
||
|
.stdout
|
||
|
.take()
|
||
|
.ok_or(eyre::anyhow!("could not acquire stdout from child process"))?;
|
||
|
|
||
|
let stderr = proc
|
||
|
.stderr
|
||
|
.take()
|
||
|
.ok_or(eyre::anyhow!("could not acquire stderr from child process"))?;
|
||
|
|
||
|
let mut conn: Option<ConnectParams> = None;
|
||
|
|
||
|
std::thread::scope(|s| {
|
||
|
s.spawn(|| {
|
||
|
let stdout_bufr = BufReader::new(stdout);
|
||
|
let mut res_conn: Option<ConnectParams> = None;
|
||
|
for line in stdout_bufr.lines() {
|
||
|
let out = line.unwrap();
|
||
|
let conn: ConnectParams = serde_json::from_str(&out).unwrap();
|
||
|
res_conn = Some(conn);
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
conn = res_conn;
|
||
|
});
|
||
|
|
||
|
//s.spawn(|| {
|
||
|
// let stderr_bufr = BufReader::new(stderr);
|
||
|
// for line in stderr_bufr.lines() {
|
||
|
// let out = line.unwrap();
|
||
|
// panic!("could not start dagger session: {}", out)
|
||
|
// }
|
||
|
//});
|
||
|
});
|
||
|
|
||
|
Ok(conn.ok_or(eyre::anyhow!("could not connect to dagger"))?)
|
||
|
}
|
||
|
}
|