mirror of
https://github.com/chipsenkbeil/distant.git
synced 2024-11-11 01:10:30 +00:00
Refactor distant-ssh2 is_windows with fix for exec command
This commit is contained in:
parent
22b2a351de
commit
b9c00153a0
7
Cargo.lock
generated
7
Cargo.lock
generated
@ -834,7 +834,6 @@ dependencies = [
|
|||||||
"shell-words",
|
"shell-words",
|
||||||
"smol",
|
"smol",
|
||||||
"tokio",
|
"tokio",
|
||||||
"typed-path",
|
|
||||||
"wezterm-ssh",
|
"wezterm-ssh",
|
||||||
"which",
|
"which",
|
||||||
"whoami",
|
"whoami",
|
||||||
@ -3044,12 +3043,6 @@ dependencies = [
|
|||||||
"once_cell",
|
"once_cell",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "typed-path"
|
|
||||||
version = "0.1.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "0303bfe6ef379273be7ce99d8a6a2e54261fd110a01cf70986ec0fe855ff075e"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "typenum"
|
name = "typenum"
|
||||||
version = "1.15.0"
|
version = "1.15.0"
|
||||||
|
@ -29,7 +29,6 @@ rpassword = "7.0.0"
|
|||||||
shell-words = "1.1.0"
|
shell-words = "1.1.0"
|
||||||
smol = "1.2.5"
|
smol = "1.2.5"
|
||||||
tokio = { version = "1.20.1", features = ["full"] }
|
tokio = { version = "1.20.1", features = ["full"] }
|
||||||
typed-path = "0.1.0"
|
|
||||||
wezterm-ssh = { version = "0.4.0", default-features = false }
|
wezterm-ssh = { version = "0.4.0", default-features = false }
|
||||||
winsplit = "0.1.0"
|
winsplit = "0.1.0"
|
||||||
|
|
||||||
|
@ -507,7 +507,7 @@ impl Ssh {
|
|||||||
|
|
||||||
INSTANCE
|
INSTANCE
|
||||||
.get_or_try_init(async move {
|
.get_or_try_init(async move {
|
||||||
let is_windows = utils::is_windows(&self.session.sftp()).await?;
|
let is_windows = utils::is_windows(&self.session).await?;
|
||||||
|
|
||||||
Ok(if is_windows {
|
Ok(if is_windows {
|
||||||
SshFamily::Windows
|
SshFamily::Windows
|
||||||
|
@ -4,7 +4,6 @@ use std::{
|
|||||||
path::{Path, PathBuf},
|
path::{Path, PathBuf},
|
||||||
time::Duration,
|
time::Duration,
|
||||||
};
|
};
|
||||||
use typed_path::{windows::WindowsComponent, WindowsEncoding, WindowsPathBuf};
|
|
||||||
use wezterm_ssh::{ExecResult, Session, Sftp};
|
use wezterm_ssh::{ExecResult, Session, Sftp};
|
||||||
|
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
@ -37,12 +36,16 @@ impl fmt::Debug for ExecOutput {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
pub async fn execute_output(session: &Session, cmd: &str) -> io::Result<ExecOutput> {
|
pub async fn execute_output(
|
||||||
|
session: &Session,
|
||||||
|
cmd: &str,
|
||||||
|
timeout: Option<Duration>,
|
||||||
|
) -> io::Result<ExecOutput> {
|
||||||
let ExecResult {
|
let ExecResult {
|
||||||
mut child,
|
mut child,
|
||||||
mut stdout,
|
mut stdout,
|
||||||
mut stderr,
|
mut stderr,
|
||||||
..
|
stdin: _stdin,
|
||||||
} = session
|
} = session
|
||||||
.exec(cmd, None)
|
.exec(cmd, None)
|
||||||
.compat()
|
.compat()
|
||||||
@ -74,13 +77,24 @@ pub async fn execute_output(session: &Session, cmd: &str) -> io::Result<ExecOutp
|
|||||||
let stdout_handle = spawn_reader!(stdout);
|
let stdout_handle = spawn_reader!(stdout);
|
||||||
let stderr_handle = spawn_reader!(stderr);
|
let stderr_handle = spawn_reader!(stderr);
|
||||||
|
|
||||||
// Wait for our handles to conclude
|
|
||||||
let stdout = stdout_handle.await.map_err(to_other_error)??;
|
|
||||||
let stderr = stderr_handle.await.map_err(to_other_error)??;
|
|
||||||
|
|
||||||
// Wait for process to conclude
|
// Wait for process to conclude
|
||||||
let status = child.async_wait().compat().await.map_err(to_other_error)?;
|
let status = child.async_wait().compat().await.map_err(to_other_error)?;
|
||||||
|
|
||||||
|
// Wait for our handles to conclude (max of timeout if provided)
|
||||||
|
let (stdout, stderr) = match timeout {
|
||||||
|
Some(duration) => {
|
||||||
|
let (res1, res2) = tokio::try_join!(
|
||||||
|
tokio::time::timeout(duration, stdout_handle),
|
||||||
|
tokio::time::timeout(duration, stderr_handle)
|
||||||
|
)?;
|
||||||
|
(res1??, res2??)
|
||||||
|
}
|
||||||
|
None => {
|
||||||
|
let (res1, res2) = tokio::try_join!(stdout_handle, stderr_handle)?;
|
||||||
|
(res1?, res2?)
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
Ok(ExecOutput {
|
Ok(ExecOutput {
|
||||||
success: status.success(),
|
success: status.success(),
|
||||||
stdout,
|
stdout,
|
||||||
@ -96,31 +110,30 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Determines if using windows by checking the canonicalized path of '.'
|
/// Determines if using windows by checking the canonicalized path of '.'
|
||||||
pub async fn is_windows(sftp: &Sftp) -> io::Result<bool> {
|
pub async fn is_windows(session: &Session) -> io::Result<bool> {
|
||||||
// Look up the current directory
|
let output = execute_output(
|
||||||
let current_dir = canonicalize(sftp, ".").await?;
|
session,
|
||||||
|
"cmd.exe /C echo %OS%",
|
||||||
|
Some(Duration::from_secs(1)),
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
|
||||||
// TODO: Ideally, we would determine the family using something like the following:
|
fn contains_subslice(slice: &[u8], subslice: &[u8]) -> bool {
|
||||||
//
|
for i in 0..slice.len() {
|
||||||
// cmd.exe /C echo %OS%
|
if i + subslice.len() > slice.len() {
|
||||||
//
|
break;
|
||||||
// Determine OS by printing OS variable (works with Windows 2000+)
|
}
|
||||||
// If it matches Windows_NT, then we are on windows
|
|
||||||
//
|
if slice[i..].starts_with(subslice) {
|
||||||
// However, the above is not working for whatever reason (always has success == false); so,
|
return true;
|
||||||
// we're purely using a check if we have a drive letter on the canonicalized path to
|
}
|
||||||
// determine if on windows for now. Some sort of failure with SIGPIPE
|
}
|
||||||
let windows_path = WindowsPathBuf::from(current_dir.to_string_lossy().to_string());
|
|
||||||
let mut components = windows_path.components();
|
false
|
||||||
if let Some(WindowsComponent::Prefix(_)) = components.next() {
|
|
||||||
Ok(true)
|
|
||||||
} else if let Some(WindowsComponent::Prefix(_)) =
|
|
||||||
components.as_path::<WindowsEncoding>().components().next()
|
|
||||||
{
|
|
||||||
Ok(true)
|
|
||||||
} else {
|
|
||||||
Ok(false)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Ok(contains_subslice(&output.stdout, b"Windows_NT")
|
||||||
|
|| contains_subslice(&output.stderr, b"Windows_NT"))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Performs canonicalization of the given path using SFTP
|
/// Performs canonicalization of the given path using SFTP
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
use crate::{sshd::*, utils};
|
use crate::sshd::*;
|
||||||
use assert_fs::{prelude::*, TempDir};
|
use assert_fs::{prelude::*, TempDir};
|
||||||
use distant_core::{
|
use distant_core::{
|
||||||
data::{ChangeKindSet, Environment, FileType, Metadata},
|
data::{ChangeKindSet, Environment, FileType, Metadata},
|
||||||
@ -1441,12 +1441,7 @@ async fn system_info_should_return_system_info_based_on_binary(
|
|||||||
|
|
||||||
let system_info = client.system_info().await.unwrap();
|
let system_info = client.system_info().await.unwrap();
|
||||||
|
|
||||||
// NOTE: This is failing on our Github CI for Windows as I think it's running via wsl
|
assert_eq!(system_info.family, std::env::consts::FAMILY.to_string());
|
||||||
// and being read as Unix, but could be wrong. Either way, ignoring for now
|
|
||||||
if !*utils::IS_CI {
|
|
||||||
assert_eq!(system_info.family, std::env::consts::FAMILY.to_string());
|
|
||||||
}
|
|
||||||
|
|
||||||
assert_eq!(system_info.os, "");
|
assert_eq!(system_info.os, "");
|
||||||
assert_eq!(system_info.arch, "");
|
assert_eq!(system_info.arch, "");
|
||||||
assert_eq!(system_info.main_separator, std::path::MAIN_SEPARATOR);
|
assert_eq!(system_info.main_separator, std::path::MAIN_SEPARATOR);
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
use crate::{sshd::*, utils};
|
use crate::sshd::*;
|
||||||
use assert_fs::{prelude::*, TempDir};
|
use assert_fs::{prelude::*, TempDir};
|
||||||
use distant_core::{
|
use distant_core::{
|
||||||
data::{ChangeKindSet, Environment, FileType, Metadata},
|
data::{ChangeKindSet, Environment, FileType, Metadata},
|
||||||
@ -1463,12 +1463,7 @@ async fn system_info_should_return_system_info_based_on_binary(
|
|||||||
|
|
||||||
let system_info = client.system_info().await.unwrap();
|
let system_info = client.system_info().await.unwrap();
|
||||||
|
|
||||||
// NOTE: This is failing on our Github CI for Windows as I think it's running via wsl
|
assert_eq!(system_info.family, std::env::consts::FAMILY.to_string());
|
||||||
// and being read as Unix, but could be wrong. Either way, ignoring for now
|
|
||||||
if !*utils::IS_CI {
|
|
||||||
assert_eq!(system_info.family, std::env::consts::FAMILY.to_string());
|
|
||||||
}
|
|
||||||
|
|
||||||
assert_eq!(system_info.os, std::env::consts::OS.to_string());
|
assert_eq!(system_info.os, std::env::consts::OS.to_string());
|
||||||
assert_eq!(system_info.arch, std::env::consts::ARCH.to_string());
|
assert_eq!(system_info.arch, std::env::consts::ARCH.to_string());
|
||||||
assert_eq!(system_info.main_separator, std::path::MAIN_SEPARATOR);
|
assert_eq!(system_info.main_separator, std::path::MAIN_SEPARATOR);
|
||||||
|
Loading…
Reference in New Issue
Block a user