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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
//! Low-level async process management utilities.
use ;
use ;
/// Errors that can occur during process operations.
/// Current status of a running process.
/// Spawn a new async process with piped stdout and stderr.
///
/// Launches a subprocess with the given command and arguments using tokio.
/// Both stdout and stderr are piped and can be accessed via the returned Child.
///
/// # Arguments
///
/// * `cmd` - Command to execute
/// * `args` - Command line arguments
///
/// # Returns
///
/// Returns a `Result<Child, io::Error>` - the spawned tokio process or an error.
///
/// # Examples
///
/// ```rust
/// use ej_io::process::spawn_process;
///
/// #[tokio::main]
/// async fn main() {
/// let mut child = spawn_process("echo", vec!["Hello".to_string()]).unwrap();
/// let output = child.stdout.take().unwrap();
/// }
/// ```
/// Asynchronously check process status without blocking.
///
/// Polls the process status in a non-blocking manner using tokio. Includes a small async sleep
/// to prevent excessive CPU usage when called in a loop.
///
/// Note: This function may never return `ProcessStatus::Done` if the process
/// is blocked waiting for stdin. Use `stop_child` and `capture_exit_status`
/// to handle such cases.
///
/// # Arguments
///
/// * `child` - Mutable reference to the child process
///
/// # Returns
///
/// Returns a `Result<ProcessStatus, ProcessError>` indicating the current process state.
///
/// # Examples
///
/// ```rust
/// use ej_io::process::{spawn_process, get_process_status, ProcessStatus};
///
/// #[tokio::main]
/// async fn main() {
/// let mut child = spawn_process("sleep", vec!["1".to_string()]).unwrap();
///
/// loop {
/// match get_process_status(&mut child).await.unwrap() {
/// ProcessStatus::Done(exit_status) => {
/// println!("Process finished with: {:?}", exit_status);
/// break;
/// }
/// ProcessStatus::Running => {
/// println!("Still running...");
/// }
/// }
/// }
/// }
/// ```
pub async
/// Asynchronously terminate a child process.
///
/// Sends a kill signal to the child process using tokio.
///
/// # Arguments
///
/// * `child` - Mutable reference to the child process
///
/// # Returns
///
/// Returns a `Result<(), io::Error>` indicating success or failure.
///
/// # Examples
///
/// ```rust
/// use ej_io::process::{spawn_process, stop_child};
///
/// #[tokio::main]
/// async fn main() {
/// let mut child = spawn_process("sleep", vec!["60".to_string()]).unwrap();
/// stop_child(&mut child).await.unwrap();
/// }
/// ```
pub async
/// Asynchronously capture the exit status of a child process.
///
/// Waits for the child process to complete and returns its exit status using tokio.
/// This will close the stdin pipe, which can unblock processes waiting for input.
///
/// # Arguments
///
/// * `child` - Mutable reference to the child process
///
/// # Returns
///
/// Returns a `Result<ExitStatus, io::Error>` with the process exit status.
///
/// # Examples
///
/// ```rust
/// use ej_io::process::{spawn_process, capture_exit_status};
///
/// #[tokio::main]
/// async fn main() {
/// let mut child = spawn_process("echo", vec!["done".to_string()]).unwrap();
/// let exit_status = capture_exit_status(&mut child).await.unwrap();
/// assert!(exit_status.success());
/// }
/// ```
pub async
/// Asynchronously wait for a child process with cancellation support.
///
/// Waits for the child process to complete while periodically checking
/// if it should be cancelled via the atomic boolean flag. Uses tokio for async operation.
///
/// # Arguments
///
/// * `child` - Mutable reference to the child process
/// * `should_stop` - Atomic flag to signal process termination
///
/// # Returns
///
/// Returns a `Result<ExitStatus, ProcessError>` with the process exit status or error.
///
/// # Examples
///
/// ```rust
/// use ej_io::process::{spawn_process, wait_child};
/// use std::sync::{Arc, atomic::AtomicBool};
///
/// #[tokio::main]
/// async fn main() {
/// let mut child = spawn_process("sleep", vec!["1".to_string()]).unwrap();
/// let should_stop = Arc::new(AtomicBool::new(false));
///
/// let exit_status = wait_child(&mut child, should_stop).await.unwrap();
/// assert!(exit_status.success());
/// }
/// ```
pub async