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