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
/*
 * Copyright (c) 2017 Boucher, Antoni <bouanto@zoho.com>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 * the Software, and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

/// Connect events to sending a message.
///
/// ## Rules
/// 1. Send `$msg` to `$other_component` when the GTK+ `$event` is emitted on `$widget`.
///
/// 2. Optionally send `$msg.0` when the GTK+ `$event` is emitted on `$widget`.
/// Return `$msg.1` in the GTK+ callback.
/// This variant gives more control to the caller since it expects a `$msg` returning `(Option<MSG>,
/// ReturnValue)` where the `ReturnValue` is the value to return in the GTK+ callback.
/// Option<MSG> can be None if no message needs to be emitted.
///
/// 3. Send `$msg` when the GTK+ `$event` is emitted on `$widget`.
///
/// 4. Send `$msg` to `$widget` when the `$message` is received on `$stream`.
#[macro_export]
macro_rules! connect {
    // Connect to a GTK+ widget event, sending a message to another widget.
    ($widget:expr, $event:ident($($args:pat),*), $other_component:expr, $msg:expr) => {
        connect_stream!($widget, $event($($args),*), $other_component.stream(), $msg);
    };

    // Connect to a GTK+ widget event.
    // This variant gives more control to the caller since it expects a `$msg` returning (Option<MSG>,
    // ReturnValue) where the ReturnValue is the value to return in the GTK+ callback.
    // Option<MSG> can be None if no message needs to be emitted.
    ($relm:expr, $widget:expr, $event:ident($($args:pat),*), return $msg:expr) => {{
        connect_stream!(return $relm.stream(), $widget, $event($($args),*), $msg);
    }};

    // Connect to a GTK+ widget event.
    ($relm:expr, $widget:expr, $event:ident($($args:pat),*), $msg:expr) => {{
        let stream = $relm.stream().clone();
        let _ = $widget.$event(move |$($args),*| {
            let msg: Option<_> = $crate::IntoOption::into_option($msg);
            if let Some(msg) = msg {
                stream.emit(msg);
            }
        });
    }};

    // Connect to a message reception.
    // TODO: create another macro rule accepting multiple patterns.
    ($src_component:ident @ $message:pat, $dst_component:expr, $msg:expr) => {
        let stream = $src_component.stream().clone();
        connect_stream!(stream@$message, $dst_component.stream(), $msg);
    };
}

/// Connect events to sending a message.
/// Similar to `connect!` but wants a stream instead of a component.
///
/// ## Rules
/// 1. Send `$msg` to `$other_stream` when the GTK+ `$event` is emitted on `$widget`.
///
/// 2. Send `$msg` to `$widget` when the `$message` is received on `$stream`.
#[macro_export]
macro_rules! connect_stream {
    // Connect to a GTK+ widget event.
    // This variant gives more control to the caller since it expects a `$msg` returning (Option<MSG>,
    // ReturnValue) where the ReturnValue is the value to return in the GTK+ callback.
    // Option<MSG> can be None if no message needs to be emitted.
    (return $stream:expr, $widget:expr, $event:ident($($args:pat),*), $msg:expr) => {{
        let stream = $stream.clone();
        let _ = $widget.$event(move |$($args),*| {
            let (msg, return_value) = $crate::IntoPair::into_pair($msg);
            let msg: Option<_> = $crate::IntoOption::into_option(msg);
            if let Some(msg) = msg {
                stream.emit(msg);
            }
            return_value
        });
    }};

    // Connect to a GTK+ widget event, sending a message to another widget.
    ($widget:expr, $event:ident($($args:pat),*), $other_stream:expr, $msg:expr) => {
        let stream = $other_stream.clone();
        let _ = $widget.$event(move |$($args),*| {
            let msg: Option<_> = $crate::IntoOption::into_option($msg);
            if let Some(msg) = msg {
                stream.emit(msg);
            }
        });
    };

    // Connect to a message reception.
    // TODO: create another macro rule accepting multiple patterns.
    ($src_stream:ident @ $message:pat, $dst_stream:expr, $msg:expr) => {
        let stream = $dst_stream.clone();
        $src_stream.observe(move |msg| {
            #[allow(unreachable_patterns)]
            match msg {
                &$message =>  {
                    let msg: Option<_> = $crate::IntoOption::into_option($msg);
                    if let Some(msg) = msg {
                        stream.emit(msg);
                    }
                },
                _ => (),
            }
        });
    };
}

/// Connect an asynchronous method call to send a message.
/// The variants with `$fail_msg` will send this message when there's an error.
/// Those without this argument will ignore the error.
#[macro_export]
macro_rules! connect_async {
    ($object:expr, $async_method:ident, $relm:expr, $msg:ident) => {
        connect_async!($object, $async_method(), $relm, $msg)
    };
    ($object:expr, $async_method:ident ( $($args:expr),* ), $relm:expr, $msg:ident) => {{
        use ::futures::Sink;
        let (tx, rx) = ::futures::sync::mpsc::unbounded();
        let tx = ::std::sync::Mutex::new(tx);
        $object.$async_method($($args,)* None, move |result| {
            if let Ok(result) = result {
                let mut tx = tx.lock().unwrap();
                if let Ok(::futures::AsyncSink::Ready) = tx.start_send(result) {
                    tx.poll_complete().unwrap();
                } else {
                    eprintln!("Unable to send message to sender");
                }
            }
        });
        $relm.connect_exec_ignore_err(rx, $msg);
    }};
    ($object:expr, $async_method:ident, $relm:expr, $msg:ident, $fail_msg:ident) => {
        connect_async!($object, $async_method(), $relm, $msg, $fail_msg)
    };
    ($object:expr, $async_method:ident ( $($args:expr),* ), $relm:expr, $msg:ident, $fail_msg:ident) => {{
        use ::futures::{Sink, Stream};
        let (tx, rx) = ::futures::sync::mpsc::unbounded();
        let tx = ::std::sync::Mutex::new(tx);
        $object.$async_method($($args,)* None, move |result| {
            let mut tx = tx.lock().unwrap();
            if let Ok(::futures::AsyncSink::Ready) = tx.start_send(result) {
                tx.poll_complete().unwrap();
            } else {
                eprintln!("Unable to send message to sender");
            }
        });

        let event_stream = $relm.stream().clone();
        let fail_event_stream = $relm.stream().clone();
        let future =
            rx.for_each(move |result| {
                match result {
                    Ok(value) => event_stream.emit($msg(value)),
                    Err(error) => fail_event_stream.emit($fail_msg(error)),
                }
                Ok(())
            });
        $relm.exec(future);
    }};
}

/// Connect an asynchronous function call to send a message.
/// The variants with `$fail_msg` will send this message when there's an error.
/// Those without this argument will ignore the error.
#[macro_export]
macro_rules! connect_async_func {
    ($class:ident :: $async_function:ident, $relm:expr, $msg:ident) => {
        connect_async!($async_func(), $relm, $msg)
    };
    ($class:ident :: $async_func:ident ( $($args:expr),* ), $relm:expr, $msg:ident) => {{
        use ::futures::Sink;
        let (tx, rx) = ::futures::sync::mpsc::unbounded();
        let tx = ::std::sync::Mutex::new(tx);
        $class::$async_func($($args,)* None, move |result| {
            if let Ok(result) = result {
                let mut tx = tx.lock().unwrap();
                if let Ok(::futures::AsyncSink::Ready) = tx.start_send(result) {
                    tx.poll_complete().unwrap();
                } else {
                    eprintln!("Unable to send message to sender");
                }
            }
        });
        $relm.connect_exec_ignore_err(rx, $msg);
    }};
    ($class:ident :: $async_func:ident, $relm:expr, $msg:ident, $fail_msg:ident) => {
        connect_async!($async_func(), $relm, $msg, $fail_msg)
    };
    ($class:ident :: $async_func:ident ( $($args:expr),* ), $relm:expr, $msg:ident, $fail_msg:ident) => {{
        use ::futures::{Sink, Stream};
        let (tx, rx) = ::futures::sync::mpsc::unbounded();
        let tx = ::std::sync::Mutex::new(tx);
        $class::$async_func($($args,)* None, move |result| {
            let mut tx = tx.lock().unwrap();
            if let Ok(::futures::AsyncSink::Ready) = tx.start_send(result) {
                tx.poll_complete().unwrap();
            } else {
                eprintln!("Unable to send message to sender");
            }
        });

        let event_stream = $relm.stream().clone();
        let fail_event_stream = $relm.stream().clone();
        let future =
            rx.for_each(move |result| {
                match result {
                    Ok(value) => event_stream.emit($msg(value)),
                    Err(error) => fail_event_stream.emit($fail_msg(error)),
                }
                Ok(())
            });
        $relm.exec(future);
    }};
}

/// Like `connect_async!`, but also return a `Cancellable` to control the asynchronous request.
#[macro_export]
macro_rules! connect_async_full {
    ($object:expr, $async_method:ident, $relm:expr, $msg:ident) => {
        connect_async_full!($object, $async_method(), $relm, $msg)
    };
    ($object:expr, $async_method:ident ( $($args:expr),* ), $relm:expr, $msg:ident) => {{
        let cancellable = ::gio::Cancellable::new();
        use ::futures::Sink;
        let (tx, rx) = ::futures::sync::mpsc::unbounded();
        let tx = ::std::sync::Mutex::new(tx);
        $object.$async_method($($args,)* Some(&cancellable), move |result| {
            if let Ok(result) = result {
                let mut tx = tx.lock().unwrap();
                if let Ok(::futures::AsyncSink::Ready) = tx.start_send(result) {
                    tx.poll_complete().unwrap();
                } else {
                    eprintln!("Unable to send message to sender");
                }
            }
        });
        $relm.connect_exec_ignore_err(rx, $msg);
        cancellable
    }};
    ($object:expr, $async_method:ident, $relm:expr, $msg:ident, $fail_msg:ident) => {
        connect_async_full!($object, $async_method(), $relm, $msg, $fail_msg)
    };
    ($object:expr, $async_method:ident ( $($args:expr),* ), $relm:expr, $msg:ident, $fail_msg:ident) => {{
        let cancellable = ::gio::Cancellable::new();
        use ::futures::{Sink, Stream};
        let (tx, rx) = ::futures::sync::mpsc::unbounded();
        let tx = ::std::sync::Mutex::new(tx);
        $object.$async_method($($args,)* Some(&cancellable), move |result| {
            let mut tx = tx.lock().unwrap();
            if let Ok(::futures::AsyncSink::Ready) = tx.start_send(result) {
                tx.poll_complete().unwrap();
            } else {
                eprintln!("Unable to send message to sender");
            }
        });

        let event_stream = $relm.stream().clone();
        let fail_event_stream = $relm.stream().clone();
        let future =
            rx.for_each(move |result| {
                match result {
                    Ok(value) => event_stream.emit($msg(value)),
                    Err(error) => fail_event_stream.emit($fail_msg(error)),
                }
                Ok(())
            });
        $relm.exec(future);
        cancellable
    }};
}

/// Like `connect_async_func!`, but also return a `Cancellable` to control the asynchronous request.
#[macro_export]
macro_rules! connect_async_func_full {
    ($class:ident :: $async_function:ident, $relm:expr, $msg:ident) => {
        connect_async!($async_func(), $relm, $msg)
    };
    ($class:ident :: $async_func:ident ( $($args:expr),* ), $relm:expr, $msg:ident) => {{
        let cancellable = ::gio::Cancellable::new();
        use ::futures::Sink;
        let (tx, rx) = ::futures::sync::mpsc::unbounded();
        let tx = ::std::sync::Mutex::new(tx);
        $class::$async_func($($args,)* Some(&cancellable), move |result| {
            if let Ok(result) = result {
                let mut tx = tx.lock().unwrap();
                if let Ok(::futures::AsyncSink::Ready) = tx.start_send(result) {
                    tx.poll_complete().unwrap();
                } else {
                    eprintln!("Unable to send message to sender");
                }
            }
        });
        $relm.connect_exec_ignore_err(rx, $msg);
        cancellable
    }};
    ($class:ident :: $async_func:ident, $relm:expr, $msg:ident, $fail_msg:ident) => {
        connect_async!($async_func(), $relm, $msg, $fail_msg)
    };
    ($class:ident :: $async_func:ident ( $($args:expr),* ), $relm:expr, $msg:ident, $fail_msg:ident) => {{
        let cancellable = ::gio::Cancellable::new();
        use ::futures::{Sink, Stream};
        let (tx, rx) = ::futures::sync::mpsc::unbounded();
        let tx = ::std::sync::Mutex::new(tx);
        $class::$async_func($($args,)* Some(&cancellable), move |result| {
            let mut tx = tx.lock().unwrap();
            if let Ok(::futures::AsyncSink::Ready) = tx.start_send(result) {
                tx.poll_complete().unwrap();
            } else {
                eprintln!("Unable to send message to sender");
            }
        });

        let event_stream = $relm.stream().clone();
        let fail_event_stream = $relm.stream().clone();
        let future =
            rx.for_each(move |result| {
                match result {
                    Ok(value) => event_stream.emit($msg(value)),
                    Err(error) => fail_event_stream.emit($fail_msg(error)),
                }
                Ok(())
            });
        $relm.exec(future);
        cancellable
    }};
}