File size: 44,407 Bytes
a21c316 | 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 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 | use std::process::Command;
use std::thread;
use std::time::Duration;
use sysinfo::System;
#[cfg(target_os = "windows")]
use std::os::windows::process::CommandExt;
/// Get normalized path of the current running executable
fn get_current_exe_path() -> Option<std::path::PathBuf> {
std::env::current_exe()
.ok()
.and_then(|p| p.canonicalize().ok())
}
/// Check if Antigravity is running
pub fn is_antigravity_running() -> bool {
let mut system = System::new();
system.refresh_processes(sysinfo::ProcessesToUpdate::All);
let current_exe = get_current_exe_path();
let current_pid = std::process::id();
// Recognition ref 1: Load manual config path (moved outside loop for performance)
let manual_path = crate::modules::config::load_app_config()
.ok()
.and_then(|c| c.antigravity_executable)
.and_then(|p| std::path::PathBuf::from(p).canonicalize().ok());
for (pid, process) in system.processes() {
let pid_u32 = pid.as_u32();
if pid_u32 == current_pid {
continue;
}
let name = process.name().to_string_lossy().to_lowercase();
let exe_path = process
.exe()
.and_then(|p| p.to_str())
.unwrap_or("")
.to_lowercase();
// Exclude own path (handles case where manager is mistaken for Antigravity on Linux)
if let (Some(ref my_path), Some(p_exe)) = (¤t_exe, process.exe()) {
if let Ok(p_path) = p_exe.canonicalize() {
if my_path == &p_path {
continue;
}
}
}
// Recognition ref 2: Priority check for manual path match
if let (Some(ref m_path), Some(p_exe)) = (&manual_path, process.exe()) {
if let Ok(p_path) = p_exe.canonicalize() {
// macOS: Check if within the same .app bundle
#[cfg(target_os = "macos")]
{
let m_path_str = m_path.to_string_lossy();
let p_path_str = p_path.to_string_lossy();
if let (Some(m_idx), Some(p_idx)) =
(m_path_str.find(".app"), p_path_str.find(".app"))
{
if m_path_str[..m_idx + 4] == p_path_str[..p_idx + 4] {
// Even if path matches, must confirm via name and args that it's not a Helper
let args = process.cmd();
let is_helper_by_args = args
.iter()
.any(|arg| arg.to_string_lossy().contains("--type="));
let is_helper_by_name = name.contains("helper")
|| name.contains("plugin")
|| name.contains("renderer")
|| name.contains("gpu")
|| name.contains("crashpad")
|| name.contains("utility")
|| name.contains("audio")
|| name.contains("sandbox");
if !is_helper_by_args && !is_helper_by_name {
return true;
}
}
}
}
#[cfg(not(target_os = "macos"))]
if m_path == &p_path {
return true;
}
}
}
// Common helper process exclusion logic
// Common helper process exclusion logic
let args = process.cmd();
let args_str = args
.iter()
.map(|arg| arg.to_string_lossy().to_lowercase())
.collect::<Vec<String>>()
.join(" ");
let is_helper = args_str.contains("--type=")
|| name.contains("helper")
|| name.contains("plugin")
|| name.contains("renderer")
|| name.contains("gpu")
|| name.contains("crashpad")
|| name.contains("utility")
|| name.contains("audio")
|| name.contains("sandbox")
|| exe_path.contains("crashpad");
#[cfg(target_os = "macos")]
{
if exe_path.contains("antigravity.app") && !is_helper {
return true;
}
}
#[cfg(target_os = "windows")]
{
if name == "antigravity.exe" && !is_helper {
return true;
}
}
#[cfg(target_os = "linux")]
{
if (name.contains("antigravity") || exe_path.contains("/antigravity"))
&& !name.contains("tools")
&& !is_helper
{
return true;
}
}
}
false
}
#[cfg(target_os = "linux")]
/// Get PID set of current process and all direct relatives (ancestors + descendants)
fn get_self_family_pids(system: &sysinfo::System) -> std::collections::HashSet<u32> {
let current_pid = std::process::id();
let mut family_pids = std::collections::HashSet::new();
family_pids.insert(current_pid);
// 1. Look up all ancestors (Ancestors) - prevent killing the launcher
let mut next_pid = current_pid;
// Prevent infinite loop, max depth 10
for _ in 0..10 {
let pid_val = sysinfo::Pid::from_u32(next_pid);
if let Some(process) = system.process(pid_val) {
if let Some(parent) = process.parent() {
let parent_id = parent.as_u32();
// Avoid cycles or duplicates
if !family_pids.insert(parent_id) {
break;
}
next_pid = parent_id;
} else {
break;
}
} else {
break;
}
}
// 2. Look down all descendants (Descendants)
// Build parent-child relationship map (Parent -> Children)
let mut adj: std::collections::HashMap<u32, Vec<u32>> = std::collections::HashMap::new();
for (pid, process) in system.processes() {
if let Some(parent) = process.parent() {
adj.entry(parent.as_u32()).or_default().push(pid.as_u32());
}
}
// BFS traversal to find all descendants
let mut queue = std::collections::VecDeque::new();
queue.push_back(current_pid);
while let Some(pid) = queue.pop_front() {
if let Some(children) = adj.get(&pid) {
for &child in children {
if family_pids.insert(child) {
queue.push_back(child);
}
}
}
}
family_pids
}
/// Get PIDs of all Antigravity processes (including main and helper processes)
fn get_antigravity_pids() -> Vec<u32> {
let mut system = System::new();
system.refresh_processes(sysinfo::ProcessesToUpdate::All);
// Linux: Enable family process tree exclusion
#[cfg(target_os = "linux")]
let family_pids = get_self_family_pids(&system);
let mut pids = Vec::new();
let current_pid = std::process::id();
let current_exe = get_current_exe_path();
// Load manual config path as auxiliary reference
let manual_path = crate::modules::config::load_app_config()
.ok()
.and_then(|c| c.antigravity_executable)
.and_then(|p| std::path::PathBuf::from(p).canonicalize().ok());
for (pid, process) in system.processes() {
let pid_u32 = pid.as_u32();
// Exclude own PID
if pid_u32 == current_pid {
continue;
}
// Exclude own executable path (hardened against broad name matching)
if let (Some(ref my_path), Some(p_exe)) = (¤t_exe, process.exe()) {
if let Ok(p_path) = p_exe.canonicalize() {
if my_path == &p_path {
continue;
}
}
}
let _name = process.name().to_string_lossy().to_lowercase();
#[cfg(target_os = "linux")]
{
// 1. Exclude family processes (self, children, parents)
if family_pids.contains(&pid_u32) {
continue;
}
// 2. Extra protection: match "tools" likely manager if not a child
if _name.contains("tools") {
continue;
}
}
#[cfg(not(target_os = "linux"))]
{
// Other platforms: exclude only self
if pid_u32 == current_pid {
continue;
}
}
// Recognition ref 3: Check manual config path match
if let (Some(ref m_path), Some(p_exe)) = (&manual_path, process.exe()) {
if let Ok(p_path) = p_exe.canonicalize() {
#[cfg(target_os = "macos")]
{
let m_path_str = m_path.to_string_lossy();
let p_path_str = p_path.to_string_lossy();
if let (Some(m_idx), Some(p_idx)) =
(m_path_str.find(".app"), p_path_str.find(".app"))
{
if m_path_str[..m_idx + 4] == p_path_str[..p_idx + 4] {
let args = process.cmd();
let is_helper_by_args = args
.iter()
.any(|arg| arg.to_string_lossy().contains("--type="));
let is_helper_by_name = _name.contains("helper")
|| _name.contains("plugin")
|| _name.contains("renderer")
|| _name.contains("gpu")
|| _name.contains("crashpad")
|| _name.contains("utility")
|| _name.contains("audio")
|| _name.contains("sandbox");
if !is_helper_by_args && !is_helper_by_name {
pids.push(pid_u32);
continue;
}
}
}
}
#[cfg(not(target_os = "macos"))]
if m_path == &p_path {
pids.push(pid_u32);
continue;
}
}
}
// Get executable path
let exe_path = process
.exe()
.and_then(|p| p.to_str())
.unwrap_or("")
.to_lowercase();
// Common helper process exclusion logic
let args = process.cmd();
let args_str = args
.iter()
.map(|arg| arg.to_string_lossy().to_lowercase())
.collect::<Vec<String>>()
.join(" ");
let is_helper = args_str.contains("--type=")
|| _name.contains("helper")
|| _name.contains("plugin")
|| _name.contains("renderer")
|| _name.contains("gpu")
|| _name.contains("crashpad")
|| _name.contains("utility")
|| _name.contains("audio")
|| _name.contains("sandbox")
|| exe_path.contains("crashpad");
#[cfg(target_os = "macos")]
{
// Match processes within Antigravity main app bundle, excluding Helper/Plugin/Renderer etc.
if exe_path.contains("antigravity.app") && !is_helper {
pids.push(pid_u32);
}
}
#[cfg(target_os = "windows")]
{
let name = process.name().to_string_lossy().to_lowercase();
if name == "antigravity.exe" && !is_helper {
pids.push(pid_u32);
}
}
#[cfg(target_os = "linux")]
{
let name = process.name().to_string_lossy().to_lowercase();
if (name == "antigravity" || exe_path.contains("/antigravity"))
&& !name.contains("tools")
&& !is_helper
{
pids.push(pid_u32);
}
}
}
if !pids.is_empty() {
crate::modules::logger::log_info(&format!(
"Found {} Antigravity processes: {:?}",
pids.len(),
pids
));
}
pids
}
/// Close Antigravity processes
pub fn close_antigravity(#[allow(unused_variables)] timeout_secs: u64) -> Result<(), String> {
crate::modules::logger::log_info("Closing Antigravity...");
#[cfg(target_os = "windows")]
{
// Windows: Precise kill by PID to support multiple versions or custom filenames
let pids = get_antigravity_pids();
if !pids.is_empty() {
crate::modules::logger::log_info(&format!(
"Precisely closing {} identified processes on Windows...",
pids.len()
));
for pid in pids {
let _ = Command::new("taskkill")
.args(["/F", "/PID", &pid.to_string()])
.creation_flags(0x08000000) // CREATE_NO_WINDOW
.output();
}
// Give some time for system to clean up PIDs
thread::sleep(Duration::from_millis(200));
}
}
#[cfg(target_os = "macos")]
{
// macOS: Optimize closing strategy to avoid "Window terminated unexpectedly" popups
// Strategy: SEND SIGTERM to main process only, let it coordinate closing children
let pids = get_antigravity_pids();
if !pids.is_empty() {
// 1. Identify main process (PID)
// Strategy: Principal processes of Electron/Tauri do not have the `--type` parameter, while Helper processes have `--type=renderer/gpu/utility`, etc.
let mut system = System::new();
system.refresh_processes(sysinfo::ProcessesToUpdate::All);
let mut main_pid = None;
// Load manual configuration path as highest priority reference
let manual_path = crate::modules::config::load_app_config()
.ok()
.and_then(|c| c.antigravity_executable)
.and_then(|p| std::path::PathBuf::from(p).canonicalize().ok());
crate::modules::logger::log_info("Analyzing process list to identify main process:");
for pid_u32 in &pids {
let pid = sysinfo::Pid::from_u32(*pid_u32);
if let Some(process) = system.process(pid) {
let name = process.name().to_string_lossy();
let args = process.cmd();
let args_str = args
.iter()
.map(|arg| arg.to_string_lossy().into_owned())
.collect::<Vec<String>>()
.join(" ");
crate::modules::logger::log_info(&format!(
" - PID: {} | Name: {} | Args: {}",
pid_u32, name, args_str
));
// 1. Priority to manual path matching
if let (Some(ref m_path), Some(p_exe)) = (&manual_path, process.exe()) {
if let Ok(p_path) = p_exe.canonicalize() {
let m_path_str = m_path.to_string_lossy();
let p_path_str = p_path.to_string_lossy();
if let (Some(m_idx), Some(p_idx)) =
(m_path_str.find(".app"), p_path_str.find(".app"))
{
if m_path_str[..m_idx + 4] == p_path_str[..p_idx + 4] {
// Deep validation: even if path matches, must exclude Helper keywords and arguments
let is_helper_by_args = args_str.contains("--type=");
let is_helper_by_name = name.to_lowercase().contains("helper")
|| name.to_lowercase().contains("plugin")
|| name.to_lowercase().contains("renderer")
|| name.to_lowercase().contains("gpu")
|| name.to_lowercase().contains("crashpad")
|| name.to_lowercase().contains("utility")
|| name.to_lowercase().contains("audio")
|| name.to_lowercase().contains("sandbox")
|| name.to_lowercase().contains("language_server");
if !is_helper_by_args && !is_helper_by_name {
main_pid = Some(pid_u32);
crate::modules::logger::log_info(&format!(
" => Identified as main process (manual path match)"
));
break;
}
}
}
}
}
// 2. Feature analysis matching (fallback)
let is_helper_by_name = name.to_lowercase().contains("helper")
|| name.to_lowercase().contains("crashpad")
|| name.to_lowercase().contains("utility")
|| name.to_lowercase().contains("audio")
|| name.to_lowercase().contains("sandbox")
|| name.to_lowercase().contains("language_server")
|| name.to_lowercase().contains("plugin")
|| name.to_lowercase().contains("renderer");
let is_helper_by_args = args_str.contains("--type=");
if !is_helper_by_name && !is_helper_by_args {
if main_pid.is_none() {
main_pid = Some(pid_u32);
crate::modules::logger::log_info(&format!(
" => Identified as main process (Name/Args analysis)"
));
}
} else {
crate::modules::logger::log_info(&format!(
" => Identified as helper process (Helper/Args)"
));
}
}
}
// Phase 1: Graceful exit (SIGTERM)
if let Some(pid) = main_pid {
crate::modules::logger::log_info(&format!(
"Sending SIGTERM to main process PID: {}",
pid
));
let output = Command::new("kill")
.args(["-15", &pid.to_string()])
.output();
if let Ok(result) = output {
if !result.status.success() {
let error = String::from_utf8_lossy(&result.stderr);
crate::modules::logger::log_warn(&format!(
"Main process SIGTERM failed: {}",
error
));
}
}
} else {
crate::modules::logger::log_warn(
"No clear main process identified, attempting SIGTERM for all processes (may cause popups)",
);
for pid in &pids {
let _ = Command::new("kill")
.args(["-15", &pid.to_string()])
.output();
}
}
// Wait for graceful exit (max 70% of timeout_secs)
let graceful_timeout = (timeout_secs * 7) / 10;
let start = std::time::Instant::now();
while start.elapsed() < Duration::from_secs(graceful_timeout) {
if !is_antigravity_running() {
crate::modules::logger::log_info("All Antigravity processes gracefully closed");
return Ok(());
}
thread::sleep(Duration::from_millis(500));
}
// Phase 2: Force kill (SIGKILL) - targeting all remaining processes (Helpers)
if is_antigravity_running() {
let remaining_pids = get_antigravity_pids();
if !remaining_pids.is_empty() {
crate::modules::logger::log_warn(&format!(
"Graceful exit timeout, force killing {} remaining processes (SIGKILL)",
remaining_pids.len()
));
for pid in &remaining_pids {
let output = Command::new("kill").args(["-9", &pid.to_string()]).output();
if let Ok(result) = output {
if !result.status.success() {
let error = String::from_utf8_lossy(&result.stderr);
if !error.contains("No such process") {
// "No matching processes" for killall, "No such process" for kill
crate::modules::logger::log_error(&format!(
"SIGKILL process {} failed: {}",
pid, error
));
}
}
}
}
thread::sleep(Duration::from_secs(1));
}
// Final check
if !is_antigravity_running() {
crate::modules::logger::log_info("All processes exited after forced cleanup");
return Ok(());
}
} else {
crate::modules::logger::log_info("All processes exited after SIGTERM");
return Ok(());
}
} else {
// Only consider not running when pids is empty, don't error here as it might already be closed
crate::modules::logger::log_info("Antigravity not running, no need to close");
return Ok(());
}
}
#[cfg(target_os = "linux")]
{
// Linux: Also attempt to identify main process and delegate exit
let pids = get_antigravity_pids();
if !pids.is_empty() {
let mut system = System::new();
system.refresh_processes(sysinfo::ProcessesToUpdate::All);
let mut main_pid = None;
// Load manual configuration path as highest priority reference
let manual_path = crate::modules::config::load_app_config()
.ok()
.and_then(|c| c.antigravity_executable)
.and_then(|p| std::path::PathBuf::from(p).canonicalize().ok());
crate::modules::logger::log_info("Analyzing Linux process list to identify main process:");
for pid_u32 in &pids {
let pid = sysinfo::Pid::from_u32(*pid_u32);
if let Some(process) = system.process(pid) {
let name = process.name().to_string_lossy().to_lowercase();
let args = process.cmd();
let args_str = args
.iter()
.map(|arg| arg.to_string_lossy().into_owned())
.collect::<Vec<String>>()
.join(" ");
crate::modules::logger::log_info(&format!(
" - PID: {} | Name: {} | Args: {}",
pid_u32, name, args_str
));
// 1. Priority to manual path matching
if let (Some(ref m_path), Some(p_exe)) = (&manual_path, process.exe()) {
if let Ok(p_path) = p_exe.canonicalize() {
if &p_path == m_path {
// Confirm not a Helper
let is_helper_by_args = args_str.contains("--type=");
let is_helper_by_name = name.contains("helper")
|| name.contains("renderer")
|| name.contains("gpu")
|| name.contains("crashpad")
|| name.contains("utility")
|| name.contains("audio")
|| name.contains("sandbox");
if !is_helper_by_args && !is_helper_by_name {
main_pid = Some(pid_u32);
crate::modules::logger::log_info(&format!(
" => Identified as main process (manual path match)"
));
break;
}
}
}
}
// 2. Feature analysis matching
let is_helper_by_args = args_str.contains("--type=");
let is_helper_by_name = name.contains("helper")
|| name.contains("renderer")
|| name.contains("gpu")
|| name.contains("crashpad")
|| name.contains("utility")
|| name.contains("audio")
|| name.contains("sandbox")
|| name.contains("plugin")
|| name.contains("language_server");
if !is_helper_by_args && !is_helper_by_name {
if main_pid.is_none() {
main_pid = Some(pid_u32);
crate::modules::logger::log_info(&format!(
" => Identified as main process (Feature analysis)"
));
}
} else {
crate::modules::logger::log_info(&format!(
" => Identified as helper process (Helper/Args)"
));
}
}
}
// Phase 1: Graceful exit (SIGTERM)
if let Some(pid) = main_pid {
crate::modules::logger::log_info(&format!("Attempting to gracefully close main process {} (SIGTERM)", pid));
let _ = Command::new("kill")
.args(["-15", &pid.to_string()])
.output();
} else {
crate::modules::logger::log_warn(
"No clear Linux main process identified, sending SIGTERM to all associated processes",
);
for pid in &pids {
let _ = Command::new("kill")
.args(["-15", &pid.to_string()])
.output();
}
}
// Wait for graceful exit
let graceful_timeout = (timeout_secs * 7) / 10;
let start = std::time::Instant::now();
while start.elapsed() < Duration::from_secs(graceful_timeout) {
if !is_antigravity_running() {
crate::modules::logger::log_info("Antigravity gracefully closed");
return Ok(());
}
thread::sleep(Duration::from_millis(500));
}
// Phase 2: Force kill (SIGKILL) - targeting all remaining processes
if is_antigravity_running() {
let remaining_pids = get_antigravity_pids();
if !remaining_pids.is_empty() {
crate::modules::logger::log_warn(&format!(
"Graceful exit timeout, force killing {} remaining processes (SIGKILL)",
remaining_pids.len()
));
for pid in &remaining_pids {
let _ = Command::new("kill").args(["-9", &pid.to_string()]).output();
}
thread::sleep(Duration::from_secs(1));
}
}
} else {
// pids is empty, meaning no process detected or all excluded by logic
crate::modules::logger::log_info(
"No Antigravity processes found to close (possibly filtered or not running)",
);
}
}
// Final check
if is_antigravity_running() {
return Err("Unable to close Antigravity process, please close manually and retry".to_string());
}
crate::modules::logger::log_info("Antigravity closed successfully");
Ok(())
}
/// Start Antigravity
#[allow(unused_mut)]
pub fn start_antigravity() -> Result<(), String> {
crate::modules::logger::log_info("Starting Antigravity...");
// Prefer manually specified path and args from configuration
let config = crate::modules::config::load_app_config().ok();
let manual_path = config
.as_ref()
.and_then(|c| c.antigravity_executable.clone());
let args = config.and_then(|c| c.antigravity_args.clone());
if let Some(mut path_str) = manual_path {
let mut path = std::path::PathBuf::from(&path_str);
#[cfg(target_os = "macos")]
{
// Fault tolerance: If path is inside .app bundle (e.g. misselected Helper), auto-correct to .app directory
if let Some(app_idx) = path_str.find(".app") {
let corrected_app = &path_str[..app_idx + 4];
if corrected_app != path_str {
crate::modules::logger::log_info(&format!(
"Detected macOS path inside .app bundle, auto-correcting to: {}",
corrected_app
));
path_str = corrected_app.to_string();
path = std::path::PathBuf::from(&path_str);
}
}
}
if path.exists() {
crate::modules::logger::log_info(&format!("Starting with manual configuration path: {}", path_str));
#[cfg(target_os = "macos")]
{
// macOS: if .app directory, use open
if path_str.ends_with(".app") || path.is_dir() {
let mut cmd = Command::new("open");
cmd.arg("-a").arg(&path_str);
// Add startup arguments
if let Some(ref args) = args {
for arg in args {
cmd.arg(arg);
}
}
cmd.spawn().map_err(|e| format!("Startup failed (open): {}", e))?;
} else {
let mut cmd = Command::new(&path_str);
// Add startup arguments
if let Some(ref args) = args {
for arg in args {
cmd.arg(arg);
}
}
cmd.spawn()
.map_err(|e| format!("Startup failed (direct): {}", e))?;
}
}
#[cfg(not(target_os = "macos"))]
{
let mut cmd = Command::new(&path_str);
// Add startup arguments
if let Some(ref args) = args {
for arg in args {
cmd.arg(arg);
}
}
cmd.spawn().map_err(|e| format!("Startup failed: {}", e))?;
}
crate::modules::logger::log_info(&format!(
"Antigravity startup command sent (manual path: {}, args: {:?})",
path_str, args
));
return Ok(());
} else {
crate::modules::logger::log_warn(&format!(
"Manual configuration path does not exist: {}, falling back to auto-detection",
path_str
));
}
}
#[cfg(target_os = "macos")]
{
// Improvement: Use output() to wait for open command completion and capture "app not found" error
let mut cmd = Command::new("open");
cmd.args(["-a", "Antigravity"]);
// Add startup arguments
if let Some(ref args) = args {
for arg in args {
cmd.arg(arg);
}
}
let output = cmd
.output()
.map_err(|e| format!("Unable to execute open command: {}", e))?;
if !output.status.success() {
let error = String::from_utf8_lossy(&output.stderr);
return Err(format!(
"Startup failed (open exited with {}): {}",
output.status, error
));
}
}
#[cfg(target_os = "windows")]
{
let has_args = args.as_ref().map_or(false, |a| !a.is_empty());
if has_args {
if let Some(detected_path) = get_antigravity_executable_path() {
let path_str = detected_path.to_string_lossy().to_string();
crate::modules::logger::log_info(&format!(
"Starting with auto-detected path (has args): {}",
path_str
));
use crate::utils::command::CommandExtWrapper;
let mut cmd = Command::new(&path_str);
cmd.creation_flags_windows();
if let Some(ref args) = args {
for arg in args {
cmd.arg(arg);
}
}
cmd.spawn().map_err(|e| format!("Startup failed: {}", e))?;
} else {
return Err("Startup arguments configured but cannot find Antigravity executable path. Please set the executable path manually in Settings.".to_string());
}
} else {
use crate::utils::command::CommandExtWrapper;
let mut cmd = Command::new("cmd");
cmd.creation_flags_windows();
cmd.args(["/C", "start", "antigravity://"]);
let result = cmd.spawn();
if result.is_err() {
return Err("Startup failed, please open Antigravity manually".to_string());
}
}
}
#[cfg(target_os = "linux")]
{
let mut cmd = Command::new("antigravity");
// Add startup arguments
if let Some(ref args) = args {
for arg in args {
cmd.arg(arg);
}
}
cmd.spawn().map_err(|e| format!("Startup failed: {}", e))?;
}
crate::modules::logger::log_info(&format!(
"Antigravity startup command sent (default detection, args: {:?})",
args
));
Ok(())
}
/// Get Antigravity executable path and startup arguments from running processes
///
/// This is the most reliable method to find installations and startup args anywhere
fn get_process_info() -> (Option<std::path::PathBuf>, Option<Vec<String>>) {
let mut system = System::new_all();
system.refresh_all();
let current_exe = get_current_exe_path();
let current_pid = std::process::id();
for (pid, process) in system.processes() {
let pid_u32 = pid.as_u32();
if pid_u32 == current_pid {
continue;
}
// Exclude manager process itself
if let (Some(ref my_path), Some(p_exe)) = (¤t_exe, process.exe()) {
if let Ok(p_path) = p_exe.canonicalize() {
if my_path == &p_path {
continue;
}
}
}
let name = process.name().to_string_lossy().to_lowercase();
// Get executable path and command line arguments
if let Some(exe) = process.exe() {
let mut args = process.cmd().iter();
let exe_path = args
.next()
.map_or(exe.to_string_lossy(), |arg| arg.to_string_lossy())
.to_lowercase();
// Extract actual arguments from command line (skipping exe path)
let args = args
.map(|arg| arg.to_string_lossy().to_lowercase())
.collect::<Vec<String>>();
let args_str = args.join(" ");
// Common helper process exclusion logic
let is_helper = args_str.contains("--type=")
|| args_str.contains("node-ipc")
|| args_str.contains("nodeipc")
|| args_str.contains("max-old-space-size")
|| args_str.contains("node_modules")
|| name.contains("helper")
|| name.contains("plugin")
|| name.contains("renderer")
|| name.contains("gpu")
|| name.contains("crashpad")
|| name.contains("utility")
|| name.contains("audio")
|| name.contains("sandbox")
|| exe_path.contains("crashpad");
let path = Some(exe.to_path_buf());
let args = Some(args);
#[cfg(target_os = "macos")]
{
// macOS: Exclude helper processes, match main app only, and check Frameworks
if exe_path.contains("antigravity.app")
&& !is_helper
&& !exe_path.contains("frameworks")
{
// Try to extract .app path for better open command support
if let Some(app_idx) = exe_path.find(".app") {
let app_path_str = &exe.to_string_lossy()[..app_idx + 4];
let path = Some(std::path::PathBuf::from(app_path_str));
return (path, args);
}
return (path, args);
}
}
#[cfg(target_os = "windows")]
{
// Windows: Strictly match process name and exclude helpers
if name == "antigravity.exe" && !is_helper {
return (path, args);
}
}
#[cfg(target_os = "linux")]
{
// Linux: Check process name or path for antigravity, excluding helpers and manager
if (name == "antigravity" || exe_path.contains("/antigravity"))
&& !name.contains("tools")
&& !is_helper
{
return (path, args);
}
}
}
}
(None, None)
}
/// Get Antigravity executable path from running processes
///
/// Most reliable method to find installation anywhere
pub fn get_path_from_running_process() -> Option<std::path::PathBuf> {
let (path, _) = get_process_info();
path
}
/// Get Antigravity startup arguments from running processes
pub fn get_args_from_running_process() -> Option<Vec<String>> {
let (_, args) = get_process_info();
args
}
/// Get --user-data-dir argument value (if exists)
pub fn get_user_data_dir_from_process() -> Option<std::path::PathBuf> {
// Prefer getting startup arguments from config
if let Ok(config) = crate::modules::config::load_app_config() {
if let Some(args) = config.antigravity_args {
// Check arguments in config
for i in 0..args.len() {
if args[i] == "--user-data-dir" && i + 1 < args.len() {
// Next argument is the path
let path = std::path::PathBuf::from(&args[i + 1]);
if path.exists() {
return Some(path);
}
} else if args[i].starts_with("--user-data-dir=") {
// Argument and value in same string, e.g. --user-data-dir=/path/to/data
let parts: Vec<&str> = args[i].splitn(2, '=').collect();
if parts.len() == 2 {
let path_str = parts[1];
let path = std::path::PathBuf::from(path_str);
if path.exists() {
return Some(path);
}
}
}
}
}
}
// If not in config, get arguments from running process
if let Some(args) = get_args_from_running_process() {
for i in 0..args.len() {
if args[i] == "--user-data-dir" && i + 1 < args.len() {
// Next argument is the path
let path = std::path::PathBuf::from(&args[i + 1]);
if path.exists() {
return Some(path);
}
} else if args[i].starts_with("--user-data-dir=") {
// Argument and value in same string, e.g. --user-data-dir=/path/to/data
let parts: Vec<&str> = args[i].splitn(2, '=').collect();
if parts.len() == 2 {
let path_str = parts[1];
let path = std::path::PathBuf::from(path_str);
if path.exists() {
return Some(path);
}
}
}
}
}
None
}
/// Get Antigravity executable path (cross-platform)
///
/// Search strategy (highest to lowest priority):
/// 1. Get path from running process (most reliable, supports any location)
/// 2. Iterate standard installation locations
/// 3. Return None
pub fn get_antigravity_executable_path() -> Option<std::path::PathBuf> {
// Strategy 1: Get from running process (supports any location)
if let Some(path) = get_path_from_running_process() {
return Some(path);
}
// Strategy 2: Check standard installation locations
check_standard_locations()
}
/// Check standard installation locations
fn check_standard_locations() -> Option<std::path::PathBuf> {
#[cfg(target_os = "macos")]
{
let path = std::path::PathBuf::from("/Applications/Antigravity.app");
if path.exists() {
return Some(path);
}
}
#[cfg(target_os = "windows")]
{
use std::env;
// Get environment variables
let local_appdata = env::var("LOCALAPPDATA").ok();
let program_files =
env::var("ProgramFiles").unwrap_or_else(|_| "C:\\Program Files".to_string());
let program_files_x86 =
env::var("ProgramFiles(x86)").unwrap_or_else(|_| "C:\\Program Files (x86)".to_string());
let mut possible_paths = Vec::new();
// User installation location (preferred)
if let Some(local) = local_appdata {
possible_paths.push(
std::path::PathBuf::from(&local)
.join("Programs")
.join("Antigravity")
.join("Antigravity.exe"),
);
}
// System installation location
possible_paths.push(
std::path::PathBuf::from(&program_files)
.join("Antigravity")
.join("Antigravity.exe"),
);
// 32-bit compatibility location
possible_paths.push(
std::path::PathBuf::from(&program_files_x86)
.join("Antigravity")
.join("Antigravity.exe"),
);
// Return the first existing path
for path in possible_paths {
if path.exists() {
return Some(path);
}
}
}
#[cfg(target_os = "linux")]
{
let possible_paths = vec![
std::path::PathBuf::from("/usr/bin/antigravity"),
std::path::PathBuf::from("/opt/Antigravity/antigravity"),
std::path::PathBuf::from("/usr/share/antigravity/antigravity"),
];
// User local installation
if let Some(home) = dirs::home_dir() {
let user_local = home.join(".local/bin/antigravity");
if user_local.exists() {
return Some(user_local);
}
}
for path in possible_paths {
if path.exists() {
return Some(path);
}
}
}
None
}
|