Initial Commit

This commit is contained in:
Riley Schneider
2025-12-03 16:38:10 +01:00
parent c5e26bf594
commit b732d8d4b5
17680 changed files with 5977495 additions and 2 deletions

View File

@@ -0,0 +1,114 @@
package DateTime::TimeZone::OlsonDB::Change;
use strict;
use warnings;
use namespace::autoclean;
our $VERSION = '2.46';
sub new {
my $class = shift;
my %p = @_;
# These are almost always mutually exclusive, except when adding
# an observance change and the last rule has no offset, but the
# new observance has an anonymous rule. In that case, prefer the
# offset from std defined in the observance to that in the
# previous rule (what a mess!).
if ( $p{type} eq 'observance' ) {
$p{offset_from_std} = $p{rule}->offset_from_std if defined $p{rule};
$p{offset_from_std} = $p{observance}->offset_from_std
if $p{observance}->offset_from_std;
$p{offset_from_std} ||= 0;
}
else {
$p{offset_from_std} = $p{observance}->offset_from_std;
$p{offset_from_std} = $p{rule}->offset_from_std if defined $p{rule};
}
$p{offset_from_utc} = $p{observance}->offset_from_utc;
$p{is_dst} = 0;
$p{is_dst} = 1 if $p{rule} && $p{rule}->offset_from_std;
$p{is_dst} = 1 if $p{observance}->offset_from_std;
if ( $p{short_name} =~ m{([\-\+\w]+)/([\-\+\w]+)} ) {
$p{short_name} = $p{is_dst} ? $2 : $1;
}
return bless \%p, $class;
}
sub utc_start_datetime { $_[0]->{utc_start_datetime} }
sub local_start_datetime { $_[0]->{local_start_datetime} }
sub short_name { $_[0]->{short_name} }
sub is_dst { $_[0]->{is_dst} }
sub observance { $_[0]->{observance} }
sub rule { $_[0]->{rule} }
sub offset_from_utc { $_[0]->{offset_from_utc} }
sub offset_from_std { $_[0]->{offset_from_std} }
sub total_offset { $_[0]->offset_from_utc + $_[0]->offset_from_std }
sub two_changes_as_span {
my ( $c1, $c2 ) = @_;
my ( $utc_start, $local_start );
if ( defined $c1->utc_start_datetime ) {
$utc_start = $c1->utc_start_datetime->utc_rd_as_seconds;
$local_start = $c1->local_start_datetime->utc_rd_as_seconds;
}
else {
$utc_start = $local_start = '-inf';
}
my $utc_end = $c2->utc_start_datetime->utc_rd_as_seconds;
my $local_end = $utc_end + $c1->total_offset;
return {
utc_start => $utc_start,
utc_end => $utc_end,
local_start => $local_start,
local_end => $local_end,
short_name => $c1->short_name,
offset => $c1->total_offset,
is_dst => $c1->is_dst,
};
}
## no critic (Subroutines::ProhibitUnusedPrivateSubroutines, InputOutput::RequireCheckedSyscalls)
sub _debug_output {
my $self = shift;
my $obs = $self->observance;
if ( $self->utc_start_datetime ) {
print ' UTC: ', $self->utc_start_datetime->datetime, "\n";
print ' Local: ', $self->local_start_datetime->datetime, "\n";
}
else {
print " First change (starts at -inf)\n";
}
print ' Short name: ', $self->short_name, "\n";
print ' UTC offset: ', $obs->offset_from_utc, "\n";
if ( $obs->offset_from_std || $self->rule ) {
if ( $obs->offset_from_std ) {
print ' Std offset: ', $obs->offset_from_std, "\n";
}
if ( $self->rule ) {
print ' Std offset: ', $self->rule->offset_from_std, ' - ',
$self->rule->name, " rule\n";
}
}
else {
print " Std offset: 0 - no rule\n";
}
print "\n";
}
## use critic
1;

View File

