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
//! Low-level process management utilities.
use ;
/// Errors that can occur during process operations.
/// Current status of a running process.
/// Spawn a new process with piped stdout and stderr.
///
/// Launches a subprocess with the given command and arguments.
/// Both stdout and stderr are piped and can be accessed via the returned Child.
///
/// # Arguments
///
/// * `cmd` - Command to execute
/// * `args` - Command line arguments
///
/// # Examples
///
/// ```rust
/// use ej_io::process::spawn_process;
///
/// let mut child = spawn_process("echo", vec!["Hello".to_string()]).unwrap();
/// let output = child.stdout.take().unwrap();
/// ```
/// Check process status without blocking.
///
/// Polls the process status in a non-blocking manner. Includes a small 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
///
/// # Examples
///
/// ```rust
/// use ej_io::process::{spawn_process, get_process_status, ProcessStatus};
///
/// let mut child = spawn_process("sleep", vec!["1".to_string()]).unwrap();
///
/// loop {
/// match get_process_status(&mut child).unwrap() {
/// ProcessStatus::Done(exit_status) => {
/// println!("Process finished with: {:?}", exit_status);
/// break;
/// }
/// ProcessStatus::Running => {
/// println!("Still running...");
/// }
/// }
/// }
/// ```
/// Terminate a child process.
///
/// Sends a kill signal to the child process.
///
/// # Examples
///
/// ```rust
/// use ej_io::process::{spawn_process, stop_child};
///
/// let mut child = spawn_process("sleep", vec!["60".to_string()]).unwrap();
/// stop_child(&mut child).unwrap();
/// ```
/// Capture the exit status of a child process.
///
/// Waits for the child process to complete and returns its exit status.
/// This will close the stdin pipe, which can unblock processes waiting for input.
///
/// # Examples
///
/// ```rust
/// use ej_io::process::{spawn_process, capture_exit_status};
///
/// let mut child = spawn_process("echo", vec!["done".to_string()]).unwrap();
/// let exit_status = capture_exit_status(&mut child).unwrap();
/// assert!(exit_status.success());
/// ```
/// 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.
///
/// # Arguments
///
/// * `child` - Mutable reference to the child process
/// * `should_stop` - Atomic flag to signal process termination
///
/// # Examples
///
/// ```rust
/// use ej_io::process::{spawn_process, wait_child};
/// use std::sync::{Arc, atomic::AtomicBool};
///
/// 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).unwrap();
/// assert!(exit_status.success());
/// ```