rhai/src/packages/time_basic.rs

97 lines
3.2 KiB
Rust
Raw Normal View History

use super::logic::{eq, gt, gte, lt, lte, ne};
2020-04-20 18:24:25 +02:00
use super::math_basic::MAX_INT;
2020-04-21 17:01:10 +02:00
use crate::def_package;
2020-05-13 13:21:42 +02:00
use crate::module::FuncReturn;
use crate::parser::INT;
2020-04-20 18:24:25 +02:00
use crate::result::EvalAltResult;
use crate::token::Position;
2020-04-24 06:39:24 +02:00
#[cfg(not(feature = "no_std"))]
2020-04-21 17:01:10 +02:00
use crate::stdlib::time::Instant;
2020-04-24 06:39:24 +02:00
#[cfg(not(feature = "no_std"))]
2020-04-22 08:55:40 +02:00
def_package!(crate:BasicTimePackage:"Basic timing utilities.", lib, {
2020-04-24 06:39:24 +02:00
// Register date/time functions
2020-05-13 13:21:42 +02:00
lib.set_fn_0("timestamp", || Ok(Instant::now()));
2020-05-13 13:21:42 +02:00
lib.set_fn_2(
2020-04-24 06:39:24 +02:00
"-",
|ts1: Instant, ts2: Instant| {
if ts2 > ts1 {
#[cfg(not(feature = "no_float"))]
return Ok(-(ts2 - ts1).as_secs_f64());
2020-04-24 06:39:24 +02:00
#[cfg(feature = "no_float")]
{
let seconds = (ts2 - ts1).as_secs();
2020-04-24 06:39:24 +02:00
#[cfg(not(feature = "unchecked"))]
{
if seconds > (MAX_INT as u64) {
return Err(Box::new(EvalAltResult::ErrorArithmetic(
format!(
"Integer overflow for timestamp duration: {}",
-(seconds as i64)
),
Position::none(),
)));
}
}
2020-04-24 06:39:24 +02:00
return Ok(-(seconds as INT));
}
} else {
#[cfg(not(feature = "no_float"))]
return Ok((ts1 - ts2).as_secs_f64());
2020-04-24 06:39:24 +02:00
#[cfg(feature = "no_float")]
{
let seconds = (ts1 - ts2).as_secs();
2020-04-21 17:01:10 +02:00
2020-04-24 06:39:24 +02:00
#[cfg(not(feature = "unchecked"))]
{
if seconds > (MAX_INT as u64) {
return Err(Box::new(EvalAltResult::ErrorArithmetic(
format!("Integer overflow for timestamp duration: {}", seconds),
Position::none(),
)));
}
}
2020-04-24 06:39:24 +02:00
return Ok(seconds as INT);
}
2020-04-24 06:39:24 +02:00
}
},
);
2020-04-21 17:01:10 +02:00
2020-05-13 13:21:42 +02:00
lib.set_fn_2("<", lt::<Instant>);
lib.set_fn_2("<=", lte::<Instant>);
lib.set_fn_2(">", gt::<Instant>);
lib.set_fn_2(">=", gte::<Instant>);
lib.set_fn_2("==", eq::<Instant>);
lib.set_fn_2("!=", ne::<Instant>);
2020-04-21 17:01:10 +02:00
2020-05-13 13:21:42 +02:00
lib.set_fn_1(
2020-04-21 17:01:10 +02:00
"elapsed",
|timestamp: Instant| {
#[cfg(not(feature = "no_float"))]
return Ok(timestamp.elapsed().as_secs_f64());
#[cfg(feature = "no_float")]
{
let seconds = timestamp.elapsed().as_secs();
#[cfg(not(feature = "unchecked"))]
{
if seconds > (MAX_INT as u64) {
2020-04-28 13:39:28 +02:00
return Err(Box::new(EvalAltResult::ErrorArithmetic(
2020-04-21 17:01:10 +02:00
format!("Integer overflow for timestamp.elapsed(): {}", seconds),
Position::none(),
2020-04-28 13:39:28 +02:00
)));
2020-04-21 17:01:10 +02:00
}
}
return Ok(seconds as INT);
}
},
);
});