-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathrule.rs
More file actions
424 lines (387 loc) · 14.4 KB
/
rule.rs
File metadata and controls
424 lines (387 loc) · 14.4 KB
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
//! Zone info Rule functionality
//!
//! This module implements the core zoneinfo [`Rule`].
use core::ops::RangeInclusive;
use alloc::{borrow::ToOwned, string::String, vec, vec::Vec};
use crate::{
parser::{next_split, ContextParse, LineParseContext, ZoneInfoParseError},
types::{
rule::{DayOfMonth, ToYear},
Month, QualifiedTime, Time,
},
utils::{self, epoch_seconds_for_epoch_days},
};
#[derive(Debug)]
pub struct LastRules {
pub standard: Rule,
pub saving: Option<Rule>,
}
impl LastRules {
/// Determines the final year from the rules in `LastRules`, returning `None` if
/// the year is MAX (a.k.a., undefined).
pub(crate) fn final_year(&self) -> i32 {
let std_final_year = self.standard.to_year_to_u16().map(i32::from);
let dst_final_year = self
.saving
.as_ref()
.map(|r| r.to_year_to_u16().map(i32::from));
let to_year_final = if let Some(dst_year) = dst_final_year {
std_final_year.max(dst_year)
} else {
std_final_year
};
// If we have a MAX result, then we need to use the from year as final year.
to_year_final.unwrap_or(self.final_from_year())
}
fn final_from_year(&self) -> i32 {
if let Some(dst) = self.saving.as_ref() {
dst.from.max(self.standard.from) as i32
} else {
self.standard.from as i32
}
}
}
/// The `Rule` is a collection of zone info rules under the same
/// rule name.
///
/// These rule collections can be seen throughout zoneinfo files.
///
/// # Example
///
/// The `Chicago` rules can be seen below.
///
/// ```txt
/// # Rule NAME FROM TO - IN ON AT SAVE LETTER
/// Rule Chicago 1920 only - Jun 13 2:00 1:00 D
/// Rule Chicago 1920 1921 - Oct lastSun 2:00 0 S
/// Rule Chicago 1921 only - Mar lastSun 2:00 1:00 D
/// Rule Chicago 1922 1966 - Apr lastSun 2:00 1:00 D
/// Rule Chicago 1922 1954 - Sep lastSun 2:00 0 S
/// Rule Chicago 1955 1966 - Oct lastSun 2:00 0 S
/// ```
///
/// Interestingly, Rules appear to be sorted in chronological
/// order from their start date (FROM). However, their end dates may differ
/// meaning at any one time there can be rule pairs of: [std, dst],
/// [dst, std], [std, empty], or [dst, empty]
///
#[derive(Debug, Clone)]
pub struct Rules {
rules: Vec<Rule>,
}
impl Rules {
pub fn initialize(rule: Rule) -> Self {
Self { rules: vec![rule] }
}
pub fn extend(&mut self, rule: Rule) {
self.rules.push(rule);
}
pub(crate) fn rules_for_year(&self, year: i32) -> Vec<Rule> {
self.rules
.iter()
.filter(|rule| rule.range().contains(&year))
.cloned()
.collect()
}
pub(crate) fn find_initial_transition_letter(&self) -> Option<String> {
let first_rule = self
.rules
.iter()
.find(|rule| rule.save == Time::default())
.expect("A rule must exist with a SAVE = 0");
first_rule.letter.clone()
}
pub(crate) fn search_last_active_rule(&self, transition_point: i64) -> Option<&Rule> {
// Reasonable assumption: when searching for a last Rule,
// we are dealing with an orphan. This means we do not need to check years
// with an upper bound or inside them
let mut rule_savings = (i64::MIN, None);
for rule in &self.rules {
let year = rule.to.map(ToYear::to_i32).unwrap_or(i32::from(rule.from));
let epoch_days = epoch_days_for_rule_date(year, rule.in_month, rule.on_date);
let rule_date_in_seconds = epoch_seconds_for_epoch_days(epoch_days);
// But we do want to keep track of the savings.
if rule_date_in_seconds < transition_point && rule_savings.0 < rule_date_in_seconds {
rule_savings = (rule_date_in_seconds, Some(rule))
} else if transition_point < rule_date_in_seconds {
break;
}
}
rule_savings.1
}
pub(crate) fn get_last_rules(&self) -> LastRules {
let mut final_epoch_days = i32::MIN;
let mut final_rule = None;
let mut std_max = None;
let mut savings_max = None;
for rule in &self.rules {
let calc_to_year = rule.to_year_to_u16();
if let Some(year) = calc_to_year {
let epoch_days = epoch_days_for_rule_date(year as i32, rule.in_month, rule.on_date);
if final_epoch_days < epoch_days {
final_epoch_days = epoch_days;
final_rule = Some(rule.clone());
}
}
if rule.to == Some(ToYear::Max) {
if rule.is_dst() {
savings_max = Some(rule.clone())
} else {
std_max = Some(rule.clone())
}
}
}
let standard = if let Some(max_rule) = std_max {
max_rule
} else {
final_rule.expect("must be set")
};
LastRules {
standard,
saving: savings_max,
}
}
}
/// A zone info rule.
#[derive(Debug, Clone, PartialEq)]
pub struct Rule {
pub from: u16,
pub to: Option<ToYear>,
pub in_month: Month,
pub on_date: DayOfMonth,
pub at: QualifiedTime,
pub save: Time,
pub letter: Option<String>,
}
impl Rule {
fn range(&self) -> RangeInclusive<i32> {
i32::from(self.from)..=self.to.map(ToYear::to_i32).unwrap_or(self.from as i32)
}
pub(crate) fn is_dst(&self) -> bool {
self.save != Time::default()
}
/// Returns the transition time for that year
pub(crate) fn transition_time_for_year(
&self,
year: i32,
std_offset: &Time,
saving: &Time,
) -> i64 {
let epoch_days = epoch_days_for_rule_date(year, self.in_month, self.on_date);
let epoch_seconds = epoch_seconds_for_epoch_days(epoch_days);
epoch_seconds
+ self
.at
.to_universal_seconds(std_offset.as_secs(), saving.as_secs())
}
/// Converts this Rule's `To` value into an integer.
pub(crate) fn to_year_to_u16(&self) -> Option<u16> {
self.to
.map(ToYear::to_optional_u16)
.unwrap_or(Some(self.from))
}
}
/// epoch_days_for_rule_date calculates the epoch days given values provided for a specific `Rule`
pub(crate) fn epoch_days_for_rule_date(year: i32, month: Month, day_of_month: DayOfMonth) -> i32 {
let day_of_year_for_month = month.month_start_to_day_of_year(year);
let epoch_days_for_year = utils::epoch_days_for_year(year);
let epoch_days = epoch_days_for_year + day_of_year_for_month;
let day_of_month = match day_of_month {
DayOfMonth::Last(weekday) => {
let mut day_of_month = month.month_end_to_day_of_year(year) - day_of_year_for_month;
loop {
let target_days = epoch_days + day_of_month;
let target_week_day = utils::epoch_days_to_week_day(target_days);
if target_week_day == weekday as u8 {
break;
}
day_of_month -= 1;
}
day_of_month
}
DayOfMonth::WeekDayGEThanMonthDay(week_day, d) => {
let mut day_of_month = d as i32 - 1;
loop {
let target_days = epoch_days + day_of_month;
let target_week_day = utils::epoch_days_to_week_day(target_days);
if week_day as u8 == target_week_day {
break day_of_month;
}
day_of_month += 1;
}
}
DayOfMonth::WeekDayLEThanMonthDay(week_day, d) => {
let mut day_of_month = d as i32 - 1;
loop {
let target_days = epoch_days + day_of_month;
let target_week_day = utils::epoch_days_to_week_day(target_days);
if week_day as u8 == target_week_day {
break day_of_month;
}
day_of_month -= 1;
}
}
DayOfMonth::Day(day) => day as i32 - 1,
};
epoch_days + day_of_month
}
impl Rule {
/// Parse a `Rule` from a line
///
/// A rule line is made up of the following columns:
///
/// # Rule NAME FROM TO - IN ON AT SAVE LETTER
///
/// The "-" is a reserved field that represents the deprecated TYPE
/// field. It is preserved for backward compatibility reasons.
pub fn parse_from_line(
line: &str,
context: &mut LineParseContext,
) -> Result<(String, Self), ZoneInfoParseError> {
context.enter("Rule");
let mut splits = line.split_whitespace();
let first = splits.next(); // Consume "Rule"
debug_assert!(first == Some("Rule"));
// AKA the NAME field
let identifier = next_split(&mut splits, context)?.to_owned();
let from = next_split(&mut splits, context)?.context_parse::<u16>(context)?;
let to = ToYear::parse_optional_to_year(next_split(&mut splits, context)?, context)?;
next_split(&mut splits, context)?; // Skip the deprecated TYPE field
let in_month = next_split(&mut splits, context)?.context_parse::<Month>(context)?;
let on_date = next_split(&mut splits, context)?.context_parse::<DayOfMonth>(context)?;
let at = next_split(&mut splits, context)?.context_parse::<QualifiedTime>(context)?;
let save = next_split(&mut splits, context)?.context_parse::<Time>(context)?;
let potential_letter = next_split(&mut splits, context)?;
let letter = if potential_letter == "-" {
None
} else {
Some(potential_letter.to_owned())
};
context.exit();
let data = Rule {
from,
to,
in_month,
on_date,
at,
save,
letter,
};
Ok((identifier, data))
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::types::{rule::WeekDay, Sign};
const TEST_DATA: [&str; 22] = [
"Rule Algeria 1916 only - Jun 14 23:00s 1:00 S",
"Rule Algeria 1916 1919 - Oct Sun>=1 23:00s 0 -",
"Rule Algeria 1917 only - Mar 24 23:00s 1:00 S",
"Rule Algeria 1918 only - Mar 9 23:00s 1:00 S",
"Rule Algeria 1919 only - Mar 1 23:00s 1:00 S",
"Rule Algeria 1920 only - Feb 14 23:00s 1:00 S",
"Rule Algeria 1920 only - Oct 23 23:00s 0 -",
"Rule Algeria 1921 only - Mar 14 23:00s 1:00 S",
"Rule Algeria 1921 only - Jun 21 23:00s 0 -",
"Rule Algeria 1939 only - Sep 11 23:00s 1:00 S",
"Rule Algeria 1939 only - Nov 19 1:00 0 -",
"Rule Algeria 1944 1945 - Apr Mon>=1 2:00 1:00 S",
"Rule Algeria 1944 only - Oct 8 2:00 0 -",
"Rule Algeria 1945 only - Sep 16 1:00 0 -",
"Rule Algeria 1971 only - Apr 25 23:00s 1:00 S",
"Rule Algeria 1971 only - Sep 26 23:00s 0 -",
"Rule Algeria 1977 only - May 6 0:00 1:00 S",
"Rule Algeria 1977 only - Oct 21 0:00 0 -",
"Rule Algeria 1978 only - Mar 24 1:00 1:00 S",
"Rule Algeria 1978 only - Sep 22 3:00 0 -",
"Rule Algeria 1980 only - Apr 25 0:00 1:00 S",
"Rule Algeria 1980 only - Oct 31 2:00 0 -",
];
#[test]
fn rule_test() {
let (identifier, data) =
Rule::parse_from_line(TEST_DATA[0], &mut LineParseContext::default()).unwrap();
assert_eq!(identifier, "Algeria");
assert_eq!(
data,
Rule {
from: 1916,
to: None,
in_month: Month::Jun,
on_date: DayOfMonth::Day(14),
at: QualifiedTime::Standard(Time {
sign: Sign::Positive,
hour: 23,
minute: 0,
second: 0
}),
save: Time {
sign: Sign::Positive,
hour: 1,
minute: 0,
second: 0
},
letter: Some("S".to_owned()),
}
);
}
#[test]
fn cycle_test() {
for line in TEST_DATA {
let _success = Rule::parse_from_line(line, &mut LineParseContext::default()).unwrap();
}
}
#[test]
fn date_calcs() {
// Test epoch
let epoch_days = epoch_days_for_rule_date(1970, Month::Jan, DayOfMonth::Day(1));
assert_eq!(epoch_days, 0);
// Test modern day
let epoch_days = epoch_days_for_rule_date(2025, Month::Mar, DayOfMonth::Day(29));
assert_eq!(epoch_days, 20176);
let epoch_days = epoch_days_for_rule_date(
2025,
Month::Mar,
DayOfMonth::WeekDayGEThanMonthDay(WeekDay::Sat, 29),
);
assert_eq!(epoch_days, 20176);
let epoch_days = epoch_days_for_rule_date(
2025,
Month::Mar,
DayOfMonth::WeekDayGEThanMonthDay(WeekDay::Sat, 25),
);
assert_eq!(epoch_days, 20176);
let epoch_days = epoch_days_for_rule_date(
2025,
Month::Mar,
DayOfMonth::WeekDayLEThanMonthDay(WeekDay::Sat, 29),
);
assert_eq!(epoch_days, 20176);
let epoch_days = epoch_days_for_rule_date(
2025,
Month::Mar,
DayOfMonth::WeekDayLEThanMonthDay(WeekDay::Sat, 30),
);
assert_eq!(epoch_days, 20176);
let epoch_days = epoch_days_for_rule_date(2025, Month::Mar, DayOfMonth::Last(WeekDay::Sun));
assert_eq!(epoch_days, 20177);
// Test pre epoch
let epoch_days = epoch_days_for_rule_date(1969, Month::Dec, DayOfMonth::Day(31));
assert_eq!(epoch_days, -1);
let epoch_days = epoch_days_for_rule_date(1969, Month::Dec, DayOfMonth::Last(WeekDay::Sun));
assert_eq!(epoch_days, -4);
let epoch_days = epoch_days_for_rule_date(
1969,
Month::Dec,
DayOfMonth::WeekDayGEThanMonthDay(WeekDay::Sun, 25),
);
assert_eq!(epoch_days, -4);
let epoch_days = epoch_days_for_rule_date(
1969,
Month::Dec,
DayOfMonth::WeekDayLEThanMonthDay(WeekDay::Sun, 30),
);
assert_eq!(epoch_days, -4);
}
}