i_slint_core/timers.rs
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 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
// cSpell: ignore singleshot
/*!
Support for timers.
Timers are just a bunch of callbacks sorted by expiry date.
*/
#![warn(missing_docs)]
#[cfg(not(feature = "std"))]
use alloc::boxed::Box;
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;
use core::{
cell::{Cell, RefCell},
num::NonZeroUsize,
};
use crate::animations::Instant;
type TimerCallback = Box<dyn FnMut()>;
type SingleShotTimerCallback = Box<dyn FnOnce()>;
/// The TimerMode specifies what should happen after the timer fired.
///
/// Used by the [`Timer::start()`] function.
#[derive(Copy, Clone)]
#[repr(u8)]
#[non_exhaustive]
pub enum TimerMode {
/// A SingleShot timer is fired only once.
SingleShot,
/// A Repeated timer is fired repeatedly until it is stopped or dropped.
Repeated,
}
/// Timer is a handle to the timer system that allows triggering a callback to be called
/// after a specified period of time.
///
/// Use [`Timer::start()`] to create a timer that can repeat at frequent interval, or
/// [`Timer::single_shot`] if you just want to call a function with a delay and do not
/// need to be able to stop it.
///
/// The timer will automatically stop when dropped. You must keep the Timer object
/// around for as long as you want the timer to keep firing.
///
/// The timer can only be used in the thread that runs the Slint event loop.
/// They will not fire if used in another thread.
///
/// ## Example
/// ```rust,no_run
/// # i_slint_backend_testing::init_no_event_loop();
/// use slint::{Timer, TimerMode};
/// let timer = Timer::default();
/// timer.start(TimerMode::Repeated, std::time::Duration::from_millis(200), move || {
/// println!("This will be printed every 200ms.");
/// });
/// // ... more initialization ...
/// slint::run_event_loop();
/// ```
#[derive(Default)]
pub struct Timer {
id: Cell<Option<NonZeroUsize>>,
/// The timer cannot be moved between treads
_phantom: core::marker::PhantomData<*mut ()>,
}
impl Timer {
/// Starts the timer with the given mode and interval, in order for the callback to called when the
/// timer fires. If the timer has been started previously and not fired yet, then it will be restarted.
///
/// Arguments:
/// * `mode`: The timer mode to apply, i.e. whether to repeatedly fire the timer or just once.
/// * `interval`: The duration from now until when the timer should fire. And the period of that timer
/// for [`Repeated`](TimerMode::Repeated) timers.
/// * `callback`: The function to call when the time has been reached or exceeded.
pub fn start(
&self,
mode: TimerMode,
interval: core::time::Duration,
callback: impl FnMut() + 'static,
) {
CURRENT_TIMERS.with(|timers| {
let mut timers = timers.borrow_mut();
let id = timers.start_or_restart_timer(
self.id(),
mode,
interval,
CallbackVariant::MultiFire(Box::new(callback)),
);
self.set_id(Some(id));
})
}
/// Starts the timer with the duration, in order for the callback to called when the
/// timer fires. It is fired only once and then deleted.
///
/// Arguments:
/// * `duration`: The duration from now until when the timer should fire.
/// * `callback`: The function to call when the time has been reached or exceeded.
///
/// ## Example
/// ```rust
/// # i_slint_backend_testing::init_no_event_loop();
/// use slint::Timer;
/// Timer::single_shot(std::time::Duration::from_millis(200), move || {
/// println!("This will be printed after 200ms.");
/// });
/// ```
pub fn single_shot(duration: core::time::Duration, callback: impl FnOnce() + 'static) {
CURRENT_TIMERS.with(|timers| {
let mut timers = timers.borrow_mut();
timers.start_or_restart_timer(
None,
TimerMode::SingleShot,
duration,
CallbackVariant::SingleShot(Box::new(callback)),
);
})
}
/// Stops the previously started timer. Does nothing if the timer has never been started.
pub fn stop(&self) {
if let Some(id) = self.id() {
CURRENT_TIMERS.with(|timers| {
timers.borrow_mut().deactivate_timer(id);
});
}
}
/// Restarts the timer. If the timer was previously started by calling [`Self::start()`]
/// with a duration and callback, then the time when the callback will be next invoked
/// is re-calculated to be in the specified duration relative to when this function is called.
///
/// Does nothing if the timer was never started.
pub fn restart(&self) {
if let Some(id) = self.id() {
CURRENT_TIMERS.with(|timers| {
timers.borrow_mut().deactivate_timer(id);
timers.borrow_mut().activate_timer(id);
});
}
}
/// Returns true if the timer is running; false otherwise.
pub fn running(&self) -> bool {
self.id()
.map(|timer_id| CURRENT_TIMERS.with(|timers| timers.borrow().timers[timer_id].running))
.unwrap_or(false)
}
/// Change the duration of timer. If the timer was is running (see [`Self::running()`]),
/// then the time when the callback will be next invoked is re-calculated to be in the
/// specified duration relative to when this function is called.
///
/// Arguments:
/// * `interval`: The duration from now until when the timer should fire. And the period of that timer
/// for [`Repeated`](TimerMode::Repeated) timers.
pub fn set_interval(&self, interval: core::time::Duration) {
if let Some(id) = self.id() {
CURRENT_TIMERS.with(|timers| {
timers.borrow_mut().set_interval(id, interval);
});
}
}
/// Returns the interval of the timer.
/// Returns a duration of 0ms if the timer was never started.
pub fn interval(&self) -> core::time::Duration {
self.id()
.map(|timer_id| CURRENT_TIMERS.with(|timers| timers.borrow().timers[timer_id].duration))
.unwrap_or_default()
}
fn id(&self) -> Option<usize> {
self.id.get().map(|v| usize::from(v) - 1)
}
fn set_id(&self, id: Option<usize>) {
self.id.set(id.and_then(|v| NonZeroUsize::new(v + 1)));
}
}
impl Drop for Timer {
fn drop(&mut self) {
if let Some(id) = self.id() {
let _ = CURRENT_TIMERS.try_with(|timers| {
#[cfg(target_os = "android")]
if timers.borrow().timers.is_empty() {
// There seems to be a bug in android thread_local where try_with recreates the already thread local.
// But we are called from the drop of another thread local, just ignore the drop then
return;
}
let callback = timers.borrow_mut().remove_timer(id);
// drop the callback without having CURRENT_TIMERS borrowed
drop(callback);
});
}
}
}
enum CallbackVariant {
Empty,
MultiFire(TimerCallback),
SingleShot(SingleShotTimerCallback),
}
struct TimerData {
duration: core::time::Duration,
mode: TimerMode,
running: bool,
/// Set to true when it is removed when the callback is still running
removed: bool,
/// true if it is in the cached the active_timers list in the maybe_activate_timers stack
being_activated: bool,
callback: CallbackVariant,
}
#[derive(Clone, Copy)]
struct ActiveTimer {
id: usize,
timeout: Instant,
}
/// TimerList provides the interface to the event loop for activating times and
/// determining the nearest timeout.
#[derive(Default)]
pub struct TimerList {
timers: slab::Slab<TimerData>,
active_timers: Vec<ActiveTimer>,
/// If a callback is currently running, this is the id of the currently running callback
callback_active: Option<usize>,
}
impl TimerList {
/// Returns the timeout of the timer that should fire the soonest, or None if there
/// is no timer active.
pub fn next_timeout() -> Option<Instant> {
CURRENT_TIMERS.with(|timers| {
timers
.borrow()
.active_timers
.first()
.map(|first_active_timer| first_active_timer.timeout)
})
}
/// Activates any expired timers by calling their callback function. Returns true if any timers were
/// activated; false otherwise.
pub fn maybe_activate_timers(now: Instant) -> bool {
// Shortcut: Is there any timer worth activating?
if TimerList::next_timeout().map(|timeout| now < timeout).unwrap_or(false) {
return false;
}
CURRENT_TIMERS.with(|timers| {
assert!(timers.borrow().callback_active.is_none(), "Recursion in timer code");
// Re-register all timers that expired but are repeating, as well as all that haven't expired yet. This is
// done in one shot to ensure a consistent state by the time the callbacks are invoked.
let expired_timers = {
let mut timers = timers.borrow_mut();
// Empty active_timers and rebuild it, to preserve insertion order across expired and not expired timers.
let mut active_timers = core::mem::take(&mut timers.active_timers);
let expired_vs_remaining_timers_partition_point =
active_timers.partition_point(|active_timer| active_timer.timeout <= now);
let (expired_timers, timers_not_activated_this_time) =
active_timers.split_at(expired_vs_remaining_timers_partition_point);
for expired_timer in expired_timers {
let timer = &mut timers.timers[expired_timer.id];
assert!(!timer.being_activated);
timer.being_activated = true;
if matches!(timers.timers[expired_timer.id].mode, TimerMode::Repeated) {
timers.activate_timer(expired_timer.id);
} else {
timers.timers[expired_timer.id].running = false;
}
}
for future_timer in timers_not_activated_this_time.into_iter() {
timers.register_active_timer(*future_timer);
}
// turn `expired_timers` slice into a truncated vec.
active_timers.truncate(expired_vs_remaining_timers_partition_point);
active_timers
};
let any_activated = !expired_timers.is_empty();
for active_timer in expired_timers.into_iter() {
let mut callback = {
let mut timers = timers.borrow_mut();
timers.callback_active = Some(active_timer.id);
// have to release the borrow on `timers` before invoking the callback,
// so here we temporarily move the callback out of its permanent place
core::mem::replace(
&mut timers.timers[active_timer.id].callback,
CallbackVariant::Empty,
)
};
match callback {
CallbackVariant::Empty => (),
CallbackVariant::MultiFire(ref mut cb) => cb(),
CallbackVariant::SingleShot(cb) => {
cb();
timers.borrow_mut().callback_active = None;
timers.borrow_mut().timers.remove(active_timer.id);
continue;
}
};
let mut timers = timers.borrow_mut();
let callback_register = &mut timers.timers[active_timer.id].callback;
// only emplace back the callback if its permanent store is still Empty:
// if not, it means the invoked callback has restarted its own timer with a new callback
if matches!(callback_register, CallbackVariant::Empty) {
*callback_register = callback;
}
timers.callback_active = None;
let t = &mut timers.timers[active_timer.id];
if t.removed {
timers.timers.remove(active_timer.id);
} else {
t.being_activated = false;
}
}
any_activated
})
}
fn start_or_restart_timer(
&mut self,
id: Option<usize>,
mode: TimerMode,
duration: core::time::Duration,
callback: CallbackVariant,
) -> usize {
let mut timer_data = TimerData {
duration,
mode,
running: false,
removed: false,
callback,
being_activated: false,
};
let inactive_timer_id = if let Some(id) = id {
self.deactivate_timer(id);
timer_data.being_activated = self.timers[id].being_activated;
self.timers[id] = timer_data;
id
} else {
self.timers.insert(timer_data)
};
self.activate_timer(inactive_timer_id);
inactive_timer_id
}
fn deactivate_timer(&mut self, id: usize) {
let mut i = 0;
while i < self.active_timers.len() {
if self.active_timers[i].id == id {
self.active_timers.remove(i);
self.timers[id].running = false;
debug_assert!(!self.active_timers.iter().any(|t| t.id == id));
break;
} else {
i += 1;
}
}
}
fn activate_timer(&mut self, id: usize) {
self.register_active_timer(ActiveTimer {
id,
timeout: Instant::now() + self.timers[id].duration,
});
}
fn register_active_timer(&mut self, new_active_timer: ActiveTimer) {
debug_assert!(!self.active_timers.iter().any(|t| t.id == new_active_timer.id));
let insertion_index = self
.active_timers
.partition_point(|existing_timer| existing_timer.timeout < new_active_timer.timeout);
self.active_timers.insert(insertion_index, new_active_timer);
self.timers[new_active_timer.id].running = true;
}
fn remove_timer(&mut self, id: usize) -> CallbackVariant {
self.deactivate_timer(id);
let t = &mut self.timers[id];
if t.being_activated {
t.removed = true;
CallbackVariant::Empty
} else {
self.timers.remove(id).callback
}
}
fn set_interval(&mut self, id: usize, duration: core::time::Duration) {
let timer = &self.timers[id];
if timer.running {
self.deactivate_timer(id);
self.timers[id].duration = duration;
self.activate_timer(id);
} else {
self.timers[id].duration = duration;
}
}
}
#[cfg(all(not(feature = "std"), feature = "unsafe-single-threaded"))]
use crate::unsafe_single_threaded::thread_local;
thread_local!(static CURRENT_TIMERS : RefCell<TimerList> = RefCell::default());
#[cfg(feature = "ffi")]
pub(crate) mod ffi {
#![allow(unsafe_code)]
use super::*;
#[allow(non_camel_case_types)]
type c_void = ();
struct WrapFn {
callback: extern "C" fn(*mut c_void),
user_data: *mut c_void,
drop_user_data: Option<extern "C" fn(*mut c_void)>,
}
impl Drop for WrapFn {
fn drop(&mut self) {
if let Some(x) = self.drop_user_data {
x(self.user_data)
}
}
}
impl WrapFn {
fn call(&self) {
(self.callback)(self.user_data)
}
}
/// Start a timer with the given mode, duration in millisecond and callback. A timer id may be provided (first argument).
/// A value of -1 for the timer id means a new timer is to be allocated.
/// The (new) timer id is returned.
/// The timer MUST be destroyed with slint_timer_destroy.
#[no_mangle]
pub extern "C" fn slint_timer_start(
id: usize,
mode: TimerMode,
duration: u64,
callback: extern "C" fn(*mut c_void),
user_data: *mut c_void,
drop_user_data: Option<extern "C" fn(*mut c_void)>,
) -> usize {
let wrap = WrapFn { callback, user_data, drop_user_data };
let timer = Timer::default();
if id != 0 {
timer.id.set(NonZeroUsize::new(id));
}
if duration > i64::MAX as u64 {
// negative duration? stop the timer
timer.stop();
} else {
timer.start(mode, core::time::Duration::from_millis(duration), move || wrap.call());
}
timer.id.take().map(|x| usize::from(x)).unwrap_or(0)
}
/// Execute a callback with a delay in millisecond
#[no_mangle]
pub extern "C" fn slint_timer_singleshot(
delay: u64,
callback: extern "C" fn(*mut c_void),
user_data: *mut c_void,
drop_user_data: Option<extern "C" fn(*mut c_void)>,
) {
let wrap = WrapFn { callback, user_data, drop_user_data };
Timer::single_shot(core::time::Duration::from_millis(delay), move || wrap.call());
}
/// Stop a timer and free its raw data
#[no_mangle]
pub extern "C" fn slint_timer_destroy(id: usize) {
if id == 0 {
return;
}
let timer = Timer { id: Cell::new(NonZeroUsize::new(id)), _phantom: Default::default() };
drop(timer);
}
/// Stop a timer
#[no_mangle]
pub extern "C" fn slint_timer_stop(id: usize) {
if id == 0 {
return;
}
let timer = Timer { id: Cell::new(NonZeroUsize::new(id)), _phantom: Default::default() };
timer.stop();
timer.id.take(); // Make sure that dropping the Timer doesn't unregister it. C++ will call destroy() in the destructor.
}
/// Restart a repeated timer
#[no_mangle]
pub extern "C" fn slint_timer_restart(id: usize) {
if id == 0 {
return;
}
let timer = Timer { id: Cell::new(NonZeroUsize::new(id)), _phantom: Default::default() };
timer.restart();
timer.id.take(); // Make sure that dropping the Timer doesn't unregister it. C++ will call destroy() in the destructor.
}
/// Returns true if the timer is running; false otherwise.
#[no_mangle]
pub extern "C" fn slint_timer_running(id: usize) -> bool {
if id == 0 {
return false;
}
let timer = Timer { id: Cell::new(NonZeroUsize::new(id)), _phantom: Default::default() };
let running = timer.running();
timer.id.take(); // Make sure that dropping the Timer doesn't unregister it. C++ will call destroy() in the destructor.
running
}
/// Returns the interval in milliseconds. 0 when the timer was never started.
#[no_mangle]
pub extern "C" fn slint_timer_interval(id: usize) -> u64 {
if id == 0 {
return 0;
}
let timer = Timer { id: Cell::new(NonZeroUsize::new(id)), _phantom: Default::default() };
let val = timer.interval().as_millis() as u64;
timer.id.take(); // Make sure that dropping the Timer doesn't unregister it. C++ will call destroy() in the destructor.
val
}
}
/**
```rust
i_slint_backend_testing::init_no_event_loop();
use slint::{Timer, TimerMode};
use std::{rc::Rc, cell::RefCell, time::Duration};
#[derive(Default)]
struct SharedState {
timer_200: Timer,
timer_200_called: usize,
timer_500: Timer,
timer_500_called: usize,
timer_once: Timer,
timer_once_called: usize,
}
let state = Rc::new(RefCell::new(SharedState::default()));
// Note: state will be leaked because of circular dependencies: don't do that in production
let state_ = state.clone();
state.borrow_mut().timer_200.start(TimerMode::Repeated, Duration::from_millis(200), move || {
state_.borrow_mut().timer_200_called += 1;
});
let state_ = state.clone();
state.borrow_mut().timer_once.start(TimerMode::Repeated, Duration::from_millis(300), move || {
state_.borrow_mut().timer_once_called += 1;
state_.borrow().timer_once.stop();
});
let state_ = state.clone();
state.borrow_mut().timer_500.start(TimerMode::Repeated, Duration::from_millis(500), move || {
state_.borrow_mut().timer_500_called += 1;
});
slint::platform::update_timers_and_animations();
i_slint_core::tests::slint_mock_elapsed_time(100);
assert_eq!(state.borrow().timer_200_called, 0);
assert_eq!(state.borrow().timer_once_called, 0);
assert_eq!(state.borrow().timer_500_called, 0);
i_slint_core::tests::slint_mock_elapsed_time(100);
assert_eq!(state.borrow().timer_200_called, 1);
assert_eq!(state.borrow().timer_once_called, 0);
assert_eq!(state.borrow().timer_500_called, 0);
i_slint_core::tests::slint_mock_elapsed_time(100);
assert_eq!(state.borrow().timer_200_called, 1);
assert_eq!(state.borrow().timer_once_called, 1);
assert_eq!(state.borrow().timer_500_called, 0);
i_slint_core::tests::slint_mock_elapsed_time(200); // total: 500
assert_eq!(state.borrow().timer_200_called, 2);
assert_eq!(state.borrow().timer_once_called, 1);
assert_eq!(state.borrow().timer_500_called, 1);
for _ in 0..10 {
i_slint_core::tests::slint_mock_elapsed_time(100);
}
// total: 1500
assert_eq!(state.borrow().timer_200_called, 7);
assert_eq!(state.borrow().timer_once_called, 1);
assert_eq!(state.borrow().timer_500_called, 3);
state.borrow().timer_once.restart();
state.borrow().timer_200.restart();
state.borrow().timer_500.stop();
slint::platform::update_timers_and_animations();
i_slint_core::tests::slint_mock_elapsed_time(100);
assert_eq!(state.borrow().timer_200_called, 7);
assert_eq!(state.borrow().timer_once_called, 1);
assert_eq!(state.borrow().timer_500_called, 3);
slint::platform::update_timers_and_animations();
i_slint_core::tests::slint_mock_elapsed_time(100);
assert_eq!(state.borrow().timer_200_called, 8);
assert_eq!(state.borrow().timer_once_called, 1);
assert_eq!(state.borrow().timer_500_called, 3);
slint::platform::update_timers_and_animations();
i_slint_core::tests::slint_mock_elapsed_time(100);
assert_eq!(state.borrow().timer_200_called, 8);
assert_eq!(state.borrow().timer_once_called, 2);
assert_eq!(state.borrow().timer_500_called, 3);
slint::platform::update_timers_and_animations();
i_slint_core::tests::slint_mock_elapsed_time(1000);
slint::platform::update_timers_and_animations();
slint::platform::update_timers_and_animations();
// Despite 1000ms have passed, the 200 timer is only called once because we didn't call update_timers_and_animations in between
assert_eq!(state.borrow().timer_200_called, 9);
assert_eq!(state.borrow().timer_once_called, 2);
assert_eq!(state.borrow().timer_500_called, 3);
let state_ = state.clone();
state.borrow().timer_200.start(TimerMode::SingleShot, Duration::from_millis(200), move || {
state_.borrow_mut().timer_200_called += 1;
});
for _ in 0..5 {
i_slint_core::tests::slint_mock_elapsed_time(75);
}
assert_eq!(state.borrow().timer_200_called, 10);
assert_eq!(state.borrow().timer_once_called, 2);
assert_eq!(state.borrow().timer_500_called, 3);
state.borrow().timer_200.restart();
for _ in 0..5 {
i_slint_core::tests::slint_mock_elapsed_time(75);
}
assert_eq!(state.borrow().timer_200_called, 11);
assert_eq!(state.borrow().timer_once_called, 2);
assert_eq!(state.borrow().timer_500_called, 3);
// Test re-starting from a callback
let state_ = state.clone();
state.borrow_mut().timer_500.start(TimerMode::Repeated, Duration::from_millis(500), move || {
state_.borrow_mut().timer_500_called += 1;
let state__ = state_.clone();
state_.borrow_mut().timer_500.start(TimerMode::Repeated, Duration::from_millis(500), move || {
state__.borrow_mut().timer_500_called += 1000;
});
let state__ = state_.clone();
state_.borrow_mut().timer_200.start(TimerMode::Repeated, Duration::from_millis(200), move || {
state__.borrow_mut().timer_200_called += 1000;
});
});
for _ in 0..20 {
i_slint_core::tests::slint_mock_elapsed_time(100);
}
assert_eq!(state.borrow().timer_200_called, 7011);
assert_eq!(state.borrow().timer_once_called, 2);
assert_eq!(state.borrow().timer_500_called, 3004);
// Test set interval
let state_ = state.clone();
state.borrow_mut().timer_200.start(TimerMode::Repeated, Duration::from_millis(200), move || {
state_.borrow_mut().timer_200_called += 1;
});
let state_ = state.clone();
state.borrow_mut().timer_once.start(TimerMode::Repeated, Duration::from_millis(300), move || {
state_.borrow_mut().timer_once_called += 1;
state_.borrow().timer_once.stop();
});
let state_ = state.clone();
state.borrow_mut().timer_500.start(TimerMode::Repeated, Duration::from_millis(500), move || {
state_.borrow_mut().timer_500_called += 1;
});
let state_ = state.clone();
slint::platform::update_timers_and_animations();
for _ in 0..5 {
i_slint_core::tests::slint_mock_elapsed_time(100);
}
slint::platform::update_timers_and_animations();
assert_eq!(state.borrow().timer_200_called, 7013);
assert_eq!(state.borrow().timer_once_called, 3);
assert_eq!(state.borrow().timer_500_called, 3005);
for _ in 0..20 {
state.borrow().timer_200.set_interval(Duration::from_millis(200 * 2));
state.borrow().timer_once.set_interval(Duration::from_millis(300 * 2));
state.borrow().timer_500.set_interval(Duration::from_millis(500 * 2));
assert_eq!(state.borrow().timer_200_called, 7013);
assert_eq!(state.borrow().timer_once_called, 3);
assert_eq!(state.borrow().timer_500_called, 3005);
i_slint_core::tests::slint_mock_elapsed_time(100);
}
slint::platform::update_timers_and_animations();
for _ in 0..9 {
i_slint_core::tests::slint_mock_elapsed_time(100);
}
slint::platform::update_timers_and_animations();
assert_eq!(state.borrow().timer_200_called, 7015);
assert_eq!(state.borrow().timer_once_called, 3);
assert_eq!(state.borrow().timer_500_called, 3006);
state.borrow_mut().timer_once.restart();
for _ in 0..4 {
i_slint_core::tests::slint_mock_elapsed_time(100);
}
assert_eq!(state.borrow().timer_once_called, 3);
for _ in 0..4 {
i_slint_core::tests::slint_mock_elapsed_time(100);
}
assert_eq!(state.borrow().timer_once_called, 4);
```
*/
#[cfg(doctest)]
const _TIMER_TESTS: () = ();
/**
* Test that deleting an active timer from a timer event works.
```rust
// There is a 200 ms timer that increase variable1
// after 500ms, that timer is destroyed by a single shot timer,
// and a new new timer increase variable2
i_slint_backend_testing::init_no_event_loop();
use slint::{Timer, TimerMode};
use std::{rc::Rc, cell::RefCell, time::Duration};
#[derive(Default)]
struct SharedState {
repeated_timer: Timer,
variable1: usize,
variable2: usize,
}
let state = Rc::new(RefCell::new(SharedState::default()));
// Note: state will be leaked because of circular dependencies: don't do that in production
let state_ = state.clone();
state.borrow_mut().repeated_timer.start(TimerMode::Repeated, Duration::from_millis(200), move || {
state_.borrow_mut().variable1 += 1;
});
let state_ = state.clone();
Timer::single_shot(Duration::from_millis(500), move || {
state_.borrow_mut().repeated_timer = Default::default();
let state = state_.clone();
state_.borrow_mut().repeated_timer.start(TimerMode::Repeated, Duration::from_millis(200), move || {
state.borrow_mut().variable2 += 1;
})
} );
i_slint_core::tests::slint_mock_elapsed_time(10);
assert_eq!(state.borrow().variable1, 0);
assert_eq!(state.borrow().variable2, 0);
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 1);
assert_eq!(state.borrow().variable2, 0);
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 2);
assert_eq!(state.borrow().variable2, 0);
i_slint_core::tests::slint_mock_elapsed_time(100);
// More than 500ms have elapsed, the single shot timer should have been activated, but that has no effect on variable 1 and 2
// This should just restart the timer so that the next change should happen 200ms from now
assert_eq!(state.borrow().variable1, 2);
assert_eq!(state.borrow().variable2, 0);
i_slint_core::tests::slint_mock_elapsed_time(110);
assert_eq!(state.borrow().variable1, 2);
assert_eq!(state.borrow().variable2, 0);
i_slint_core::tests::slint_mock_elapsed_time(100);
assert_eq!(state.borrow().variable1, 2);
assert_eq!(state.borrow().variable2, 1);
i_slint_core::tests::slint_mock_elapsed_time(100);
assert_eq!(state.borrow().variable1, 2);
assert_eq!(state.borrow().variable2, 1);
i_slint_core::tests::slint_mock_elapsed_time(100);
assert_eq!(state.borrow().variable1, 2);
assert_eq!(state.borrow().variable2, 2);
```
*/
#[cfg(doctest)]
const _BUG3019: () = ();
/**
* Test that starting a singleshot timer works
```rust
// There is a 200 ms singleshot timer that increase variable1
i_slint_backend_testing::init_no_event_loop();
use slint::{Timer, TimerMode};
use std::{rc::Rc, cell::RefCell, time::Duration};
#[derive(Default)]
struct SharedState {
variable1: usize,
}
let state = Rc::new(RefCell::new(SharedState::default()));
let state_ = state.clone();
let timer = Timer::default();
timer.start(TimerMode::SingleShot, Duration::from_millis(200), move || {
state_.borrow_mut().variable1 += 1;
});
// Singleshot timer set up and run...
assert!(timer.running());
i_slint_core::tests::slint_mock_elapsed_time(10);
assert!(timer.running());
assert_eq!(state.borrow().variable1, 0);
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 1);
assert!(!timer.running());
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 1); // It's singleshot, it only triggers once!
assert!(!timer.running());
// Restart a previously set up singleshot timer
timer.restart();
assert!(timer.running());
assert_eq!(state.borrow().variable1, 1);
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 2);
assert!(!timer.running());
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 2); // It's singleshot, it only triggers once!
assert!(!timer.running());
// Stop a non-running singleshot timer
timer.stop();
assert!(!timer.running());
assert_eq!(state.borrow().variable1, 2);
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 2);
assert!(!timer.running());
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 2); // It's singleshot, it only triggers once!
assert!(!timer.running());
// Stop a running singleshot timer
timer.restart();
assert!(timer.running());
assert_eq!(state.borrow().variable1, 2);
i_slint_core::tests::slint_mock_elapsed_time(10);
timer.stop();
assert!(!timer.running());
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 2);
assert!(!timer.running());
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 2); // It's singleshot, it only triggers once!
assert!(!timer.running());
// set_interval on a non-running singleshot timer
timer.set_interval(Duration::from_millis(300));
assert!(!timer.running());
i_slint_core::tests::slint_mock_elapsed_time(1000);
assert_eq!(state.borrow().variable1, 2);
assert!(!timer.running());
timer.restart();
assert!(timer.running());
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 2);
assert!(timer.running());
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 3);
assert!(!timer.running());
i_slint_core::tests::slint_mock_elapsed_time(300);
assert_eq!(state.borrow().variable1, 3); // It's singleshot, it only triggers once!
assert!(!timer.running());
// set_interval on a running singleshot timer
timer.restart();
assert!(timer.running());
assert_eq!(state.borrow().variable1, 3);
i_slint_core::tests::slint_mock_elapsed_time(290);
timer.set_interval(Duration::from_millis(400));
assert!(timer.running());
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 3);
assert!(timer.running());
i_slint_core::tests::slint_mock_elapsed_time(250);
assert_eq!(state.borrow().variable1, 4);
assert!(!timer.running());
i_slint_core::tests::slint_mock_elapsed_time(400);
assert_eq!(state.borrow().variable1, 4); // It's singleshot, it only triggers once!
assert!(!timer.running());
```
*/
#[cfg(doctest)]
const _SINGLESHOT_START: () = ();
/**
* Test that it's possible to start a new timer from within Drop of a timer's closure.
* This may happen when a timer's closure is dropped, that closure holds the last reference
* to a component, that component is destroyed, and the accesskit code schedules a reload_tree
* via a single shot.
```rust
i_slint_backend_testing::init_no_event_loop();
use slint::{Timer, TimerMode};
use std::{rc::Rc, cell::Cell, time::Duration};
#[derive(Default)]
struct CapturedInClosure {
last_fired: Option<Rc<Cell<bool>>>,
}
impl Drop for CapturedInClosure {
fn drop(&mut self) {
if let Some(last_fired) = self.last_fired.as_ref().cloned() {
Timer::single_shot(Duration::from_millis(100), move || last_fired.set(true));
}
}
}
let last_fired = Rc::new(Cell::new(false));
let mut cap_in_clos = CapturedInClosure::default();
let timer_to_stop = Timer::default();
timer_to_stop.start(TimerMode::Repeated, Duration::from_millis(100), {
let last_fired = last_fired.clone();
move || {
cap_in_clos.last_fired = Some(last_fired.clone());
}});
assert_eq!(last_fired.get(), false);
i_slint_core::tests::slint_mock_elapsed_time(110);
assert_eq!(last_fired.get(), false);
drop(timer_to_stop);
i_slint_core::tests::slint_mock_elapsed_time(110);
assert_eq!(last_fired.get(), true);
```
*/
#[cfg(doctest)]
const _TIMER_CLOSURE_DROP_STARTS_NEW_TIMER: () = ();
/**
* Test that it's possible to set a timer's interval from within the callback.
```rust
i_slint_backend_testing::init_no_event_loop();
use slint::{Timer, TimerMode};
use std::{rc::Rc, cell::RefCell, time::Duration};
#[derive(Default)]
struct SharedState {
// Note: state will be leaked because of circular dependencies: don't do that in production
timer: Timer,
variable1: usize,
}
let state = Rc::new(RefCell::new(SharedState::default()));
let state_ = state.clone();
state.borrow().timer.start(TimerMode::Repeated, Duration::from_millis(200), move || {
state_.borrow_mut().variable1 += 1;
let variable1 = state_.borrow().variable1;
if variable1 == 2 {
state_.borrow().timer.set_interval(Duration::from_millis(500));
} else if variable1 == 3 {
state_.borrow().timer.set_interval(Duration::from_millis(100));
}
});
assert!(state.borrow().timer.running());
i_slint_core::tests::slint_mock_elapsed_time(10);
assert!(state.borrow().timer.running());
assert_eq!(state.borrow().variable1, 0);
i_slint_core::tests::slint_mock_elapsed_time(200);
assert_eq!(state.borrow().variable1, 1); // fired
assert!(state.borrow().timer.running());
i_slint_core::tests::slint_mock_elapsed_time(180);
assert_eq!(state.borrow().variable1, 1);
assert!(state.borrow().timer.running());
i_slint_core::tests::slint_mock_elapsed_time(30);
assert_eq!(state.borrow().variable1, 2); // fired
assert!(state.borrow().timer.running());
// now the timer interval should be 500
i_slint_core::tests::slint_mock_elapsed_time(480);
assert_eq!(state.borrow().variable1, 2);
assert!(state.borrow().timer.running());
i_slint_core::tests::slint_mock_elapsed_time(30);
assert_eq!(state.borrow().variable1, 3); // fired
assert!(state.borrow().timer.running());
// now the timer interval should be 100
i_slint_core::tests::slint_mock_elapsed_time(100);
assert_eq!(state.borrow().variable1, 4); // fired
assert!(state.borrow().timer.running());
i_slint_core::tests::slint_mock_elapsed_time(100);
assert_eq!(state.borrow().variable1, 5); // fired
assert!(state.borrow().timer.running());
```
*/
#[cfg(doctest)]
const _BUG6141_SET_INTERVAL_FROM_CALLBACK: () = ();
/**
* Test that a timer can't be activated twice.
```rust
i_slint_backend_testing::init_no_event_loop();
use slint::{Timer, TimerMode};
use std::{rc::Rc, cell::Cell, time::Duration};
let later_timer_expiration_count = Rc::new(Cell::new(0));
let sooner_timer = Timer::default();
let later_timer = Rc::new(Timer::default());
later_timer.start(TimerMode::SingleShot, Duration::from_millis(500), {
let later_timer_expiration_count = later_timer_expiration_count.clone();
move || {
later_timer_expiration_count.set(later_timer_expiration_count.get() + 1);
}
});
sooner_timer.start(TimerMode::SingleShot, Duration::from_millis(100), {
let later_timer = later_timer.clone();
let later_timer_expiration_count = later_timer_expiration_count.clone();
move || {
later_timer.start(TimerMode::SingleShot, Duration::from_millis(600), {
let later_timer_expiration_count = later_timer_expiration_count.clone();
move || {
later_timer_expiration_count.set(later_timer_expiration_count.get() + 1);
}
});
}});
assert_eq!(later_timer_expiration_count.get(), 0);
i_slint_core::tests::slint_mock_elapsed_time(110);
assert_eq!(later_timer_expiration_count.get(), 0);
i_slint_core::tests::slint_mock_elapsed_time(400);
assert_eq!(later_timer_expiration_count.get(), 0);
i_slint_core::tests::slint_mock_elapsed_time(800);
assert_eq!(later_timer_expiration_count.get(), 1);
```
*/
#[cfg(doctest)]
const _DOUBLY_REGISTER_ACTIVE_TIMER: () = ();
/**
* Test that a timer can't be activated twice.
```rust
i_slint_backend_testing::init_no_event_loop();
use slint::{Timer, TimerMode};
use std::{rc::Rc, cell::Cell, time::Duration};
let later_timer_expiration_count = Rc::new(Cell::new(0));
let sooner_timer = Timer::default();
let later_timer = Rc::new(Timer::default());
later_timer.start(TimerMode::Repeated, Duration::from_millis(110), {
let later_timer_expiration_count = later_timer_expiration_count.clone();
move || {
later_timer_expiration_count.set(later_timer_expiration_count.get() + 1);
}
});
sooner_timer.start(TimerMode::SingleShot, Duration::from_millis(100), {
let later_timer = later_timer.clone();
let later_timer_expiration_count = later_timer_expiration_count.clone();
move || {
later_timer.start(TimerMode::Repeated, Duration::from_millis(110), {
let later_timer_expiration_count = later_timer_expiration_count.clone();
move || {
later_timer_expiration_count.set(later_timer_expiration_count.get() + 1);
}
});
}});
assert_eq!(later_timer_expiration_count.get(), 0);
i_slint_core::tests::slint_mock_elapsed_time(120);
assert_eq!(later_timer_expiration_count.get(), 1);
```
*/
#[cfg(doctest)]
const _DOUBLY_REGISTER_ACTIVE_TIMER_2: () = ();
/**
* Test that a timer that's being activated can be restarted and dropped in one go.
```rust
i_slint_backend_testing::init_no_event_loop();
use slint::{Timer, TimerMode};
use std::{cell::RefCell, rc::Rc, time::Duration};
let destructive_timer = Rc::new(RefCell::new(Some(Timer::default())));
destructive_timer.borrow().as_ref().unwrap().start(TimerMode::Repeated, Duration::from_millis(110), {
let destructive_timer = destructive_timer.clone();
move || {
// start() used to reset the `being_activated` flag...
destructive_timer.borrow().as_ref().unwrap().start(TimerMode::Repeated, Duration::from_millis(110), || {});
// ... which would make this drop remove the timer from the timer list altogether and continued processing
// of the timer would panic as the id isn't valid anymore.
drop(destructive_timer.take());
}
});
drop(destructive_timer);
i_slint_core::tests::slint_mock_elapsed_time(120);
```
*/
#[cfg(doctest)]
const _RESTART_TIMER_BEING_ACTIVATED: () = ();
/**
* Test that a future timer can be stopped from the activation callback of an earlier timer.
```rust
i_slint_backend_testing::init_no_event_loop();
use slint::{Timer, TimerMode};
use std::{rc::Rc, cell::Cell, time::Duration};
let later_timer_expiration_count = Rc::new(Cell::new(0));
let sooner_timer = Timer::default();
let later_timer = Rc::new(Timer::default());
later_timer.start(TimerMode::SingleShot, Duration::from_millis(500), {
let later_timer_expiration_count = later_timer_expiration_count.clone();
move || {
later_timer_expiration_count.set(later_timer_expiration_count.get() + 1);
}
});
sooner_timer.start(TimerMode::SingleShot, Duration::from_millis(100), {
let later_timer = later_timer.clone();
let later_timer_expiration_count = later_timer_expiration_count.clone();
move || {
later_timer.stop();
}
});
assert_eq!(later_timer_expiration_count.get(), 0);
assert!(later_timer.running());
i_slint_core::tests::slint_mock_elapsed_time(110);
assert_eq!(later_timer_expiration_count.get(), 0);
assert!(!later_timer.running());
i_slint_core::tests::slint_mock_elapsed_time(800);
assert_eq!(later_timer_expiration_count.get(), 0);
assert!(!later_timer.running());
```
*/
#[cfg(doctest)]
const _STOP_FUTURE_TIMER_DURING_ACTIVATION_OF_EARLIER: () = ();