1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
use std::cell::UnsafeCell;
use std::collections::hash_map::Entry;
use std::fmt;
use std::hash::Hash;
use std::marker::PhantomData;
use ahash::AHashMap;
use pyo3::{Py, Python};
use crate::dtype::{Element, PyArrayDescr};
use crate::npyffi::{PyArray_DatetimeDTypeMetaData, NPY_DATETIMEUNIT, NPY_TYPES};
pub trait Unit: Send + Sync + Clone + Copy + PartialEq + Eq + Hash + PartialOrd + Ord {
const UNIT: NPY_DATETIMEUNIT;
const ABBREV: &'static str;
}
macro_rules! define_units {
($($(#[$meta:meta])* $struct:ident => $unit:ident $abbrev:literal,)+) => {
$(
$(#[$meta])*
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct $struct;
impl Unit for $struct {
const UNIT: NPY_DATETIMEUNIT = NPY_DATETIMEUNIT::$unit;
const ABBREV: &'static str = $abbrev;
}
)+
};
}
pub mod units {
use super::*;
define_units!(
#[doc = "Years, i.e. 12 months"]
Years => NPY_FR_Y "a",
#[doc = "Months, i.e. 30 days"]
Months => NPY_FR_M "mo",
#[doc = "Weeks, i.e. 7 days"]
Weeks => NPY_FR_W "w",
#[doc = "Days, i.e. 24 hours"]
Days => NPY_FR_D "d",
#[doc = "Hours, i.e. 60 minutes"]
Hours => NPY_FR_h "h",
#[doc = "Minutes, i.e. 60 seconds"]
Minutes => NPY_FR_m "min",
#[doc = "Seconds"]
Seconds => NPY_FR_s "s",
#[doc = "Milliseconds, i.e. 10^-3 seconds"]
Milliseconds => NPY_FR_ms "ms",
#[doc = "Microseconds, i.e. 10^-6 seconds"]
Microseconds => NPY_FR_us "µs",
#[doc = "Nanoseconds, i.e. 10^-9 seconds"]
Nanoseconds => NPY_FR_ns "ns",
#[doc = "Picoseconds, i.e. 10^-12 seconds"]
Picoseconds => NPY_FR_ps "ps",
#[doc = "Femtoseconds, i.e. 10^-15 seconds"]
Femtoseconds => NPY_FR_fs "fs",
#[doc = "Attoseconds, i.e. 10^-18 seconds"]
Attoseconds => NPY_FR_as "as",
);
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
#[repr(transparent)]
pub struct Datetime<U: Unit>(i64, PhantomData<U>);
impl<U: Unit> From<i64> for Datetime<U> {
fn from(val: i64) -> Self {
Self(val, PhantomData)
}
}
impl<U: Unit> From<Datetime<U>> for i64 {
fn from(val: Datetime<U>) -> Self {
val.0
}
}
unsafe impl<U: Unit> Element for Datetime<U> {
const IS_COPY: bool = true;
fn get_dtype(py: Python) -> &PyArrayDescr {
static DTYPES: TypeDescriptors = unsafe { TypeDescriptors::new(NPY_TYPES::NPY_DATETIME) };
DTYPES.from_unit(py, U::UNIT)
}
}
impl<U: Unit> fmt::Debug for Datetime<U> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Datetime({} {})", self.0, U::ABBREV)
}
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
#[repr(transparent)]
pub struct Timedelta<U: Unit>(i64, PhantomData<U>);
impl<U: Unit> From<i64> for Timedelta<U> {
fn from(val: i64) -> Self {
Self(val, PhantomData)
}
}
impl<U: Unit> From<Timedelta<U>> for i64 {
fn from(val: Timedelta<U>) -> Self {
val.0
}
}
unsafe impl<U: Unit> Element for Timedelta<U> {
const IS_COPY: bool = true;
fn get_dtype(py: Python) -> &PyArrayDescr {
static DTYPES: TypeDescriptors = unsafe { TypeDescriptors::new(NPY_TYPES::NPY_TIMEDELTA) };
DTYPES.from_unit(py, U::UNIT)
}
}
impl<U: Unit> fmt::Debug for Timedelta<U> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Timedelta({} {})", self.0, U::ABBREV)
}
}
struct TypeDescriptors {
npy_type: NPY_TYPES,
dtypes: UnsafeCell<Option<AHashMap<NPY_DATETIMEUNIT, Py<PyArrayDescr>>>>,
}
unsafe impl Sync for TypeDescriptors {}
impl TypeDescriptors {
const unsafe fn new(npy_type: NPY_TYPES) -> Self {
Self {
npy_type,
dtypes: UnsafeCell::new(None),
}
}
#[allow(clippy::mut_from_ref)]
unsafe fn get(&self) -> &mut AHashMap<NPY_DATETIMEUNIT, Py<PyArrayDescr>> {
(*self.dtypes.get()).get_or_insert_with(AHashMap::new)
}
#[allow(clippy::wrong_self_convention)]
fn from_unit<'py>(&'py self, py: Python<'py>, unit: NPY_DATETIMEUNIT) -> &'py PyArrayDescr {
let dtypes = unsafe { self.get() };
match dtypes.entry(unit) {
Entry::Occupied(entry) => entry.into_mut().as_ref(py),
Entry::Vacant(entry) => {
let dtype = PyArrayDescr::new_from_npy_type(py, self.npy_type);
unsafe {
let metadata = &mut *((*dtype.as_dtype_ptr()).c_metadata
as *mut PyArray_DatetimeDTypeMetaData);
metadata.meta.base = unit;
metadata.meta.num = 1;
}
entry.insert(dtype.into()).as_ref(py)
}
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use pyo3::{
py_run,
types::{PyDict, PyModule},
};
use crate::array::PyArray1;
#[test]
fn from_python_to_rust() {
Python::with_gil(|py| {
let locals = py
.eval("{ 'np': __import__('numpy') }", None, None)
.unwrap()
.downcast::<PyDict>()
.unwrap();
let array = py
.eval(
"np.array([np.datetime64('1970-01-01')])",
None,
Some(locals),
)
.unwrap()
.downcast::<PyArray1<Datetime<units::Days>>>()
.unwrap();
let value: i64 = array.get_owned(0).unwrap().into();
assert_eq!(value, 0);
});
}
#[test]
fn from_rust_to_python() {
Python::with_gil(|py| {
let array = PyArray1::<Timedelta<units::Minutes>>::zeros(py, 1, false);
*array.readwrite().get_mut(0).unwrap() = Timedelta::<units::Minutes>::from(5);
let np = py
.eval("__import__('numpy')", None, None)
.unwrap()
.downcast::<PyModule>()
.unwrap();
py_run!(py, array np, "assert array.dtype == np.dtype('timedelta64[m]')");
py_run!(py, array np, "assert array[0] == np.timedelta64(5, 'm')");
});
}
#[test]
fn debug_formatting() {
assert_eq!(
format!("{:?}", Datetime::<units::Days>::from(28)),
"Datetime(28 d)"
);
assert_eq!(
format!("{:?}", Timedelta::<units::Milliseconds>::from(160)),
"Timedelta(160 ms)"
);
}
#[test]
fn unit_conversion() {
#[track_caller]
fn convert<S: Unit, D: Unit>(py: Python<'_>, expected_value: i64) {
let array = PyArray1::<Timedelta<S>>::from_slice(py, &[Timedelta::<S>::from(1)]);
let array = array.cast::<Timedelta<D>>(false).unwrap();
let value: i64 = array.get_owned(0).unwrap().into();
assert_eq!(value, expected_value);
}
Python::with_gil(|py| {
convert::<units::Years, units::Days>(py, (97 + 400 * 365) / 400);
convert::<units::Months, units::Days>(py, (97 + 400 * 365) / 400 / 12);
convert::<units::Weeks, units::Seconds>(py, 7 * 24 * 60 * 60);
convert::<units::Days, units::Seconds>(py, 24 * 60 * 60);
convert::<units::Hours, units::Seconds>(py, 60 * 60);
convert::<units::Minutes, units::Seconds>(py, 60);
convert::<units::Seconds, units::Milliseconds>(py, 1_000);
convert::<units::Seconds, units::Microseconds>(py, 1_000_000);
convert::<units::Seconds, units::Nanoseconds>(py, 1_000_000_000);
convert::<units::Seconds, units::Picoseconds>(py, 1_000_000_000_000);
convert::<units::Seconds, units::Femtoseconds>(py, 1_000_000_000_000_000);
convert::<units::Femtoseconds, units::Attoseconds>(py, 1_000);
});
}
}