123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170 |
- // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
- // SPDX-License-Identifier: Apache-2.0
- // SPDX-License-Identifier: MIT
- #![allow(dead_code)]
- #![allow(missing_docs)]
- use tauri_runtime::{
- dpi::{PhysicalPosition, PhysicalSize, Position, Size},
- monitor::Monitor,
- webview::{DetachedWebview, PendingWebview},
- window::{CursorIcon, DetachedWindow, PendingWindow, RawWindow, WindowEvent, WindowId},
- window::{WindowBuilder, WindowBuilderBase},
- DeviceEventFilter, Error, EventLoopProxy, ExitRequestedEventAction, Icon, ProgressBarState,
- Result, RunEvent, Runtime, RuntimeHandle, RuntimeInitArgs, UserAttentionType, UserEvent,
- WebviewDispatch, WindowDispatch, WindowEventId,
- };
- #[cfg(target_os = "macos")]
- use tauri_utils::TitleBarStyle;
- use tauri_utils::{config::WindowConfig, Theme};
- use url::Url;
- #[cfg(windows)]
- use windows::Win32::Foundation::HWND;
- use std::{
- cell::RefCell,
- collections::HashMap,
- fmt,
- sync::{
- atomic::{AtomicBool, AtomicU32, Ordering},
- mpsc::{channel, sync_channel, Receiver, SyncSender},
- Arc, Mutex,
- },
- };
- type ShortcutMap = HashMap<String, Box<dyn Fn() + Send + 'static>>;
- enum Message {
- Task(Box<dyn FnOnce() + Send>),
- CloseWindow(WindowId),
- DestroyWindow(WindowId),
- }
- struct Webview;
- struct Window {
- label: String,
- webviews: Vec<Webview>,
- }
- #[derive(Clone)]
- pub struct RuntimeContext {
- is_running: Arc<AtomicBool>,
- windows: Arc<RefCell<HashMap<WindowId, Window>>>,
- shortcuts: Arc<Mutex<ShortcutMap>>,
- run_tx: SyncSender<Message>,
- next_window_id: Arc<AtomicU32>,
- next_webview_id: Arc<AtomicU32>,
- next_window_event_id: Arc<AtomicU32>,
- next_webview_event_id: Arc<AtomicU32>,
- }
- // SAFETY: we ensure this type is only used on the main thread.
- #[allow(clippy::non_send_fields_in_send_ty)]
- unsafe impl Send for RuntimeContext {}
- // SAFETY: we ensure this type is only used on the main thread.
- #[allow(clippy::non_send_fields_in_send_ty)]
- unsafe impl Sync for RuntimeContext {}
- impl RuntimeContext {
- fn send_message(&self, message: Message) -> Result<()> {
- if self.is_running.load(Ordering::Relaxed) {
- self
- .run_tx
- .send(message)
- .map_err(|_| Error::FailedToSendMessage)
- } else {
- match message {
- Message::Task(task) => task(),
- Message::CloseWindow(id) | Message::DestroyWindow(id) => {
- self.windows.borrow_mut().remove(&id);
- }
- }
- Ok(())
- }
- }
- fn next_window_id(&self) -> WindowId {
- self.next_window_id.fetch_add(1, Ordering::Relaxed).into()
- }
- fn next_webview_id(&self) -> u32 {
- self.next_webview_id.fetch_add(1, Ordering::Relaxed)
- }
- fn next_window_event_id(&self) -> WindowEventId {
- self.next_window_event_id.fetch_add(1, Ordering::Relaxed)
- }
- fn next_webview_event_id(&self) -> WindowEventId {
- self.next_webview_event_id.fetch_add(1, Ordering::Relaxed)
- }
- }
- impl fmt::Debug for RuntimeContext {
- fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
- f.debug_struct("RuntimeContext").finish()
- }
- }
- #[derive(Debug, Clone)]
- pub struct MockRuntimeHandle {
- context: RuntimeContext,
- }
- impl<T: UserEvent> RuntimeHandle<T> for MockRuntimeHandle {
- type Runtime = MockRuntime;
- fn create_proxy(&self) -> EventProxy {
- EventProxy {}
- }
- #[cfg(target_os = "macos")]
- #[cfg_attr(docsrs, doc(cfg(target_os = "macos")))]
- fn set_activation_policy(
- &self,
- activation_policy: tauri_runtime::ActivationPolicy,
- ) -> Result<()> {
- Ok(())
- }
- fn request_exit(&self, code: i32) -> Result<()> {
- unimplemented!()
- }
- /// Create a new webview window.
- fn create_window<F: Fn(RawWindow<'_>) + Send + 'static>(
- &self,
- pending: PendingWindow<T, Self::Runtime>,
- _after_window_creation: Option<F>,
- ) -> Result<DetachedWindow<T, Self::Runtime>> {
- let id = self.context.next_window_id();
- let (webview_id, webviews) = if let Some(w) = &pending.webview {
- (Some(self.context.next_webview_id()), vec![Webview])
- } else {
- (None, Vec::new())
- };
- self.context.windows.borrow_mut().insert(
- id,
- Window {
- label: pending.label.clone(),
- webviews,
- },
- );
- let webview = webview_id.map(|id| DetachedWebview {
- label: pending.label.clone(),
- dispatcher: MockWebviewDispatcher {
- id,
- context: self.context.clone(),
- url: Arc::new(Mutex::new(pending.webview.unwrap().url)),
- last_evaluated_script: Default::default(),
- },
- });
- Ok(DetachedWindow {
- id,
- label: pending.label,
- dispatcher: MockWindowDispatcher {
- id,
- context: self.context.clone(),
- },
- webview,
- })
- }
- fn create_webview(
- &self,
- window_id: WindowId,
- pending: PendingWebview<T, Self::Runtime>,
- ) -> Result<DetachedWebview<T, Self::Runtime>> {
- let id = self.context.next_webview_id();
- let webview = Webview;
- if let Some(w) = self.context.windows.borrow_mut().get_mut(&window_id) {
- w.webviews.push(webview);
- }
- Ok(DetachedWebview {
- label: pending.label,
- dispatcher: MockWebviewDispatcher {
- id,
- context: self.context.clone(),
- last_evaluated_script: Default::default(),
- url: Arc::new(Mutex::new(pending.url)),
- },
- })
- }
- /// Run a task on the main thread.
- fn run_on_main_thread<F: FnOnce() + Send + 'static>(&self, f: F) -> Result<()> {
- self.context.send_message(Message::Task(Box::new(f)))
- }
- fn display_handle(
- &self,
- ) -> std::result::Result<raw_window_handle::DisplayHandle<'_>, raw_window_handle::HandleError> {
- #[cfg(target_os = "linux")]
- return Ok(unsafe {
- raw_window_handle::DisplayHandle::borrow_raw(raw_window_handle::RawDisplayHandle::Xlib(
- raw_window_handle::XlibDisplayHandle::new(None, 0),
- ))
- });
- #[cfg(target_os = "macos")]
- return Ok(unsafe {
- raw_window_handle::DisplayHandle::borrow_raw(raw_window_handle::RawDisplayHandle::AppKit(
- raw_window_handle::AppKitDisplayHandle::new(),
- ))
- });
- #[cfg(windows)]
- return Ok(unsafe {
- raw_window_handle::DisplayHandle::borrow_raw(raw_window_handle::RawDisplayHandle::Windows(
- raw_window_handle::WindowsDisplayHandle::new(),
- ))
- });
- #[cfg(not(any(target_os = "linux", target_os = "macos", windows)))]
- return unimplemented!();
- }
- fn primary_monitor(&self) -> Option<Monitor> {
- unimplemented!()
- }
- fn monitor_from_point(&self, x: f64, y: f64) -> Option<Monitor> {
- unimplemented!()
- }
- fn available_monitors(&self) -> Vec<Monitor> {
- unimplemented!()
- }
- /// Shows the application, but does not automatically focus it.
- #[cfg(target_os = "macos")]
- fn show(&self) -> Result<()> {
- Ok(())
- }
- /// Hides the application.
- #[cfg(target_os = "macos")]
- fn hide(&self) -> Result<()> {
- Ok(())
- }
- #[cfg(target_os = "android")]
- fn find_class<'a>(
- &self,
- env: &mut jni::JNIEnv<'a>,
- activity: &jni::objects::JObject<'_>,
- name: impl Into<String>,
- ) -> std::result::Result<jni::objects::JClass<'a>, jni::errors::Error> {
- todo!()
- }
- #[cfg(target_os = "android")]
- fn run_on_android_context<F>(&self, f: F)
- where
- F: FnOnce(&mut jni::JNIEnv, &jni::objects::JObject, &jni::objects::JObject) + Send + 'static,
- {
- todo!()
- }
- fn cursor_position(&self) -> Result<PhysicalPosition<f64>> {
- Ok(PhysicalPosition::new(0.0, 0.0))
- }
- }
- #[derive(Debug, Clone)]
- pub struct MockWebviewDispatcher {
- id: u32,
- context: RuntimeContext,
- url: Arc<Mutex<String>>,
- last_evaluated_script: Arc<Mutex<Option<String>>>,
- }
- impl MockWebviewDispatcher {
- pub fn last_evaluated_script(&self) -> Option<String> {
- self.last_evaluated_script.lock().unwrap().clone()
- }
- }
- #[derive(Debug, Clone)]
- pub struct MockWindowDispatcher {
- id: WindowId,
- context: RuntimeContext,
- }
- #[derive(Debug, Clone)]
- pub struct MockWindowBuilder {}
- impl WindowBuilderBase for MockWindowBuilder {}
- impl WindowBuilder for MockWindowBuilder {
- fn new() -> Self {
- Self {}
- }
- fn with_config(config: &WindowConfig) -> Self {
- Self {}
- }
- fn center(self) -> Self {
- self
- }
- fn position(self, x: f64, y: f64) -> Self {
- self
- }
- fn inner_size(self, min_width: f64, min_height: f64) -> Self {
- self
- }
- fn min_inner_size(self, min_width: f64, min_height: f64) -> Self {
- self
- }
- fn max_inner_size(self, max_width: f64, max_height: f64) -> Self {
- self
- }
- fn resizable(self, resizable: bool) -> Self {
- self
- }
- fn maximizable(self, resizable: bool) -> Self {
- self
- }
- fn minimizable(self, resizable: bool) -> Self {
- self
- }
- fn closable(self, resizable: bool) -> Self {
- self
- }
- fn title<S: Into<String>>(self, title: S) -> Self {
- self
- }
- fn fullscreen(self, fullscreen: bool) -> Self {
- self
- }
- fn focused(self, focused: bool) -> Self {
- self
- }
- fn maximized(self, maximized: bool) -> Self {
- self
- }
- fn visible(self, visible: bool) -> Self {
- self
- }
- #[cfg(any(not(target_os = "macos"), feature = "macos-private-api"))]
- #[cfg_attr(
- docsrs,
- doc(cfg(any(not(target_os = "macos"), feature = "macos-private-api")))
- )]
- fn transparent(self, transparent: bool) -> Self {
- self
- }
- fn decorations(self, decorations: bool) -> Self {
- self
- }
- fn always_on_bottom(self, always_on_bottom: bool) -> Self {
- self
- }
- fn always_on_top(self, always_on_top: bool) -> Self {
- self
- }
- fn visible_on_all_workspaces(self, visible_on_all_workspaces: bool) -> Self {
- self
- }
- fn content_protected(self, protected: bool) -> Self {
- self
- }
- fn icon(self, icon: Icon<'_>) -> Result<Self> {
- Ok(self)
- }
- fn skip_taskbar(self, skip: bool) -> Self {
- self
- }
- fn shadow(self, enable: bool) -> Self {
- self
- }
- #[cfg(windows)]
- fn owner(self, owner: HWND) -> Self {
- self
- }
- #[cfg(windows)]
- fn parent(self, parent: HWND) -> Self {
- self
- }
- #[cfg(target_os = "macos")]
- fn parent(self, parent: *mut std::ffi::c_void) -> Self {
- self
- }
- #[cfg(any(
- target_os = "linux",
- target_os = "dragonfly",
- target_os = "freebsd",
- target_os = "netbsd",
- target_os = "openbsd"
- ))]
- fn transient_for(self, parent: &impl gtk::glib::IsA<gtk::Window>) -> Self {
- self
- }
- #[cfg(windows)]
- fn drag_and_drop(self, enabled: bool) -> Self {
- self
- }
- #[cfg(target_os = "macos")]
- fn title_bar_style(self, style: TitleBarStyle) -> Self {
- self
- }
- #[cfg(target_os = "macos")]
- fn hidden_title(self, transparent: bool) -> Self {
- self
- }
- #[cfg(target_os = "macos")]
- fn tabbing_identifier(self, identifier: &str) -> Self {
- self
- }
- fn theme(self, theme: Option<Theme>) -> Self {
- self
- }
- fn has_icon(&self) -> bool {
- false
- }
- }
- impl<T: UserEvent> WebviewDispatch<T> for MockWebviewDispatcher {
- type Runtime = MockRuntime;
- fn run_on_main_thread<F: FnOnce() + Send + 'static>(&self, f: F) -> Result<()> {
- self.context.send_message(Message::Task(Box::new(f)))
- }
- fn on_webview_event<F: Fn(&tauri_runtime::window::WebviewEvent) + Send + 'static>(
- &self,
- f: F,
- ) -> tauri_runtime::WebviewEventId {
- self.context.next_window_event_id()
- }
- fn with_webview<F: FnOnce(Box<dyn std::any::Any>) + Send + 'static>(&self, f: F) -> Result<()> {
- Ok(())
- }
- #[cfg(any(debug_assertions, feature = "devtools"))]
- fn open_devtools(&self) {}
- #[cfg(any(debug_assertions, feature = "devtools"))]
- fn close_devtools(&self) {}
- #[cfg(any(debug_assertions, feature = "devtools"))]
- fn is_devtools_open(&self) -> Result<bool> {
- Ok(false)
- }
- fn set_zoom(&self, scale_factor: f64) -> Result<()> {
- Ok(())
- }
- fn eval_script<S: Into<String>>(&self, script: S) -> Result<()> {
- self
- .last_evaluated_script
- .lock()
- .unwrap()
- .replace(script.into());
- Ok(())
- }
- fn url(&self) -> Result<String> {
- Ok(self.url.lock().unwrap().clone())
- }
- fn bounds(&self) -> Result<tauri_runtime::Rect> {
- Ok(tauri_runtime::Rect::default())
- }
- fn position(&self) -> Result<PhysicalPosition<i32>> {
- Ok(PhysicalPosition { x: 0, y: 0 })
- }
- fn size(&self) -> Result<PhysicalSize<u32>> {
- Ok(PhysicalSize {
- width: 0,
- height: 0,
- })
- }
- fn navigate(&self, url: Url) -> Result<()> {
- *self.url.lock().unwrap() = url.to_string();
- Ok(())
- }
- fn print(&self) -> Result<()> {
- Ok(())
- }
- fn close(&self) -> Result<()> {
- Ok(())
- }
- fn set_bounds(&self, bounds: tauri_runtime::Rect) -> Result<()> {
- Ok(())
- }
- fn set_size(&self, _size: Size) -> Result<()> {
- Ok(())
- }
- fn set_position(&self, _position: Position) -> Result<()> {
- Ok(())
- }
- fn set_focus(&self) -> Result<()> {
- Ok(())
- }
- fn reparent(&self, window_id: WindowId) -> Result<()> {
- Ok(())
- }
- fn set_auto_resize(&self, auto_resize: bool) -> Result<()> {
- Ok(())
- }
- }
- impl<T: UserEvent> WindowDispatch<T> for MockWindowDispatcher {
- type Runtime = MockRuntime;
- type WindowBuilder = MockWindowBuilder;
- fn run_on_main_thread<F: FnOnce() + Send + 'static>(&self, f: F) -> Result<()> {
- self.context.send_message(Message::Task(Box::new(f)))
- }
- fn on_window_event<F: Fn(&WindowEvent) + Send + 'static>(&self, f: F) -> WindowEventId {
- self.context.next_window_event_id()
- }
- fn scale_factor(&self) -> Result<f64> {
- Ok(1.0)
- }
- fn inner_position(&self) -> Result<PhysicalPosition<i32>> {
- Ok(PhysicalPosition { x: 0, y: 0 })
- }
- fn outer_position(&self) -> Result<PhysicalPosition<i32>> {
- Ok(PhysicalPosition { x: 0, y: 0 })
- }
- fn inner_size(&self) -> Result<PhysicalSize<u32>> {
- Ok(PhysicalSize {
- width: 0,
- height: 0,
- })
- }
- fn outer_size(&self) -> Result<PhysicalSize<u32>> {
- Ok(PhysicalSize {
- width: 0,
- height: 0,
- })
- }
- fn is_fullscreen(&self) -> Result<bool> {
- Ok(false)
- }
- fn is_minimized(&self) -> Result<bool> {
- Ok(false)
- }
- fn is_maximized(&self) -> Result<bool> {
- Ok(false)
- }
- fn is_focused(&self) -> Result<bool> {
- Ok(false)
- }
- fn is_decorated(&self) -> Result<bool> {
- Ok(false)
- }
- fn is_resizable(&self) -> Result<bool> {
- Ok(false)
- }
- fn is_maximizable(&self) -> Result<bool> {
- Ok(true)
- }
- fn is_minimizable(&self) -> Result<bool> {
- Ok(true)
- }
- fn is_closable(&self) -> Result<bool> {
- Ok(true)
- }
- fn is_visible(&self) -> Result<bool> {
- Ok(true)
- }
- fn title(&self) -> Result<String> {
- Ok(String::new())
- }
- fn current_monitor(&self) -> Result<Option<Monitor>> {
- Ok(None)
- }
- fn primary_monitor(&self) -> Result<Option<Monitor>> {
- Ok(None)
- }
- fn monitor_from_point(&self, x: f64, y: f64) -> Result<Option<Monitor>> {
- Ok(None)
- }
- fn available_monitors(&self) -> Result<Vec<Monitor>> {
- Ok(Vec::new())
- }
- fn theme(&self) -> Result<Theme> {
- Ok(Theme::Light)
- }
- #[cfg(any(
- target_os = "linux",
- target_os = "dragonfly",
- target_os = "freebsd",
- target_os = "netbsd",
- target_os = "openbsd"
- ))]
- fn gtk_window(&self) -> Result<gtk::ApplicationWindow> {
- unimplemented!()
- }
- #[cfg(any(
- target_os = "linux",
- target_os = "dragonfly",
- target_os = "freebsd",
- target_os = "netbsd",
- target_os = "openbsd"
- ))]
- fn default_vbox(&self) -> Result<gtk::Box> {
- unimplemented!()
- }
- fn window_handle(
- &self,
- ) -> std::result::Result<raw_window_handle::WindowHandle<'_>, raw_window_handle::HandleError> {
- #[cfg(target_os = "linux")]
- return unsafe {
- Ok(raw_window_handle::WindowHandle::borrow_raw(
- raw_window_handle::RawWindowHandle::Xlib(raw_window_handle::XlibWindowHandle::new(0)),
- ))
- };
- #[cfg(target_os = "macos")]
- return unsafe {
- Ok(raw_window_handle::WindowHandle::borrow_raw(
- raw_window_handle::RawWindowHandle::AppKit(raw_window_handle::AppKitWindowHandle::new(
- std::ptr::NonNull::from(&()).cast(),
- )),
- ))
- };
- #[cfg(windows)]
- return unsafe {
- Ok(raw_window_handle::WindowHandle::borrow_raw(
- raw_window_handle::RawWindowHandle::Win32(raw_window_handle::Win32WindowHandle::new(
- std::num::NonZeroIsize::MIN,
- )),
- ))
- };
- #[cfg(not(any(target_os = "linux", target_os = "macos", windows)))]
- return unimplemented!();
- }
- fn center(&self) -> Result<()> {
- Ok(())
- }
- fn request_user_attention(&self, request_type: Option<UserAttentionType>) -> Result<()> {
- Ok(())
- }
- fn create_window<F: Fn(RawWindow<'_>) + Send + 'static>(
- &mut self,
- pending: PendingWindow<T, Self::Runtime>,
- _after_window_creation: Option<F>,
- ) -> Result<DetachedWindow<T, Self::Runtime>> {
- let id = self.context.next_window_id();
- let (webview_id, webviews) = if let Some(w) = &pending.webview {
- (Some(self.context.next_webview_id()), vec![Webview])
- } else {
- (None, Vec::new())
- };
- self.context.windows.borrow_mut().insert(
- id,
- Window {
- label: pending.label.clone(),
- webviews,
- },
- );
- let webview = webview_id.map(|id| DetachedWebview {
- label: pending.label.clone(),
- dispatcher: MockWebviewDispatcher {
- id,
- context: self.context.clone(),
- url: Arc::new(Mutex::new(pending.webview.unwrap().url)),
- last_evaluated_script: Default::default(),
- },
- });
- Ok(DetachedWindow {
- id,
- label: pending.label,
- dispatcher: MockWindowDispatcher {
- id,
- context: self.context.clone(),
- },
- webview,
- })
- }
- fn create_webview(
- &mut self,
- pending: PendingWebview<T, Self::Runtime>,
- ) -> Result<DetachedWebview<T, Self::Runtime>> {
- let id = self.context.next_webview_id();
- let webview = Webview;
- if let Some(w) = self.context.windows.borrow_mut().get_mut(&self.id) {
- w.webviews.push(webview);
- }
- Ok(DetachedWebview {
- label: pending.label,
- dispatcher: MockWebviewDispatcher {
- id,
- context: self.context.clone(),
- last_evaluated_script: Default::default(),
- url: Arc::new(Mutex::new(pending.url)),
- },
- })
- }
- fn set_resizable(&self, resizable: bool) -> Result<()> {
- Ok(())
- }
- fn set_maximizable(&self, maximizable: bool) -> Result<()> {
- Ok(())
- }
- fn set_minimizable(&self, minimizable: bool) -> Result<()> {
- Ok(())
- }
- fn set_closable(&self, closable: bool) -> Result<()> {
- Ok(())
- }
- fn set_title<S: Into<String>>(&self, title: S) -> Result<()> {
- Ok(())
- }
- fn maximize(&self) -> Result<()> {
- Ok(())
- }
- fn unmaximize(&self) -> Result<()> {
- Ok(())
- }
- fn minimize(&self) -> Result<()> {
- Ok(())
- }
- fn unminimize(&self) -> Result<()> {
- Ok(())
- }
- fn show(&self) -> Result<()> {
- Ok(())
- }
- fn hide(&self) -> Result<()> {
- Ok(())
- }
- fn close(&self) -> Result<()> {
- self.context.send_message(Message::CloseWindow(self.id))?;
- Ok(())
- }
- fn destroy(&self) -> Result<()> {
- self.context.send_message(Message::DestroyWindow(self.id))?;
- Ok(())
- }
- fn set_decorations(&self, decorations: bool) -> Result<()> {
- Ok(())
- }
- fn set_shadow(&self, shadow: bool) -> Result<()> {
- Ok(())
- }
- fn set_always_on_bottom(&self, always_on_bottom: bool) -> Result<()> {
- Ok(())
- }
- fn set_always_on_top(&self, always_on_top: bool) -> Result<()> {
- Ok(())
- }
- fn set_visible_on_all_workspaces(&self, visible_on_all_workspaces: bool) -> Result<()> {
- Ok(())
- }
- fn set_content_protected(&self, protected: bool) -> Result<()> {
- Ok(())
- }
- fn set_size(&self, size: Size) -> Result<()> {
- Ok(())
- }
- fn set_min_size(&self, size: Option<Size>) -> Result<()> {
- Ok(())
- }
- fn set_max_size(&self, size: Option<Size>) -> Result<()> {
- Ok(())
- }
- fn set_position(&self, position: Position) -> Result<()> {
- Ok(())
- }
- fn set_fullscreen(&self, fullscreen: bool) -> Result<()> {
- Ok(())
- }
- fn set_focus(&self) -> Result<()> {
- Ok(())
- }
- fn set_icon(&self, icon: Icon<'_>) -> Result<()> {
- Ok(())
- }
- fn set_skip_taskbar(&self, skip: bool) -> Result<()> {
- Ok(())
- }
- fn set_cursor_grab(&self, grab: bool) -> Result<()> {
- Ok(())
- }
- fn set_cursor_visible(&self, visible: bool) -> Result<()> {
- Ok(())
- }
- fn set_cursor_icon(&self, icon: CursorIcon) -> Result<()> {
- Ok(())
- }
- fn set_cursor_position<Pos: Into<Position>>(&self, position: Pos) -> Result<()> {
- Ok(())
- }
- fn set_ignore_cursor_events(&self, ignore: bool) -> Result<()> {
- Ok(())
- }
- fn start_dragging(&self) -> Result<()> {
- Ok(())
- }
- fn start_resize_dragging(&self, direction: tauri_runtime::ResizeDirection) -> Result<()> {
- Ok(())
- }
- fn set_progress_bar(&self, progress_state: ProgressBarState) -> Result<()> {
- Ok(())
- }
- }
- #[derive(Debug, Clone)]
- pub struct EventProxy {}
- impl<T: UserEvent> EventLoopProxy<T> for EventProxy {
- fn send_event(&self, event: T) -> Result<()> {
- Ok(())
- }
- }
- #[derive(Debug)]
- pub struct MockRuntime {
- is_running: Arc<AtomicBool>,
- pub context: RuntimeContext,
- run_rx: Receiver<Message>,
- }
- impl MockRuntime {
- fn init() -> Self {
- let is_running = Arc::new(AtomicBool::new(false));
- let (tx, rx) = sync_channel(256);
- let context = RuntimeContext {
- is_running: is_running.clone(),
- windows: Default::default(),
- shortcuts: Default::default(),
- run_tx: tx,
- next_window_id: Default::default(),
- next_webview_id: Default::default(),
- next_window_event_id: Default::default(),
- next_webview_event_id: Default::default(),
- };
- Self {
- is_running,
- context,
- run_rx: rx,
- }
- }
- }
- impl<T: UserEvent> Runtime<T> for MockRuntime {
- type WindowDispatcher = MockWindowDispatcher;
- type WebviewDispatcher = MockWebviewDispatcher;
- type Handle = MockRuntimeHandle;
- type EventLoopProxy = EventProxy;
- fn new(_args: RuntimeInitArgs) -> Result<Self> {
- Ok(Self::init())
- }
- #[cfg(any(windows, target_os = "linux"))]
- fn new_any_thread(_args: RuntimeInitArgs) -> Result<Self> {
- Ok(Self::init())
- }
- fn create_proxy(&self) -> EventProxy {
- EventProxy {}
- }
- fn handle(&self) -> Self::Handle {
- MockRuntimeHandle {
- context: self.context.clone(),
- }
- }
- fn create_window<F: Fn(RawWindow<'_>) + Send + 'static>(
- &self,
- pending: PendingWindow<T, Self>,
- _after_window_creation: Option<F>,
- ) -> Result<DetachedWindow<T, Self>> {
- let id = self.context.next_window_id();
- let (webview_id, webviews) = if let Some(w) = &pending.webview {
- (Some(self.context.next_webview_id()), vec![Webview])
- } else {
- (None, Vec::new())
- };
- self.context.windows.borrow_mut().insert(
- id,
- Window {
- label: pending.label.clone(),
- webviews,
- },
- );
- let webview = webview_id.map(|id| DetachedWebview {
- label: pending.label.clone(),
- dispatcher: MockWebviewDispatcher {
- id,
- context: self.context.clone(),
- url: Arc::new(Mutex::new(pending.webview.unwrap().url)),
- last_evaluated_script: Default::default(),
- },
- });
- Ok(DetachedWindow {
- id,
- label: pending.label,
- dispatcher: MockWindowDispatcher {
- id,
- context: self.context.clone(),
- },
- webview,
- })
- }
- fn create_webview(
- &self,
- window_id: WindowId,
- pending: PendingWebview<T, Self>,
- ) -> Result<DetachedWebview<T, Self>> {
- let id = self.context.next_webview_id();
- let webview = Webview;
- if let Some(w) = self.context.windows.borrow_mut().get_mut(&window_id) {
- w.webviews.push(webview);
- }
- Ok(DetachedWebview {
- label: pending.label,
- dispatcher: MockWebviewDispatcher {
- id,
- context: self.context.clone(),
- last_evaluated_script: Default::default(),
- url: Arc::new(Mutex::new(pending.url)),
- },
- })
- }
- fn primary_monitor(&self) -> Option<Monitor> {
- unimplemented!()
- }
- fn monitor_from_point(&self, x: f64, y: f64) -> Option<Monitor> {
- unimplemented!()
- }
- fn available_monitors(&self) -> Vec<Monitor> {
- unimplemented!()
- }
- #[cfg(target_os = "macos")]
- #[cfg_attr(docsrs, doc(cfg(target_os = "macos")))]
- fn set_activation_policy(&mut self, activation_policy: tauri_runtime::ActivationPolicy) {}
- #[cfg(target_os = "macos")]
- #[cfg_attr(docsrs, doc(cfg(target_os = "macos")))]
- fn show(&self) {}
- #[cfg(target_os = "macos")]
- #[cfg_attr(docsrs, doc(cfg(target_os = "macos")))]
- fn hide(&self) {}
- fn set_device_event_filter(&mut self, filter: DeviceEventFilter) {}
- #[cfg(any(
- target_os = "macos",
- windows,
- target_os = "linux",
- target_os = "dragonfly",
- target_os = "freebsd",
- target_os = "netbsd",
- target_os = "openbsd"
- ))]
- fn run_iteration<F: FnMut(RunEvent<T>)>(&mut self, callback: F) {}
- fn run<F: FnMut(RunEvent<T>) + 'static>(self, mut callback: F) {
- self.is_running.store(true, Ordering::Relaxed);
- callback(RunEvent::Ready);
- loop {
- if let Ok(m) = self.run_rx.try_recv() {
- match m {
- Message::Task(p) => p(),
- Message::CloseWindow(id) => {
- let label = self
- .context
- .windows
- .borrow()
- .get(&id)
- .map(|w| w.label.clone());
- if let Some(label) = label {
- let (tx, rx) = channel();
- callback(RunEvent::WindowEvent {
- label,
- event: WindowEvent::CloseRequested { signal_tx: tx },
- });
- let should_prevent = matches!(rx.try_recv(), Ok(true));
- if !should_prevent {
- self.context.windows.borrow_mut().remove(&id);
- let is_empty = self.context.windows.borrow().is_empty();
- if is_empty {
- let (tx, rx) = channel();
- callback(RunEvent::ExitRequested { code: None, tx });
- let recv = rx.try_recv();
- let should_prevent = matches!(recv, Ok(ExitRequestedEventAction::Prevent));
- if !should_prevent {
- break;
- }
- }
- }
- }
- }
- Message::DestroyWindow(id) => {
- let removed = self.context.windows.borrow_mut().remove(&id).is_some();
- if removed {
- let is_empty = self.context.windows.borrow().is_empty();
- if is_empty {
- let (tx, rx) = channel();
- callback(RunEvent::ExitRequested { code: None, tx });
- let recv = rx.try_recv();
- let should_prevent = matches!(recv, Ok(ExitRequestedEventAction::Prevent));
- if !should_prevent {
- break;
- }
- }
- }
- }
- }
- }
- callback(RunEvent::MainEventsCleared);
- std::thread::sleep(std::time::Duration::from_secs(1));
- }
- callback(RunEvent::Exit);
- }
- fn cursor_position(&self) -> Result<PhysicalPosition<f64>> {
- Ok(PhysicalPosition::new(0.0, 0.0))
- }
- }
|