2021-01-24 14:08:48 -08:00
|
|
|
use std::convert::TryFrom;
|
2020-12-18 01:27:44 -08:00
|
|
|
use std::process::Stdio;
|
2020-12-15 20:21:26 -08:00
|
|
|
|
|
|
|
use async_trait::async_trait;
|
|
|
|
use serde::de::DeserializeOwned;
|
2021-01-24 14:08:48 -08:00
|
|
|
use serde::Deserialize;
|
2020-12-15 20:21:26 -08:00
|
|
|
use snafu::Snafu;
|
|
|
|
use tokio::process::Command;
|
2021-01-24 14:08:48 -08:00
|
|
|
|
|
|
|
use crate::util::CommandExecution;
|
2020-12-18 01:27:44 -08:00
|
|
|
|
2020-12-19 15:07:29 -08:00
|
|
|
pub mod host;
|
2021-01-13 12:20:27 -08:00
|
|
|
pub use host::{Host, CopyDirection, CopyOptions};
|
2020-12-18 01:27:44 -08:00
|
|
|
use host::SSH;
|
2020-12-15 20:21:26 -08:00
|
|
|
|
2021-01-24 14:08:48 -08:00
|
|
|
pub mod hive;
|
|
|
|
pub use hive::Hive;
|
|
|
|
|
|
|
|
pub mod store;
|
|
|
|
pub use store::{StorePath, StoreDerivation};
|
|
|
|
|
|
|
|
pub mod profile;
|
|
|
|
pub use profile::{Profile, ProfileMap};
|
|
|
|
|
|
|
|
pub mod deployment;
|
|
|
|
pub use deployment::{DeploymentGoal, Deployment};
|
2020-12-15 20:21:26 -08:00
|
|
|
|
2020-12-19 16:28:34 -08:00
|
|
|
pub const SYSTEM_PROFILE: &'static str = "/nix/var/nix/profiles/system";
|
|
|
|
|
2020-12-18 01:27:44 -08:00
|
|
|
pub type NixResult<T> = Result<T, NixError>;
|
|
|
|
|
2021-01-24 14:08:48 -08:00
|
|
|
#[non_exhaustive]
|
2020-12-18 01:27:44 -08:00
|
|
|
#[derive(Debug, Snafu)]
|
|
|
|
pub enum NixError {
|
|
|
|
#[snafu(display("I/O Error: {}", error))]
|
|
|
|
IoError { error: std::io::Error },
|
|
|
|
|
|
|
|
#[snafu(display("Nix returned invalid response: {}", output))]
|
|
|
|
BadOutput { output: String },
|
|
|
|
|
|
|
|
#[snafu(display("Nix exited with error code: {}", exit_code))]
|
|
|
|
NixFailure { exit_code: i32 },
|
|
|
|
|
|
|
|
#[snafu(display("Nix was interrupted"))]
|
|
|
|
NixKilled,
|
|
|
|
|
|
|
|
#[snafu(display("This operation is not supported"))]
|
|
|
|
Unsupported,
|
|
|
|
|
2021-01-24 14:08:48 -08:00
|
|
|
#[snafu(display("Invalid Nix store path"))]
|
|
|
|
InvalidStorePath,
|
|
|
|
|
|
|
|
#[snafu(display("Invalid NixOS system profile"))]
|
|
|
|
InvalidProfile,
|
|
|
|
|
2020-12-18 01:27:44 -08:00
|
|
|
#[snafu(display("Nix Error: {}", message))]
|
|
|
|
Unknown { message: String },
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<std::io::Error> for NixError {
|
|
|
|
fn from(error: std::io::Error) -> Self {
|
|
|
|
Self::IoError { error }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-15 20:21:26 -08:00
|
|
|
#[derive(Debug, Clone, Deserialize)]
|
2021-01-24 14:08:48 -08:00
|
|
|
pub struct NodeConfig {
|
2020-12-15 20:21:26 -08:00
|
|
|
#[serde(rename = "targetHost")]
|
2020-12-19 15:07:29 -08:00
|
|
|
target_host: Option<String>,
|
2020-12-15 20:21:26 -08:00
|
|
|
|
|
|
|
#[serde(rename = "targetUser")]
|
|
|
|
target_user: String,
|
2020-12-19 15:07:29 -08:00
|
|
|
|
|
|
|
#[serde(rename = "allowLocalDeployment")]
|
|
|
|
allow_local_deployment: bool,
|
2020-12-15 20:21:26 -08:00
|
|
|
tags: Vec<String>,
|
|
|
|
}
|
|
|
|
|
2021-01-24 14:08:48 -08:00
|
|
|
impl NodeConfig {
|
2020-12-18 01:27:44 -08:00
|
|
|
pub fn tags(&self) -> &[String] { &self.tags }
|
2020-12-19 15:07:29 -08:00
|
|
|
pub fn allows_local_deployment(&self) -> bool { self.allow_local_deployment }
|
|
|
|
|
|
|
|
pub fn to_ssh_host(&self) -> Option<Box<dyn Host>> {
|
|
|
|
self.target_host.as_ref().map(|target_host| {
|
|
|
|
let host = SSH::new(self.target_user.clone(), target_host.clone());
|
|
|
|
let host: Box<dyn Host> = Box::new(host);
|
|
|
|
host
|
|
|
|
})
|
2020-12-18 01:27:44 -08:00
|
|
|
}
|
2020-12-15 20:21:26 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait]
|
|
|
|
trait NixCommand {
|
|
|
|
async fn passthrough(&mut self) -> NixResult<()>;
|
|
|
|
async fn capture_output(&mut self) -> NixResult<String>;
|
|
|
|
async fn capture_json<T>(&mut self) -> NixResult<T> where T: DeserializeOwned;
|
|
|
|
async fn capture_store_path(&mut self) -> NixResult<StorePath>;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait]
|
|
|
|
impl NixCommand for Command {
|
|
|
|
/// Runs the command with stdout and stderr passed through to the user.
|
|
|
|
async fn passthrough(&mut self) -> NixResult<()> {
|
|
|
|
let exit = self
|
2020-12-18 01:27:44 -08:00
|
|
|
.spawn()?
|
2020-12-15 20:21:26 -08:00
|
|
|
.wait()
|
2020-12-18 01:27:44 -08:00
|
|
|
.await?;
|
2020-12-15 20:21:26 -08:00
|
|
|
|
|
|
|
if exit.success() {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(match exit.code() {
|
|
|
|
Some(exit_code) => NixError::NixFailure { exit_code },
|
|
|
|
None => NixError::NixKilled,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Captures output as a String.
|
|
|
|
async fn capture_output(&mut self) -> NixResult<String> {
|
|
|
|
// We want the user to see the raw errors
|
|
|
|
let output = self
|
|
|
|
.stdout(Stdio::piped())
|
|
|
|
.stderr(Stdio::inherit())
|
2020-12-18 01:27:44 -08:00
|
|
|
.spawn()?
|
2020-12-15 20:21:26 -08:00
|
|
|
.wait_with_output()
|
2020-12-18 01:27:44 -08:00
|
|
|
.await?;
|
2020-12-15 20:21:26 -08:00
|
|
|
|
|
|
|
if output.status.success() {
|
|
|
|
// FIXME: unwrap
|
|
|
|
Ok(String::from_utf8(output.stdout).unwrap())
|
|
|
|
} else {
|
|
|
|
Err(match output.status.code() {
|
|
|
|
Some(exit_code) => NixError::NixFailure { exit_code },
|
|
|
|
None => NixError::NixKilled,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Captures deserialized output from JSON.
|
|
|
|
async fn capture_json<T>(&mut self) -> NixResult<T> where T: DeserializeOwned {
|
|
|
|
let output = self.capture_output().await?;
|
|
|
|
serde_json::from_str(&output).map_err(|_| NixError::BadOutput {
|
|
|
|
output: output.clone()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Captures a single store path.
|
|
|
|
async fn capture_store_path(&mut self) -> NixResult<StorePath> {
|
|
|
|
let output = self.capture_output().await?;
|
2021-01-24 14:08:48 -08:00
|
|
|
let path = output.trim_end().to_owned();
|
|
|
|
StorePath::try_from(path)
|
2020-12-15 20:21:26 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-24 14:08:48 -08:00
|
|
|
#[async_trait]
|
|
|
|
impl NixCommand for CommandExecution {
|
|
|
|
async fn passthrough(&mut self) -> NixResult<()> {
|
|
|
|
self.run().await
|
2020-12-18 01:27:44 -08:00
|
|
|
}
|
|
|
|
|
2021-01-24 14:08:48 -08:00
|
|
|
/// Captures output as a String.
|
|
|
|
async fn capture_output(&mut self) -> NixResult<String> {
|
|
|
|
self.run().await?;
|
|
|
|
let (stdout, _) = self.get_logs();
|
2020-12-18 01:27:44 -08:00
|
|
|
|
2021-01-24 14:08:48 -08:00
|
|
|
Ok(stdout.unwrap().to_owned())
|
2020-12-15 20:21:26 -08:00
|
|
|
}
|
|
|
|
|
2021-01-24 14:08:48 -08:00
|
|
|
/// Captures deserialized output from JSON.
|
|
|
|
async fn capture_json<T>(&mut self) -> NixResult<T> where T: DeserializeOwned {
|
|
|
|
let output = self.capture_output().await?;
|
|
|
|
serde_json::from_str(&output).map_err(|_| NixError::BadOutput {
|
|
|
|
output: output.clone()
|
2020-12-15 20:21:26 -08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-01-24 14:08:48 -08:00
|
|
|
/// Captures a single store path.
|
|
|
|
async fn capture_store_path(&mut self) -> NixResult<StorePath> {
|
|
|
|
let output = self.capture_output().await?;
|
|
|
|
let path = output.trim_end().to_owned();
|
|
|
|
StorePath::try_from(path)
|
2020-12-15 20:21:26 -08:00
|
|
|
}
|
|
|
|
}
|