use extism_pdk::*;
use fluentci_types::{cache::Cache, file::File, pixi as types};
use serde::{Deserialize, Serialize};
#[host_fn]
extern "ExtismHost" {
    fn set_runner(runner: String);
    fn with_exec(args: Json<Vec<String>>);
    fn with_workdir(path: String);
    fn with_cache(cache: Json<Cache>);
    fn with_file(file: Json<File>);
    fn stdout() -> String;
    fn stderr() -> String;
}
#[derive(Serialize, Deserialize)]
pub struct Pixi {
    pub id: String,
}
impl From<types::Pixi> for Pixi {
    fn from(pixi: types::Pixi) -> Self {
        Pixi { id: pixi.id }
    }
}
impl Pixi {
    pub fn with_exec(&self, args: Vec<&str>) -> Result<Pixi, Error> {
        unsafe { set_runner("pixi".into()) }?;
        unsafe {
            with_exec(Json::from(
                args.into_iter()
                    .map(|x| x.to_string())
                    .collect::<Vec<String>>(),
            ))
        }?;
        Ok(Pixi {
            id: self.id.clone(),
        })
    }
    pub fn with_workdir(&self, path: &str) -> Result<Pixi, Error> {
        unsafe { with_workdir(path.into()) }?;
        Ok(Pixi {
            id: self.id.clone(),
        })
    }
    pub fn with_cache(&self, path: &str, cache_id: &str) -> Result<Pixi, Error> {
        unsafe {
            with_cache(Json(Cache {
                id: cache_id.into(),
                path: path.into(),
                ..Default::default()
            }))
        }?;
        Ok(Pixi {
            id: self.id.clone(),
        })
    }
    pub fn with_file(&self, path: &str, file_id: &str) -> Result<Pixi, Error> {
        unsafe {
            with_file(Json(File {
                id: file_id.into(),
                path: path.into(),
            }))
        }?;
        Ok(Pixi {
            id: self.id.clone(),
        })
    }
    pub fn stdout(&self) -> Result<String, Error> {
        unsafe { stdout() }
    }
    pub fn stderr(&self) -> Result<String, Error> {
        unsafe { stderr() }
    }
}