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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
use std::cmp::Ordering;
use std::ops::Mul;
use chrono::{Datelike, NaiveDate, NaiveDateTime, NaiveTime, Timelike, Weekday};
use polars_arrow::export::arrow::temporal_conversions::{
timestamp_ms_to_datetime, timestamp_ns_to_datetime, timestamp_us_to_datetime, MILLISECONDS,
};
use polars_core::export::arrow::temporal_conversions::MICROSECONDS;
use polars_core::prelude::{
datetime_to_timestamp_ms, datetime_to_timestamp_ns, datetime_to_timestamp_us,
};
use polars_core::utils::arrow::temporal_conversions::NANOSECONDS;
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
use super::calendar::{
is_leap_year, last_day_of_month, NS_DAY, NS_HOUR, NS_MICROSECOND, NS_MILLISECOND, NS_MINUTE,
NS_SECOND, NS_WEEK,
};
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct Duration {
months: i64,
weeks: i64,
nsecs: i64,
pub(crate) negative: bool,
pub parsed_int: bool,
}
impl PartialOrd<Self> for Duration {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
self.duration_ns().partial_cmp(&other.duration_ns())
}
}
impl Ord for Duration {
fn cmp(&self, other: &Self) -> Ordering {
self.duration_ns().cmp(&other.duration_ns())
}
}
impl Duration {
pub fn new(fixed_slots: i64) -> Self {
Duration {
months: 0,
weeks: 0,
nsecs: fixed_slots.abs(),
negative: fixed_slots < 0,
parsed_int: true,
}
}
pub fn parse(duration: &str) -> Self {
let num_minus_signs = duration.matches('-').count();
if num_minus_signs > 1 {
panic!("a Duration string can only have a single minus sign")
}
if (num_minus_signs > 0) & !duration.starts_with('-') {
panic!("only a single minus sign is allowed, at the front of the string")
}
let mut nsecs = 0;
let mut weeks = 0;
let mut months = 0;
let mut iter = duration.char_indices();
let negative = duration.starts_with('-');
let mut start = 0;
if negative {
start += 1;
iter.next().unwrap();
}
let mut parsed_int = false;
let mut unit = String::with_capacity(2);
while let Some((i, mut ch)) = iter.next() {
if !ch.is_ascii_digit() {
let n = duration[start..i].parse::<i64>().unwrap();
loop {
if ch.is_ascii_alphabetic() {
unit.push(ch)
} else {
break;
}
match iter.next() {
Some((i, ch_)) => {
ch = ch_;
start = i
}
None => {
break;
}
}
}
if unit.is_empty() {
panic!("expected a unit in the duration string")
}
match &*unit {
"ns" => nsecs += n,
"us" => nsecs += n * NS_MICROSECOND,
"ms" => nsecs += n * NS_MILLISECOND,
"s" => nsecs += n * NS_SECOND,
"m" => nsecs += n * NS_MINUTE,
"h" => nsecs += n * NS_HOUR,
"d" => nsecs += n * NS_DAY,
"w" => weeks += n,
"mo" => months += n,
"y" => months += n * 12,
"i" => {
nsecs += n;
parsed_int = true;
}
unit => panic!("unit: '{unit}' not supported"),
}
unit.clear();
}
}
Duration {
nsecs: nsecs.abs(),
weeks: weeks.abs(),
months: months.abs(),
negative,
parsed_int,
}
}
fn to_positive(v: i64) -> (bool, i64) {
if v < 0 {
(true, -v)
} else {
(false, v)
}
}
#[allow(dead_code)]
pub(crate) fn normalize(&self, interval: &Duration) -> Self {
if self.months_only() && interval.months_only() {
let mut months = self.months() % interval.months();
match (self.negative, interval.negative) {
(true, true) | (true, false) => months = -months + interval.months(),
_ => {}
}
Duration::from_months(months)
} else if self.weeks_only() && interval.weeks_only() {
let mut weeks = self.weeks() % interval.weeks();
match (self.negative, interval.negative) {
(true, true) | (true, false) => weeks = -weeks + interval.weeks(),
_ => {}
}
Duration::from_weeks(weeks)
} else {
let mut offset = self.duration_ns();
if offset == 0 {
return *self;
}
let every = interval.duration_ns();
if offset < 0 {
offset += every * ((offset / -every) + 1)
} else {
offset -= every * (offset / every)
}
Duration::from_nsecs(offset)
}
}
pub(crate) fn from_nsecs(v: i64) -> Self {
let (negative, nsecs) = Self::to_positive(v);
Self {
months: 0,
weeks: 0,
nsecs,
negative,
parsed_int: false,
}
}
pub(crate) fn from_months(v: i64) -> Self {
let (negative, months) = Self::to_positive(v);
Self {
months,
weeks: 0,
nsecs: 0,
negative,
parsed_int: false,
}
}
pub(crate) fn from_weeks(v: i64) -> Self {
let (negative, weeks) = Self::to_positive(v);
Self {
months: 0,
weeks,
nsecs: 0,
negative,
parsed_int: false,
}
}
pub fn is_zero(&self) -> bool {
self.months == 0 && self.weeks == 0 && self.nsecs == 0
}
pub fn months_only(&self) -> bool {
self.months != 0 && self.weeks == 0 && self.nsecs == 0
}
pub fn months(&self) -> i64 {
self.months
}
pub fn weeks_only(&self) -> bool {
self.months == 0 && self.weeks != 0 && self.nsecs == 0
}
pub fn weeks(&self) -> i64 {
self.weeks
}
pub fn nanoseconds(&self) -> i64 {
self.nsecs
}
#[cfg(feature = "private")]
#[doc(hidden)]
pub const fn duration_ns(&self) -> i64 {
self.months * 28 * 24 * 3600 * NANOSECONDS + self.weeks * NS_WEEK + self.nsecs
}
#[cfg(feature = "private")]
#[doc(hidden)]
pub const fn duration_us(&self) -> i64 {
self.months * 28 * 24 * 3600 * MICROSECONDS + (self.weeks * NS_WEEK + self.nsecs) / 1000
}
#[cfg(feature = "private")]
#[doc(hidden)]
pub const fn duration_ms(&self) -> i64 {
self.months * 28 * 24 * 3600 * MILLISECONDS
+ (self.weeks * NS_WEEK + self.nsecs) / 1_000_000
}
#[inline]
pub fn truncate_impl<F, G, J>(
&self,
t: i64,
nsecs_to_unit: F,
timestamp_to_datetime: G,
datetime_to_timestamp: J,
) -> i64
where
F: Fn(i64) -> i64,
G: Fn(i64) -> NaiveDateTime,
J: Fn(NaiveDateTime) -> i64,
{
match (self.months, self.weeks, self.nsecs) {
(0, 0, 0) => panic!("duration may not be zero"),
(0, 0, _) => {
let duration = nsecs_to_unit(self.nsecs);
let mut remainder = t % duration;
if remainder < 0 {
remainder += duration
}
t - remainder
}
(0, _, 0) => {
let dt = timestamp_to_datetime(t).date();
let week_timestamp = dt.week(Weekday::Mon);
let first_day_of_week =
week_timestamp.first_day() - chrono::Duration::weeks(self.weeks - 1);
datetime_to_timestamp(first_day_of_week.and_time(NaiveTime::default()))
}
(_, 0, 0) => {
let ts = timestamp_to_datetime(t);
let (year, month) = (ts.year(), ts.month());
let mut total = (year * 12) + (month as i32 - 1);
let remainder = total % self.months as i32;
total -= remainder;
let (year, month) = ((total / 12), ((total % 12) + 1) as u32);
let dt = new_datetime(year, month, 1, 0, 0, 0, 0);
datetime_to_timestamp(dt)
}
_ => panic!("duration may not mix month, weeks and nanosecond units"),
}
}
#[inline]
pub fn truncate_ns(&self, t: i64) -> i64 {
self.truncate_impl(
t,
|nsecs| nsecs,
timestamp_ns_to_datetime,
datetime_to_timestamp_ns,
)
}
#[inline]
pub fn truncate_us(&self, t: i64) -> i64 {
self.truncate_impl(
t,
|nsecs| nsecs / 1000,
timestamp_us_to_datetime,
datetime_to_timestamp_us,
)
}
#[inline]
pub fn truncate_ms(&self, t: i64) -> i64 {
self.truncate_impl(
t,
|nsecs| nsecs / 1_000_000,
timestamp_ms_to_datetime,
datetime_to_timestamp_ms,
)
}
fn add_impl_month_or_week<F, G, J>(
&self,
t: i64,
nsecs_to_unit: F,
timestamp_to_datetime: G,
datetime_to_timestamp: J,
) -> i64
where
F: Fn(i64) -> i64,
G: Fn(i64) -> NaiveDateTime,
J: Fn(NaiveDateTime) -> i64,
{
let d = self;
let mut new_t = t;
if d.months > 0 {
let mut months = d.months;
if d.negative {
months = -months;
}
let ts = timestamp_to_datetime(t);
let mut year = ts.year();
let mut month = ts.month() as i32;
let mut day = ts.day();
year += (months / 12) as i32;
month += (months % 12) as i32;
if month > 12 {
year += 1;
month -= 12;
} else if month <= 0 {
year -= 1;
month += 12;
}
let mut last_day_of_month = last_day_of_month(month);
if month == (chrono::Month::February.number_from_month() as i32) && is_leap_year(year) {
last_day_of_month += 1;
}
if day > last_day_of_month {
day = last_day_of_month
}
let hour = ts.hour();
let minute = ts.minute();
let sec = ts.second();
let nsec = ts.nanosecond();
let dt = new_datetime(year, month as u32, day, hour, minute, sec, nsec);
new_t = datetime_to_timestamp(dt);
}
if d.weeks > 0 {
let t_weeks = nsecs_to_unit(self.weeks * NS_WEEK);
new_t += if d.negative { -t_weeks } else { t_weeks };
}
new_t
}
pub fn add_ns(&self, t: i64) -> i64 {
let d = self;
let new_t = self.add_impl_month_or_week(
t,
|nsecs| nsecs,
timestamp_ns_to_datetime,
datetime_to_timestamp_ns,
);
let nsecs = if d.negative { -d.nsecs } else { d.nsecs };
new_t + nsecs
}
pub fn add_us(&self, t: i64) -> i64 {
let d = self;
let new_t = self.add_impl_month_or_week(
t,
|nsecs| nsecs / 1000,
timestamp_us_to_datetime,
datetime_to_timestamp_us,
);
let nsecs = if d.negative { -d.nsecs } else { d.nsecs };
new_t + nsecs / 1_000
}
pub fn add_ms(&self, t: i64) -> i64 {
let d = self;
let new_t = self.add_impl_month_or_week(
t,
|nsecs| nsecs / 1_000_000,
timestamp_ms_to_datetime,
datetime_to_timestamp_ms,
);
let nsecs = if d.negative { -d.nsecs } else { d.nsecs };
new_t + nsecs / 1_000_000
}
}
impl Mul<i64> for Duration {
type Output = Self;
fn mul(mut self, mut rhs: i64) -> Self {
if rhs < 0 {
rhs = -rhs;
self.negative = !self.negative
}
self.months *= rhs;
self.weeks *= rhs;
self.nsecs *= rhs;
self
}
}
fn new_datetime(
year: i32,
month: u32,
days: u32,
hour: u32,
min: u32,
sec: u32,
nano: u32,
) -> NaiveDateTime {
let date = NaiveDate::from_ymd_opt(year, month, days).unwrap();
let time = NaiveTime::from_hms_nano_opt(hour, min, sec, nano).unwrap();
NaiveDateTime::new(date, time)
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_parse() {
let out = Duration::parse("1ns");
assert_eq!(out.nsecs, 1);
let out = Duration::parse("1ns1ms");
assert_eq!(out.nsecs, NS_MILLISECOND + 1);
let out = Duration::parse("123ns40ms");
assert_eq!(out.nsecs, 40 * NS_MILLISECOND + 123);
let out = Duration::parse("123ns40ms1w");
assert_eq!(out.nsecs, 40 * NS_MILLISECOND + 123);
assert_eq!(out.duration_ns(), 40 * NS_MILLISECOND + 123 + NS_WEEK);
let out = Duration::parse("-123ns40ms1w");
assert!(out.negative);
let out = Duration::parse("5w");
assert_eq!(out.weeks(), 5);
}
#[test]
fn test_add_ns() {
let t = 1;
let seven_days = Duration::parse("7d");
let one_week = Duration::parse("1w");
assert_eq!(seven_days.add_ns(t), one_week.add_ns(t));
let seven_days_negative = Duration::parse("-7d");
let one_week_negative = Duration::parse("-1w");
assert_eq!(seven_days_negative.add_ns(t), one_week_negative.add_ns(t));
}
}