aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornotgne22021-02-09 02:56:35 -0700
committerGitHub2021-02-09 02:56:35 -0700
commit4f956e0979d6e2617a0800062627a345337bff71 (patch)
tree72608f0fd22bdb3ccba7465f1430c0f823e9f04a
parent96a268db2dceb6b6c63d3fa2d47e2c188a1b11f4 (diff)
parent7ee0f7eb4d315fdc0a44f09eef2e180ae27b91d0 (diff)
Merge pull request #59 from serokell/notgne2/wait-for-activate
Wait for activation
-rw-r--r--src/deploy.rs128
1 files changed, 85 insertions, 43 deletions
diff --git a/src/deploy.rs b/src/deploy.rs
index 686c7b7..54d5ea7 100644
--- a/src/deploy.rs
+++ b/src/deploy.rs
@@ -138,6 +138,57 @@ fn test_wait_command_builder() {
}
#[derive(Error, Debug)]
+pub enum ConfirmProfileError {
+ #[error("Failed to run confirmation command over SSH (the server should roll back): {0}")]
+ SSHConfirmError(std::io::Error),
+ #[error(
+ "Confirming activation over SSH resulted in a bad exit code (the server should roll back): {0:?}"
+ )]
+ SSHConfirmExitError(Option<i32>),
+}
+
+pub async fn confirm_profile(
+ deploy_data: &super::DeployData<'_>,
+ deploy_defs: &super::DeployDefs,
+ hostname: &str,
+ temp_path: Cow<'_, str>,
+) -> Result<(), ConfirmProfileError> {
+ let mut c = Command::new("ssh");
+ let mut ssh_confirm_command = c.arg(format!("ssh://{}@{}", deploy_defs.ssh_user, hostname));
+
+ for ssh_opt in &deploy_data.merged_settings.ssh_opts {
+ ssh_confirm_command = ssh_confirm_command.arg(ssh_opt);
+ }
+
+ let lock_path = super::make_lock_path(&temp_path, &deploy_data.profile.profile_settings.path);
+
+ let mut confirm_command = format!("rm {}", lock_path);
+ if let Some(sudo_cmd) = &deploy_defs.sudo {
+ confirm_command = format!("{} {}", sudo_cmd, confirm_command);
+ }
+
+ debug!(
+ "Attempting to run command to confirm deployment: {}",
+ confirm_command
+ );
+
+ let ssh_confirm_exit_status = ssh_confirm_command
+ .arg(confirm_command)
+ .status()
+ .await
+ .map_err(ConfirmProfileError::SSHConfirmError)?;
+
+ match ssh_confirm_exit_status.code() {
+ Some(0) => (),
+ a => return Err(ConfirmProfileError::SSHConfirmExitError(a)),
+ };
+
+ info!("Deployment confirmed.");
+
+ Ok(())
+}
+
+#[derive(Error, Debug)]
pub enum DeployProfileError {
#[error("Failed to spawn activation command over SSH: {0}")]
SSHSpawnActivateError(std::io::Error),
@@ -152,12 +203,8 @@ pub enum DeployProfileError {
#[error("Waiting over SSH resulted in a bad exit code: {0:?}")]
SSHWaitExitError(Option<i32>),
- #[error("Failed to run confirmation command over SSH (the server should roll back): {0}")]
- SSHConfirmError(std::io::Error),
- #[error(
- "Confirming activation over SSH resulted in a bad exit code (the server should roll back): {0:?}"
- )]
- SSHConfirmExitError(Option<i32>),
+ #[error("Error confirming deployment: {0}")]
+ ConfirmError(#[from] ConfirmProfileError),
}
pub async fn deploy_profile(
@@ -246,51 +293,46 @@ pub async fn deploy_profile(
ssh_wait_command.arg(ssh_opt);
}
- let ssh_wait_exit_status = ssh_wait_command
- .arg(self_wait_command)
- .status()
- .await
- .map_err(DeployProfileError::SSHWaitError)?;
-
- match ssh_wait_exit_status.code() {
- Some(0) => (),
- a => return Err(DeployProfileError::SSHWaitExitError(a)),
- };
+ let (send_activate, recv_activate) = tokio::sync::oneshot::channel();
+ let (send_activated, recv_activated) = tokio::sync::oneshot::channel();
- info!("Success activating, attempting to confirm activation");
+ tokio::spawn(async move {
+ let o = ssh_activate.wait_with_output().await;
- let mut c = Command::new("ssh");
- let mut ssh_confirm_command = c.arg(format!("ssh://{}@{}", deploy_defs.ssh_user, hostname));
+ let maybe_err = match o {
+ Err(x) => Some(DeployProfileError::SSHActivateError(x)),
+ Ok(ref x) => match x.status.code() {
+ Some(0) => None,
+ a => Some(DeployProfileError::SSHActivateExitError(a)),
+ },
+ };
- for ssh_opt in &deploy_data.merged_settings.ssh_opts {
- ssh_confirm_command = ssh_confirm_command.arg(ssh_opt);
- }
+ if let Some(err) = maybe_err {
+ send_activate.send(err).unwrap();
+ }
- let lock_path =
- super::make_lock_path(&temp_path, &deploy_data.profile.profile_settings.path);
+ send_activated.send(()).unwrap();
+ });
- let mut confirm_command = format!("rm {}", lock_path);
- if let Some(sudo_cmd) = &deploy_defs.sudo {
- confirm_command = format!("{} {}", sudo_cmd, confirm_command);
+ tokio::select! {
+ x = ssh_wait_command.arg(self_wait_command).status() => {
+ debug!("Wait command ended");
+ match x.map_err(DeployProfileError::SSHWaitError)?.code() {
+ Some(0) => (),
+ a => return Err(DeployProfileError::SSHWaitExitError(a)),
+ };
+ },
+ x = recv_activate => {
+ debug!("Activate command exited with an error");
+ return Err(x.unwrap());
+ },
}
- debug!(
- "Attempting to run command to confirm deployment: {}",
- confirm_command
- );
-
- let ssh_exit_status = ssh_confirm_command
- .arg(confirm_command)
- .status()
- .await
- .map_err(DeployProfileError::SSHConfirmError)?;
-
- match ssh_exit_status.code() {
- Some(0) => (),
- a => return Err(DeployProfileError::SSHConfirmExitError(a)),
- };
+ info!("Success activating, attempting to confirm activation");
- info!("Deployment confirmed.");
+ let c = confirm_profile(deploy_data, deploy_defs, hostname, temp_path).await;
+ recv_activated.await.unwrap();
+ c?;
}
Ok(())