2020-06-17 10:50:57 +02:00
|
|
|
#![cfg(not(feature = "no_std"))]
|
2020-07-26 04:03:59 +02:00
|
|
|
|
|
|
|
#[cfg(feature = "no_float")]
|
2020-08-31 05:46:32 +02:00
|
|
|
use super::{arithmetic::make_err, math_basic::MAX_INT};
|
2020-04-20 18:11:25 +02:00
|
|
|
|
2020-04-21 17:01:10 +02:00
|
|
|
use crate::def_package;
|
2020-08-14 07:43:26 +02:00
|
|
|
use crate::plugin::*;
|
2020-04-20 18:24:25 +02:00
|
|
|
use crate::result::EvalAltResult;
|
2020-07-26 04:03:59 +02:00
|
|
|
|
|
|
|
#[cfg(not(feature = "no_float"))]
|
|
|
|
use crate::parser::FLOAT;
|
|
|
|
|
|
|
|
#[cfg(feature = "no_float")]
|
2020-07-26 09:53:22 +02:00
|
|
|
use crate::parser::INT;
|
|
|
|
|
2020-06-17 10:50:57 +02:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
2020-04-21 17:01:10 +02:00
|
|
|
use crate::stdlib::time::Instant;
|
2020-04-20 18:11:25 +02:00
|
|
|
|
2020-06-17 10:50:57 +02:00
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
use instant::Instant;
|
|
|
|
|
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-08-21 15:48:45 +02:00
|
|
|
lib.combine_flatten(exported_module!(time_functions));
|
2020-08-14 07:43:26 +02:00
|
|
|
});
|
|
|
|
|
2020-08-16 17:41:59 +02:00
|
|
|
#[export_module]
|
|
|
|
mod time_functions {
|
2020-08-20 16:11:41 +02:00
|
|
|
#[inline(always)]
|
2020-08-16 17:41:59 +02:00
|
|
|
pub fn timestamp() -> Instant {
|
|
|
|
Instant::now()
|
2020-08-14 07:43:26 +02:00
|
|
|
}
|
2020-08-16 17:41:59 +02:00
|
|
|
#[rhai_fn(return_raw)]
|
|
|
|
pub fn elapsed(timestamp: &mut Instant) -> Result<Dynamic, Box<EvalAltResult>> {
|
|
|
|
#[cfg(not(feature = "no_float"))]
|
|
|
|
{
|
|
|
|
Ok((timestamp.elapsed().as_secs_f64() as FLOAT).into())
|
|
|
|
}
|
2020-08-14 07:43:26 +02:00
|
|
|
|
2020-08-16 17:41:59 +02:00
|
|
|
#[cfg(feature = "no_float")]
|
|
|
|
{
|
|
|
|
let seconds = timestamp.elapsed().as_secs();
|
2020-08-14 07:43:26 +02:00
|
|
|
|
2020-08-31 05:46:32 +02:00
|
|
|
if cfg!(not(feature = "unchecked")) && seconds > (MAX_INT as u64) {
|
|
|
|
Err(make_err(format!(
|
|
|
|
"Integer overflow for timestamp.elapsed: {}",
|
|
|
|
seconds
|
|
|
|
)))
|
|
|
|
} else {
|
|
|
|
Ok((seconds as INT).into())
|
2020-08-16 17:41:59 +02:00
|
|
|
}
|
2020-08-14 07:43:26 +02:00
|
|
|
}
|
2020-08-16 17:41:59 +02:00
|
|
|
}
|
2020-04-21 17:01:10 +02:00
|
|
|
|
2020-08-20 16:11:41 +02:00
|
|
|
#[rhai_fn(get = "elapsed", return_raw)]
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn elapsed_prop(timestamp: &mut Instant) -> Result<Dynamic, Box<EvalAltResult>> {
|
|
|
|
elapsed(timestamp)
|
|
|
|
}
|
|
|
|
|
2020-08-16 17:41:59 +02:00
|
|
|
#[rhai_fn(return_raw, name = "-")]
|
2020-08-24 04:38:15 +02:00
|
|
|
pub fn time_diff(ts1: Instant, ts2: Instant) -> Result<Dynamic, Box<EvalAltResult>> {
|
2020-08-16 17:41:59 +02:00
|
|
|
#[cfg(not(feature = "no_float"))]
|
|
|
|
{
|
|
|
|
Ok(if ts2 > ts1 {
|
|
|
|
-(ts2 - ts1).as_secs_f64() as FLOAT
|
|
|
|
} else {
|
|
|
|
(ts1 - ts2).as_secs_f64() as FLOAT
|
|
|
|
}
|
|
|
|
.into())
|
2020-05-30 04:30:21 +02:00
|
|
|
}
|
2020-07-04 16:53:00 +02:00
|
|
|
|
2020-08-16 17:41:59 +02:00
|
|
|
#[cfg(feature = "no_float")]
|
|
|
|
if ts2 > ts1 {
|
|
|
|
let seconds = (ts2 - ts1).as_secs();
|
|
|
|
|
2020-08-31 05:46:32 +02:00
|
|
|
if cfg!(not(feature = "unchecked")) && seconds > (MAX_INT as u64) {
|
|
|
|
Err(make_err(format!(
|
|
|
|
"Integer overflow for timestamp duration: -{}",
|
|
|
|
seconds
|
|
|
|
)))
|
|
|
|
} else {
|
|
|
|
Ok(Dynamic::from(-(seconds as INT)))
|
2020-08-16 17:41:59 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let seconds = (ts1 - ts2).as_secs();
|
|
|
|
|
2020-08-31 05:46:32 +02:00
|
|
|
if cfg!(not(feature = "unchecked")) && seconds > (MAX_INT as u64) {
|
|
|
|
Err(make_err(format!(
|
|
|
|
"Integer overflow for timestamp duration: {}",
|
|
|
|
seconds
|
|
|
|
)))
|
|
|
|
} else {
|
|
|
|
Ok((seconds as INT).into())
|
2020-08-16 17:41:59 +02:00
|
|
|
}
|
|
|
|
}
|
2020-05-30 04:30:21 +02:00
|
|
|
}
|
|
|
|
|
2020-08-16 17:41:59 +02:00
|
|
|
#[rhai_fn(name = "==")]
|
2020-08-20 16:11:41 +02:00
|
|
|
#[inline(always)]
|
2020-08-14 07:43:26 +02:00
|
|
|
pub fn eq(x: Instant, y: Instant) -> bool {
|
|
|
|
x == y
|
|
|
|
}
|
2020-08-16 17:41:59 +02:00
|
|
|
#[rhai_fn(name = "!=")]
|
2020-08-20 16:11:41 +02:00
|
|
|
#[inline(always)]
|
2020-08-14 07:43:26 +02:00
|
|
|
pub fn ne(x: Instant, y: Instant) -> bool {
|
|
|
|
x != y
|
|
|
|
}
|
2020-08-16 17:41:59 +02:00
|
|
|
#[rhai_fn(name = "<")]
|
2020-08-20 16:11:41 +02:00
|
|
|
#[inline(always)]
|
2020-08-14 07:43:26 +02:00
|
|
|
pub fn lt(x: Instant, y: Instant) -> bool {
|
|
|
|
x < y
|
|
|
|
}
|
2020-08-16 17:41:59 +02:00
|
|
|
#[rhai_fn(name = "<=")]
|
2020-08-20 16:11:41 +02:00
|
|
|
#[inline(always)]
|
2020-08-14 07:43:26 +02:00
|
|
|
pub fn lte(x: Instant, y: Instant) -> bool {
|
|
|
|
x <= y
|
|
|
|
}
|
2020-08-16 17:41:59 +02:00
|
|
|
#[rhai_fn(name = ">")]
|
2020-08-20 16:11:41 +02:00
|
|
|
#[inline(always)]
|
2020-08-14 07:43:26 +02:00
|
|
|
pub fn gt(x: Instant, y: Instant) -> bool {
|
|
|
|
x > y
|
|
|
|
}
|
2020-08-16 17:41:59 +02:00
|
|
|
#[rhai_fn(name = ">=")]
|
2020-08-20 16:11:41 +02:00
|
|
|
#[inline(always)]
|
2020-08-14 07:43:26 +02:00
|
|
|
pub fn gte(x: Instant, y: Instant) -> bool {
|
|
|
|
x >= y
|
|
|
|
}
|
|
|
|
}
|