mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
90 lines
1.9 KiB
Rust
90 lines
1.9 KiB
Rust
use std::{process::ExitStatus, time::Duration};
|
|
|
|
use anyhow::bail;
|
|
use log::{info, warn};
|
|
use tauri::{window::MenuHandle, Window};
|
|
use tokio::process::Command;
|
|
|
|
pub trait WindowExt {
|
|
fn raise(&self) -> anyhow::Result<()>;
|
|
}
|
|
|
|
impl WindowExt for Window {
|
|
fn raise(&self) -> anyhow::Result<()> {
|
|
raise_window(self)
|
|
}
|
|
}
|
|
|
|
pub fn raise_window(win: &Window) -> anyhow::Result<()> {
|
|
let is_wayland = std::env::var("XDG_SESSION_TYPE").unwrap_or_default() == "wayland";
|
|
|
|
if is_wayland {
|
|
win.hide()?;
|
|
win.show()?;
|
|
} else {
|
|
if !win.is_visible()? {
|
|
win.show()?;
|
|
}
|
|
let title = win.title()?;
|
|
tokio::spawn(async move {
|
|
if let Err(err) = wmctrl_raise_window(&title).await {
|
|
warn!("Failed to raise window: {}", err);
|
|
}
|
|
});
|
|
}
|
|
|
|
// Calling window.show() on Windows will cause the menu to be shown.
|
|
hide_menu(win.menu_handle());
|
|
|
|
Ok(())
|
|
}
|
|
|
|
async fn wmctrl_raise_window(title: &str) -> anyhow::Result<()> {
|
|
let mut counter = 0;
|
|
|
|
loop {
|
|
if let Ok(exit_status) = wmctrl_try_raise_window(title).await {
|
|
if exit_status.success() {
|
|
info!("Window raised after {} attempts", counter + 1);
|
|
return Ok(());
|
|
}
|
|
}
|
|
|
|
if counter >= 10 {
|
|
bail!("Failed to raise window: {}", title)
|
|
}
|
|
|
|
counter += 1;
|
|
tokio::time::sleep(Duration::from_millis(100)).await;
|
|
}
|
|
}
|
|
|
|
async fn wmctrl_try_raise_window(title: &str) -> anyhow::Result<ExitStatus> {
|
|
let exit_status = Command::new("wmctrl")
|
|
.arg("-F")
|
|
.arg("-a")
|
|
.arg(title)
|
|
.spawn()?
|
|
.wait()
|
|
.await?;
|
|
|
|
Ok(exit_status)
|
|
}
|
|
|
|
fn hide_menu(menu_handle: MenuHandle) {
|
|
tokio::spawn(async move {
|
|
loop {
|
|
let menu_visible = menu_handle.is_visible().unwrap_or(false);
|
|
|
|
if !menu_visible {
|
|
break;
|
|
}
|
|
|
|
if menu_visible {
|
|
let _ = menu_handle.hide();
|
|
tokio::time::sleep(Duration::from_millis(10)).await;
|
|
}
|
|
}
|
|
});
|
|
}
|