use pyo3::prelude::*;
use pyo3_stub_gen::derive::gen_stub_pyfunction;
use super::to_pyvalue_err;
use crate::{
UnixNanos,
datetime::{
is_within_last_24_hours, last_weekday_nanos, micros_to_nanos, millis_to_nanos,
nanos_to_micros, nanos_to_millis, nanos_to_secs, secs_to_millis, secs_to_nanos,
unix_nanos_to_iso8601, unix_nanos_to_iso8601_millis,
},
};
#[pyfunction(name = "secs_to_nanos")]
#[gen_stub_pyfunction(module = "nautilus_trader.core")]
pub fn py_secs_to_nanos(secs: f64) -> PyResult<u64> {
secs_to_nanos(secs).map_err(to_pyvalue_err)
}
#[pyfunction(name = "secs_to_millis")]
#[gen_stub_pyfunction(module = "nautilus_trader.core")]
pub fn py_secs_to_millis(secs: f64) -> PyResult<u64> {
secs_to_millis(secs).map_err(to_pyvalue_err)
}
#[pyfunction(name = "millis_to_nanos")]
#[gen_stub_pyfunction(module = "nautilus_trader.core")]
pub fn py_millis_to_nanos(millis: f64) -> PyResult<u64> {
millis_to_nanos(millis).map_err(to_pyvalue_err)
}
#[pyfunction(name = "micros_to_nanos")]
#[gen_stub_pyfunction(module = "nautilus_trader.core")]
pub fn py_micros_to_nanos(micros: f64) -> PyResult<u64> {
micros_to_nanos(micros).map_err(to_pyvalue_err)
}
#[must_use]
#[pyfunction(name = "nanos_to_secs")]
#[gen_stub_pyfunction(module = "nautilus_trader.core")]
pub fn py_nanos_to_secs(nanos: u64) -> f64 {
nanos_to_secs(nanos)
}
#[must_use]
#[pyfunction(name = "nanos_to_millis")]
#[gen_stub_pyfunction(module = "nautilus_trader.core")]
pub const fn py_nanos_to_millis(nanos: u64) -> u64 {
nanos_to_millis(nanos)
}
#[must_use]
#[pyfunction(name = "nanos_to_micros")]
#[gen_stub_pyfunction(module = "nautilus_trader.core")]
pub const fn py_nanos_to_micros(nanos: u64) -> u64 {
nanos_to_micros(nanos)
}
#[pyfunction(
name = "unix_nanos_to_iso8601",
signature = (timestamp_ns, nanos_precision=Some(true))
)]
#[gen_stub_pyfunction(module = "nautilus_trader.core")]
pub fn py_unix_nanos_to_iso8601(
timestamp_ns: u64,
nanos_precision: Option<bool>,
) -> PyResult<String> {
if timestamp_ns > i64::MAX as u64 {
return Err(to_pyvalue_err(
"timestamp_ns is out of range for conversion",
));
}
let unix_nanos = UnixNanos::from(timestamp_ns);
let formatted = if nanos_precision.unwrap_or(true) {
unix_nanos_to_iso8601(unix_nanos)
} else {
unix_nanos_to_iso8601_millis(unix_nanos)
};
Ok(formatted)
}
#[pyfunction(name = "last_weekday_nanos")]
#[gen_stub_pyfunction(module = "nautilus_trader.core")]
pub fn py_last_weekday_nanos(year: i32, month: u32, day: u32) -> PyResult<u64> {
Ok(last_weekday_nanos(year, month, day)
.map_err(to_pyvalue_err)?
.as_u64())
}
#[pyfunction(name = "is_within_last_24_hours")]
#[gen_stub_pyfunction(module = "nautilus_trader.core")]
pub fn py_is_within_last_24_hours(timestamp_ns: u64) -> PyResult<bool> {
is_within_last_24_hours(UnixNanos::from(timestamp_ns)).map_err(to_pyvalue_err)
}
#[cfg(test)]
mod tests {
use rstest::rstest;
use super::*;
#[rstest]
fn test_py_unix_nanos_to_iso8601_errors_on_out_of_range_timestamp() {
let result = py_unix_nanos_to_iso8601((i64::MAX as u64) + 1, Some(true));
assert!(result.is_err());
}
#[rstest]
fn test_py_unix_nanos_to_iso8601_formats_valid_timestamp() {
let output = py_unix_nanos_to_iso8601(0, Some(false)).unwrap();
assert_eq!(output, "1970-01-01T00:00:00.000Z");
}
}