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
//! Docker top command implementation.
//!
//! This module provides the `docker top` command for displaying running processes in a container.
use super::{CommandExecutor, CommandOutput, DockerCommand};
use crate::error::Result;
use async_trait::async_trait;
/// Docker top command builder
///
/// Display the running processes of a container.
///
/// # Example
///
/// ```no_run
/// use docker_wrapper::TopCommand;
///
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// // Show processes in a container
/// let processes = TopCommand::new("my-container")
/// .run()
/// .await?;
///
/// // Use custom ps options
/// let detailed = TopCommand::new("my-container")
/// .ps_options("aux")
/// .run()
/// .await?;
/// # Ok(())
/// # }
/// ```
#[derive(Debug, Clone)]
pub struct TopCommand {
/// Container name or ID
container: String,
/// ps command options
ps_options: Option<String>,
/// Command executor
pub executor: CommandExecutor,
}
impl TopCommand {
/// Create a new top command
///
/// # Example
///
/// ```
/// use docker_wrapper::TopCommand;
///
/// let cmd = TopCommand::new("my-container");
/// ```
#[must_use]
pub fn new(container: impl Into<String>) -> Self {
Self {
container: container.into(),
ps_options: None,
executor: CommandExecutor::new(),
}
}
/// Set ps command options
///
/// # Example
///
/// ```
/// use docker_wrapper::TopCommand;
///
/// // Show detailed process information
/// let cmd = TopCommand::new("my-container")
/// .ps_options("aux");
///
/// // Show processes with specific format
/// let cmd = TopCommand::new("my-container")
/// .ps_options("-eo pid,ppid,cmd,%mem,%cpu");
/// ```
#[must_use]
pub fn ps_options(mut self, options: impl Into<String>) -> Self {
self.ps_options = Some(options.into());
self
}
/// Execute the top command
///
/// # Errors
/// Returns an error if:
/// - The Docker daemon is not running
/// - The container doesn't exist
/// - The container is not running
///
/// # Example
///
/// ```no_run
/// use docker_wrapper::TopCommand;
///
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let result = TopCommand::new("my-container")
/// .run()
/// .await?;
///
/// if result.success() {
/// println!("Container processes:\n{}", result.output().stdout);
/// for process in result.processes() {
/// println!("PID: {}, CMD: {}", process.pid, process.command);
/// }
/// }
/// # Ok(())
/// # }
/// ```
pub async fn run(&self) -> Result<TopResult> {
let output = self.execute().await?;
// Parse process information from output
let processes = Self::parse_processes(&output.stdout);
Ok(TopResult {
output,
container: self.container.clone(),
processes,
})
}
/// Parse process information from top command output
fn parse_processes(stdout: &str) -> Vec<ContainerProcess> {
let mut processes = Vec::new();
let lines: Vec<&str> = stdout.lines().collect();
if lines.len() < 2 {
return processes;
}
// First line contains headers, skip it
let _headers = lines[0].split_whitespace().collect::<Vec<_>>();
// Parse each process line
for line in lines.iter().skip(1) {
let parts: Vec<&str> = line.split_whitespace().collect();
if !parts.is_empty() {
let process = ContainerProcess {
pid: (*parts.first().unwrap_or(&"")).to_string(),
user: if parts.len() > 1 {
parts[1].to_string()
} else {
String::new()
},
time: if parts.len() > 2 {
parts[2].to_string()
} else {
String::new()
},
command: if parts.len() > 3 {
parts[3..].join(" ")
} else {
String::new()
},
raw_line: (*line).to_string(),
};
processes.push(process);
}
}
processes
}
/// Gets the command executor
#[must_use]
pub fn get_executor(&self) -> &CommandExecutor {
&self.executor
}
/// Gets the command executor mutably
pub fn get_executor_mut(&mut self) -> &mut CommandExecutor {
&mut self.executor
}
/// Builds the command arguments for Docker top
#[must_use]
pub fn build_command_args(&self) -> Vec<String> {
let mut args = vec!["top".to_string()];
// Add container name/ID
args.push(self.container.clone());
// Add ps options if specified
if let Some(ref options) = self.ps_options {
args.push(options.clone());
}
// Add any additional raw arguments
args.extend(self.executor.raw_args.clone());
args
}
}
#[async_trait]
impl DockerCommand for TopCommand {
type Output = CommandOutput;
fn get_executor(&self) -> &CommandExecutor {
&self.executor
}
fn get_executor_mut(&mut self) -> &mut CommandExecutor {
&mut self.executor
}
fn build_command_args(&self) -> Vec<String> {
self.build_command_args()
}
async fn execute(&self) -> Result<Self::Output> {
let args = self.build_command_args();
self.execute_command(args).await
}
}
/// Result from the top command
#[derive(Debug, Clone)]
pub struct TopResult {
/// Raw command output
pub output: CommandOutput,
/// Container that was inspected
pub container: String,
/// Parsed process information
pub processes: Vec<ContainerProcess>,
}
impl TopResult {
/// Check if the top command was successful
#[must_use]
pub fn success(&self) -> bool {
self.output.success
}
/// Get the container name
#[must_use]
pub fn container(&self) -> &str {
&self.container
}
/// Get the parsed processes
#[must_use]
pub fn processes(&self) -> &[ContainerProcess] {
&self.processes
}
/// Get the raw command output
#[must_use]
pub fn output(&self) -> &CommandOutput {
&self.output
}
/// Get process count
#[must_use]
pub fn process_count(&self) -> usize {
self.processes.len()
}
}
/// Information about a running process in a container
#[derive(Debug, Clone)]
pub struct ContainerProcess {
/// Process ID
pub pid: String,
/// User running the process
pub user: String,
/// CPU time
pub time: String,
/// Command line
pub command: String,
/// Raw output line
pub raw_line: String,
}
impl ContainerProcess {
/// Get PID as integer
#[must_use]
pub fn pid_as_int(&self) -> Option<u32> {
self.pid.parse().ok()
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_top_basic() {
let cmd = TopCommand::new("test-container");
let args = cmd.build_command_args();
assert_eq!(args, vec!["top", "test-container"]);
}
#[test]
fn test_top_with_ps_options() {
let cmd = TopCommand::new("test-container").ps_options("aux");
let args = cmd.build_command_args();
assert_eq!(args, vec!["top", "test-container", "aux"]);
}
#[test]
fn test_top_with_custom_ps_options() {
let cmd = TopCommand::new("test-container").ps_options("-eo pid,ppid,cmd");
let args = cmd.build_command_args();
assert_eq!(args, vec!["top", "test-container", "-eo pid,ppid,cmd"]);
}
#[test]
fn test_parse_processes() {
let output = "PID USER TIME COMMAND\n1234 root 0:00 nginx: master process\n5678 www-data 0:01 nginx: worker process";
let processes = TopCommand::parse_processes(output);
assert_eq!(processes.len(), 2);
assert_eq!(processes[0].pid, "1234");
assert_eq!(processes[0].user, "root");
assert_eq!(processes[0].time, "0:00");
assert_eq!(processes[0].command, "nginx: master process");
assert_eq!(processes[1].pid, "5678");
assert_eq!(processes[1].user, "www-data");
assert_eq!(processes[1].time, "0:01");
assert_eq!(processes[1].command, "nginx: worker process");
}
#[test]
fn test_parse_processes_empty() {
let processes = TopCommand::parse_processes("");
assert!(processes.is_empty());
}
#[test]
fn test_parse_processes_headers_only() {
let output = "PID USER TIME COMMAND";
let processes = TopCommand::parse_processes(output);
assert!(processes.is_empty());
}
#[test]
fn test_container_process_pid_as_int() {
let process = ContainerProcess {
pid: "1234".to_string(),
user: "root".to_string(),
time: "0:00".to_string(),
command: "nginx".to_string(),
raw_line: "1234 root 0:00 nginx".to_string(),
};
assert_eq!(process.pid_as_int(), Some(1234));
}
#[test]
fn test_container_process_invalid_pid() {
let process = ContainerProcess {
pid: "invalid".to_string(),
user: "root".to_string(),
time: "0:00".to_string(),
command: "nginx".to_string(),
raw_line: "invalid root 0:00 nginx".to_string(),
};
assert_eq!(process.pid_as_int(), None);
}
}