#cross-platform #suspend #system #monotonic #clock #durations #instant

bin+lib suspend-time

A cross-platform monotonic clock that is suspend-unaware, written in Rust!

3 releases

0.1.2 Jul 24, 2024
0.1.1 Jul 19, 2024
0.1.0 Jul 19, 2024

#276 in Operating systems

Download history 208/week @ 2024-07-15 353/week @ 2024-07-22 257/week @ 2024-07-29 402/week @ 2024-08-05 426/week @ 2024-08-12 243/week @ 2024-08-19 565/week @ 2024-08-26

1,636 downloads per month

MIT license

27KB
345 lines

suspend-time

Suspend-time is a cross-platform monotonic clock that is suspend-unaware, written in Rust!
It allows system suspension (e.g. when a user closes their laptop on windows) to not affect Instant durations and timeouts!

API Documentation

Example

Example of using SuspendUnawareInstant:

use std::{thread, time};
use suspend_time::{SuspendUnawareInstant};

fn main() {
    // If you used std::time::Instant here and you suspend the system on windows,
    // it will print that more than 3 seconds (circa July 2024).
    // With SuspendUnawareInstant this has no effect.
    let instant = SuspendUnawareInstant::now();
    let three_secs = time::Duration::from_secs(3);
    thread::sleep(three_secs);
    println!("{:#?}", instant.elapsed());
}

Example of using suspend_time::timeout:

use std::time::Duration;

#[tokio::main]
async fn main() {
    // If you suspend the system during main's execution, Tokio will time
    // out even though it only slept for 1 second. suspend_time::timeout does not.
    let _ = suspend_time::timeout(
        Duration::from_secs(2),
        suspend_time::sleep(Duration::from_secs(1)),
    ).await;
}

Instant vs SuspendUnawareInstant

This library is a drop-in replacement for std::time::Instant, so you don't need to worry about updating your code.

Similar to the standard library's implementation of Instant, except it is consistently unaware of system suspends across all platforms supported by this library.

Historically, this has been inconsistent in the standard library, with windows allowing time to pass when the system is suspended/hibernating, however unix systems do not "pass time" during system suspension. In this library, time never passes when the system is suspended on any platform.

This instant implementation is:

  • Cross platform (windows, unix)
  • Monotonic (time never goes backwards)
  • Suspend-unaware (when you put your computer to sleep, "time" does not pass.)

Dependencies

~14–23MB
~302K SLoC