/usr/share/pyshared/freevo/tv/strptime.py is in python-freevo 1.9.2b2-4.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 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 | # -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# strptime.py - This is the Freevo module
# -----------------------------------------------------------------------
# $Id: strptime.py 10716 2008-05-11 10:50:48Z duncan $
#
# Notes:
# Todo:
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
# Copyright (C) 2002 Krister Lagerstrom, et al.
# Please see the file freevo/Docs/CREDITS for a complete list of authors.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MER-
# CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# -----------------------------------------------------------------------
"""
Strptime-related classes and functions.
"""
import time
import locale
import calendar
from re import compile as re_compile
from re import IGNORECASE
from string import whitespace as whitespace_string
__version__ = (2,1,6)
__author__ = "Brett Cannon"
__email__ = "drifty@bigfoot.com"
__all__ = ['strptime']
class LocaleTime(object):
"""
Stores and handles locale-specific information related to time.
"""
def __init__(self, f_weekday=None, a_weekday=None, f_month=None,
a_month=None, am_pm=None, LC_date_time=None, LC_time=None, LC_date=None,
timezone=None, lang=None):
"""Optionally set attributes with passed-in values.
Only check for passed-in values is that length of sequence is correct.
(all read-only after instance creation! Instance variables that
store the values have mangled names):
@ivar f_weekday: full weekday names; %A (7-item list)
@ivar a_weekday: abbreviated weekday names; %a (7-item list)
@ivar f_month: full weekday names; %B (14-item list; dummy value in
[0], which is added by code)
@ivar a_month: abbreviated weekday names; %b (13-item list, dummy value
in [0], which is added by code)
@ivar am_pm: AM/PM representation; %p (2-item list)
@ivar LC_date_time: format string for date/time representation; %c (string)
@ivar LC_date: format string for date representation; %x (string)
@ivar LC_time: format string for time representation; %X (string)
@ivar timezone: daylight- and non-daylight-savings timezone
representation; %Z (3-item list; code tacks on blank item at end for
possible lack of %timezone such as UTC)
@ivar lang: Language used by instance (string)
"""
if f_weekday is None:
self.__f_weekday = None
elif len(f_weekday) == 7:
self.__f_weekday = list(f_weekday)
else:
raise TypeError("full weekday names must be a 7-item sequence")
if a_weekday is None:
self.__a_weekday = None
elif len(a_weekday) == 7:
self.__a_weekday = list(a_weekday)
else:
raise TypeError("abbreviated weekday names must be a 7-item "
"sequence")
if f_month is None:
self.__f_month = None
elif len(f_month) == 12:
self.__f_month = self.__pad(f_month, True)
else:
raise TypeError("full month names must be a 12-item sequence")
if a_month is None:
self.__a_month = None
elif len(a_month) == 12:
self.__a_month = self.__pad(a_month, True)
else:
raise TypeError("abbreviated month names must be a 12-item "
"sequence")
if am_pm is None:
self.__am_pm = None
elif len(am_pm) == 2:
self.__am_pm = am_pm
else:
raise TypeError("AM/PM representation must be a 2-item sequence")
self.__LC_date_time = LC_date_time
self.__LC_time = LC_time
self.__LC_date = LC_date
self.__timezone = timezone
if timezone:
if len(timezone) != 2:
raise TypeError("timezone names must contain 2 items")
else:
self.__timezone = self.__pad(timezone, False)
self.__lang = lang
def __pad(self, seq, front):
"""Add '' to seq to either front (if front is true) or the back.
Used for when sequence can contain the empty string as an answer. Also
use for padding to get 0-offset indexing with sequence.
"""
seq = list(seq)
if front:
seq.insert(0, '')
else:
seq.append('')
return seq
def __set_nothing(self, stuff):
"""Raise TypeError when trying to set an attribute.
There should be no need to change these values. This means that it
would be better for an exception to be raised then let the assignment
happen quietly.
"""
raise TypeError("attribute does not support assignment")
def __get_f_weekday(self):
"""Fetch self.f_weekday (full weekday names)."""
if not self.__f_weekday:
self.__calc_weekday()
return self.__f_weekday
def __get_a_weekday(self):
"""Fetch self.a_weekday (abbreviated weekday names)."""
if not self.__a_weekday:
self.__calc_weekday()
return self.__a_weekday
f_weekday = property(__get_f_weekday, __set_nothing, doc="Full weekday names")
a_weekday = property(__get_a_weekday, __set_nothing, doc="Abbreviated weekday names")
def __get_f_month(self):
"""Fetch self.f_month (full month names)."""
if not self.__f_month:
self.__calc_month()
return self.__f_month
def __get_a_month(self):
"""Fetch self.a_month (abbreviated month names)."""
if not self.__a_month:
self.__calc_month()
return self.__a_month
f_month = property(__get_f_month, __set_nothing, doc="Full month names (dummy value at index 0)")
a_month = property(__get_a_month, __set_nothing, doc="Abbreviated month names (dummy value at index 0)")
def __get_am_pm(self):
"""Fetch self.am_pm (locale's AM/PM representation)."""
if not self.__am_pm:
self.__calc_am_pm()
return self.__am_pm
am_pm = property(__get_am_pm, __set_nothing, doc="AM/PM representation")
def __get_timezone(self):
"""Fetch self.timezone."""
if not self.__timezone:
self.__calc_timezone()
return self.__timezone
timezone = property(__get_timezone, __set_nothing, doc="Timezone representation (dummy value at index 2)")
def __get_LC_date_time(self):
"""Fetch self.LC_date_time (%c directive)."""
if not self.__LC_date_time:
self.__calc_date_time()
return self.__LC_date_time
def __get_LC_date(self):
"""Fetch self.LC_date (%x directive)."""
if not self.__LC_date:
self.__calc_date_time()
return self.__LC_date
def __get_LC_time(self):
"""Fetch self.LC_time (%X directive)."""
if not self.__LC_time:
self.__calc_date_time()
return self.__LC_time
LC_date_time = property(__get_LC_date_time, __set_nothing,
doc="Format string for locale's date/time representation ('%c' format)")
LC_date = property(__get_LC_date, __set_nothing,
doc="Format string for locale's date representation ('%x' format)")
LC_time = property(__get_LC_time, __set_nothing,
doc="Format string for locale's time representation ('%X' format)")
def __get_lang(self):
"""Fetch self.lang (language of locale)."""
if not self.__lang:
self.__calc_lang()
return self.__lang
lang = property(__get_lang, __set_nothing, doc="Language used for instance")
def __calc_weekday(self):
"""Set self.__a_weekday and self.__f_weekday using the calendar module."""
a_weekday = [calendar.day_abbr[i] for i in range(7)]
f_weekday = [calendar.day_name[i] for i in range(7)]
if not self.__a_weekday:
self.__a_weekday = a_weekday
if not self.__f_weekday:
self.__f_weekday = f_weekday
def __calc_month(self):
"""Set self.__f_month and self.__a_month using the calendar module."""
a_month = [calendar.month_abbr[i] for i in range(13)]
f_month = [calendar.month_name[i] for i in range(13)]
if not self.__a_month:
self.__a_month = a_month
if not self.__f_month:
self.__f_month = f_month
def __calc_am_pm(self):
"""Set self.__am_pm by using time.strftime().
The magic date (2002, 3, 17, hour, 44, 44, 2, 76, 0) is not really
that magical; just happened to have used it everywhere else where a
static date was needed.
"""
am_pm = []
for hour in (01,22):
time_tuple = time.struct_time((1999,3,17,hour,44,55,2,76,0))
am_pm.append(time.strftime("%p", time_tuple))
self.__am_pm = am_pm
def __calc_date_time(self):
"""Set self.__date_time, self.__date, & self.__time by using
time.strftime().
Use (1999,3,17,22,44,55,2,76,0) for magic date because the amount of
overloaded numbers is minimized.
The order in which values are searched within the format string is very
important; it eliminates possible ambiguity for what something
represents.
"""
time_tuple = time.struct_time((1999,3,17,22,44,55,2,76,0))
date_time = [None, None, None]
date_time[0] = time.strftime("%c", time_tuple)
date_time[1] = time.strftime("%x", time_tuple)
date_time[2] = time.strftime("%X", time_tuple)
for offset,directive in ((0,'%c'), (1,'%x'), (2,'%X')):
current_format = date_time[offset]
for old, new in (('%', '%%'), (self.f_weekday[2], '%A'),
(self.f_month[3], '%B'), (self.a_weekday[2], '%a'),
(self.a_month[3], '%b'), (self.am_pm[1], '%p'),
(self.timezone[0], '%Z'), (self.timezone[1], '%Z'),
('1999', '%Y'), ('99', '%y'), ('22', '%H'),
('44', '%M'), ('55', '%S'), ('76', '%j'),
('17', '%d'), ('03', '%m'), ('3', '%m'),
# '3' needed for when no leading zero.
('2', '%w'), ('10', '%I')):
#Need to deal with exception raised when locale info is the
#empty string.
try:
current_format = current_format.replace(old, new)
except ValueError:
pass
time_tuple = time.struct_time((1999,1,3,1,1,1,6,3,0))
if time.strftime(directive, time_tuple).find('00'):
U_W = '%U'
else:
U_W = '%W'
date_time[offset] = current_format.replace('11', U_W)
if not self.__LC_date_time:
self.__LC_date_time = date_time[0]
if not self.__LC_date:
self.__LC_date = date_time[1]
if not self.__LC_time:
self.__LC_time = date_time[2]
def __calc_timezone(self):
"""Set self.__timezone by using time.tzname.
Empty string used for matching when timezone is not used/needed such
as with UTC.
"""
self.__timezone = self.__pad(time.tzname, 0)
def __calc_lang(self):
"""Set self.lang by using locale.getlocale() or
locale.getdefaultlocale().
"""
current_lang = locale.getlocale(locale.LC_TIME)[0]
if current_lang:
self.__lang = current_lang
else:
self.__lang = locale.getdefaultlocale()[0]
class TimeRE(dict):
"""
Handle conversion from format directives to regexes.
"""
def __init__(self, locale_time=LocaleTime()):
"""Initialize instance with non-locale regexes and store LocaleTime object."""
super(TimeRE,self).__init__({
'd': r"(?P<d>3[0-1]|[0-2]\d|\d| \d)", #The " \d" option is to make %c from ANSI C work
'H': r"(?P<H>2[0-3]|[0-1]\d|\d)",
'I': r"(?P<I>0\d|1[0-2]|\d)",
'j': r"(?P<j>(?:3[0-5]\d|6[0-6])|[0-2]\d\d|\d)",
'm': r"(?P<m>0\d|1[0-2]|\d)",
'M': r"(?P<M>[0-5]\d|\d)",
'S': r"(?P<S>6[0-1]|[0-5]\d|\d)",
'U': r"(?P<U>5[0-3]|[0-4]\d|\d)",
'w': r"(?P<w>[0-6])",
'y': r"(?P<y>\d\d)",
'Y': r"(?P<Y>\d\d\d\d)"})
self['W'] = super(TimeRE, self).__getitem__('U')
self.locale_time = locale_time
def __getitem__(self, fetch):
"""Try to fetch regex; if it does not exist, construct it."""
constructors = {'A': lambda: self.__seqToRE(self.locale_time.f_weekday, fetch),
'a': lambda: self.__seqToRE(self.locale_time.a_weekday, fetch),
'B': lambda: self.__seqToRE(self.locale_time.f_month[1:], fetch),
'b': lambda: self.__seqToRE(self.locale_time.a_month[1:], fetch),
'c': lambda: self.pattern(self.locale_time.LC_date_time),
'p': lambda: self.__seqToRE(self.locale_time.am_pm, fetch),
'x': lambda: self.pattern(self.locale_time.LC_date),
'X': lambda: self.pattern(self.locale_time.LC_time),
'Z': lambda: self.__seqToRE(self.locale_time.timezone, fetch),
'%': lambda: '%'}
#Could use dict.setdefault(), but it calls dict.__getitem__() so would
#have to deal with second call by catching KeyError since the call will
#fail; code below is just as clear without having to know the above
#fact.
try:
return super(TimeRE, self).__getitem__(fetch)
except KeyError:
if fetch in constructors:
self[fetch] = constructors[fetch]()
return self[fetch]
else:
raise
def __seqToRE(self, to_convert, directive):
"""Convert a list to a regex string for matching directive."""
def sorter(a, b):
"""Sort based on length.
Done in case for some strange reason that names in the locale only
differ by a suffix and thus want the name with the suffix to match
first.
"""
try:
a_length = len(a)
except TypeError:
a_length = 0
try:
b_length = len(b)
except TypeError:
b_length = 0
return cmp(b_length, a_length)
to_convert = to_convert[:] #Don't want to change value in-place.
to_convert.sort(sorter)
regex = '(?P<%s>' % directive
for item in to_convert:
regex = "%s(?:%s)|" % (regex, item)
else:
regex = regex[:-1]
return '%s)' % regex
def pattern(self, format):
"""Return re pattern for the format string."""
processed_format = ''
for whitespace in whitespace_string:
format = format.replace(whitespace, r'\s*')
while format.find('%') != -1:
directive_index = format.index('%')+1
processed_format = "%s%s%s" % (processed_format,
format[:directive_index-1],
self[format[directive_index]])
format = format[directive_index+1:]
return "%s%s" % (processed_format, format)
def compile(self, format):
"""Return a compiled re object for the format string."""
format = "(?#%s)%s" % (self.locale_time.lang,format)
return re_compile(self.pattern(format), IGNORECASE)
def strptime(data_string, format="%a %b %d %H:%M:%S %Y"):
"""Convert data_string to a time struct based on the format string or re
object; will return an re object for format if data_string is False.
The object passed in for format may either be an re object compiled by
strptime() or a format string. If False is passed in for data_string then
an re object for format will be returned which can be used as an argument
for format. The re object must be used with the same language as used to
compile the re object.
"""
locale_time = LocaleTime()
if isinstance(format, type(re_compile(''))):
if format.pattern.find(locale_time.lang) == -1:
raise TypeError("re object not created with same language as LocaleTime instance")
else:
compiled_re = format
else:
compiled_re = TimeRE(locale_time).compile(format)
if data_string is False:
return compiled_re
else:
found = compiled_re.match(data_string)
if not found:
raise ValueError("time data did not match format")
year = month = day = hour = minute = second = weekday = julian = tz = -1
for key, item in found.groupdict().iteritems():
if key in 'yY':
if key is 'y':
year = int("%s%s" % (time.strftime("%Y")[:-2], item))
else:
year = int(item)
elif key in 'Bbm':
if key is 'm':
month = int(item)
elif key is 'B':
month = locale_time.f_month.index(item)
else:
month = locale_time.a_month.index(item)
elif key is 'd':
day = int(item)
elif key in 'HI':
if key is 'H':
hour = int(item)
else:
hour = int(item)
if 'p' in found.groupdict():
if found.groupdict()['p'] == locale_time.am_pm[1]:
hour += 12
else:
if hour is 12:
hour = 0
elif key is 'p':
pass #Only need to use %p when %H is used.
elif key is 'M':
minute = int(item)
elif key is 'S':
second = int(item)
elif key in 'Aaw':
if key is 'A':
weekday = locale_time.f_weekday.index(item)
elif key is 'a':
weekday = locale_time.a_weekday.index(item)
else:
weekday = int(item)
if weekday == 0:
weekday = 6
else:
weekday -= 1
elif key is 'j':
julian = int(item)
elif key is 'Z':
if locale_time.timezone[0] == item:
tz = 0
elif locale_time.timezone[1] == item:
tz = 1
elif locale_time.timezone[2] == item:
tz = 0 #Empty string means same as being set to 0.
else:
raise ValueError("%%%s is not a recognized directive" % key)
if julian == -1 and year != -1 and month != -1 and day != -1:
julian = julianday(year, month, day)
if (month == -1 or day == -1) and julian != -1 and year != -1:
year,month,day = gregorian(julian, year)
if weekday == -1 and year != -1 and month != -1 and day != -1:
weekday = dayofweek(year, month, day)
return time.struct_time((year,month,day,hour,minute,second,weekday,
julian,tz))
#<bc>: If fxns are never exposed in the stdlib, consider inlining in strptime().
def firstjulian(year):
"""Calculate the Julian date up until the first of the year."""
return ((146097*(year+4799))//400)-31738
def julianday(year, month, day):
"""Calculate the Julian day since the beginning of the year from the
Gregorian date.
"""
#<bc>: If fxns are never exposed, can inline firstjulian() into julianday.
a = (14-month)//12
return (day-32045+(((153*(month+(12*a)-3))+2)//5)+\
((146097*(year+4800-a))//400))-firstjulian(year)+1
def gregorian(julian, year):
"""Return a 3-item list containing the Gregorian date based on the Julian
day.
"""
a = 32043+julian+firstjulian(year)
b = ((4*a)+3)//146097
c = a-((146097*b)//4)
d = ((4*c)+3)//1461
e = c-((1461*d)//4)
m = ((5*e)+2)//153
day = 1+e-(((153*m)+2)//5)
month = m+3-(12*(m//10))
year = (100*b)+d-4800+(m//10)
return [year, month, day]
def dayofweek(year, month, day):
"""Calculate the day of the week (Monday is 0)."""
a = (14-month)//12
y = year-a
weekday = (day+y+((97*y)//400)+((31*(month+(12*a)-2))//12))%7
if weekday == 0:
return 6
else:
return weekday-1
|