@@ -0,0 +1,416 @@
package DateTime::TimeZone::OlsonDB::Observance;
use strict;
use warnings;
use namespace::autoclean;
our $VERSION = '2.46';
use DateTime::Duration;
use DateTime::TimeZone::OlsonDB;
use DateTime::TimeZone::OlsonDB::Change;
use List::Util 1.33 qw( any first );
sub new {
my $class = shift;
my %p = @_;
$p{until} ||= q{};
$p{$_} ||= 0
for qw( offset_from_std last_offset_from_std last_offset_from_utc );
my $offset_from_utc
= $p{gmtoff} =~ m/^[+-]?\d?\d$/ # only hours? need to handle specially
? 3600 * $p{gmtoff}
: DateTime::TimeZone::offset_as_seconds( $p{gmtoff} );
my $offset_from_std
= DateTime::TimeZone::offset_as_seconds( $p{offset_from_std} );
my $last_offset_from_utc = delete $p{last_offset_from_utc};
my $last_offset_from_std = delete $p{last_offset_from_std};
my $self = bless {
%p,
offset_from_utc => $offset_from_utc,
offset_from_std => $offset_from_std,
until => [ split /\s+/, $p{until} ],
}, $class;
$self->{first_rule}
= $self->_first_rule( $last_offset_from_utc, $last_offset_from_std );
if ( $p{utc_start_datetime} ) {
$offset_from_std += $self->{first_rule}->offset_from_std
if $self->{first_rule};
my $local_start_datetime = $p{utc_start_datetime}->clone;
$local_start_datetime += DateTime::Duration->new(
seconds => $offset_from_utc + $offset_from_std );
$self->{local_start_datetime} = $local_start_datetime;
}
return $self;
}
sub offset_from_utc { $_[0]->{offset_from_utc} || 0 }
sub offset_from_std { $_[0]->{offset_from_std} || 0 }
sub total_offset { $_[0]->offset_from_utc + $_[0]->offset_from_std }
sub rules { @{ $_[0]->{rules} } }
sub first_rule { $_[0]->{first_rule} }
## no critic (Subroutines::ProhibitBuiltinHomonyms)
sub format { $_[0]->{format} }
## use critic
sub utc_start_datetime { $_[0]->{utc_start_datetime} }
sub local_start_datetime { $_[0]->{local_start_datetime} }
sub formatted_short_name {
my $self = shift;
my $letter = shift;
my $format = $self->format;
return $format unless $format =~ /%/;
return sprintf( $format, $letter );
}
sub expand_from_rules {
my $self = shift;
my $zone = shift;
# real max is year + 1 so we include max year
my $max_year = (shift) + 1;
my $min_year;
if ( $self->utc_start_datetime ) {
$min_year = $self->utc_start_datetime->year;
}
else {
# There is at least one time zone that has an infinite
# observance, but that observance has rules that only start at
# a certain point - Pacific/Chatham
# In this case we just find the earliest rule and start there
$min_year
= ( sort { $a <=> $b } map { $_->min_year } $self->rules )[0];
}
my $until = $self->until( $zone->last_change->offset_from_std );
if ($until) {
$max_year = $until->year;
}
else {
# Some zones, like Asia/Tehran, have a predefined fixed set of
# rules that go well into the future (2037 for Asia/Tehran)
my $max_rule_year = 0;
foreach my $rule ( $self->rules ) {
$max_rule_year = $rule->max_year
if $rule->max_year && $rule->max_year > $max_rule_year;
}
$max_year = $max_rule_year if $max_rule_year > $max_year;
}
foreach my $year ( $min_year .. $max_year ) {
my @rules = $self->_sorted_rules_for_year($year);
for my $rule (@rules) {
my $dt = $rule->utc_start_datetime_for_year(
$year,
$self->offset_from_utc, $zone->last_change->offset_from_std
);
next
if $self->utc_start_datetime
&& $dt <= $self->utc_start_datetime;
## no critic (Variables::ProhibitReusedNames)
my $until = $self->until( $zone->last_change->offset_from_std );
next if $until && $dt >= $until;
my $change = DateTime::TimeZone::OlsonDB::Change->new(
type => 'rule',
utc_start_datetime => $dt,
local_start_datetime => $dt + DateTime::Duration->new(
seconds => $self->total_offset + $rule->offset_from_std
),
short_name => $self->formatted_short_name( $rule->letter ),
observance => $self,
rule => $rule,
);
if ($DateTime::TimeZone::OlsonDB::DEBUG) {
## no critic (InputOutput::RequireCheckedSyscalls)
print "Adding rule change ...\n";
$change->_debug_output;
}
$zone->add_change($change);
}
}
}
sub _sorted_rules_for_year {
my $self = shift;
my $year = shift;
## no critic (BuiltinFunctions::ProhibitComplexMappings)
my @rules = (
map { $_->[0] }
sort { $a->[1] <=> $b->[1] }
map {
my $dt = $_->utc_start_datetime_for_year(
$year,
$self->offset_from_utc, 0
);
[ $_, $dt ]
}
grep {
$_->min_year <= $year
&& ( ( !$_->max_year ) || $_->max_year >= $year )
} $self->rules
);
my %rules_by_month;
for my $rule (@rules) {
push @{ $rules_by_month{ $rule->month() } }, $rule;
}
# In some cases we have both a "max year" rule and a "this year" rule for
# a given month's change. In that case, we want to pick the more specific
# ("this year") rule, not apply both. This only matters for zones that
# have a winter transition that follows the Islamic calendar to deal with
# Ramadan. So far this has happened with Cairo, El_Aaiun, and other zones
# in northern Africa.
my @final_rules;
for my $month ( sort { $a <=> $b } keys %rules_by_month ) {
my @r = @{ $rules_by_month{$month} };
if ( @r == 2 ) {
my ($repeating) = grep { !defined $_->max_year() } @r;
my ($this_year)
= grep { $_->max_year() && $_->max_year() == $year } @r;
if ( $repeating && $this_year ) {
# We used to pick the repeating rule for year 2037 only
# because it seemed like that's what zic did in the past. Now
# it seems to pick the "this year" rule instead.
if ($DateTime::TimeZone::OlsonDB::DEBUG) {
## no critic (InputOutput::RequireCheckedSyscalls)
print
"Found two rules for the same month, picking the one for this year\n";
}
push @final_rules, $this_year;
next;
}
push @final_rules, @r;
}
else {
push @final_rules, @r;
}
}
return @final_rules;
}
## no critic (Subroutines::ProhibitBuiltinHomonyms)
sub until {
my $self = shift;
my $offset_from_std = shift || $self->offset_from_std;
return unless defined $self->until_year;
my $utc = DateTime::TimeZone::OlsonDB::utc_datetime_for_time_spec(
spec => $self->until_time_spec,
year => $self->until_year,
month => $self->until_month,
day => $self->until_day,
offset_from_utc => $self->offset_from_utc,
offset_from_std => $offset_from_std,
);
return $utc;
}
## use critic
sub until_year { $_[0]->{until}[0] }
sub until_month {
return 1 unless defined $_[0]->{until}[1];
return $DateTime::TimeZone::OlsonDB::MONTHS{ $_[0]->{until}[1] };
}
sub until_day {
return 1 unless defined $_[0]->{until}[2];
my ( undef, $day ) = DateTime::TimeZone::OlsonDB::parse_day_spec(
$_[0]->{until}[2],
$_[0]->until_month,
$_[0]->until_year,
);
return $day;
}
sub until_time_spec {
defined $_[0]->{until}[3] ? $_[0]->{until}[3] : '00:00:00';
}
## no critic (Subroutines::ProhibitExcessComplexity)
sub _first_rule {
my $self = shift;
my $last_offset_from_utc = shift;
my $last_offset_from_std = shift;
return unless $self->rules;
my $date = $self->utc_start_datetime
or return $self->_first_no_dst_rule;
my @rules = $self->rules;
my %possible_rules;
my $year = $date->year;
foreach my $rule (@rules) {
# We need to look at what the year _would_ be if we added the
# rule's offset to the UTC date. Otherwise we can end up with
# a UTC date in year X, and a rule that starts in _local_ year
# X + 1, where that rule really does apply to that UTC date.
my $temp_year
= $date->clone->add(
seconds => $self->offset_from_utc + $rule->offset_from_std )
->year;
# Save the highest value
$year = $temp_year if $temp_year > $year;
next if $rule->min_year > $temp_year;
$possible_rules{$rule} = $rule;
}
my $earliest_year = $year - 1;
foreach my $rule (@rules) {
$earliest_year = $rule->min_year
if $rule->min_year < $earliest_year;
}
# figure out what date each rule would start on _if_ that rule
# were applied to this current observance. this could be a rule
# that started much earlier, but is only now active because of an
# observance switch. An obnoxious example of this is
# America/Phoenix in 1944, which applies the US rule in April,
# thus (re-)instating the "war time" rule from 1942. Can you say
# ridiculous crack-smoking stupidity?
my @rule_dates;
foreach my $y ( $earliest_year .. $year ) {
RULE:
foreach my $rule ( values %possible_rules ) {
# skip rules that can't have applied the year before the
# observance started.
if ( $rule->min_year > $y ) {
## no critic (InputOutput::RequireCheckedSyscalls)
print 'Skipping rule beginning in ', $rule->min_year,
". Year is $y.\n"
if $DateTime::TimeZone::OlsonDB::DEBUG;
next RULE;
}
if ( $rule->max_year && $rule->max_year < $y ) {
## no critic (InputOutput::RequireCheckedSyscalls)
print 'Skipping rule ending in ', $rule->max_year,
". Year is $y.\n"
if $DateTime::TimeZone::OlsonDB::DEBUG;
next RULE;
}
my $rule_start = $rule->utc_start_datetime_for_year(
$y,
$last_offset_from_utc, $last_offset_from_std
);
push @rule_dates, [ $rule_start, $rule ];
}
}
@rule_dates = sort { $a->[0] <=> $b->[0] } @rule_dates;
## no critic (InputOutput::RequireCheckedSyscalls)
print "Looking for first rule ...\n"
if $DateTime::TimeZone::OlsonDB::DEBUG;
print ' Observance starts: ', $date->datetime, "\n\n"
if $DateTime::TimeZone::OlsonDB::DEBUG;
## use critic
# ... look through the rules to see if any are still in
# effect at the beginning of the observance
## no critic (ControlStructures::ProhibitCStyleForLoops)
for ( my $x = 0; $x < @rule_dates; $x++ ) {
my ( $dt, $rule ) = @{ $rule_dates[$x] };
my ( $next_dt, $next_rule )
= $x < @rule_dates - 1 ? @{ $rule_dates[ $x + 1 ] } : undef;
next if $next_dt && $next_dt < $date;
## no critic (InputOutput::RequireCheckedSyscalls)
print ' This rule starts: ', $dt->datetime, "\n"
if $DateTime::TimeZone::OlsonDB::DEBUG;
print ' Next rule starts: ', $next_dt->datetime, "\n"
if $next_dt && $DateTime::TimeZone::OlsonDB::DEBUG;
print ' No next rule\n\n'
if !$next_dt && $DateTime::TimeZone::OlsonDB::DEBUG;
## use critic
if ( $dt <= $date ) {
if ($next_dt) {
return $rule if $date < $next_dt;
return $next_rule if $date == $next_dt;
}
else {
return $rule;
}
}
}
# If this observance has rules, but the rules don't have any
# defined changes until after the observance starts, we get the
# earliest standard time rule and use it. If there is none, shit
# blows up (but this is not the case for any time zones as of
# 2009a). I really, really hate the Olson database a lot of the
# time! Could this be more arbitrary?
my $std_time_rule = $self->_first_no_dst_rule;
die
q{Cannot find a rule that applies to the observance's date range and cannot find a rule without DST to apply}
unless $std_time_rule;
return $std_time_rule;
}
## use critic
sub _first_no_dst_rule {
my $self = shift;
return first { !$_->offset_from_std }
sort { $a->min_year <=> $b->min_year } $self->rules;
}
1;

View File

@@ -0,0 +1,80 @@
package DateTime::TimeZone::OlsonDB::Rule;
use strict;
use warnings;
use namespace::autoclean;
our $VERSION = '2.46';
use DateTime::TimeZone::OlsonDB;
sub new {
my $class = shift;
my %p = @_;
$p{letter} ||= q{};
my $save = $p{save};
# The handling of q{-} and q{1} are to account for new syntax introduced
# in 2009u (and hopefully gone in future versions).
if ( $save && $save ne q{-} ) {
if ( $save =~ /^\d+$/ ) {
$p{offset_from_std} = 3600 * $save;
}
else {
$p{offset_from_std}
= DateTime::TimeZone::offset_as_seconds($save);
}
}
else {
$p{offset_from_std} = 0;
}
return bless \%p, $class;
}
sub name { $_[0]->{name} }
sub offset_from_std { $_[0]->{offset_from_std} }
sub letter { $_[0]->{letter} }
sub min_year { $_[0]->{from} }
sub max_year {
$_[0]->{to} eq 'only' ? $_[0]->min_year
: $_[0]->{to} eq 'max' ? undef
: $_[0]->{to};
}
sub is_infinite { $_[0]->{to} eq 'max' ? 1 : 0 }
sub month { $DateTime::TimeZone::OlsonDB::MONTHS{ $_[0]->{in} } }
sub on { $_[0]->{on} }
sub at { $_[0]->{at} }
sub utc_start_datetime_for_year {
my $self = shift;
my $year = shift;
my $offset_from_utc = shift;
# should be the offset of the _previous_ rule
my $offset_from_std = shift;
my ( $month, $day ) = DateTime::TimeZone::OlsonDB::parse_day_spec(
$self->on,
$self->month,
$year,
);
my $utc = DateTime::TimeZone::OlsonDB::utc_datetime_for_time_spec(
spec => $self->at,
year => $year,
month => $month,
day => $day,
offset_from_utc => $offset_from_utc,
offset_from_std => $offset_from_std,
);
return $utc;
}
1;

View File

@@ -0,0 +1,185 @@
package DateTime::TimeZone::OlsonDB::Zone;
use strict;
use warnings;
use namespace::autoclean;
our $VERSION = '2.46';
use DateTime::TimeZone;
use DateTime::TimeZone::OlsonDB;
use DateTime::TimeZone::OlsonDB::Change;
use DateTime::TimeZone::OlsonDB::Observance;
use List::Util qw( first max );
sub new {
my $class = shift;
my %p = @_;
my $self = {
name => $p{name},
observances => $p{observances},
changes => [],
infinite_rules => {},
};
return bless $self, $class;
}
sub name { $_[0]->{name} }
sub last_rules_year {
my $self = shift;
my $odb = shift;
my $last_rule = $self->{observances}[-1]{rules};
return unless $last_rule;
my @rules = $odb->rules_by_name($last_rule);
return $rules[-1]->min_year();
}
sub expand_observances {
my $self = shift;
my $odb = shift;
my $max_year = shift;
my $prev_until;
## no critic (ControlStructures::ProhibitCStyleForLoops)
for ( my $x = 0; $x < @{ $self->{observances} }; $x++ ) {
my %p = %{ $self->{observances}[$x] };
my $rules_name = delete $p{rules};
my $last_offset_from_std
= $self->last_change ? $self->last_change->offset_from_std : 0;
my $last_offset_from_utc
= $self->last_change ? $self->last_change->offset_from_utc : 0;
my $obs = DateTime::TimeZone::OlsonDB::Observance->new(
%p,
utc_start_datetime => $prev_until,
rules => [ $odb->rules_by_name($rules_name) ],
last_offset_from_utc => $last_offset_from_utc,
last_offset_from_std => $last_offset_from_std,
);
my $rule = $obs->first_rule;
my $letter = $rule ? $rule->letter : q{};
my $change = DateTime::TimeZone::OlsonDB::Change->new(
type => 'observance',
utc_start_datetime => $obs->utc_start_datetime,
local_start_datetime => $obs->local_start_datetime,
short_name => $obs->formatted_short_name($letter),
observance => $obs,
$rule ? ( rule => $rule ) : (),
);
if ($DateTime::TimeZone::OlsonDB::DEBUG) {
## no critic (InputOutput::RequireCheckedSyscalls)
print "Adding observance change ...\n";
$change->_debug_output;
}
$self->add_change($change);
if ( $obs->rules ) {
$obs->expand_from_rules( $self, $max_year );
}
$prev_until = $obs->until(
$self->last_change ? $self->last_change->offset_from_std : 0 );
# last observance
if ( $x == $#{ $self->{observances} } ) {
foreach my $rule ( $obs->rules ) {
if ( $rule->is_infinite ) {
$self->add_infinite_rule($rule);
}
}
}
}
}
sub add_change {
my $self = shift;
my $change = shift;
if ( defined $change->utc_start_datetime ) {
if ( @{ $self->{changes} }
&& $self->{changes}[-1]->utc_start_datetime
&& $self->{changes}[-1]->utc_start_datetime
== $change->utc_start_datetime ) {
if ( $self->{changes}[-1]->rule && $change->observance ) {
## no critic (InputOutput::RequireCheckedSyscalls)
print
" Ignoring previous rule change, that starts the same time as current observance change\n\n"
if $DateTime::TimeZone::OlsonDB::DEBUG;
$self->{changes}[-1] = $change;
return;
}
die
"Cannot add two different changes that have the same UTC start datetime!\n";
}
my $last_change = $self->last_change;
if ( $last_change->short_name eq $change->short_name
&& $last_change->total_offset == $change->total_offset
&& $last_change->is_dst == $change->is_dst
&& $last_change->observance eq $change->observance ) {
my $last_rule = $last_change->rule || q{};
my $new_rule = $change->rule || q{};
if ( $last_rule eq $new_rule ) {
## no critic (InputOutput::RequireCheckedSyscalls)
print "Skipping identical change\n"
if $DateTime::TimeZone::OlsonDB::DEBUG;
return;
}
}
push @{ $self->{changes} }, $change;
}
else {
if ( $self->{earliest} ) {
die 'There can only be one earliest time zone change!';
}
else {
$self->{earliest} = $change;
}
}
}
sub add_infinite_rule {
$_[0]->{infinite_rules}{ $_[1] } = $_[1];
}
sub last_change {
return unless @{ $_[0]->{changes} } || $_[0]->{earliest};
return (
@{ $_[0]->{changes} }
? $_[0]->{changes}[-1]
: $_[0]->{earliest}
);
}
sub sorted_changes {
(
( defined $_[0]->{earliest} ? $_[0]->{earliest} : () ),
sort { $a->utc_start_datetime <=> $b->utc_start_datetime }
@{ $_[0]->{changes} }
);
}
sub infinite_rules { values %{ $_[0]->{infinite_rules} } }
1;