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
/// Execution state of a task throughout its lifecycle
///
/// `TaskState` tracks the progression of a task from creation through completion.
/// States transition in a defined order, enabling event-driven tasks execution.
///
/// # State Transitions
///
/// ```text
/// Pending → Initiating → Running → [Ready] → Finished
/// ↘
/// → Finished
/// ```
///
/// The Ready state is optional and only occurs for long-running processes
/// with a configured ready indicator.
///
/// # Examples
///
/// ## State Monitoring
/// ```rust
/// use tcrm_task::tasks::{config::TaskConfig, tokio::executor::TaskExecutor, state::TaskState, control::TaskStatusInfo};
/// use tokio::sync::mpsc;
///
/// #[tokio::main]
/// async fn main() {
/// #[cfg(windows)]
/// let config = TaskConfig::new("cmd").args(["/C", "echo", "hello"]);
/// #[cfg(unix)]
/// let config = TaskConfig::new("echo").args(["hello"]);
///
/// let (tx, _rx) = mpsc::channel(100);
/// let executor = TaskExecutor::new(config, tx);
///
/// // Initially pending
/// assert_eq!(executor.get_task_state(), TaskState::Pending);
///
/// // After calling coordinate_start(), state will progress through:
/// // Pending → Initiating → Running → Finished
/// }
/// ```
///
/// ## Basic State Checking
/// ```rust
/// use tcrm_task::tasks::{
/// config::TaskConfig,
/// tokio::executor::TaskExecutor,
/// state::TaskState,
/// control::TaskStatusInfo
/// };
/// 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"]);
/// #[cfg(unix)]
/// let config = TaskConfig::new("echo").args(["hello"]);
///
/// let (tx, _rx) = mpsc::channel(100);
/// let executor = TaskExecutor::new(config, tx);
///
/// // Check initial state
/// let state = executor.get_task_state();
/// assert_eq!(state, TaskState::Pending);
/// println!("Task is in {:?} state", state);
///
/// Ok(())
/// }
/// ```
/// Represents the state of a spawned process during its lifecycle.
///
/// `ProcessState` is used to track whether a process is running, paused, or stopped.