_strptime.py 21.1 KB
Newer Older
1 2 3
"""Strptime-related classes and functions.

CLASSES:
4
    LocaleTime -- Discovers and stores locale-specific time information
5
    TimeRE -- Creates regexes for pattern matching a string of text containing
6
                time information
7 8

FUNCTIONS:
9
    _getlang -- Figure out what language is being used for the locale
10 11 12 13 14 15 16
    strptime -- Calculates the time struct represented by the passed-in string

"""
import time
import locale
import calendar
from re import compile as re_compile
17
from re import IGNORECASE, ASCII
18
from re import escape as re_escape
19 20 21
from datetime import (date as datetime_date,
                      timedelta as datetime_timedelta,
                      timezone as datetime_timezone)
22
try:
23
    from _thread import allocate_lock as _thread_allocate_lock
24
except:
25
    from _dummy_thread import allocate_lock as _thread_allocate_lock
26

Christian Heimes's avatar
Christian Heimes committed
27
__all__ = []
28

29 30
def _getlang():
    # Figure out what the current language is set to.
31
    return locale.getlocale(locale.LC_TIME)
32

33 34 35
class LocaleTime(object):
    """Stores and handles locale-specific information related to time.

36
    ATTRIBUTES:
37 38
        f_weekday -- full weekday names (7-item list)
        a_weekday -- abbreviated weekday names (7-item list)
39
        f_month -- full month names (13-item list; dummy value in [0], which
40
                    is added by code)
41
        a_month -- abbreviated month names (13-item list, dummy value in
42 43 44 45 46
                    [0], which is added by code)
        am_pm -- AM/PM representation (2-item list)
        LC_date_time -- format string for date/time representation (string)
        LC_date -- format string for date representation (string)
        LC_time -- format string for time representation (string)
Tim Peters's avatar
Tim Peters committed
47
        timezone -- daylight- and non-daylight-savings timezone representation
48 49
                    (2-item list of sets)
        lang -- Language used by instance (2-item tuple)
50 51
    """

52 53
    def __init__(self):
        """Set all attributes.
54

55 56 57 58 59 60 61 62 63 64 65
        Order of methods called matters for dependency reasons.

        The locale language is set at the offset and then checked again before
        exiting.  This is to make sure that the attributes were not set with a
        mix of information from more than one locale.  This would most likely
        happen when using threads where one thread calls a locale-dependent
        function while another thread changes the locale while the function in
        the other thread is still running.  Proper coding would call for
        locks to prevent changing the locale while locale-dependent code is
        running.  The check here is done in case someone does not think about
        doing this.
66 67 68 69

        Only other possible issue is if someone changed the timezone and did
        not call tz.tzset .  That is an issue for the programmer, though,
        since changing the timezone is worthless without that call.
70

71 72 73 74 75 76 77 78 79
        """
        self.lang = _getlang()
        self.__calc_weekday()
        self.__calc_month()
        self.__calc_am_pm()
        self.__calc_timezone()
        self.__calc_date_time()
        if _getlang() != self.lang:
            raise ValueError("locale changed during initialization")
80 81

    def __pad(self, seq, front):
82
        # Add '' to seq to either the front (is True), else the back.
83
        seq = list(seq)
84 85 86 87
        if front:
            seq.insert(0, '')
        else:
            seq.append('')
88 89 90
        return seq

    def __calc_weekday(self):
91
        # Set self.a_weekday and self.f_weekday using the calendar
92
        # module.
93 94 95 96
        a_weekday = [calendar.day_abbr[i].lower() for i in range(7)]
        f_weekday = [calendar.day_name[i].lower() for i in range(7)]
        self.a_weekday = a_weekday
        self.f_weekday = f_weekday
Tim Peters's avatar
Tim Peters committed
97

98
    def __calc_month(self):
99 100 101 102 103
        # Set self.f_month and self.a_month using the calendar module.
        a_month = [calendar.month_abbr[i].lower() for i in range(13)]
        f_month = [calendar.month_name[i].lower() for i in range(13)]
        self.a_month = a_month
        self.f_month = f_month
104 105

    def __calc_am_pm(self):
106
        # Set self.am_pm by using time.strftime().
Tim Peters's avatar
Tim Peters committed
107

108 109 110
        # The magic date (1999,3,17,hour,44,55,2,76,0) is not really that
        # magical; just happened to have used it everywhere else where a
        # static date was needed.
111
        am_pm = []
112
        for hour in (1, 22):
113
            time_tuple = time.struct_time((1999,3,17,hour,44,55,2,76,0))
