/usr/share/perl5/XMLTV/TZ.pm is in libxmltv-perl 0.5.63-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # Miscellaneous timezone routines. The code in DST.pm builds on
# these for handling summer time conventions. This should
# probably be moved into Date::Manip somehow.
#
# $Id: TZ.pm,v 1.17 2010/03/28 04:04:36 crispygoth Exp $
#
package XMLTV::TZ;
use Carp;
use Date::Manip; # no Date_Init(), that can be done by the app
use XMLTV::Date;
# Won't Memoize, you can do that yourself.
use base 'Exporter'; our @EXPORT_OK;
@EXPORT_OK = qw(gettz ParseDate_PreservingTZ tz_to_num parse_local_date offset_to_gmt);
# Use Log::TraceMessages if installed.
BEGIN {
eval { require Log::TraceMessages };
if ($@) {
*t = sub {};
*d = sub { '' };
}
else {
*t = \&Log::TraceMessages::t;
*d = \&Log::TraceMessages::d;
}
}
# gettz()
#
# Parameters: unparsed date string
# Returns: timezone (a substring), or undef
#
# We just pick up anything that looks like a timezone.
#
sub gettz($) {
croak 'usage: gettz(unparsed date string)' if @_ != 1;
local $_ = shift;
croak 'undef argument to gettz()' if not defined;
/\s([A-Z]{1,4})$/ && return $1;
/\s([+-]\d\d:?(\d\d)?)$/ && return $1;
return undef;
}
# ParseDate_PreservingTZ()
#
# A wrapper for Date::Manip's ParseDate() that makes sure the date is
# stored in the timezone it was given in. That's helpful when you
# want to produce human-readable output and the user expects to see
# the same timezone going out as went in.
#
sub ParseDate_PreservingTZ($) {
croak 'usage: ParseDate_PreservingTZ(unparsed date string)'
if @_ != 1;
my $u = shift;
my $p = ParseDate($u);
die "cannot parse $u" if not $p;
my $tz = gettz($u) || 'UTC';
my $ltz=Date_TimeZone(); # avoid bug in Date::Manip 6.05
$ltz=$tz if $ltz eq "1"; # if Date_TimeZone returns a bad value, use something ok
# print STDERR "date $u parsed to $p (timezone read as $tz)\n";
$p = Date_ConvTZ($p, offset_to_gmt($ltz), offset_to_gmt($tz));
# print STDERR "...converted to $p\n";
return $p;
}
# Date::Manip version 6 has problems with +nnnn offsets
# It seems to treat +0000 as equivalent to "Europe/London", meaning that during DST +0000 actually refers to GMT + 1 hour.
# However, a timezone of etc/gmt+1 will always work.
# Using this function on arguments to Date_ConvTZ should work around this bug.
sub offset_to_gmt($) {
my $tz = shift;
return $tz unless $tz =~ /^([+-])0(\d)00/;
if ($Date::Manip::VERSION >= 6) {
if ($2 == 0) {
$tz = "etc/gmt";
} else {
$tz = "etc/gmt$1$2";
}
}
return $tz;
}
# tz_to_num()
#
# Turn a timezone string into a numeric form. For example turns 'CET'
# into '+0100'. If the timezone is already numeric it's unchanged.
#
# Throws an exception if the timezone is not recognized.
#
sub tz_to_num( $ ) {
my $tz = shift;
# It should be possible to use numeric timezones and have them
# come out unchanged. But due to a bug in Date::Manip, '+0100' is
# treated as equivalent to 'UTC' by (WTF?) and we have to
# special-case numeric timezones.
#
return $tz if $tz =~ /^[+-]?\d\d:?(?:\d\d)?$/;
# To convert to a number we parse a date with this timezone and
# then compare against the same date with UTC.
#
my $date_str = '2000-08-01 00:00:00'; # arbitrary
my $base = parse_date("$date_str UTC");
t "parsed '$date_str UTC' as $base";
my $d = parse_date("$date_str $tz");
t "parsed '$date_str $tz' as $base";
my $err;
my $delta = DateCalc($d, $base, \$err);
die "error code from DateCalc: $err" if defined $err;
# A timezone difference must be less than one day, and must be a
# whole number of minutes.
#
my @df = Delta_Format($delta, 0, "%hv", "%Mv");
return sprintf('%s%02d%02d', ($df[0] < 0) ? '-' : '+', abs($df[0]), $df[1]);
}
# Date::Manip seems to have difficulty with changes of timezone: if
# you parse some dates in a local timezone then do
# Date_Init('TZ=UTC'), the existing dates are not changed, so
# comparisons with later parsed dates (in UTC) will be wrong. Script
# to reproduce the bug:
#
# #!/usr/bin/perl -w
# use Date::Manip;
# # First parse a date in the timezone +0100.
# Date_Init('TZ=+0100');
# my $a = ParseDate('2000-01-01 00:00:00');
# # Now parse another one, in timezone +0000.
# Date_Init('TZ=+0000');
# my $b = ParseDate('2000-01-01 00:00:00');
# # The two dates should differ by one hour.
# print Date_Cmp($a, $b), "\n";
#
# The script should print -1 but it prints 0.
#
# NB, use this function _before_ changing the default timezone to UTC,
# if you want to parse some dates in the user's local timezone!
#
# Throws an exception on error.
#
sub parse_local_date( $ ) {
my $d = shift;
# local $Log::TraceMessages::On = 1;
t 'parse_local_date() parsing: ' . d $d;
my $pd = ParseDate($d);
t 'ParseDate() returned: ' . d $pd;
die "cannot parse date $d" if not $pd;
my $r = Date_ConvTZ($pd, offset_to_gmt(Date_TimeZone()), 'UTC');
t 'converted into UTC: ' . d $r;
return $r;
}
1;
|