-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathlib.rs
130 lines (105 loc) · 3.38 KB
/
lib.rs
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
use std::io;
use std::process::Command;
use std::process::Stdio;
use std::time::Duration;
use futures_lite::io::BufReader;
use futures_lite::prelude::*;
use process_control::ChildExt;
use process_control::Control;
pub fn async_process_example() {
futures_lite::future::block_on(async {
let mut child = async_process::Command::new("find")
.arg(".")
.stdout(Stdio::piped())
.spawn()
.unwrap();
let mut lines = BufReader::new(child.stdout.take().unwrap()).lines();
while let Some(line) = lines.next().await {
println!("{}", line.unwrap());
}
});
}
pub fn process_control_example() {
let process = Command::new("echo")
.arg("hello")
.stdout(Stdio::piped())
.spawn()
.unwrap();
let output = process
.controlled_with_output()
.time_limit(Duration::from_secs(1))
.terminate_for_timeout()
.wait()
.unwrap()
.ok_or_else(|| io::Error::new(io::ErrorKind::TimedOut, "Process timed out"))
.unwrap();
assert_eq!(b"hello", &output.stdout[..5]);
}
pub fn easy_process_example() {
// stdout
if let Ok(output) = easy_process::run(r#"sh -c 'echo "1 2 3 4"'"#) {
assert_eq!(&output.stdout, "1 2 3 4\n");
}
// stderr
if let Ok(output) = easy_process::run(r#"sh -c 'echo "1 2 3 4" >&2'"#) {
assert_eq!(&output.stderr, "1 2 3 4\n");
}
}
pub fn pipe() {
// 创建两个子进程,一个作为生产者,一个作为消费者
// 生产者进程
let producer = Command::new("echo")
.arg("Hello, Rust!")
.stdout(Stdio::piped())
.spawn()
.expect("Failed to start producer command");
// 消费者进程
let consumer = Command::new("grep")
.arg("Rust")
.stdin(producer.stdout.unwrap())
.output()
.expect("Failed to start consumer command");
// 获取消费者的输出
let output = String::from_utf8_lossy(&consumer.stdout);
println!("Output: {:?}", output);
}
pub fn spawn_a_process() {
let output = Command::new("echo")
.arg("Hello world")
.output()
.expect("Failed to execute command");
assert_eq!(b"Hello world\n", output.stdout.as_slice());
}
pub fn process_io() {
let echo_child = Command::new("echo")
.arg("Oh no, a tpyo!")
.stdout(Stdio::piped())
.spawn()
.expect("Failed to start echo process");
let echo_out = echo_child.stdout.expect("Failed to open echo stdout");
let sed_child = Command::new("sed")
.arg("s/tpyo/typo/")
.stdin(Stdio::from(echo_out))
.stdout(Stdio::piped())
.spawn()
.expect("Failed to start sed process");
let output = sed_child.wait_with_output().expect("Failed to wait on sed");
assert_eq!(b"Oh no, a typo!\n", output.stdout.as_slice());
}
pub fn child() {
let mut child = Command::new("/bin/cat")
.arg("Cargo.toml")
.spawn()
.expect("failed to execute child");
let ecode = child.wait().expect("failed to wait on child");
assert!(ecode.success());
}
pub fn kill() {
let mut command = Command::new("yes");
if let Ok(mut child) = command.spawn() {
println!("Child's ID is {}", child.id());
child.kill().expect("command wasn't running");
} else {
println!("yes command didn't start");
}
}