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
use futures_channel::oneshot;
use std::{
borrow::Cow,
future::Future,
marker::PhantomData,
ops::Deref,
rc::Rc
};
use crate::application::*;
#[cfg(feature = "threadsafe")]
use crate::delegate::*;
use crate::window::*;
use browser_window_core::browser_window::{BrowserWindowExt, BrowserWindowImpl, JsEvaluationError};
use browser_window_core::window::WindowExt;
#[cfg(feature = "threadsafe")]
use unsafe_send_sync::UnsafeSend;
mod builder;
pub use builder::{BrowserWindowBuilder, Source};
#[cfg(feature = "threadsafe")]
pub type BrowserDelegateFuture<'a,R> = DelegateFuture<'a, BrowserWindowHandle, R>;
pub struct BrowserWindow {
pub(in super) handle: BrowserWindowHandle,
_not_send: PhantomData<Rc<()>>
}
#[cfg(feature = "threadsafe")]
pub struct BrowserWindowThreaded {
pub(in super) handle: BrowserWindowHandle
}
#[cfg(feature = "threadsafe")]
unsafe impl Sync for BrowserWindowThreaded {}
#[derive(Clone, Copy)]
pub struct BrowserWindowHandle {
pub(in super) inner: BrowserWindowImpl,
window: WindowHandle
}
pub trait OwnedBrowserWindow: OwnedWindow {
fn browser_handle( &self ) -> BrowserWindowHandle;
}
impl BrowserWindow {
fn new( handle: BrowserWindowHandle ) -> Self {
Self {
handle: handle,
_not_send: PhantomData
}
}
}
impl Deref for BrowserWindow {
type Target = BrowserWindowHandle;
fn deref( &self ) -> &Self::Target {
&self.handle
}
}
impl Drop for BrowserWindow {
fn drop( &mut self ) {
self.handle.inner.window().drop();
}
}
impl HasAppHandle for BrowserWindow {
fn app_handle( &self ) -> ApplicationHandle {
self.handle.app_handle()
}
}
impl OwnedWindow for BrowserWindow {
fn window_handle( &self ) -> WindowHandle {
self.handle.window()
}
}
impl OwnedBrowserWindow for BrowserWindow {
fn browser_handle( &self ) -> BrowserWindowHandle {
self.handle.clone()
}
}
impl BrowserWindowHandle {
pub fn app( &self ) -> ApplicationHandle {
ApplicationHandle::new( self.inner.window().app() )
}
pub async fn eval_js( &self, js: &str ) -> Result<String, JsEvaluationError> {
let (tx, rx) = oneshot::channel::<Result<String, JsEvaluationError>>();
self._eval_js( js, |_, result| {
if let Err(_) = tx.send( result ) {
panic!("Unable to send JavaScript result back")
}
} );
rx.await.unwrap()
}
fn _eval_js<'a,H>( &self, js: &str, on_complete: H ) where
H: FnOnce( BrowserWindowHandle, Result<String, JsEvaluationError> ) + 'a
{
let data_ptr: *mut H = Box::into_raw(
Box::new( on_complete )
);
self.inner.eval_js( js.into(), eval_js_callback::<H>, data_ptr as _ );
}
pub fn exec_js( &self, js: &str ) {
self._eval_js( js, |_,_|{} );
}
pub fn navigate( &self, url: &str ) {
self.inner.navigate( url )
}
pub fn url<'a>(&'a self) -> Cow<'a, str> {
self.inner.url()
}
pub fn window( &self ) -> WindowHandle {
WindowHandle::new(
self.inner.window()
)
}
}
#[cfg(feature = "threadsafe")]
impl BrowserWindowThreaded {
pub fn app( &self ) -> ApplicationHandleThreaded {
ApplicationHandleThreaded::from_core_handle( self.handle.inner.window().app() )
}
pub fn close( self ) -> bool {
self.dispatch(|bw| {
bw.close()
})
}
pub fn delegate<'a,F,R>( &self, func: F ) -> BrowserDelegateFuture<'a,R> where
F: FnOnce( BrowserWindowHandle ) -> R + Send + 'a,
R: Send
{
BrowserDelegateFuture::new( self.handle.clone(), func )
}
pub fn delegate_async<'a,C,F,R>( &self, func: C ) -> DelegateFutureFuture<'a,R> where
C: FnOnce( BrowserWindowHandle ) -> F + Send + 'a,
F: Future<Output=R>,
R: Send + 'static
{
let handle = self.handle.clone();
DelegateFutureFuture::new( self.app().handle.clone(), async move {
func( handle.into() ).await
})
}
pub fn delegate_future<'a,F,R>( &self, fut: F ) -> DelegateFutureFuture<'a,R> where
F: Future<Output=R> + Send + 'a,
R: Send + 'static
{
let handle = self.handle.clone();
DelegateFutureFuture::new( self.app().handle.clone(), fut )
}
pub fn dispatch<'a,F>( &self, func: F ) -> bool where
F: FnOnce( BrowserWindowHandle ) + Send + 'a
{
let handle = UnsafeSend::new( self.handle );
self.app().dispatch(move |_| {
func( handle.i );
})
}
pub fn dispatch_async<'a,C,F>( &self, func: C ) -> bool where
C: FnOnce( BrowserWindowHandle ) -> F + Send + 'a,
F: Future<Output=()> + 'static
{
let handle = UnsafeSend::new( self.handle );
self.app().dispatch(move |a| {
a.spawn( func( handle.i ) );
})
}
fn new( handle: BrowserWindowHandle ) -> Self {
Self {
handle
}
}
}
#[cfg(feature = "threadsafe")]
impl HasAppHandle for BrowserWindowThreaded {
fn app_handle( &self ) -> ApplicationHandle {
self.handle.app_handle()
}
}
#[cfg(feature = "threadsafe")]
impl OwnedWindow for BrowserWindowThreaded {
fn window_handle( &self ) -> WindowHandle {
self.handle.window()
}
}
#[cfg(feature = "threadsafe")]
impl OwnedBrowserWindow for BrowserWindowThreaded {
fn browser_handle( &self ) -> BrowserWindowHandle {
self.handle.clone()
}
}
impl BrowserWindowHandle {
fn new( inner_handle: BrowserWindowImpl ) -> Self {
Self {
inner: inner_handle,
window: WindowHandle::new( inner_handle.window() )
}
}
}
impl Deref for BrowserWindowHandle {
type Target = WindowHandle;
fn deref( &self ) -> &Self::Target {
&self.window
}
}
impl HasAppHandle for BrowserWindowHandle {
fn app_handle( &self ) -> ApplicationHandle {
ApplicationHandle::new(
self.inner.window().app()
)
}
}
unsafe fn eval_js_callback<H>( _handle: BrowserWindowImpl, cb_data: *mut (), result: Result<String, JsEvaluationError> ) where
H: FnOnce(BrowserWindowHandle, Result<String, JsEvaluationError>)
{
let data_ptr = cb_data as *mut H;
let data = Box::from_raw( data_ptr );
let handle = BrowserWindowHandle::new( _handle );
(*data)( handle, result );
}