1 unstable release

Uses old Rust 2015

0.2.0 Feb 20, 2018

#704 in Unix APIs

Download history 114/week @ 2023-12-06 135/week @ 2023-12-13 63/week @ 2023-12-20 44/week @ 2023-12-27 160/week @ 2024-01-03 151/week @ 2024-01-10 172/week @ 2024-01-17 162/week @ 2024-01-24 169/week @ 2024-01-31 146/week @ 2024-02-07 130/week @ 2024-02-14 152/week @ 2024-02-21 146/week @ 2024-02-28 149/week @ 2024-03-06 180/week @ 2024-03-13 220/week @ 2024-03-20

719 downloads per month

MIT license

8KB
115 lines

hwclock-rs

The hwclock module provides a thin wrapper around kernel structs and ioctls to retrieve the current time from the hardware clock and convert it from and to a valid chrono data structure.

Example:

extern crate chrono;
extern crate hwclock;

fn main() {
   use hwclock::HwClockDev;

   let rtc = HwClockDev::open("/dev/rtc0").expect("could not open rtc clock");

   println!("{:?}", rtc);

   let time = rtc.get_time().expect("could not read rtc clock");
   println!("{:?}", time);

   println!("Setting clock ahead 30 seconds");
   let mut ct: chrono::NaiveDateTime = time.into();
   ct += chrono::Duration::seconds(30);

   // convert back to RtcTime and set it
   let ntime = ct.into();
   rtc.set_time(&ntime).expect("could not set rtc clock");

   println!("Rereading...");
   let time2 = rtc.get_time().expect("could not read rtc clock");

   println!("{:?}", time2);
}

lib.rs:

Hardware clock handling for linux

The hwclock module provides a thin wrapper around kernel structs and ioctls to retrieve the current time from the hardware clock and convert it from and to a valid chrono data structure.

extern crate chrono;
extern crate hwclock;

fn main() {
    use hwclock::HwClockDev;

    let rtc = HwClockDev::open("/dev/rtc0").expect("could not open rtc clock");

    println!("{:?}", rtc);

    let time = rtc.get_time().expect("could not read rtc clock");
    println!("{:?}", time);

    println!("Setting clock ahead 30 seconds");
    let mut ct: chrono::NaiveDateTime = time.into();
    ct += chrono::Duration::seconds(30);

    // convert back to RtcTime and set it
    let ntime = ct.into();
    rtc.set_time(&ntime).expect("could not set rtc clock");

    println!("Rereading...");
    let time2 = rtc.get_time().expect("could not read rtc clock");

    println!("{:?}", time2);
}

Dependencies

~3MB
~58K SLoC