1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
use std::process::{Child, Command, Stdio};
#[cfg(windows)]
use std::os::windows::process::CommandExt;
#[cfg(windows)]
const CREATE_NO_WINDOW: u32 = 0x08000000;
use tauri_utils::platform;
#[cfg(not(windows))]
pub fn get_output(cmd: String, args: Vec<String>, stdout: Stdio) -> crate::Result<String> {
let output = Command::new(cmd).args(args).stdout(stdout).output()?;
if output.status.success() {
Ok(String::from_utf8_lossy(&output.stdout).to_string())
} else {
Err(crate::Error::Command(String::from_utf8_lossy(&output.stderr).to_string()).into())
}
}
#[cfg(windows)]
pub fn get_output(cmd: String, args: Vec<String>, stdout: Stdio) -> crate::Result<String> {
let output = Command::new(cmd)
.args(args)
.stdout(stdout)
.creation_flags(CREATE_NO_WINDOW)
.output()?;
if output.status.success() {
Ok(String::from_utf8_lossy(&output.stdout).to_string())
} else {
Err(crate::Error::Command(String::from_utf8_lossy(&output.stderr).to_string()).into())
}
}
pub fn format_command(path: String, command: String) -> String {
if cfg!(windows) {
format!("{}/./{}.exe", path, command)
} else {
format!("{}/./{}", path, command)
}
}
pub fn relative_command(command: String) -> crate::Result<String> {
match std::env::current_exe()?.parent() {
Some(exe_dir) => Ok(format_command(exe_dir.display().to_string(), command)),
None => Err(crate::Error::Command("Could not evaluate executable dir".to_string()).into()),
}
}
#[cfg(not(windows))]
pub fn command_path(command: String) -> crate::Result<String> {
match std::env::current_exe()?.parent() {
Some(exe_dir) => Ok(format!("{}/{}", exe_dir.display().to_string(), command)),
None => Err(crate::Error::Command("Could not evaluate executable dir".to_string()).into()),
}
}
#[cfg(windows)]
pub fn command_path(command: String) -> crate::Result<String> {
match std::env::current_exe()?.parent() {
Some(exe_dir) => Ok(format!("{}/{}.exe", exe_dir.display().to_string(), command)),
None => Err(crate::Error::Command("Could not evaluate executable dir".to_string()).into()),
}
}
#[cfg(windows)]
pub fn spawn_relative_command(
command: String,
args: Vec<String>,
stdout: Stdio,
) -> crate::Result<Child> {
let cmd = relative_command(command)?;
Ok(
Command::new(cmd)
.args(args)
.creation_flags(CREATE_NO_WINDOW)
.stdout(stdout)
.spawn()?,
)
}
#[cfg(not(windows))]
pub fn spawn_relative_command(
command: String,
args: Vec<String>,
stdout: Stdio,
) -> crate::Result<Child> {
let cmd = relative_command(command)?;
Ok(Command::new(cmd).args(args).stdout(stdout).spawn()?)
}
pub fn binary_command(binary_name: String) -> crate::Result<String> {
Ok(format!("{}-{}", binary_name, platform::target_triple()?))
}
#[cfg(test)]
mod test {
use super::*;
use crate::Error;
use std::io;
use totems::{assert_err, assert_ok};
#[test]
fn test_cmd_output() {
let cmd = String::from("cat");
let res = get_output(cmd, vec!["test/test.txt".to_string()], Stdio::piped());
assert_ok!(&res);
if let Ok(s) = &res {
assert_eq!(*s, "This is a test doc!".to_string());
}
}
#[test]
fn test_cmd_fail() {
let cmd = String::from("cat");
let res = get_output(cmd, vec!["test/".to_string()], Stdio::piped());
assert_err!(&res);
if let Some(Error::Command(e)) = res.unwrap_err().downcast_ref::<Error>() {
assert_eq!(*e, "cat: test/: Is a directory\n".to_string());
}
}
#[test]
fn check_relateive_cmd() {
let cmd = String::from("cat");
let res = relative_command(cmd.clone());
assert_ok!(res);
let current_exe = std::env::current_exe()
.unwrap()
.parent()
.unwrap()
.display()
.to_string();
if let Ok(s) = &res {
assert_eq!(*s, format_command(current_exe, cmd));
}
}
#[test]
fn check_command_path() {
let cmd = String::from("cat");
let res = command_path(cmd);
assert_ok!(res);
}
#[test]
fn check_spawn_cmd() {
let cmd = String::from("cat");
let res = spawn_relative_command(cmd, vec!["test/test.txt".to_string()], Stdio::piped());
assert_err!(&res);
if let Some(s) = res.unwrap_err().downcast_ref::<io::Error>() {
assert_eq!(s.kind(), std::io::ErrorKind::NotFound);
}
}
}