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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
use SystemTime;
use crateProcessControlAction;
use crate;
/// Events emitted during task execution lifecycle
///
/// `TaskEvent` represents all events that occur during task execution,
/// from process start to completion. These events enable real-time monitoring
/// and event-driven programming patterns.
///
/// # Event Flow
///
/// A typical task execution emits events in this order:
/// 1. `Started` - Process has been spawned
/// 2. `Output` - Output lines from stdout/stderr (ongoing)
/// 3. `Ready` - Ready indicator detected (optional, for long-running processes)
/// 4. `Stopped` - Process has completed, with exit code and reason
/// - Exit code is `Some(code)` for natural completion
/// - Exit code is `None` for terminated processes (timeout, manual termination)
/// 5. `Error` - Error related to task execution
///
/// # Examples
///
/// ## Basic Event Processing
/// ```rust
/// use tcrm_task::tasks::{config::TaskConfig, tokio::executor::TaskExecutor, event::TaskEvent};
/// use tokio::sync::mpsc;
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// #[cfg(windows)]
/// let config = TaskConfig::new("cmd").args(["/C", "echo", "hello", "world"]);
/// #[cfg(unix)]
/// let config = TaskConfig::new("echo").args(["hello", "world"]);
///
/// let (tx, mut rx) = mpsc::channel(100);
/// let mut executor = TaskExecutor::new(config, tx);
///
/// executor.coordinate_start().await?;
///
/// while let Some(envelope) = rx.recv().await {
/// match envelope.event {
/// TaskEvent::Started { process_id, .. } => {
/// println!("Process started with ID: {}", process_id);
/// }
/// TaskEvent::Output { line, .. } => {
/// println!("Output: {}", line);
/// }
/// TaskEvent::Stopped { exit_code, .. } => {
/// match exit_code {
/// Some(code) => println!("Process completed with code {}", code),
/// None => println!("Process was terminated"),
/// }
/// break;
/// }
/// TaskEvent::Error { error } => {
/// eprintln!("Error: {}", error);
/// break;
/// }
/// _ => {}
/// }
/// }
///
/// Ok(())
/// }
/// ```
///
/// ## Server Ready Detection
/// ```rust
/// use tcrm_task::tasks::{
/// config::{TaskConfig, StreamSource},
/// tokio::executor::TaskExecutor,
/// event::TaskEvent
/// };
/// use tokio::sync::mpsc;
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// #[cfg(windows)]
/// let config = TaskConfig::new("cmd")
/// .args(["/C", "echo", "Server listening"])
/// .ready_indicator("Server listening")
/// .ready_indicator_source(StreamSource::Stdout);
///
/// #[cfg(unix)]
/// let config = TaskConfig::new("echo")
/// .args(["Server listening"])
/// .ready_indicator("Server listening")
/// .ready_indicator_source(StreamSource::Stdout);
///
/// let (tx, mut rx) = mpsc::channel(100);
/// let mut executor = TaskExecutor::new(config, tx);
/// executor.coordinate_start().await?;
///
/// while let Some(envelope) = rx.recv().await {
/// match envelope.event {
/// TaskEvent::Ready => {
/// println!("Server is ready for requests!");
/// // Server is now ready - can start sending requests
/// break;
/// }
/// TaskEvent::Output { line, .. } => {
/// println!("Server log: {}", line);
/// }
/// _ => {}
/// }
/// }
///
/// Ok(())
/// }
/// ```
/// Envelope for a task event, associating an event with a unique identifier.
///
/// `TaskEventEnvelope` is used to wrap a `TaskEvent` with an associated `id`,
/// which typically represents the logical task or job this event belongs to.
/// This is useful in systems where multiple tasks are running concurrently and
/// events from different tasks need to be distinguished or routed by their id.
///
/// # Fields
/// * `id` - Unique identifier for the task or job (e.g., UUID, name, or handle)
/// * `event` - The actual event describing a state change or output for the task
/// Reason why a task stopped executing
///
/// Provides detailed information about why a process completed,
/// whether due to natural completion, termination, or error.
///
/// # Exit Code Relationship
///
/// - `Finished`: Process completed naturally - exit code is `Some(code)`
/// - `Terminated(_)`: Process was killed - exit code is `None`
/// - `Error(_)`: Process encountered an error - exit code behavior varies
///
/// # Examples
///
/// ```rust
/// use tcrm_task::tasks::{event::TaskStopReason, event::TaskTerminateReason};
///
/// // Natural completion
/// let reason = TaskStopReason::Finished;
///
/// // Terminated due to timeout
/// let reason = TaskStopReason::Terminated(TaskTerminateReason::Timeout);
///
/// // Terminated due to error
/// let reason = TaskStopReason::Error(tcrm_task::tasks::error::TaskError::IO("Process crashed".to_string()));
/// ```
/// Reason for terminating a running task
///
/// Provides context about why a task termination was requested,
/// enabling appropriate cleanup and response handling.
///
/// # Examples
///
/// ## Timeout Termination
/// ```rust
/// use tcrm_task::tasks::{
/// config::TaskConfig,
/// tokio::executor::TaskExecutor,
/// event::TaskTerminateReason
/// };
/// use tokio::sync::mpsc;
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// #[cfg(windows)]
/// let config = TaskConfig::new("cmd").args(["/C", "timeout", "/t", "5"]); // 5 second sleep
/// #[cfg(unix)]
/// let config = TaskConfig::new("sleep").args(["5"]); // 5 second sleep
///
/// let (tx, _rx) = mpsc::channel(100);
/// let mut executor = TaskExecutor::new(config, tx);
///
/// executor.coordinate_start().await?;
///
/// // Terminate after 1 second
/// tokio::time::sleep(tokio::time::Duration::from_secs(1)).await;
///
/// Ok(())
/// }
/// ```
///
/// ## Cleanup Termination
/// ```rust
/// use tcrm_task::tasks::{
/// config::TaskConfig,
/// tokio::executor::TaskExecutor,
/// event::TaskTerminateReason
/// };
/// use tokio::sync::mpsc;
/// use crate::tcrm_task::tasks::control::TaskControl;
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// #[cfg(windows)]
/// let config = TaskConfig::new("cmd").args(["/C", "echo", "running"]);
/// #[cfg(unix)]
/// let config = TaskConfig::new("echo").args(["running"]);
///
/// let (tx, _rx) = mpsc::channel(100);
/// let mut executor = TaskExecutor::new(config, tx);
///
/// executor.coordinate_start().await?;
///
/// let reason = TaskTerminateReason::UserRequested;
/// executor.terminate_task(reason)?;
/// Ok(())
/// }
/// ```