114 115
            am_pm.append(time.strftime("%p", time_tuple).lower())
        self.am_pm = am_pm
116 117

    def __calc_date_time(self):
118
        # Set self.date_time, self.date, & self.time by using
119
        # time.strftime().
120

121 122 123 124
        # 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 searches for
        # values within the format string is very important; it eliminates
        # possible ambiguity for what something represents.
125 126
        time_tuple = time.struct_time((1999,3,17,22,44,55,2,76,0))
        date_time = [None, None, None]
127 128 129 130
        date_time[0] = time.strftime("%c", time_tuple).lower()
        date_time[1] = time.strftime("%x", time_tuple).lower()
        date_time[2] = time.strftime("%X", time_tuple).lower()
        replacement_pairs = [('%', '%%'), (self.f_weekday[2], '%A'),
131 132 133 134 135 136
                    (self.f_month[3], '%B'), (self.a_weekday[2], '%a'),
                    (self.a_month[3], '%b'), (self.am_pm[1], '%p'),
                    ('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.
137 138 139 140 141 142
                    ('2', '%w'), ('10', '%I')]
        replacement_pairs.extend([(tz, "%Z") for tz_values in self.timezone
                                                for tz in tz_values])
        for offset,directive in ((0,'%c'), (1,'%x'), (2,'%X')):
            current_format = date_time[offset]
            for old, new in replacement_pairs:
143 144 145 146 147
                # Must deal with possible lack of locale info
                # manifesting itself as the empty string (e.g., Swedish's
                # lack of AM/PM info) or a platform returning a tuple of empty
                # strings (e.g., MacOS 9 having timezone as ('','')).
                if old:
148
                    current_format = current_format.replace(old, new)
149 150 151
            # If %W is used, then Sunday, 2005-01-03 will fall on week 0 since
            # 2005-01-03 occurs before the first Monday of the year.  Otherwise
            # %U is used.
152
            time_tuple = time.struct_time((1999,1,3,1,1,1,6,3,0))
153
            if '00' in time.strftime(directive, time_tuple):
154
                U_W = '%W'
155 156
            else:
                U_W = '%U'
157
            date_time[offset] = current_format.replace('11', U_W)
158 159
        self.LC_date_time = date_time[0]
        self.LC_date = date_time[1]
160
        self.LC_time = date_time[2]
161 162

    def __calc_timezone(self):
163
        # Set self.timezone by using time.tzname.
164 165
        # Do not worry about possibility of time.tzname[0] == timetzname[1]
        # and time.daylight; handle that in strptime .
166 167 168 169
        try:
            time.tzset()
        except AttributeError:
            pass
170
        no_saving = frozenset(["utc", "gmt", time.tzname[0].lower()])
171
        if time.daylight:
172
            has_saving = frozenset([time.tzname[1].lower()])
173
        else:
174
            has_saving = frozenset()
175
        self.timezone = (no_saving, has_saving)
176 177 178 179 180


class TimeRE(dict):
    """Handle conversion from format directives to regexes."""

181
    def __init__(self, locale_time=None):
182
        """Create keys/values.
183

184
        Order of execution is important for dependency reasons.
185

186 187 188 189 190
        """
        if locale_time:
            self.locale_time = locale_time
        else:
            self.locale_time = LocaleTime()
191
        base = super()
192
        base.__init__({
193
            # The " \d" part of the regex is to make %c from ANSI C work
194
            'd': r"(?P<d>3[0-1]|[1-2]\d|0[1-9]|[1-9]| [1-9])",
Christian Heimes's avatar
Christian Heimes committed
195
            'f': r"(?P<f>[0-9]{1,6})",
196
            'H': r"(?P<H>2[0-3]|[0-1]\d|\d)",
197 198 199
            'I': r"(?P<I>1[0-2]|0[1-9]|[1-9])",
            'j': r"(?P<j>36[0-6]|3[0-5]\d|[1-2]\d\d|0[1-9]\d|00[1-9]|[1-9]\d|0[1-9]|[1-9])",
            'm': r"(?P<m>1[0-2]|0[1-9]|[1-9])",
200 201 202 203
            '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])",
204
            # W is set below by using 'U'
205
            'y': r"(?P<y>\d\d)",
206 207 208
            #XXX: Does 'Y' need to worry about having less or more than
            #     4 digits?
            'Y': r"(?P<Y>\d\d\d\d)",
209
            'z': r"(?P<z>[+-]\d\d[0-5]\d)",
210 211 212 213 214
            'A': self.__seqToRE(self.locale_time.f_weekday, 'A'),
            'a': self.__seqToRE(self.locale_time.a_weekday, 'a'),
            'B': self.__seqToRE(self.locale_time.f_month[1:], 'B'),
            'b': self.__seqToRE(self.locale_time.a_month[1:], 'b'),
            'p': self.__seqToRE(self.locale_time.am_pm, 'p'),
215 216
            'Z': self.__seqToRE((tz for tz_names in self.locale_time.timezone
                                        for tz in tz_names),
217 218
                                'Z'),
            '%': '%'})
219
        base.__setitem__('W', base.__getitem__('U').replace('U', 'W'))
220 221 222
        base.__setitem__('c', self.pattern(self.locale_time.LC_date_time))
        base.__setitem__('x', self.pattern(self.locale_time.LC_date))
        base.__setitem__('X', self.pattern(self.locale_time.LC_time))
Tim Peters's avatar
Tim Peters committed
223

224
    def __seqToRE(self, to_convert, directive):
225
        """Convert a list to a regex string for matching a directive.
226

227 228 229 230
        Want possible matching values to be from longest to shortest.  This
        prevents the possibility of a match occuring for a value that also
        a substring of a larger value that should have matched (e.g., 'abc'
        matching when 'abcdef' should have been the match).
231

232
        """
233
        to_convert = sorted(to_convert, key=len, reverse=True)
234 235 236 237 238
        for value in to_convert:
            if value != '':
                break
        else:
            return ''
239
        regex = '|'.join(re_escape(stuff) for stuff in to_convert)
240
        regex = '(?P<%s>%s' % (directive, regex)
241 242 243
        return '%s)' % regex

    def pattern(self, format):
244
        """Return regex pattern for the format string.
Tim Peters's avatar
Tim Peters committed
245

246
        Need to make sure that any characters that might be interpreted as
247
        regex syntax are escaped.
Tim Peters's avatar
Tim Peters committed
248

249
        """
250
        processed_format = ''
251
        # The sub() call escapes all characters that might be misconstrued
252 253
        # as regex syntax.  Cannot use re.escape since we have to deal with
        # format directives (%m, etc.).
254
        regex_chars = re_compile(r"([\\.^$*+?\(\){}\[\]|])")
255
        format = regex_chars.sub(r"\\\1", format)
256
        whitespace_replacement = re_compile('\s+')
257
        format = whitespace_replacement.sub('\s+', format)
258
        while '%' in format:
259
            directive_index = format.index('%')+1
Tim Peters's avatar
Tim Peters committed
260
            processed_format = "%s%s%s" % (processed_format,
261 262
                                           format[:directive_index-1],
                                           self[format[directive_index]])
263 264 265 266 267
            format = format[directive_index+1:]
        return "%s%s" % (processed_format, format)

    def compile(self, format):
        """Return a compiled re object for the format string."""
268
        return re_compile(self.pattern(format), IGNORECASE)
269

270 271 272 273
_cache_lock = _thread_allocate_lock()
# DO NOT modify _TimeRE_cache or _regex_cache without acquiring the cache lock
# first!
_TimeRE_cache = TimeRE()
274
_CACHE_MAX_SIZE = 5 # Max number of regexes stored in _regex_cache
275
_regex_cache = {}
276

277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
def _calc_julian_from_U_or_W(year, week_of_year, day_of_week, week_starts_Mon):
    """Calculate the Julian day based on the year, week of the year, and day of
    the week, with week_start_day representing whether the week of the year
    assumes the week starts on Sunday or Monday (6 or 0)."""
    first_weekday = datetime_date(year, 1, 1).weekday()
    # If we are dealing with the %U directive (week starts on Sunday), it's
    # easier to just shift the view to Sunday being the first day of the
    # week.
    if not week_starts_Mon:
        first_weekday = (first_weekday + 1) % 7
        day_of_week = (day_of_week + 1) % 7
    # Need to watch out for a week 0 (when the first day of the year is not
    # the same as that specified by %U or %W).
    week_0_length = (7 - first_weekday) % 7
    if week_of_year == 0:
        return 1 + day_of_week - first_weekday
    else:
        days_to_week = week_0_length + (7 * (week_of_year - 1))
        return 1 + days_to_week + day_of_week


Christian Heimes's avatar
Christian Heimes committed
298
def _strptime(data_string, format="%a %b %d %H:%M:%S %Y"):
299
    """Return a 2-tuple consisting of a time struct and an int containing
300 301
    the number of microseconds based on the input string and the
    format string."""
302 303 304 305

    for index, arg in enumerate([data_string, format]):
        if not isinstance(arg, str):
            msg = "strptime() argument {} must be str, not {}"
306
            raise TypeError(msg.format(index, type(arg)))
307

308
    global _TimeRE_cache, _regex_cache
309
    with _cache_lock:
310

311
        if _getlang() != _TimeRE_cache.locale_time.lang:
312
            _TimeRE_cache = TimeRE()
313
            _regex_cache.clear()
314 315
        if len(_regex_cache) > _CACHE_MAX_SIZE:
            _regex_cache.clear()
316
        locale_time = _TimeRE_cache.locale_time
317 318
        format_regex = _regex_cache.get(format)
        if not format_regex:
319
            try:
320
                format_regex = _TimeRE_cache.compile(format)
321 322
            # KeyError raised when a bad format is found; can be specified as
            # \\, in which case it was a stray % but with a space after it
323
            except KeyError as err:
324 325 326 327 328 329 330 331 332
                bad_directive = err.args[0]
                if bad_directive == "\\":
                    bad_directive = "%"
                del err
                raise ValueError("'%s' is a bad directive in format '%s'" %
                                    (bad_directive, format))
            # IndexError only occurs when the format string is "%"
            except IndexError:
                raise ValueError("stray %% in format '%s'" % format)
333
            _regex_cache[format] = format_regex
334
    found = format_regex.match(data_string)
335
    if not found:
336
        raise ValueError("time data %r does not match format %r" %
337
                         (data_string, format))
338 339 340
    if len(data_string) != found.end():
        raise ValueError("unconverted data remains: %s" %
                          data_string[found.end():])
341

342
    year = None
343
    month = day = 1
Christian Heimes's avatar
Christian Heimes committed
344
    hour = minute = second = fraction = 0
345
    tz = -1
346
    tzoffset = None
Brett Cannon's avatar
Brett Cannon committed
347 348
    # Default to -1 to signify that values not known; not critical to have,
    # though
349 350
    week_of_year = -1
    week_of_year_start = -1
Brett Cannon's avatar
Brett Cannon committed
351 352
    # weekday and julian defaulted to -1 so as to signal need to calculate
    # values
353 354
    weekday = julian = -1
    found_dict = found.groupdict()
355
    for group_key in found_dict.keys():
356 357 358 359 360
        # Directives not explicitly handled below:
        #   c, x, X
        #      handled by making out of other directives
        #   U, W
        #      worthless without day of the week
361 362 363 364 365 366 367 368 369 370 371 372 373 374
        if group_key == 'y':
            year = int(found_dict['y'])
            # Open Group specification for strptime() states that a %y
            #value in the range of [00, 68] is in the century 2000, while
            #[69,99] is in the century 1900
            if year <= 68:
                year += 2000
            else:
                year += 1900
        elif group_key == 'Y':
            year = int(found_dict['Y'])
        elif group_key == 'm':
            month = int(found_dict['m'])
        elif group_key == 'B':
375
            month = locale_time.f_month.index(found_dict['B'].lower())
376
        elif group_key == 'b':
377
            month = locale_time.a_month.index(found_dict['b'].lower())
378 379
        elif group_key == 'd':
            day = int(found_dict['d'])
380
        elif group_key == 'H':
381 382 383 384 385
            hour = int(found_dict['H'])
        elif group_key == 'I':
            hour = int(found_dict['I'])
            ampm = found_dict.get('p', '').lower()
            # If there was no AM/PM indicator, we'll treat this like AM
386
            if ampm in ('', locale_time.am_pm[0]):
387 388 389 390 391
                # We're in AM so the hour is correct unless we're
                # looking at 12 midnight.
                # 12 midnight == 12 AM == hour 0
                if hour == 12:
                    hour = 0
392
            elif ampm == locale_time.am_pm[1]:
393 394 395 396 397 398 399 400 401
                # We're in PM so we need to add 12 to the hour unless
                # we're looking at 12 noon.
                # 12 noon == 12 PM == hour 12
                if hour != 12:
                    hour += 12
        elif group_key == 'M':
            minute = int(found_dict['M'])
        elif group_key == 'S':
            second = int(found_dict['S'])
Christian Heimes's avatar
Christian Heimes committed
402 403 404 405 406
        elif group_key == 'f':
            s = found_dict['f']
            # Pad to always return microseconds.
            s += "0" * (6 - len(s))
            fraction = int(s)
407
        elif group_key == 'A':
408
            weekday = locale_time.f_weekday.index(found_dict['A'].lower())
409
        elif group_key == 'a':
410
            weekday = locale_time.a_weekday.index(found_dict['a'].lower())
411 412 413 414 415 416 417 418
        elif group_key == 'w':
            weekday = int(found_dict['w'])
            if weekday == 0:
                weekday = 6
            else:
                weekday -= 1
        elif group_key == 'j':
            julian = int(found_dict['j'])
419 420 421
        elif group_key in ('U', 'W'):
            week_of_year = int(found_dict[group_key])
            if group_key == 'U':
422
                # U starts week on Sunday.
423 424
                week_of_year_start = 6
            else:
425
                # W starts week on Monday.
426
                week_of_year_start = 0
427 428 429 430 431
        elif group_key == 'z':
            z = found_dict['z']
            tzoffset = int(z[1:3]) * 60 + int(z[3:5])
            if z.startswith("-"):
                tzoffset = -tzoffset
432
        elif group_key == 'Z':
433 434
            # Since -1 is default value only need to worry about setting tz if
            # it can be something other than -1.
435
            found_zone = found_dict['Z'].lower()
436 437 438 439 440
            for value, tz_values in enumerate(locale_time.timezone):
                if found_zone in tz_values:
                    # Deal with bad locale setup where timezone names are the
                    # same and yet time.daylight is true; too ambiguous to
                    # be able to tell what timezone has daylight savings
441 442
                    if (time.tzname[0] == time.tzname[1] and
                       time.daylight and found_zone not in ("utc", "gmt")):
Tim Peters's avatar
Tim Peters committed
443
                        break
444
                    else:
445
                        tz = value
446
                        break
447
    leap_year_fix = False
448 449
    if year is None and month == 2 and day == 29:
        year = 1904  # 1904 is first leap year of 20th century
450
        leap_year_fix = True
451 452
    elif year is None:
        year = 1900
453
    # If we know the week of the year and what day of that week, we can figure
454
    # out the Julian day of the year.
455
    if julian == -1 and week_of_year != -1 and weekday != -1:
456 457 458
        week_starts_Mon = True if week_of_year_start == 0 else False
        julian = _calc_julian_from_U_or_W(year, week_of_year, weekday,
                                            week_starts_Mon)
459
    # Cannot pre-calculate datetime_date() since can change in Julian
460 461
    # calculation and thus could have different value for the day of the week
    # calculation.
462
    if julian == -1:
463 464 465 466
        # Need to add 1 to result since first day of the year is 1, not 0.
        julian = datetime_date(year, month, day).toordinal() - \
                  datetime_date(year, 1, 1).toordinal() + 1
    else:  # Assume that if they bothered to include Julian day it will
467
           # be accurate.
468 469 470 471
        datetime_result = datetime_date.fromordinal((julian - 1) + datetime_date(year, 1, 1).toordinal())
        year = datetime_result.year
        month = datetime_result.month
        day = datetime_result.day
472
    if weekday == -1:
473
        weekday = datetime_date(year, month, day).weekday()
474 475 476 477 478 479 480
    # Add timezone info
    tzname = found_dict.get("Z")
    if tzoffset is not None:
        gmtoff = tzoffset * 60
    else:
        gmtoff = None

481 482 483 484 485 486
    if leap_year_fix:
        # the caller didn't supply a year but asked for Feb 29th. We couldn't
        # use the default of 1900 for computations. We set it back to ensure
        # that February 29th is smaller than March 1st.
        year = 1900

487 488
    return (year, month, day,
            hour, minute, second,
489
            weekday, julian, tz, tzname, gmtoff), fraction
Christian Heimes's avatar
Christian Heimes committed
490 491

def _strptime_time(data_string, format="%a %b %d %H:%M:%S %Y"):
492 493 494
    """Return a time struct based on the input string and the
    format string."""
    tt = _strptime(data_string, format)[0]
495
    return time.struct_time(tt[:time._STRUCT_TM_ITEMS])
496

497 498
def _strptime_datetime(cls, data_string, format="%a %b %d %H:%M:%S %Y"):
    """Return a class cls instance based on the input string and the
499 500
    format string."""
    tt, fraction = _strptime(data_string, format)
501
    tzname, gmtoff = tt[-2:]
502 503 504 505 506 507 508 509 510
    args = tt[:6] + (fraction,)
    if gmtoff is not None:
        tzdelta = datetime_timedelta(seconds=gmtoff)
        if tzname:
            tz = datetime_timezone(tzdelta, tzname)
        else:
            tz = datetime_timezone(tzdelta)
        args += (tz,)

511
    return cls(*args)