use once_cell::sync::OnceCell; #[cfg(target_os = "macos")] pub mod speed_rate; use crate::module::mihomo::Rate; use crate::{ cmd, config::Config, feat, resolve, utils::resolve::VERSION, utils::{dirs, i18n::t}, }; use anyhow::Result; #[cfg(target_os = "macos")] use futures::StreamExt; #[cfg(target_os = "macos")] use parking_lot::Mutex; #[cfg(target_os = "macos")] use parking_lot::RwLock; #[cfg(target_os = "macos")] pub use speed_rate::{SpeedRate, Traffic}; #[cfg(target_os = "macos")] use std::sync::Arc; use tauri::menu::{CheckMenuItem, IsMenuItem}; use tauri::AppHandle; use tauri::{ menu::{MenuEvent, MenuItem, PredefinedMenuItem, Submenu}, tray::{MouseButton, MouseButtonState, TrayIconEvent, TrayIconId}, Wry, }; #[cfg(target_os = "macos")] use tokio::sync::broadcast; use super::handle; #[cfg(target_os = "macos")] pub struct Tray { pub speed_rate: Arc>>, shutdown_tx: Arc>>>, is_subscribed: Arc>, } #[cfg(not(target_os = "macos"))] pub struct Tray {} impl Tray { pub fn global() -> &'static Tray { static TRAY: OnceCell = OnceCell::new(); #[cfg(target_os = "macos")] return TRAY.get_or_init(|| Tray { speed_rate: Arc::new(Mutex::new(None)), shutdown_tx: Arc::new(RwLock::new(None)), is_subscribed: Arc::new(RwLock::new(false)), }); #[cfg(not(target_os = "macos"))] return TRAY.get_or_init(|| Tray {}); } pub fn init(&self) -> Result<()> { #[cfg(target_os = "macos")] { let mut speed_rate = self.speed_rate.lock(); *speed_rate = Some(SpeedRate::new()); } Ok(()) } pub fn create_systray(&self) -> Result<()> { let app_handle = handle::Handle::global().app_handle().unwrap(); let tray_incon_id = TrayIconId::new("main"); let tray = app_handle.tray_by_id(&tray_incon_id).unwrap(); #[cfg(target_os = "macos")] tray.set_show_menu_on_left_click(false)?; tray.on_tray_icon_event(|_, event| { let tray_event = { Config::verge().latest().tray_event.clone() }; let tray_event: String = tray_event.unwrap_or("main_window".into()); #[cfg(target_os = "macos")] if let TrayIconEvent::Click { button: MouseButton::Left, button_state: MouseButtonState::Down, .. } = event { match tray_event.as_str() { "system_proxy" => feat::toggle_system_proxy(), "tun_mode" => feat::toggle_tun_mode(None), "main_window" => resolve::create_window(), _ => {} } } #[cfg(not(target_os = "macos"))] if let TrayIconEvent::Click { button: MouseButton::Left, button_state: MouseButtonState::Down, .. } = event { match tray_event.as_str() { "system_proxy" => feat::toggle_system_proxy(), "tun_mode" => feat::toggle_tun_mode(None), "main_window" => resolve::create_window(), _ => {} } } }); tray.on_menu_event(on_menu_event); Ok(()) } /// 更新托盘菜单 pub fn update_menu(&self) -> Result<()> { let app_handle = handle::Handle::global().app_handle().unwrap(); let verge = Config::verge().latest().clone(); let system_proxy = verge.enable_system_proxy.as_ref().unwrap_or(&false); let tun_mode = verge.enable_tun_mode.as_ref().unwrap_or(&false); let mode = { Config::clash() .latest() .0 .get("mode") .map(|val| val.as_str().unwrap_or("rule")) .unwrap_or("rule") .to_owned() }; let profile_uid_and_name = Config::profiles() .data() .all_profile_uid_and_name() .unwrap_or(Vec::new()); let tray = app_handle.tray_by_id("main").unwrap(); let _ = tray.set_menu(Some(create_tray_menu( &app_handle, Some(mode.as_str()), *system_proxy, *tun_mode, profile_uid_and_name, )?)); Ok(()) } /// 更新托盘图标 #[allow(unused_variables)] pub fn update_icon(&self, rate: Option) -> Result<()> { let app_handle = handle::Handle::global().app_handle().unwrap(); let verge = Config::verge().latest().clone(); let system_proxy = verge.enable_system_proxy.as_ref().unwrap_or(&false); let tun_mode = verge.enable_tun_mode.as_ref().unwrap_or(&false); let common_tray_icon = verge.common_tray_icon.as_ref().unwrap_or(&false); let sysproxy_tray_icon = verge.sysproxy_tray_icon.as_ref().unwrap_or(&false); let tun_tray_icon = verge.tun_tray_icon.as_ref().unwrap_or(&false); let tray = app_handle.tray_by_id("main").unwrap(); #[cfg(target_os = "macos")] let tray_icon = verge.tray_icon.clone().unwrap_or("monochrome".to_string()); let icon_bytes = if *system_proxy && !*tun_mode { #[cfg(target_os = "macos")] let mut icon = match tray_icon.as_str() { "colorful" => include_bytes!("../../../icons/tray-icon-sys.ico").to_vec(), _ => include_bytes!("../../../icons/tray-icon-sys-mono.ico").to_vec(), }; #[cfg(not(target_os = "macos"))] let mut icon = include_bytes!("../../../icons/tray-icon-sys.ico").to_vec(); if *sysproxy_tray_icon { let icon_dir_path = dirs::app_home_dir()?.join("icons"); let png_path = icon_dir_path.join("sysproxy.png"); let ico_path = icon_dir_path.join("sysproxy.ico"); if ico_path.exists() { icon = std::fs::read(ico_path).unwrap(); } else if png_path.exists() { icon = std::fs::read(png_path).unwrap(); } } icon } else if *tun_mode { #[cfg(target_os = "macos")] let mut icon = match tray_icon.as_str() { "colorful" => include_bytes!("../../../icons/tray-icon-tun.ico").to_vec(), _ => include_bytes!("../../../icons/tray-icon-tun-mono.ico").to_vec(), }; #[cfg(not(target_os = "macos"))] let mut icon = include_bytes!("../../../icons/tray-icon-tun.ico").to_vec(); if *tun_tray_icon { let icon_dir_path = dirs::app_home_dir()?.join("icons"); let png_path = icon_dir_path.join("tun.png"); let ico_path = icon_dir_path.join("tun.ico"); if ico_path.exists() { icon = std::fs::read(ico_path).unwrap(); } else if png_path.exists() { icon = std::fs::read(png_path).unwrap(); } } icon } else { #[cfg(target_os = "macos")] let mut icon = match tray_icon.as_str() { "colorful" => include_bytes!("../../../icons/tray-icon.ico").to_vec(), _ => include_bytes!("../../../icons/tray-icon-mono.ico").to_vec(), }; #[cfg(not(target_os = "macos"))] let mut icon = include_bytes!("../../../icons/tray-icon.ico").to_vec(); if *common_tray_icon { let icon_dir_path = dirs::app_home_dir()?.join("icons"); let png_path = icon_dir_path.join("common.png"); let ico_path = icon_dir_path.join("common.ico"); if ico_path.exists() { icon = std::fs::read(ico_path).unwrap(); } else if png_path.exists() { icon = std::fs::read(png_path).unwrap(); } } icon }; #[cfg(target_os = "macos")] { let enable_tray_speed = Config::verge().latest().enable_tray_speed.unwrap_or(true); let is_colorful = tray_icon == "colorful"; // 处理图标和速率 let final_icon_bytes = if enable_tray_speed { let rate = rate.or_else(|| { self.speed_rate .lock() .as_ref() .and_then(|speed_rate| speed_rate.get_curent_rate()) }); // 使用新的方法渲染图标和速率 SpeedRate::add_speed_text(icon_bytes, rate)? } else { icon_bytes }; // 设置系统托盘图标 let _ = tray.set_icon(Some(tauri::image::Image::from_bytes(&final_icon_bytes)?)); // 只对单色图标使用 template 模式 let _ = tray.set_icon_as_template(!is_colorful); } #[cfg(not(target_os = "macos"))] let _ = tray.set_icon(Some(tauri::image::Image::from_bytes(&icon_bytes)?)); Ok(()) } /// 更新托盘提示 pub fn update_tooltip(&self) -> Result<()> { let app_handle = handle::Handle::global().app_handle().unwrap(); let version = VERSION.get().unwrap(); let verge = Config::verge().latest().clone(); let system_proxy = verge.enable_system_proxy.as_ref().unwrap_or(&false); let tun_mode = verge.enable_tun_mode.as_ref().unwrap_or(&false); let switch_map = { let mut map = std::collections::HashMap::new(); map.insert(true, "on"); map.insert(false, "off"); map }; let mut current_profile_name = "None".to_string(); let profiles = Config::profiles(); let profiles = profiles.latest(); if let Some(current_profile_uid) = profiles.get_current() { let current_profile = profiles.get_item(¤t_profile_uid); current_profile_name = match ¤t_profile.unwrap().name { Some(profile_name) => profile_name.to_string(), None => current_profile_name, }; }; let tray = app_handle.tray_by_id("main").unwrap(); let _ = tray.set_tooltip(Some(&format!( "Clash Verge {version}\n{}: {}\n{}: {}\n{}: {}", t("SysProxy"), switch_map[system_proxy], t("TUN"), switch_map[tun_mode], t("Profile"), current_profile_name ))); Ok(()) } pub fn update_part(&self) -> Result<()> { self.update_menu()?; self.update_icon(None)?; self.update_tooltip()?; Ok(()) } /// 订阅流量数据 #[cfg(target_os = "macos")] pub async fn subscribe_traffic(&self) -> Result<()> { log::info!(target: "app", "subscribe traffic"); // 如果已经订阅,先取消订阅 if *self.is_subscribed.read() { self.unsubscribe_traffic(); } let (shutdown_tx, shutdown_rx) = broadcast::channel(1); *self.shutdown_tx.write() = Some(shutdown_tx); *self.is_subscribed.write() = true; let speed_rate = Arc::clone(&self.speed_rate); let is_subscribed = Arc::clone(&self.is_subscribed); tauri::async_runtime::spawn(async move { let mut shutdown = shutdown_rx; 'outer: loop { match Traffic::get_traffic_stream().await { Ok(mut stream) => loop { tokio::select! { Some(traffic) = stream.next() => { if let Ok(traffic) = traffic { let guard = speed_rate.lock(); let enable_tray_speed: bool = Config::verge().latest().enable_tray_speed.unwrap_or(true); if !enable_tray_speed { continue; } if let Some(sr) = guard.as_ref() { if let Some(rate) = sr.update_and_check_changed(traffic.up, traffic.down) { let _ = Tray::global().update_icon(Some(rate)); } } } } _ = shutdown.recv() => break 'outer, } }, Err(e) => { log::error!(target: "app", "Failed to get traffic stream: {}", e); // 如果获取流失败,等待一段时间后重试 tokio::time::sleep(std::time::Duration::from_secs(1)).await; // 检查是否应该继续重试 if !*is_subscribed.read() { break; } } } } }); Ok(()) } /// 取消订阅 traffic 数据 #[cfg(target_os = "macos")] pub fn unsubscribe_traffic(&self) { log::info!(target: "app", "unsubscribe traffic"); *self.is_subscribed.write() = false; if let Some(tx) = self.shutdown_tx.write().take() { drop(tx); } } } fn create_tray_menu( app_handle: &AppHandle, mode: Option<&str>, system_proxy_enabled: bool, tun_mode_enabled: bool, profile_uid_and_name: Vec<(String, String)>, ) -> Result> { let mode = mode.unwrap_or(""); let version = VERSION.get().unwrap(); let hotkeys = Config::verge() .latest() .hotkeys .as_ref() .map(|h| { h.iter() .filter_map(|item| { let mut parts = item.split(','); match (parts.next(), parts.next()) { (Some(func), Some(key)) => Some((func.to_string(), key.to_string())), _ => None, } }) .collect::>() }) .unwrap_or_default(); let profile_menu_items: Vec> = profile_uid_and_name .iter() .map(|(profile_uid, profile_name)| { let is_current_profile = Config::profiles().data().is_current_profile_index(profile_uid.to_string()); CheckMenuItem::with_id( app_handle, &format!("profiles_{}", profile_uid), t(&profile_name), true, is_current_profile, None::<&str>, ) .unwrap() }).collect(); let profile_menu_items: Vec<&dyn IsMenuItem> = profile_menu_items .iter() .map(|item| item as &dyn IsMenuItem) .collect(); let open_window = &MenuItem::with_id( app_handle, "open_window", t("Dashboard"), true, hotkeys.get("open_or_close_dashboard").map(|s| s.as_str()), ) .unwrap(); let rule_mode = &CheckMenuItem::with_id( app_handle, "rule_mode", t("Rule Mode"), true, mode == "rule", hotkeys.get("clash_mode_rule").map(|s| s.as_str()), ) .unwrap(); let global_mode = &CheckMenuItem::with_id( app_handle, "global_mode", t("Global Mode"), true, mode == "global", hotkeys.get("clash_mode_global").map(|s| s.as_str()), ) .unwrap(); let direct_mode = &CheckMenuItem::with_id( app_handle, "direct_mode", t("Direct Mode"), true, mode == "direct", hotkeys.get("clash_mode_direct").map(|s| s.as_str()), ) .unwrap(); let profiles = &Submenu::with_id_and_items( app_handle, "profiles", t("Profiles"), true, &profile_menu_items, ).unwrap(); let system_proxy = &CheckMenuItem::with_id( app_handle, "system_proxy", t("System Proxy"), true, system_proxy_enabled, hotkeys.get("toggle_system_proxy").map(|s| s.as_str()), ) .unwrap(); let tun_mode = &CheckMenuItem::with_id( app_handle, "tun_mode", t("TUN Mode"), true, tun_mode_enabled, hotkeys.get("toggle_tun_mode").map(|s| s.as_str()), ) .unwrap(); let copy_env = &MenuItem::with_id(app_handle, "copy_env", t("Copy Env"), true, None::<&str>).unwrap(); let open_app_dir = &MenuItem::with_id( app_handle, "open_app_dir", t("Conf Dir"), true, None::<&str>, ) .unwrap(); let open_core_dir = &MenuItem::with_id( app_handle, "open_core_dir", t("Core Dir"), true, None::<&str>, ) .unwrap(); let open_logs_dir = &MenuItem::with_id( app_handle, "open_logs_dir", t("Logs Dir"), true, None::<&str>, ) .unwrap(); let open_dir = &Submenu::with_id_and_items( app_handle, "open_dir", t("Open Dir"), true, &[open_app_dir, open_core_dir, open_logs_dir], ) .unwrap(); let restart_clash = &MenuItem::with_id( app_handle, "restart_clash", t("Restart Clash Core"), true, None::<&str>, ) .unwrap(); let restart_app = &MenuItem::with_id( app_handle, "restart_app", t("Restart App"), true, None::<&str>, ) .unwrap(); let app_version = &MenuItem::with_id( app_handle, "app_version", format!("{} {version}", t("Verge Version")), true, None::<&str>, ) .unwrap(); let more = &Submenu::with_id_and_items( app_handle, "more", t("More"), true, &[restart_clash, restart_app, app_version], ) .unwrap(); let quit = &MenuItem::with_id(app_handle, "quit", t("Exit"), true, Some("CmdOrControl+Q")).unwrap(); let separator = &PredefinedMenuItem::separator(app_handle).unwrap(); let menu = tauri::menu::MenuBuilder::new(app_handle) .items(&[ open_window, separator, rule_mode, global_mode, direct_mode, separator, profiles, separator, system_proxy, tun_mode, copy_env, open_dir, more, separator, quit, ]) .build() .unwrap(); Ok(menu) } fn on_menu_event(_: &AppHandle, event: MenuEvent) { match event.id.as_ref() { mode @ ("rule_mode" | "global_mode" | "direct_mode") => { let mode = &mode[0..mode.len() - 5]; println!("change mode to: {}", mode); feat::change_clash_mode(mode.into()); } "open_window" => resolve::create_window(), "system_proxy" => feat::toggle_system_proxy(), "tun_mode" => feat::toggle_tun_mode(None), "copy_env" => feat::copy_clash_env(), "open_app_dir" => crate::log_err!(cmd::open_app_dir()), "open_core_dir" => crate::log_err!(cmd::open_core_dir()), "open_logs_dir" => crate::log_err!(cmd::open_logs_dir()), "restart_clash" => feat::restart_clash_core(), "restart_app" => feat::restart_app(), "quit" => { println!("quit"); feat::quit(Some(0)); }, id if id.starts_with("profiles_") => { let profile_index = &id["profiles_".len()..]; feat::toggle_proxy_profile(profile_index.into()); } _ => {} } }