Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 1 | """Strptime-related classes and functions. |
| 2 | |
| 3 | CLASSES: |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 4 | LocaleTime -- Discovers and stores locale-specific time information |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 5 | TimeRE -- Creates regexes for pattern matching a string of text containing |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 6 | time information |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 7 | |
| 8 | FUNCTIONS: |
Raymond Hettinger | 1fdb633 | 2003-03-09 07:44:42 +0000 | [diff] [blame] | 9 | _getlang -- Figure out what language is being used for the locale |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 10 | strptime -- Calculates the time struct represented by the passed-in string |
| 11 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 12 | """ |
| 13 | import time |
| 14 | import locale |
| 15 | import calendar |
| 16 | from re import compile as re_compile |
| 17 | from re import IGNORECASE |
Raymond Hettinger | 1fdb633 | 2003-03-09 07:44:42 +0000 | [diff] [blame] | 18 | from datetime import date as datetime_date |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 19 | from sets import ImmutableSet as sets_ImmutableSet |
| 20 | try: |
| 21 | from thread import allocate_lock as _thread_allocate_lock |
| 22 | except: |
| 23 | from dummy_thread import allocate_lock as _thread_allocate_lock |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 24 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 25 | __author__ = "Brett Cannon" |
Raymond Hettinger | 1fdb633 | 2003-03-09 07:44:42 +0000 | [diff] [blame] | 26 | __email__ = "brett@python.org" |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 27 | |
| 28 | __all__ = ['strptime'] |
| 29 | |
Tim Peters | 80cebc1 | 2003-01-19 04:40:44 +0000 | [diff] [blame] | 30 | def _getlang(): |
| 31 | # Figure out what the current language is set to. |
Brett Cannon | 175ddb5 | 2003-07-24 06:27:17 +0000 | [diff] [blame] | 32 | return locale.getlocale(locale.LC_TIME) |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 33 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 34 | class LocaleTime(object): |
| 35 | """Stores and handles locale-specific information related to time. |
| 36 | |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 37 | ATTRIBUTES: |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 38 | f_weekday -- full weekday names (7-item list) |
| 39 | a_weekday -- abbreviated weekday names (7-item list) |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 40 | f_month -- full weekday names (14-item list; dummy value in [0], which |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 41 | is added by code) |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 42 | a_month -- abbreviated weekday names (13-item list, dummy value in |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 43 | [0], which is added by code) |
| 44 | am_pm -- AM/PM representation (2-item list) |
| 45 | LC_date_time -- format string for date/time representation (string) |
| 46 | LC_date -- format string for date representation (string) |
| 47 | LC_time -- format string for time representation (string) |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 48 | timezone -- daylight- and non-daylight-savings timezone representation |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 49 | (2-item list of sets) |
| 50 | lang -- Language used by instance (2-item tuple) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 51 | """ |
| 52 | |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 53 | def __init__(self): |
| 54 | """Set all attributes. |
| 55 | |
| 56 | Order of methods called matters for dependency reasons. |
| 57 | |
| 58 | The locale language is set at the offset and then checked again before |
| 59 | exiting. This is to make sure that the attributes were not set with a |
| 60 | mix of information from more than one locale. This would most likely |
| 61 | happen when using threads where one thread calls a locale-dependent |
| 62 | function while another thread changes the locale while the function in |
| 63 | the other thread is still running. Proper coding would call for |
| 64 | locks to prevent changing the locale while locale-dependent code is |
| 65 | running. The check here is done in case someone does not think about |
| 66 | doing this. |
| 67 | |
| 68 | """ |
| 69 | self.lang = _getlang() |
| 70 | self.__calc_weekday() |
| 71 | self.__calc_month() |
| 72 | self.__calc_am_pm() |
| 73 | self.__calc_timezone() |
| 74 | self.__calc_date_time() |
| 75 | if _getlang() != self.lang: |
| 76 | raise ValueError("locale changed during initialization") |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 77 | |
| 78 | def __pad(self, seq, front): |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 79 | # Add '' to seq to either the front (is True), else the back. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 80 | seq = list(seq) |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 81 | if front: |
| 82 | seq.insert(0, '') |
| 83 | else: |
| 84 | seq.append('') |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 85 | return seq |
| 86 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 87 | def __calc_weekday(self): |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 88 | # Set self.a_weekday and self.f_weekday using the calendar |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 89 | # module. |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 90 | a_weekday = [calendar.day_abbr[i].lower() for i in range(7)] |
| 91 | f_weekday = [calendar.day_name[i].lower() for i in range(7)] |
| 92 | self.a_weekday = a_weekday |
| 93 | self.f_weekday = f_weekday |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 94 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 95 | def __calc_month(self): |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 96 | # Set self.f_month and self.a_month using the calendar module. |
| 97 | a_month = [calendar.month_abbr[i].lower() for i in range(13)] |
| 98 | f_month = [calendar.month_name[i].lower() for i in range(13)] |
| 99 | self.a_month = a_month |
| 100 | self.f_month = f_month |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 101 | |
| 102 | def __calc_am_pm(self): |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 103 | # Set self.am_pm by using time.strftime(). |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 104 | |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 105 | # The magic date (1999,3,17,hour,44,55,2,76,0) is not really that |
| 106 | # magical; just happened to have used it everywhere else where a |
| 107 | # static date was needed. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 108 | am_pm = [] |
| 109 | for hour in (01,22): |
| 110 | time_tuple = time.struct_time((1999,3,17,hour,44,55,2,76,0)) |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 111 | am_pm.append(time.strftime("%p", time_tuple).lower()) |
| 112 | self.am_pm = am_pm |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 113 | |
| 114 | def __calc_date_time(self): |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 115 | # Set self.date_time, self.date, & self.time by using |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 116 | # time.strftime(). |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 117 | |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 118 | # Use (1999,3,17,22,44,55,2,76,0) for magic date because the amount of |
| 119 | # overloaded numbers is minimized. The order in which searches for |
| 120 | # values within the format string is very important; it eliminates |
| 121 | # possible ambiguity for what something represents. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 122 | time_tuple = time.struct_time((1999,3,17,22,44,55,2,76,0)) |
| 123 | date_time = [None, None, None] |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 124 | date_time[0] = time.strftime("%c", time_tuple).lower() |
| 125 | date_time[1] = time.strftime("%x", time_tuple).lower() |
| 126 | date_time[2] = time.strftime("%X", time_tuple).lower() |
| 127 | replacement_pairs = [('%', '%%'), (self.f_weekday[2], '%A'), |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 128 | (self.f_month[3], '%B'), (self.a_weekday[2], '%a'), |
| 129 | (self.a_month[3], '%b'), (self.am_pm[1], '%p'), |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 130 | ('1999', '%Y'), ('99', '%y'), ('22', '%H'), |
| 131 | ('44', '%M'), ('55', '%S'), ('76', '%j'), |
| 132 | ('17', '%d'), ('03', '%m'), ('3', '%m'), |
| 133 | # '3' needed for when no leading zero. |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 134 | ('2', '%w'), ('10', '%I')] |
| 135 | replacement_pairs.extend([(tz, "%Z") for tz_values in self.timezone |
| 136 | for tz in tz_values]) |
| 137 | for offset,directive in ((0,'%c'), (1,'%x'), (2,'%X')): |
| 138 | current_format = date_time[offset] |
| 139 | for old, new in replacement_pairs: |
Jack Jansen | 62fe755 | 2003-01-15 22:59:39 +0000 | [diff] [blame] | 140 | # Must deal with possible lack of locale info |
| 141 | # manifesting itself as the empty string (e.g., Swedish's |
| 142 | # lack of AM/PM info) or a platform returning a tuple of empty |
| 143 | # strings (e.g., MacOS 9 having timezone as ('','')). |
| 144 | if old: |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 145 | current_format = current_format.replace(old, new) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 146 | time_tuple = time.struct_time((1999,1,3,1,1,1,6,3,0)) |
| 147 | if time.strftime(directive, time_tuple).find('00'): |
| 148 | U_W = '%U' |
| 149 | else: |
| 150 | U_W = '%W' |
| 151 | date_time[offset] = current_format.replace('11', U_W) |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 152 | self.LC_date_time = date_time[0] |
| 153 | self.LC_date = date_time[1] |
| 154 | self.LC_time = date_time[2] |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 155 | |
| 156 | def __calc_timezone(self): |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 157 | # Set self.timezone by using time.tzname. |
Brett Cannon | abe8eb0 | 2003-05-13 20:28:15 +0000 | [diff] [blame] | 158 | try: |
| 159 | time.tzset() |
| 160 | except AttributeError: |
| 161 | pass |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 162 | no_saving = sets_ImmutableSet(["utc", "gmt", time.tzname[0].lower()]) |
Brett Cannon | 172d9ef | 2003-05-11 06:23:36 +0000 | [diff] [blame] | 163 | if time.daylight: |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 164 | has_saving = sets_ImmutableSet([time.tzname[1].lower()]) |
Brett Cannon | 172d9ef | 2003-05-11 06:23:36 +0000 | [diff] [blame] | 165 | else: |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 166 | has_saving = sets_ImmutableSet() |
| 167 | self.timezone = (no_saving, has_saving) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 168 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 169 | |
| 170 | class TimeRE(dict): |
| 171 | """Handle conversion from format directives to regexes.""" |
| 172 | |
Brett Cannon | 2c24d42 | 2003-07-24 20:02:28 +0000 | [diff] [blame] | 173 | def __init__(self, locale_time=None): |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 174 | """Create keys/values. |
| 175 | |
| 176 | Order of execution is important for dependency reasons. |
| 177 | |
| 178 | """ |
| 179 | if locale_time: |
| 180 | self.locale_time = locale_time |
| 181 | else: |
| 182 | self.locale_time = LocaleTime() |
Neal Norwitz | 5efc50d | 2002-12-30 22:23:12 +0000 | [diff] [blame] | 183 | base = super(TimeRE, self) |
| 184 | base.__init__({ |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 185 | # The " \d" part of the regex is to make %c from ANSI C work |
Neal Norwitz | 5efc50d | 2002-12-30 22:23:12 +0000 | [diff] [blame] | 186 | 'd': r"(?P<d>3[0-1]|[1-2]\d|0[1-9]|[1-9]| [1-9])", |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 187 | 'H': r"(?P<H>2[0-3]|[0-1]\d|\d)", |
Neal Norwitz | 5efc50d | 2002-12-30 22:23:12 +0000 | [diff] [blame] | 188 | 'I': r"(?P<I>1[0-2]|0[1-9]|[1-9])", |
| 189 | '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])", |
| 190 | 'm': r"(?P<m>1[0-2]|0[1-9]|[1-9])", |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 191 | 'M': r"(?P<M>[0-5]\d|\d)", |
| 192 | 'S': r"(?P<S>6[0-1]|[0-5]\d|\d)", |
| 193 | 'U': r"(?P<U>5[0-3]|[0-4]\d|\d)", |
| 194 | 'w': r"(?P<w>[0-6])", |
Neal Norwitz | 5efc50d | 2002-12-30 22:23:12 +0000 | [diff] [blame] | 195 | # W is set below by using 'U' |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 196 | 'y': r"(?P<y>\d\d)", |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 197 | #XXX: Does 'Y' need to worry about having less or more than |
| 198 | # 4 digits? |
| 199 | 'Y': r"(?P<Y>\d\d\d\d)", |
| 200 | 'A': self.__seqToRE(self.locale_time.f_weekday, 'A'), |
| 201 | 'a': self.__seqToRE(self.locale_time.a_weekday, 'a'), |
| 202 | 'B': self.__seqToRE(self.locale_time.f_month[1:], 'B'), |
| 203 | 'b': self.__seqToRE(self.locale_time.a_month[1:], 'b'), |
| 204 | 'p': self.__seqToRE(self.locale_time.am_pm, 'p'), |
| 205 | 'Z': self.__seqToRE([tz for tz_names in self.locale_time.timezone |
| 206 | for tz in tz_names], |
| 207 | 'Z'), |
| 208 | '%': '%'}) |
Neal Norwitz | 5efc50d | 2002-12-30 22:23:12 +0000 | [diff] [blame] | 209 | base.__setitem__('W', base.__getitem__('U')) |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 210 | base.__setitem__('c', self.pattern(self.locale_time.LC_date_time)) |
| 211 | base.__setitem__('x', self.pattern(self.locale_time.LC_date)) |
| 212 | base.__setitem__('X', self.pattern(self.locale_time.LC_time)) |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 213 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 214 | def __seqToRE(self, to_convert, directive): |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 215 | """Convert a list to a regex string for matching a directive. |
| 216 | |
| 217 | Want possible matching values to be from longest to shortest. This |
| 218 | prevents the possibility of a match occuring for a value that also |
| 219 | a substring of a larger value that should have matched (e.g., 'abc' |
| 220 | matching when 'abcdef' should have been the match). |
| 221 | |
| 222 | """ |
Jack Jansen | 62fe755 | 2003-01-15 22:59:39 +0000 | [diff] [blame] | 223 | for value in to_convert: |
| 224 | if value != '': |
| 225 | break |
| 226 | else: |
| 227 | return '' |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 228 | to_sort = [(len(item), item) for item in to_convert] |
| 229 | to_sort.sort() |
| 230 | to_sort.reverse() |
| 231 | to_convert = [item for length, item in to_sort] |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 232 | regex = '|'.join(to_convert) |
| 233 | regex = '(?P<%s>%s' % (directive, regex) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 234 | return '%s)' % regex |
| 235 | |
| 236 | def pattern(self, format): |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 237 | """Return regex pattern for the format string. |
Tim Peters | 0eadaac | 2003-04-24 16:02:54 +0000 | [diff] [blame] | 238 | |
Brett Cannon | 1e91d8e | 2003-04-19 04:00:56 +0000 | [diff] [blame] | 239 | Need to make sure that any characters that might be interpreted as |
| 240 | regex syntax is escaped. |
Tim Peters | 0eadaac | 2003-04-24 16:02:54 +0000 | [diff] [blame] | 241 | |
Brett Cannon | 1e91d8e | 2003-04-19 04:00:56 +0000 | [diff] [blame] | 242 | """ |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 243 | processed_format = '' |
Brett Cannon | 1e91d8e | 2003-04-19 04:00:56 +0000 | [diff] [blame] | 244 | # The sub() call escapes all characters that might be misconstrued |
| 245 | # as regex syntax. |
| 246 | regex_chars = re_compile(r"([\\.^$*+?{}\[\]|])") |
| 247 | format = regex_chars.sub(r"\\\1", format) |
Tim Peters | 80cebc1 | 2003-01-19 04:40:44 +0000 | [diff] [blame] | 248 | whitespace_replacement = re_compile('\s+') |
| 249 | format = whitespace_replacement.sub('\s*', format) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 250 | while format.find('%') != -1: |
| 251 | directive_index = format.index('%')+1 |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 252 | processed_format = "%s%s%s" % (processed_format, |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 253 | format[:directive_index-1], |
| 254 | self[format[directive_index]]) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 255 | format = format[directive_index+1:] |
| 256 | return "%s%s" % (processed_format, format) |
| 257 | |
| 258 | def compile(self, format): |
| 259 | """Return a compiled re object for the format string.""" |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 260 | return re_compile(self.pattern(format), IGNORECASE) |
| 261 | |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 262 | _cache_lock = _thread_allocate_lock() |
| 263 | # DO NOT modify _TimeRE_cache or _regex_cache without acquiring the cache lock |
| 264 | # first! |
| 265 | _TimeRE_cache = TimeRE() |
| 266 | _CACHE_MAX_SIZE = 5 |
| 267 | _regex_cache = {} |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 268 | |
| 269 | def strptime(data_string, format="%a %b %d %H:%M:%S %Y"): |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 270 | """Return a time struct based on the input data and the format string.""" |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 271 | global _TimeRE_cache |
| 272 | _cache_lock.acquire() |
| 273 | try: |
| 274 | time_re = _TimeRE_cache |
| 275 | locale_time = time_re.locale_time |
| 276 | if _getlang() != locale_time.lang: |
| 277 | _TimeRE_cache = TimeRE() |
| 278 | if len(_regex_cache) > _CACHE_MAX_SIZE: |
| 279 | _regex_cache.clear() |
| 280 | format_regex = _regex_cache.get(format) |
| 281 | if not format_regex: |
| 282 | format_regex = time_re.compile(format) |
| 283 | _regex_cache[format] = format_regex |
| 284 | finally: |
| 285 | _cache_lock.release() |
Tim Peters | 80cebc1 | 2003-01-19 04:40:44 +0000 | [diff] [blame] | 286 | found = format_regex.match(data_string) |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 287 | if not found: |
Raymond Hettinger | 4a6302b | 2003-07-13 01:31:38 +0000 | [diff] [blame] | 288 | raise ValueError("time data did not match format: data=%s fmt=%s" % |
| 289 | (data_string, format)) |
Brett Cannon | 2b6dfec | 2003-04-28 21:30:13 +0000 | [diff] [blame] | 290 | if len(data_string) != found.end(): |
| 291 | raise ValueError("unconverted data remains: %s" % |
| 292 | data_string[found.end():]) |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 293 | year = 1900 |
| 294 | month = day = 1 |
| 295 | hour = minute = second = 0 |
| 296 | tz = -1 |
Raymond Hettinger | 1fdb633 | 2003-03-09 07:44:42 +0000 | [diff] [blame] | 297 | # weekday and julian defaulted to -1 so as to signal need to calculate values |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 298 | weekday = julian = -1 |
| 299 | found_dict = found.groupdict() |
| 300 | for group_key in found_dict.iterkeys(): |
| 301 | if group_key == 'y': |
| 302 | year = int(found_dict['y']) |
| 303 | # Open Group specification for strptime() states that a %y |
| 304 | #value in the range of [00, 68] is in the century 2000, while |
| 305 | #[69,99] is in the century 1900 |
| 306 | if year <= 68: |
| 307 | year += 2000 |
| 308 | else: |
| 309 | year += 1900 |
| 310 | elif group_key == 'Y': |
| 311 | year = int(found_dict['Y']) |
| 312 | elif group_key == 'm': |
| 313 | month = int(found_dict['m']) |
| 314 | elif group_key == 'B': |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 315 | month = locale_time.f_month.index(found_dict['B'].lower()) |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 316 | elif group_key == 'b': |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 317 | month = locale_time.a_month.index(found_dict['b'].lower()) |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 318 | elif group_key == 'd': |
| 319 | day = int(found_dict['d']) |
Neal Norwitz | 77290f2 | 2003-06-29 04:16:49 +0000 | [diff] [blame] | 320 | elif group_key == 'H': |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 321 | hour = int(found_dict['H']) |
| 322 | elif group_key == 'I': |
| 323 | hour = int(found_dict['I']) |
| 324 | ampm = found_dict.get('p', '').lower() |
| 325 | # If there was no AM/PM indicator, we'll treat this like AM |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 326 | if ampm in ('', locale_time.am_pm[0]): |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 327 | # We're in AM so the hour is correct unless we're |
| 328 | # looking at 12 midnight. |
| 329 | # 12 midnight == 12 AM == hour 0 |
| 330 | if hour == 12: |
| 331 | hour = 0 |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 332 | elif ampm == locale_time.am_pm[1]: |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 333 | # We're in PM so we need to add 12 to the hour unless |
| 334 | # we're looking at 12 noon. |
| 335 | # 12 noon == 12 PM == hour 12 |
| 336 | if hour != 12: |
| 337 | hour += 12 |
| 338 | elif group_key == 'M': |
| 339 | minute = int(found_dict['M']) |
| 340 | elif group_key == 'S': |
| 341 | second = int(found_dict['S']) |
| 342 | elif group_key == 'A': |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 343 | weekday = locale_time.f_weekday.index(found_dict['A'].lower()) |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 344 | elif group_key == 'a': |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 345 | weekday = locale_time.a_weekday.index(found_dict['a'].lower()) |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 346 | elif group_key == 'w': |
| 347 | weekday = int(found_dict['w']) |
| 348 | if weekday == 0: |
| 349 | weekday = 6 |
| 350 | else: |
| 351 | weekday -= 1 |
| 352 | elif group_key == 'j': |
| 353 | julian = int(found_dict['j']) |
| 354 | elif group_key == 'Z': |
Brett Cannon | 172d9ef | 2003-05-11 06:23:36 +0000 | [diff] [blame] | 355 | # Since -1 is default value only need to worry about setting tz if |
| 356 | # it can be something other than -1. |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 357 | found_zone = found_dict['Z'].lower() |
Brett Cannon | cde2200 | 2003-07-03 19:59:57 +0000 | [diff] [blame] | 358 | if locale_time.timezone[0] == locale_time.timezone[1] and \ |
| 359 | time.daylight: |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 360 | pass #Deals with bad locale setup where timezone info is |
| 361 | # the same; first found on FreeBSD 4.4. |
Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 362 | else: |
| 363 | for value, tz_values in enumerate(locale_time.timezone): |
| 364 | if found_zone in tz_values: |
| 365 | tz = value |
Raymond Hettinger | 1fdb633 | 2003-03-09 07:44:42 +0000 | [diff] [blame] | 366 | # Cannot pre-calculate datetime_date() since can change in Julian |
| 367 | #calculation and thus could have different value for the day of the week |
| 368 | #calculation |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 369 | if julian == -1: |
Raymond Hettinger | 1fdb633 | 2003-03-09 07:44:42 +0000 | [diff] [blame] | 370 | # Need to add 1 to result since first day of the year is 1, not 0. |
| 371 | julian = datetime_date(year, month, day).toordinal() - \ |
| 372 | datetime_date(year, 1, 1).toordinal() + 1 |
| 373 | else: # Assume that if they bothered to include Julian day it will |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 374 | #be accurate |
Raymond Hettinger | 1fdb633 | 2003-03-09 07:44:42 +0000 | [diff] [blame] | 375 | datetime_result = datetime_date.fromordinal((julian - 1) + datetime_date(year, 1, 1).toordinal()) |
| 376 | year = datetime_result.year |
| 377 | month = datetime_result.month |
| 378 | day = datetime_result.day |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 379 | if weekday == -1: |
Raymond Hettinger | 1fdb633 | 2003-03-09 07:44:42 +0000 | [diff] [blame] | 380 | weekday = datetime_date(year, month, day).weekday() |
Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 381 | return time.struct_time((year, month, day, |
| 382 | hour, minute, second, |
| 383 | weekday, julian, tz)) |