cargo_e/e_runall.rs
1use crate::e_cli::RunAll;
2use crate::e_command_builder::CargoCommandBuilder;
3use crate::e_processmanager::ProcessManager;
4use crate::e_target::{CargoTarget, TargetKind};
5use anyhow::{Context, Result};
6use std::path::PathBuf;
7use std::sync::atomic::{AtomicBool, Ordering};
8use std::sync::Arc;
9use std::time::Duration;
10use std::time::Instant;
11
12#[cfg(unix)]
13use nix::sys::signal::{kill, Signal};
14#[cfg(unix)]
15use nix::unistd::Pid;
16
17// #[cfg(target_os = "windows")]
18// use std::os::windows::process::CommandExt;
19
20// #[cfg(target_os = "windows")]
21// const CREATE_NEW_PROCESS_GROUP: u32 = 0x00000200;
22
23// #[cfg(target_os = "windows")]
24// fn send_ctrl_c(child: &mut Child) -> Result<()> {
25// println!("Sending CTRL-C to child process...");
26// use windows::Win32::System::Console::{GenerateConsoleCtrlEvent, CTRL_C_EVENT};
27
28// // Send CTRL+C to the child process group.
29// // The child must have been spawned with CREATE_NEW_PROCESS_GROUP.
30// let result = unsafe { GenerateConsoleCtrlEvent(CTRL_C_EVENT, child.id()) };
31// if result.is_err() {
32// return Err(anyhow::anyhow!("Failed to send CTRL_C_EVENT on Windows"));
33// }
34
35// // Allow some time for the child to handle the signal gracefully.
36// std::thread::sleep(std::time::Duration::from_millis(1000));
37
38// Ok(())
39// }
40
41#[cfg(not(target_os = "windows"))]
42pub fn send_ctrl_c(child: &mut std::process::Child) -> Result<()> {
43 // On Unix, send SIGINT to the child.
44 kill(Pid::from_raw(child.id() as i32), Signal::SIGINT).context("Failed to send SIGINT")?;
45 // Wait briefly to allow graceful shutdown.
46 std::thread::sleep(Duration::from_millis(2000));
47 Ok(())
48}
49
50/// Runs all filtered targets with prebuild, child process management, and timeoutābased termination.
51///
52/// If the CLI flag `pre_build` is enabled, this function first prebuilds all targets by invoking
53/// `cargo build` with the appropriate flags (using `--example` or `--bin` and, for extended targets,
54/// the `--manifest-path` flag). Then it spawns a child process for each target using `cargo run`,
55/// waits for the duration specified by `cli.wait`, kills the child process, and then checks its output.
56///
57/// # Parameters
58///
59/// - `cli`: A reference to the CLI configuration (containing flags like `pre_build`, `wait`, and extra arguments).
60/// - `filtered_targets`: A slice of `Example` instances representing the targets to run.
61///
62/// # Errors
63///
64/// Returns an error if the prebuild step fails or if any child process fails to spawn or complete.
65pub fn run_all_examples(
66 manager: Arc<ProcessManager>,
67 cli: &crate::Cli,
68 filtered_targets: &[CargoTarget],
69) -> Result<bool> {
70 // Adjust RUSTFLAGS if --quiet was provided.
71 set_rustflags_if_quiet(cli.quiet);
72
73 // Prebuild targets if requested.
74 if cli.pre_build {
75 crate::e_prebuild::prebuild_examples(filtered_targets)
76 .context("Prebuild of targets failed")?;
77 }
78
79 let mut targets = filtered_targets.to_vec();
80 targets.sort_by(|a, b| a.display_name.cmp(&b.display_name));
81
82 let user_requested_quit = Arc::new(AtomicBool::new(false));
83
84 let chunk_size = cli.run_at_a_time;
85 let mut idx = 0;
86 while idx < targets.len() {
87 let chunk = &targets[idx..std::cmp::min(idx + chunk_size, targets.len())];
88 let mut handles = vec![];
89
90 for (chunk_idx, target) in chunk.iter().enumerate() {
91 let manager = Arc::clone(&manager);
92 let cli = cli.clone();
93 let target = target.clone();
94 let targets_len = targets.len();
95 let idx = idx + chunk_idx;
96 let user_requested_quit_thread = Arc::clone(&user_requested_quit);
97
98 // Spawn a thread for each target in the chunk
99 let handle = std::thread::spawn(move || {
100 // --- Begin: original per-target logic ---
101 let current_bin = env!("CARGO_PKG_NAME");
102 // Skip running our own binary.
103 if target.kind == TargetKind::Binary && target.name == current_bin {
104 return Ok(()) as Result<()>;
105 }
106
107 let manifest_path = PathBuf::from(target.manifest_path.clone());
108 let builder = CargoCommandBuilder::new(
109 &target.name,
110 &manifest_path,
111 &cli.subcommand,
112 cli.filter,
113 cli.cached,
114 cli.default_binary_is_runner,
115 )
116 .with_target(&target)
117 .with_cli(&cli)
118 .with_extra_args(&cli.extra);
119
120 builder.print_command();
121
122 let maybe_backup =
123 crate::e_manifest::maybe_patch_manifest_for_run(&target.manifest_path)
124 .context("Failed to patch manifest for run")?;
125
126 // let system = Arc::new(Mutex::new(System::new_all()));
127 // std::thread::sleep(sysinfo::MINIMUM_CPU_UPDATE_INTERVAL);
128 // let mut system_guard = system.lock().unwrap();
129 // system_guard.refresh_processes_specifics(
130 // ProcessesToUpdate::All,
131 // true,
132 // ProcessRefreshKind::nothing().with_cpu(),
133 // );
134 // drop(system_guard);
135
136 let start = Arc::new(std::sync::Mutex::new(None));
137 let start_for_callback = Arc::clone(&start);
138 let pid = Arc::new(builder).run({
139 let manager_ref = Arc::clone(&manager);
140 let t = target.clone();
141 let len = targets_len;
142 let start = Arc::clone(&start_for_callback);
143 // let system_clone = system.clone();
144 move |pid, handle| {
145 let stats = handle.stats.lock().unwrap().clone();
146 let runtime_start = if stats.is_comiler_target {
147 stats.build_finished_time
148 } else {
149 stats.start_time
150 };
151 let mut start_guard = start.lock().unwrap();
152 if start_guard.is_none() {
153 *start_guard = Some(Instant::now());
154 }
155 if !cli.no_status_lines {
156 let status_display = ProcessManager::format_process_status(
157 pid,
158 runtime_start,
159 &t,
160 (idx + 1, len),
161 );
162 ProcessManager::update_status_line(&status_display, true).ok();
163 }
164 manager_ref.register(handle);
165 }
166 })?;
167
168 let timeout = match cli.run_all {
169 RunAll::Timeout(secs) => Duration::from_secs(secs),
170 RunAll::Forever => Duration::from_secs(u64::MAX),
171 RunAll::NotSpecified => Duration::from_secs(cli.wait),
172 };
173
174 // Use an Arc<Mutex<Option<Instant>>> so it can be set in the run callback and accessed in the main loop.
175 let start_for_callback = Arc::clone(&start);
176 let target_name_for_timeout = target.name.clone();
177 // let timeout_thread = std::thread::spawn({
178 // let manager = Arc::clone(&manager);
179 // let pid = pid.clone();
180 // move || {
181 // // Wait until `start` is Some, i.e., the process has started running
182 // while start.is_none() {
183 // println!(
184 // "Waiting for process {} to start before applying timeout...",
185 // pid
186 // );
187 // std::thread::sleep(Duration::from_millis(50));
188 // }
189 // let start_time = start.expect("start should have been set");
190 // while start_time.elapsed() < timeout {
191 // std::thread::sleep(Duration::from_millis(500));
192 // if manager.try_wait(pid).is_ok() {
193 // return; // Process finished naturally
194 // }
195 // println!(
196 // "Process {} is still running, waiting for timeout...",
197 // pid
198 // );
199 // }
200 // // Timeout reached, kill the process
201 // println!(
202 // "\nTimeout reached for target {}. Killing child process {}.",
203 // target_name_for_timeout, pid
204 // );
205 // manager.kill_by_pid(pid).ok();
206 // manager.remove(pid);
207 // }
208 // });
209
210 // Main thread continues to monitor the process
211 loop {
212 if manager.is_alive(pid) {
213 println!(
214 "Monitoring process {} for target {} ({} of {})...",
215 pid,
216 target.name,
217 idx + 1,
218 targets_len
219 );
220 match manager.try_wait(pid) {
221 Ok(Some(status)) => {
222 println!("Process {} finished naturally. {:?}", pid, status);
223 // manager.e_window_kill(pid);
224 // manager.remove(pid);
225 break;
226 }
227 _ => {
228 // Process is still running.
229 // We can check for timeout here as well.
230 if let Ok(start_guard) = start_for_callback.lock() {
231 if let Some(start_time) = *start_guard {
232 if start_time.elapsed() >= timeout {
233 println!(
234 "\nTimeout reached for target {}. Killing child process {}.",
235 target.name,pid);
236 manager.kill_by_pid(pid).ok();
237 // manager.remove(pid);
238 // user_requested_kill_thread.store(true, Ordering::SeqCst);
239 // pids_to_kill_thread.lock().push(pid);
240 break;
241 }
242 }
243 }
244 std::thread::sleep(Duration::from_millis(100));
245 }
246 }
247 if manager.has_signalled() > 0 {
248 println!("Detected Ctrl+C. {}", manager.has_signalled());
249 manager.remove(pid); // Clean up the process handle
250
251 if manager.has_signalled() > 1 {
252 if let Some(dur) = manager.time_between_signals() {
253 if dur < Duration::from_millis(350) {
254 println!("User requested quit two times quickly (<350ms).");
255 user_requested_quit_thread.store(true, Ordering::SeqCst);
256 break;
257 }
258 }
259 }
260 println!("Dectected Ctrl+C, coninuing to next target.");
261 manager.reset_signalled();
262 break;
263 }
264
265 // let (_stats, runtime_start, end_time, status_display) = {
266 // let (stats, runtime_start, end_time) =
267 // if let Some(process_handle) = manager.get(pid) {
268 // if let Ok(handle) = process_handle.lock() {
269 // let stats =
270 // handle.stats.lock().map(|s| s.clone()).unwrap_or_default();
271 // let runtime_start = if stats.is_comiler_target {
272 // stats.build_finished_time
273 // } else {
274 // stats.start_time
275 // };
276 // let end_time = handle.result.end_time;
277 // (stats, runtime_start, end_time)
278 // } else {
279 // // If we can't lock, fallback to defaults
280 // (Default::default(), None, None)
281 // }
282 // } else {
283 // // If process handle not found, fallback to defaults
284 // (Default::default(), None, None)
285 // };
286 // let status_display = if !cli.no_status_lines {
287 // ProcessManager::format_process_status(
288 // pid,
289 // runtime_start,
290 // &target,
291 // (idx + 1, targets_len),
292 // )
293 // } else {
294 // String::new()
295 // };
296 // (stats, runtime_start, end_time, status_display)
297 // };
298
299 // if cli.filter && !cli.no_status_lines {
300 // // let mut system_guard = system.lock().unwrap();
301 // // system_guard.refresh_processes_specifics(
302 // // ProcessesToUpdate::All,
303 // // true,
304 // // ProcessRefreshKind::nothing().with_cpu(),
305 // // );
306 // // drop(system_guard);
307 // ProcessManager::update_status_line(&status_display, true).ok();
308 // }
309 // if runtime_start.is_some() {
310 // // let mut start_guard = start_for_callback.lock().unwrap();
311 // // if start_guard.is_none() {
312 // // *start_guard = Some(Instant::now());
313 // // }
314 // if let Some(start_time) = *start_for_callback.lock().unwrap() {
315 // if start_time.elapsed() >= timeout {
316 // println!(
317 // "\nTimeout reached for target {} after {:.2?}. Killing child process {}.",
318 // target.name,
319 // start_time.elapsed(),
320 // pid
321 // );
322 // manager.e_window_kill(pid);
323 // manager.remove(pid);
324 // manager.kill_by_pid(pid).ok();
325 // break;
326 // }
327 // }
328 // // std::thread::sleep(Duration::from_millis(500));
329 // } else if end_time.is_some() {
330 // println!("Process finished naturally.");
331 // manager.e_window_kill(pid);
332 // manager.remove(pid);
333 // break;
334 // }
335 std::thread::sleep(Duration::from_millis(100));
336 }
337 }
338
339 // Wait for the timeout thread to finish
340 // let _ = timeout_thread.join();
341
342 if let Some(original) = maybe_backup {
343 fs::write(&target.manifest_path, original)
344 .context("Failed to restore patched manifest")?;
345 }
346 manager.generate_report(cli.gist);
347
348 Ok(())
349 // --- End: original per-target logic ---
350 });
351 if user_requested_quit.load(Ordering::SeqCst) {
352 break;
353 }
354 handles.push(handle);
355 }
356 // Check if the user requested to quit.
357 if user_requested_quit.load(Ordering::SeqCst) {
358 break;
359 }
360 // Wait for all threads in this chunk to finish
361 for handle in handles {
362 let _ = handle.join();
363 }
364 manager.e_window_kill_all();
365 idx += chunk_size;
366 }
367
368 Ok(Arc::clone(&user_requested_quit).load(Ordering::SeqCst))
369}
370
371// pub fn run_all_examples(cli: &Cli, filtered_targets: &[CargoTarget]) -> Result<()> {
372// // If --quiet was provided, adjust RUSTFLAGS.
373// set_rustflags_if_quiet(cli.quiet);
374
375// // Factor out the prebuild logic.
376// if cli.pre_build {
377// crate::e_prebuild::prebuild_examples(filtered_targets)
378// .context("Prebuild of targets failed")?;
379// }
380// let mut targets = filtered_targets.to_vec();
381// targets.sort_by(|a, b| a.display_name.cmp(&b.display_name));
382// // For each filtered target, run it with child process management.
383// for target in targets {
384// // Clear the screen before running each target.
385
386// // use crossterm::{execute, terminal::{Clear, ClearType}};
387// // use std::io::{stdout, Write};
388// // execute!(stdout(), Clear(ClearType::All), crossterm::cursor::MoveTo(0, 0))?;
389// // std::io::Write::flush(&mut std::io::stdout()).unwrap();
390// println!("Running target: {}", target.name);
391
392// // Retrieve the current package name (or binary name) at compile time.
393// let current_bin = env!("CARGO_PKG_NAME");
394// // Avoid running our own binary if the target's name is the same.
395// if target.kind == TargetKind::Binary && target.name == current_bin {
396// continue;
397// }
398
399// // Determine the run flag and whether we need to pass the manifest path.
400// let (run_flag, needs_manifest) = match target.kind {
401// TargetKind::Example => ("--example", false),
402// TargetKind::ExtendedExample => ("--example", true),
403// TargetKind::Binary => ("--bin", false),
404// TargetKind::ExtendedBinary => ("--bin", true),
405// TargetKind::ManifestTauri => ("", true),
406// TargetKind::ManifestTauriExample => ("", true),
407// TargetKind::Test => ("--test", true),
408// TargetKind::Manifest => ("", true),
409// TargetKind::ManifestDioxus => ("", true),
410// TargetKind::ManifestDioxusExample => ("", true),
411// TargetKind::Bench => ("", true),
412// };
413// let mut cmd_parts = vec!["cargo".to_string()];
414// cmd_parts.push("run".to_string());
415// if cli.release {
416// cmd_parts.push("--release".to_string());
417// }
418// // Pass --quiet if requested.
419// if cli.quiet {
420// cmd_parts.push("--quiet".to_string());
421// }
422// cmd_parts.push(run_flag.to_string());
423// cmd_parts.push(target.name.clone());
424// if needs_manifest {
425// cmd_parts.push("--manifest-path".to_string());
426// cmd_parts.push(
427// target
428// .manifest_path
429// .clone()
430// .to_str()
431// .unwrap_or_default()
432// .to_owned(),
433// );
434// }
435// cmd_parts.extend(cli.extra.clone());
436
437// // // Build a vector of command parts for logging.
438// // let mut cmd_parts = vec!["cargo".to_string(), "run".to_string(), run_flag.to_string(), target.name.clone()];
439// // if needs_manifest {
440// // cmd_parts.push("--manifest-path".to_string());
441// // cmd_parts.push(target.manifest_path.clone());
442// // }
443// // // Append any extra CLI arguments.
444// // cmd_parts.extend(cli.extra.clone());
445
446// // Print out the full command that will be run.
447// let key = prompt(&format!("Full command: {}", cmd_parts.join(" ")), 2)?;
448// if let Some('q') = key {
449// println!("User requested quit.");
450// break;
451// }
452
453// // Clear the screen before running each target.
454// //println!("\x1B[2J\x1B[H");
455
456// // Build the command for execution.
457// let mut command = Command::new("cargo");
458// command.arg("run");
459// if cli.release {
460// command.arg("--release");
461// }
462// if cli.quiet {
463// command.arg("--quiet");
464// }
465// command.arg(run_flag).arg(&target.name);
466// if needs_manifest {
467// command.args(&[
468// "--manifest-path",
469// &target.manifest_path.to_str().unwrap_or_default().to_owned(),
470// ]);
471// }
472
473// // --- Inject required-features support using our helper ---
474// if let Some(features) = crate::e_manifest::get_required_features_from_manifest(
475// std::path::Path::new(&target.manifest_path),
476// &target.kind,
477// &target.name,
478// ) {
479// command.args(&["--features", &features]);
480// }
481// // --- End required-features support ---
482
483// // Append any extra CLI arguments.
484// command.args(&cli.extra);
485
486// // Spawn the child process.
487// let child = command
488// .spawn()
489// .with_context(|| format!("Failed to spawn cargo run for target {}", target.name))?;
490// {
491// let mut global = crate::e_runner::GLOBAL_CHILD.lock().unwrap();
492// *global = Some(child);
493// }
494// // Let the target run for the specified duration.
495// let run_duration = Duration::from_secs(cli.wait);
496// thread::sleep(run_duration);
497
498// // Kill the process (ignoring errors if it already terminated).
499
500// // Decide on the run duration per target and use it accordingly:
501// // Determine behavior based on the run_all flag:
502// let output = {
503// let mut global = crate::e_runner::GLOBAL_CHILD.lock().unwrap();
504// if let Some(mut child) = global.take() {
505// match cli.run_all {
506// RunAll::Timeout(timeout_secs) => {
507// let message = format!(
508// "Press any key to continue (timeout in {} seconds)...",
509// timeout_secs
510// );
511// let key = prompt(&message, timeout_secs)?;
512// if let Some('q') = key {
513// println!("User requested quit.");
514// // Terminate the process and break out of the loop.
515// child.kill().ok();
516// break;
517// }
518// child.kill().ok();
519// child.wait_with_output().with_context(|| {
520// format!("Failed to wait on cargo run for target {}", target.name)
521// })?
522// }
523// RunAll::Forever => {
524// let key = prompt(&"", 0)?;
525// if let Some('q') = key {
526// println!("User requested quit.");
527// // Terminate the process and break out of the loop.
528// child.kill().ok();
529// break;
530// } // Run until natural termination.
531// child.wait_with_output().with_context(|| {
532// format!("Failed to wait on cargo run for target {}", target.name)
533// })?
534// }
535// RunAll::NotSpecified => {
536// let key = prompt(&"", cli.wait)?;
537// if let Some('q') = key {
538// println!("User requested quit.");
539// // Terminate the process and break out of the loop.
540// child.kill().ok();
541// break;
542// }
543// child.kill().ok();
544// child.wait_with_output().with_context(|| {
545// format!("Failed to wait on cargo run for target {}", target.name)
546// })?
547// }
548// }
549// } else {
550// return Err(anyhow::anyhow!("No child process found"));
551// }
552// };
553
554// if !output.stderr.is_empty() {
555// eprintln!(
556// "Target '{}' produced errors:\n{}",
557// target.name,
558// String::from_utf8_lossy(&output.stderr)
559// );
560// }
561// }
562// Ok(())
563// }
564
565use std::{env, fs};
566
567/// If quiet mode is enabled, ensure that RUSTFLAGS contains "-Awarnings".
568/// If RUSTFLAGS is already set, and it does not contain "-Awarnings", then append it.
569pub fn set_rustflags_if_quiet(quiet: bool) {
570 if quiet {
571 let current_flags = env::var("RUSTFLAGS").unwrap_or_else(|_| "".to_string());
572 if !current_flags.contains("-Awarnings") {
573 let new_flags = if current_flags.trim().is_empty() {
574 "-Awarnings".to_string()
575 } else {
576 format!("{} -Awarnings", current_flags)
577 };
578 env::set_var("RUSTFLAGS", new_flags);
579 }
580 }
581}