#timer #compute #util #hours #config #month #second

timer-util

a simple tool to compute time: easy to config, and easy to use

12 releases

0.3.6 Jan 16, 2023
0.3.5 Jan 13, 2023
0.3.4 Oct 14, 2022
0.3.2 Jul 9, 2022
0.1.2 May 23, 2022

#300 in Date and time


Used in custom-utils

Custom license

61KB
1.5K SLoC

timer-util

a simple tool to compute time: easy to config, and easy to use. a simple example:

use std::time::Duration;
use time::OffsetDateTime;
use timer_util::*;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    // 定时器配置(timer configs):
    // every weekday or 1st..10st 15st..25st every month    每周六 或者每月的1号到9号、15号到24号
    // every hour   每小时
    // 0st/10st/20st/30st/40st/50st minuter 第0/10/20/30/40/50分钟
    // 0st/30st second  第0/30秒
    let conf = DayHourMinuterSecondConf::default_week_days(WeekDays::default_value(W6))
        .conf_month_days(MonthDays::default_range(D1..D10)?.add_range(D15..D25)?)
        .build_with_hours(Hours::default_all())
        .build_with_minuter(Minuters::default_array(&[M0, M10, M20, M30, M40, M50]))
        .build_with_second(Seconds::default_array(&[S0, S30]));

    // let next_seconds = conf.next()?;

    let handle = tokio::spawn(async move {
        loop {
            let off_seconds = conf.next().unwrap();
            println!("next seconds: {}", off_seconds);
            tokio::time::sleep(Duration::from_secs(off_seconds)).await;
            // println!("{:?}", OffsetDateTime::now_local().unwrap());
        }
    });
    handle.await.unwrap();
    Ok(())
}

Dependencies

~1.5MB
~22K SLoC