Files
RustPython/vm/src/stdlib/time_module.rs
2019-07-13 11:26:44 +02:00

288 lines
9.2 KiB
Rust

//! The python `time` module.
/// See also:
/// https://docs.python.org/3/library/time.html
use std::fmt;
use std::thread;
use std::time::{Duration, SystemTime, UNIX_EPOCH};
use crate::function::{OptionalArg, PyFuncArgs};
use crate::obj::objint::PyIntRef;
use crate::obj::objsequence::get_sequence_index;
use crate::obj::objstr::PyStringRef;
use crate::obj::objtype::PyClassRef;
use crate::obj::{objfloat, objint, objtype};
use crate::pyobject::{PyClassImpl, PyObjectRef, PyRef, PyResult, PyValue};
use crate::vm::VirtualMachine;
use num_traits::cast::ToPrimitive;
use chrono::naive::NaiveDateTime;
use chrono::{Datelike, Timelike};
fn time_sleep(vm: &VirtualMachine, args: PyFuncArgs) -> PyResult {
arg_check!(vm, args, required = [(seconds, Some(vm.ctx.float_type()))]);
let seconds = objfloat::get_value(seconds);
let secs: u64 = seconds.trunc() as u64;
let nanos: u32 = (seconds.fract() * 1e9) as u32;
let duration = Duration::new(secs, nanos);
thread::sleep(duration);
Ok(vm.get_none())
}
fn duration_to_f64(d: Duration) -> f64 {
(d.as_secs() as f64) + (f64::from(d.subsec_nanos()) / 1e9)
}
fn time_time(vm: &VirtualMachine, args: PyFuncArgs) -> PyResult {
arg_check!(vm, args);
let x = match SystemTime::now().duration_since(UNIX_EPOCH) {
Ok(v) => duration_to_f64(v),
Err(err) => panic!("Error: {:?}", err),
};
let value = vm.ctx.new_float(x);
Ok(value)
}
fn time_monotonic(vm: &VirtualMachine, args: PyFuncArgs) -> PyResult {
arg_check!(vm, args);
// TODO: implement proper monotonic time!
let x = match SystemTime::now().duration_since(UNIX_EPOCH) {
Ok(v) => duration_to_f64(v),
Err(err) => panic!("Error: {:?}", err),
};
let value = vm.ctx.new_float(x);
Ok(value)
}
fn pyfloat_to_secs_and_nanos(seconds: &PyObjectRef) -> (i64, u32) {
let seconds = objfloat::get_value(seconds);
let secs: i64 = seconds.trunc() as i64;
let nanos: u32 = (seconds.fract() * 1e9) as u32;
(secs, nanos)
}
fn pyobj_to_naive_date_time(
value: &PyObjectRef,
vm: &VirtualMachine,
) -> PyResult<Option<NaiveDateTime>> {
if objtype::isinstance(value, &vm.ctx.float_type()) {
let (seconds, nanos) = pyfloat_to_secs_and_nanos(&value);
let dt = NaiveDateTime::from_timestamp(seconds, nanos);
Ok(Some(dt))
} else if objtype::isinstance(&value, &vm.ctx.int_type()) {
let seconds = objint::get_value(&value).to_i64().unwrap();
let dt = NaiveDateTime::from_timestamp(seconds, 0);
Ok(Some(dt))
} else {
Err(vm.new_type_error("Expected float, int or None".to_string()))
}
}
/// https://docs.python.org/3/library/time.html?highlight=gmtime#time.gmtime
fn time_gmtime(secs: OptionalArg<PyObjectRef>, vm: &VirtualMachine) -> PyResult<PyStructTime> {
let default = chrono::offset::Utc::now().naive_utc();
let instant = match secs {
OptionalArg::Present(secs) => pyobj_to_naive_date_time(&secs, vm)?.unwrap_or(default),
OptionalArg::Missing => default,
};
let value = PyStructTime::new(instant);
Ok(value)
}
fn time_localtime(secs: OptionalArg<PyObjectRef>, vm: &VirtualMachine) -> PyResult<PyStructTime> {
let instant = optional_or_localtime(secs, vm)?;
let value = PyStructTime::new(instant);
Ok(value)
}
fn time_mktime(t: PyStructTimeRef, vm: &VirtualMachine) -> PyResult {
let datetime = t.get_date_time();
let seconds_since_epoch = datetime.timestamp() as f64;
Ok(vm.ctx.new_float(seconds_since_epoch))
}
/// Construct a localtime from the optional seconds, or get the current local time.
fn optional_or_localtime(
secs: OptionalArg<PyObjectRef>,
vm: &VirtualMachine,
) -> PyResult<NaiveDateTime> {
let default = chrono::offset::Local::now().naive_local();
let instant = match secs {
OptionalArg::Present(secs) => pyobj_to_naive_date_time(&secs, vm)?.unwrap_or(default),
OptionalArg::Missing => default,
};
Ok(instant)
}
const CFMT: &str = "%a %b %e %H:%M:%S %Y";
fn time_asctime(t: OptionalArg<PyStructTimeRef>, vm: &VirtualMachine) -> PyResult {
let default = chrono::offset::Local::now().naive_local();
let instant = match t {
OptionalArg::Present(t) => t.get_date_time(),
OptionalArg::Missing => default,
};
let formatted_time = instant.format(&CFMT).to_string();
Ok(vm.ctx.new_str(formatted_time))
}
fn time_ctime(secs: OptionalArg<PyObjectRef>, vm: &VirtualMachine) -> PyResult<String> {
let instant = optional_or_localtime(secs, vm)?;
let formatted_time = instant.format(&CFMT).to_string();
Ok(formatted_time)
}
fn time_strftime(
format: PyStringRef,
t: OptionalArg<PyStructTimeRef>,
vm: &VirtualMachine,
) -> PyResult {
let default = chrono::offset::Local::now().naive_local();
let instant = match t {
OptionalArg::Present(t) => t.get_date_time(),
OptionalArg::Missing => default,
};
let formatted_time = instant.format(&format.value).to_string();
Ok(vm.ctx.new_str(formatted_time))
}
fn time_strptime(
string: PyStringRef,
format: OptionalArg<PyStringRef>,
vm: &VirtualMachine,
) -> PyResult<PyStructTime> {
let format: String = match format {
OptionalArg::Present(format) => format.value.clone(),
OptionalArg::Missing => "%a %b %H:%M:%S %Y".to_string(),
};
let instant = NaiveDateTime::parse_from_str(&string.value, &format)
.map_err(|e| vm.new_value_error(format!("Parse error: {:?}", e)))?;
let struct_time = PyStructTime::new(instant);
Ok(struct_time)
}
#[pyclass(name = "struct_time")]
struct PyStructTime {
tm: NaiveDateTime,
}
type PyStructTimeRef = PyRef<PyStructTime>;
impl fmt::Debug for PyStructTime {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "struct_time()")
}
}
impl PyValue for PyStructTime {
fn class(vm: &VirtualMachine) -> PyClassRef {
vm.class("time", "struct_time")
}
}
#[pyimpl]
impl PyStructTime {
fn new(tm: NaiveDateTime) -> Self {
PyStructTime { tm }
}
#[pymethod(name = "__repr__")]
fn repr(&self, _vm: &VirtualMachine) -> String {
// TODO: extract year day and isdst somehow..
format!(
"time.struct_time(tm_year={}, tm_mon={}, tm_mday={}, tm_hour={}, tm_min={}, tm_sec={}, tm_wday={}, tm_yday={})",
self.tm.date().year(), self.tm.date().month(), self.tm.date().day(),
self.tm.time().hour(), self.tm.time().minute(), self.tm.time().second(),
self.tm.date().weekday().num_days_from_monday(),
self.tm.date().ordinal()
)
}
fn get_date_time(&self) -> NaiveDateTime {
self.tm
}
#[pymethod(name = "__len__")]
fn len(&self, _vm: &VirtualMachine) -> usize {
8
}
#[pymethod(name = "__getitem__")]
fn getitem(&self, needle: PyIntRef, vm: &VirtualMachine) -> PyResult {
let index = get_sequence_index(vm, &needle, 8)?;
match index {
0 => Ok(vm.ctx.new_int(self.tm.date().year())),
1 => Ok(vm.ctx.new_int(self.tm.date().month())),
2 => Ok(vm.ctx.new_int(self.tm.date().day())),
3 => Ok(vm.ctx.new_int(self.tm.time().hour())),
4 => Ok(vm.ctx.new_int(self.tm.time().minute())),
5 => Ok(vm.ctx.new_int(self.tm.time().second())),
6 => Ok(vm
.ctx
.new_int(self.tm.date().weekday().num_days_from_monday())),
7 => Ok(vm.ctx.new_int(self.tm.date().ordinal())),
_ => unreachable!(),
}
}
#[pyproperty(name = "tm_year")]
fn tm_year(&self, _vm: &VirtualMachine) -> i32 {
self.tm.date().year()
}
#[pyproperty(name = "tm_mon")]
fn tm_mon(&self, _vm: &VirtualMachine) -> u32 {
self.tm.date().month()
}
#[pyproperty(name = "tm_mday")]
fn tm_mday(&self, _vm: &VirtualMachine) -> u32 {
self.tm.date().day()
}
#[pyproperty(name = "tm_hour")]
fn tm_hour(&self, _vm: &VirtualMachine) -> u32 {
self.tm.time().hour()
}
#[pyproperty(name = "tm_min")]
fn tm_min(&self, _vm: &VirtualMachine) -> u32 {
self.tm.time().minute()
}
#[pyproperty(name = "tm_sec")]
fn tm_sec(&self, _vm: &VirtualMachine) -> u32 {
self.tm.time().second()
}
#[pyproperty(name = "tm_wday")]
fn tm_wday(&self, _vm: &VirtualMachine) -> u32 {
self.tm.date().weekday().num_days_from_monday()
}
#[pyproperty(name = "tm_yday")]
fn tm_yday(&self, _vm: &VirtualMachine) -> u32 {
self.tm.date().ordinal()
}
}
pub fn make_module(vm: &VirtualMachine) -> PyObjectRef {
let ctx = &vm.ctx;
let struct_time_type = PyStructTime::make_class(ctx);
py_module!(vm, "time", {
"asctime" => ctx.new_rustfunc(time_asctime),
"ctime" => ctx.new_rustfunc(time_ctime),
"gmtime" => ctx.new_rustfunc(time_gmtime),
"mktime" => ctx.new_rustfunc(time_mktime),
"localtime" => ctx.new_rustfunc(time_localtime),
"monotonic" => ctx.new_rustfunc(time_monotonic),
"strftime" => ctx.new_rustfunc(time_strftime),
"strptime" => ctx.new_rustfunc(time_strptime),
"sleep" => ctx.new_rustfunc(time_sleep),
"struct_time" => struct_time_type,
"time" => ctx.new_rustfunc(time_time)
})
}