| 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 | 
| Brett Cannon | 4f35c71 | 2004-10-06 02:11:37 +0000 | [diff] [blame] | 18 | from re import escape as re_escape | 
| Raymond Hettinger | 1fdb633 | 2003-03-09 07:44:42 +0000 | [diff] [blame] | 19 | from datetime import date as datetime_date | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 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 | __all__ = ['strptime'] | 
 | 26 |  | 
| Tim Peters | 80cebc1 | 2003-01-19 04:40:44 +0000 | [diff] [blame] | 27 | def _getlang(): | 
 | 28 |     # Figure out what the current language is set to. | 
| Brett Cannon | 175ddb5 | 2003-07-24 06:27:17 +0000 | [diff] [blame] | 29 |     return locale.getlocale(locale.LC_TIME) | 
| Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 30 |  | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 31 | class LocaleTime(object): | 
 | 32 |     """Stores and handles locale-specific information related to time. | 
 | 33 |  | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 34 |     ATTRIBUTES: | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 35 |         f_weekday -- full weekday names (7-item list) | 
 | 36 |         a_weekday -- abbreviated weekday names (7-item list) | 
| Brett Cannon | f5c96fb | 2003-08-08 01:53:05 +0000 | [diff] [blame] | 37 |         f_month -- full month names (13-item list; dummy value in [0], which | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 38 |                     is added by code) | 
| Brett Cannon | f5c96fb | 2003-08-08 01:53:05 +0000 | [diff] [blame] | 39 |         a_month -- abbreviated month names (13-item list, dummy value in | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 40 |                     [0], which is added by code) | 
 | 41 |         am_pm -- AM/PM representation (2-item list) | 
 | 42 |         LC_date_time -- format string for date/time representation (string) | 
 | 43 |         LC_date -- format string for date representation (string) | 
 | 44 |         LC_time -- format string for time representation (string) | 
| Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 45 |         timezone -- daylight- and non-daylight-savings timezone representation | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 46 |                     (2-item list of sets) | 
 | 47 |         lang -- Language used by instance (2-item tuple) | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 48 |     """ | 
 | 49 |  | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 50 |     def __init__(self): | 
 | 51 |         """Set all attributes. | 
| Raymond Hettinger | 6b59f5f | 2003-10-16 05:53:16 +0000 | [diff] [blame] | 52 |  | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 53 |         Order of methods called matters for dependency reasons. | 
 | 54 |  | 
 | 55 |         The locale language is set at the offset and then checked again before | 
 | 56 |         exiting.  This is to make sure that the attributes were not set with a | 
 | 57 |         mix of information from more than one locale.  This would most likely | 
 | 58 |         happen when using threads where one thread calls a locale-dependent | 
 | 59 |         function while another thread changes the locale while the function in | 
 | 60 |         the other thread is still running.  Proper coding would call for | 
 | 61 |         locks to prevent changing the locale while locale-dependent code is | 
 | 62 |         running.  The check here is done in case someone does not think about | 
 | 63 |         doing this. | 
| Brett Cannon | 5187a3b | 2003-08-11 07:24:05 +0000 | [diff] [blame] | 64 |  | 
 | 65 |         Only other possible issue is if someone changed the timezone and did | 
 | 66 |         not call tz.tzset .  That is an issue for the programmer, though, | 
 | 67 |         since changing the timezone is worthless without that call. | 
| Raymond Hettinger | 6b59f5f | 2003-10-16 05:53:16 +0000 | [diff] [blame] | 68 |  | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 69 |         """ | 
 | 70 |         self.lang = _getlang() | 
 | 71 |         self.__calc_weekday() | 
 | 72 |         self.__calc_month() | 
 | 73 |         self.__calc_am_pm() | 
 | 74 |         self.__calc_timezone() | 
 | 75 |         self.__calc_date_time() | 
 | 76 |         if _getlang() != self.lang: | 
 | 77 |             raise ValueError("locale changed during initialization") | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 78 |  | 
 | 79 |     def __pad(self, seq, front): | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 80 |         # 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] | 81 |         seq = list(seq) | 
| Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 82 |         if front: | 
 | 83 |             seq.insert(0, '') | 
 | 84 |         else: | 
 | 85 |             seq.append('') | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 86 |         return seq | 
 | 87 |  | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 88 |     def __calc_weekday(self): | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 89 |         # Set self.a_weekday and self.f_weekday using the calendar | 
| Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 90 |         # module. | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 91 |         a_weekday = [calendar.day_abbr[i].lower() for i in range(7)] | 
 | 92 |         f_weekday = [calendar.day_name[i].lower() for i in range(7)] | 
 | 93 |         self.a_weekday = a_weekday | 
 | 94 |         self.f_weekday = f_weekday | 
| Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 95 |  | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 96 |     def __calc_month(self): | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 97 |         # Set self.f_month and self.a_month using the calendar module. | 
 | 98 |         a_month = [calendar.month_abbr[i].lower() for i in range(13)] | 
 | 99 |         f_month = [calendar.month_name[i].lower() for i in range(13)] | 
 | 100 |         self.a_month = a_month | 
 | 101 |         self.f_month = f_month | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 102 |  | 
 | 103 |     def __calc_am_pm(self): | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 104 |         # Set self.am_pm by using time.strftime(). | 
| Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 105 |  | 
| Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 106 |         # The magic date (1999,3,17,hour,44,55,2,76,0) is not really that | 
 | 107 |         # magical; just happened to have used it everywhere else where a | 
 | 108 |         # static date was needed. | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 109 |         am_pm = [] | 
| Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 110 |         for hour in (1, 22): | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 111 |             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] | 112 |             am_pm.append(time.strftime("%p", time_tuple).lower()) | 
 | 113 |         self.am_pm = am_pm | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 114 |  | 
 | 115 |     def __calc_date_time(self): | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 116 |         # Set self.date_time, self.date, & self.time by using | 
| Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 117 |         # time.strftime(). | 
| Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 118 |  | 
| Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 119 |         # Use (1999,3,17,22,44,55,2,76,0) for magic date because the amount of | 
 | 120 |         # overloaded numbers is minimized.  The order in which searches for | 
 | 121 |         # values within the format string is very important; it eliminates | 
 | 122 |         # possible ambiguity for what something represents. | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 123 |         time_tuple = time.struct_time((1999,3,17,22,44,55,2,76,0)) | 
 | 124 |         date_time = [None, None, None] | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 125 |         date_time[0] = time.strftime("%c", time_tuple).lower() | 
 | 126 |         date_time[1] = time.strftime("%x", time_tuple).lower() | 
 | 127 |         date_time[2] = time.strftime("%X", time_tuple).lower() | 
 | 128 |         replacement_pairs = [('%', '%%'), (self.f_weekday[2], '%A'), | 
| Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 129 |                     (self.f_month[3], '%B'), (self.a_weekday[2], '%a'), | 
 | 130 |                     (self.a_month[3], '%b'), (self.am_pm[1], '%p'), | 
| Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 131 |                     ('1999', '%Y'), ('99', '%y'), ('22', '%H'), | 
 | 132 |                     ('44', '%M'), ('55', '%S'), ('76', '%j'), | 
 | 133 |                     ('17', '%d'), ('03', '%m'), ('3', '%m'), | 
 | 134 |                     # '3' needed for when no leading zero. | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 135 |                     ('2', '%w'), ('10', '%I')] | 
 | 136 |         replacement_pairs.extend([(tz, "%Z") for tz_values in self.timezone | 
 | 137 |                                                 for tz in tz_values]) | 
 | 138 |         for offset,directive in ((0,'%c'), (1,'%x'), (2,'%X')): | 
 | 139 |             current_format = date_time[offset] | 
 | 140 |             for old, new in replacement_pairs: | 
| Jack Jansen | 62fe755 | 2003-01-15 22:59:39 +0000 | [diff] [blame] | 141 |                 # Must deal with possible lack of locale info | 
 | 142 |                 # manifesting itself as the empty string (e.g., Swedish's | 
 | 143 |                 # lack of AM/PM info) or a platform returning a tuple of empty | 
 | 144 |                 # strings (e.g., MacOS 9 having timezone as ('','')). | 
 | 145 |                 if old: | 
| Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 146 |                     current_format = current_format.replace(old, new) | 
| Brett Cannon | f1b2ba6 | 2005-08-29 18:25:55 +0000 | [diff] [blame] | 147 |             # If %W is used, then Sunday, 2005-01-03 will fall on week 0 since | 
 | 148 |             # 2005-01-03 occurs before the first Monday of the year.  Otherwise | 
 | 149 |             # %U is used. | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 150 |             time_tuple = time.struct_time((1999,1,3,1,1,1,6,3,0)) | 
| Brett Cannon | 6e372d1 | 2005-08-27 19:25:59 +0000 | [diff] [blame] | 151 |             if '00' in time.strftime(directive, time_tuple): | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 152 |                 U_W = '%W' | 
| Brett Cannon | f1b2ba6 | 2005-08-29 18:25:55 +0000 | [diff] [blame] | 153 |             else: | 
 | 154 |                 U_W = '%U' | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 155 |             date_time[offset] = current_format.replace('11', U_W) | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 156 |         self.LC_date_time = date_time[0] | 
 | 157 |         self.LC_date = date_time[1] | 
| Raymond Hettinger | 6b59f5f | 2003-10-16 05:53:16 +0000 | [diff] [blame] | 158 |         self.LC_time = date_time[2] | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 159 |  | 
 | 160 |     def __calc_timezone(self): | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 161 |         # Set self.timezone by using time.tzname. | 
| Brett Cannon | 5187a3b | 2003-08-11 07:24:05 +0000 | [diff] [blame] | 162 |         # Do not worry about possibility of time.tzname[0] == timetzname[1] | 
 | 163 |         # and time.daylight; handle that in strptime . | 
| Brett Cannon | abe8eb0 | 2003-05-13 20:28:15 +0000 | [diff] [blame] | 164 |         try: | 
 | 165 |             time.tzset() | 
 | 166 |         except AttributeError: | 
 | 167 |             pass | 
| Raymond Hettinger | a690a99 | 2003-11-16 16:17:49 +0000 | [diff] [blame] | 168 |         no_saving = frozenset(["utc", "gmt", time.tzname[0].lower()]) | 
| Brett Cannon | 172d9ef | 2003-05-11 06:23:36 +0000 | [diff] [blame] | 169 |         if time.daylight: | 
| Raymond Hettinger | a690a99 | 2003-11-16 16:17:49 +0000 | [diff] [blame] | 170 |             has_saving = frozenset([time.tzname[1].lower()]) | 
| Brett Cannon | 172d9ef | 2003-05-11 06:23:36 +0000 | [diff] [blame] | 171 |         else: | 
| Raymond Hettinger | a690a99 | 2003-11-16 16:17:49 +0000 | [diff] [blame] | 172 |             has_saving = frozenset() | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 173 |         self.timezone = (no_saving, has_saving) | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 174 |  | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 175 |  | 
 | 176 | class TimeRE(dict): | 
 | 177 |     """Handle conversion from format directives to regexes.""" | 
 | 178 |  | 
| Brett Cannon | 2c24d42 | 2003-07-24 20:02:28 +0000 | [diff] [blame] | 179 |     def __init__(self, locale_time=None): | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 180 |         """Create keys/values. | 
| Raymond Hettinger | 6b59f5f | 2003-10-16 05:53:16 +0000 | [diff] [blame] | 181 |  | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 182 |         Order of execution is important for dependency reasons. | 
| Raymond Hettinger | 6b59f5f | 2003-10-16 05:53:16 +0000 | [diff] [blame] | 183 |  | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 184 |         """ | 
 | 185 |         if locale_time: | 
 | 186 |             self.locale_time = locale_time | 
 | 187 |         else: | 
 | 188 |             self.locale_time = LocaleTime() | 
| Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 189 |         base = super() | 
| Neal Norwitz | 5efc50d | 2002-12-30 22:23:12 +0000 | [diff] [blame] | 190 |         base.__init__({ | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 191 |             # 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] | 192 |             '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] | 193 |             'H': r"(?P<H>2[0-3]|[0-1]\d|\d)", | 
| Neal Norwitz | 5efc50d | 2002-12-30 22:23:12 +0000 | [diff] [blame] | 194 |             'I': r"(?P<I>1[0-2]|0[1-9]|[1-9])", | 
 | 195 |             '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])", | 
 | 196 |             '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] | 197 |             'M': r"(?P<M>[0-5]\d|\d)", | 
 | 198 |             'S': r"(?P<S>6[0-1]|[0-5]\d|\d)", | 
 | 199 |             'U': r"(?P<U>5[0-3]|[0-4]\d|\d)", | 
 | 200 |             'w': r"(?P<w>[0-6])", | 
| Neal Norwitz | 5efc50d | 2002-12-30 22:23:12 +0000 | [diff] [blame] | 201 |             # W is set below by using 'U' | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 202 |             'y': r"(?P<y>\d\d)", | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 203 |             #XXX: Does 'Y' need to worry about having less or more than | 
 | 204 |             #     4 digits? | 
 | 205 |             'Y': r"(?P<Y>\d\d\d\d)", | 
 | 206 |             'A': self.__seqToRE(self.locale_time.f_weekday, 'A'), | 
 | 207 |             'a': self.__seqToRE(self.locale_time.a_weekday, 'a'), | 
 | 208 |             'B': self.__seqToRE(self.locale_time.f_month[1:], 'B'), | 
 | 209 |             'b': self.__seqToRE(self.locale_time.a_month[1:], 'b'), | 
 | 210 |             'p': self.__seqToRE(self.locale_time.am_pm, 'p'), | 
| Brett Cannon | f7948c2 | 2004-10-06 02:23:14 +0000 | [diff] [blame] | 211 |             'Z': self.__seqToRE((tz for tz_names in self.locale_time.timezone | 
 | 212 |                                         for tz in tz_names), | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 213 |                                 'Z'), | 
 | 214 |             '%': '%'}) | 
| Brett Cannon | 8abcc5d | 2004-10-18 01:37:57 +0000 | [diff] [blame] | 215 |         base.__setitem__('W', base.__getitem__('U').replace('U', 'W')) | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 216 |         base.__setitem__('c', self.pattern(self.locale_time.LC_date_time)) | 
 | 217 |         base.__setitem__('x', self.pattern(self.locale_time.LC_date)) | 
 | 218 |         base.__setitem__('X', self.pattern(self.locale_time.LC_time)) | 
| Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 219 |  | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 220 |     def __seqToRE(self, to_convert, directive): | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 221 |         """Convert a list to a regex string for matching a directive. | 
| Raymond Hettinger | 6b59f5f | 2003-10-16 05:53:16 +0000 | [diff] [blame] | 222 |  | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 223 |         Want possible matching values to be from longest to shortest.  This | 
 | 224 |         prevents the possibility of a match occuring for a value that also | 
 | 225 |         a substring of a larger value that should have matched (e.g., 'abc' | 
 | 226 |         matching when 'abcdef' should have been the match). | 
| Raymond Hettinger | 6b59f5f | 2003-10-16 05:53:16 +0000 | [diff] [blame] | 227 |  | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 228 |         """ | 
| Brett Cannon | ffa5cf9 | 2004-10-06 22:48:58 +0000 | [diff] [blame] | 229 |         to_convert = sorted(to_convert, key=len, reverse=True) | 
| Jack Jansen | 62fe755 | 2003-01-15 22:59:39 +0000 | [diff] [blame] | 230 |         for value in to_convert: | 
 | 231 |             if value != '': | 
 | 232 |                 break | 
 | 233 |         else: | 
 | 234 |             return '' | 
| Brett Cannon | 4f35c71 | 2004-10-06 02:11:37 +0000 | [diff] [blame] | 235 |         regex = '|'.join(re_escape(stuff) for stuff in to_convert) | 
| Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 236 |         regex = '(?P<%s>%s' % (directive, regex) | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 237 |         return '%s)' % regex | 
 | 238 |  | 
 | 239 |     def pattern(self, format): | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 240 |         """Return regex pattern for the format string. | 
| 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 |         Need to make sure that any characters that might be interpreted as | 
| Brett Cannon | 5187a3b | 2003-08-11 07:24:05 +0000 | [diff] [blame] | 243 |         regex syntax are escaped. | 
| Tim Peters | 0eadaac | 2003-04-24 16:02:54 +0000 | [diff] [blame] | 244 |  | 
| Brett Cannon | 1e91d8e | 2003-04-19 04:00:56 +0000 | [diff] [blame] | 245 |         """ | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 246 |         processed_format = '' | 
| Brett Cannon | 1e91d8e | 2003-04-19 04:00:56 +0000 | [diff] [blame] | 247 |         # The sub() call escapes all characters that might be misconstrued | 
| Brett Cannon | 4f35c71 | 2004-10-06 02:11:37 +0000 | [diff] [blame] | 248 |         # as regex syntax.  Cannot use re.escape since we have to deal with | 
 | 249 |         # format directives (%m, etc.). | 
| Brett Cannon | 953c6f5 | 2003-08-29 02:28:54 +0000 | [diff] [blame] | 250 |         regex_chars = re_compile(r"([\\.^$*+?\(\){}\[\]|])") | 
| Brett Cannon | 1e91d8e | 2003-04-19 04:00:56 +0000 | [diff] [blame] | 251 |         format = regex_chars.sub(r"\\\1", format) | 
| Tim Peters | 80cebc1 | 2003-01-19 04:40:44 +0000 | [diff] [blame] | 252 |         whitespace_replacement = re_compile('\s+') | 
| Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 253 |         format = whitespace_replacement.sub('\s+', format) | 
| Raymond Hettinger | bac788a | 2004-05-04 09:21:43 +0000 | [diff] [blame] | 254 |         while '%' in format: | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 255 |             directive_index = format.index('%')+1 | 
| Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 256 |             processed_format = "%s%s%s" % (processed_format, | 
| Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 257 |                                            format[:directive_index-1], | 
 | 258 |                                            self[format[directive_index]]) | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 259 |             format = format[directive_index+1:] | 
 | 260 |         return "%s%s" % (processed_format, format) | 
 | 261 |  | 
 | 262 |     def compile(self, format): | 
 | 263 |         """Return a compiled re object for the format string.""" | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 264 |         return re_compile(self.pattern(format), IGNORECASE) | 
 | 265 |  | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 266 | _cache_lock = _thread_allocate_lock() | 
 | 267 | # DO NOT modify _TimeRE_cache or _regex_cache without acquiring the cache lock | 
 | 268 | # first! | 
 | 269 | _TimeRE_cache = TimeRE() | 
| Brett Cannon | 5187a3b | 2003-08-11 07:24:05 +0000 | [diff] [blame] | 270 | _CACHE_MAX_SIZE = 5 # Max number of regexes stored in _regex_cache | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 271 | _regex_cache = {} | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 272 |  | 
| Thomas Wouters | 9fe394c | 2007-02-05 01:24:16 +0000 | [diff] [blame] | 273 | def _calc_julian_from_U_or_W(year, week_of_year, day_of_week, week_starts_Mon): | 
 | 274 |     """Calculate the Julian day based on the year, week of the year, and day of | 
 | 275 |     the week, with week_start_day representing whether the week of the year | 
 | 276 |     assumes the week starts on Sunday or Monday (6 or 0).""" | 
 | 277 |     first_weekday = datetime_date(year, 1, 1).weekday() | 
 | 278 |     # If we are dealing with the %U directive (week starts on Sunday), it's | 
 | 279 |     # easier to just shift the view to Sunday being the first day of the | 
 | 280 |     # week. | 
 | 281 |     if not week_starts_Mon: | 
 | 282 |         first_weekday = (first_weekday + 1) % 7 | 
 | 283 |         day_of_week = (day_of_week + 1) % 7 | 
 | 284 |     # Need to watch out for a week 0 (when the first day of the year is not | 
 | 285 |     # the same as that specified by %U or %W). | 
 | 286 |     week_0_length = (7 - first_weekday) % 7 | 
 | 287 |     if week_of_year == 0: | 
 | 288 |         return 1 + day_of_week - first_weekday | 
 | 289 |     else: | 
 | 290 |         days_to_week = week_0_length + (7 * (week_of_year - 1)) | 
 | 291 |         return 1 + days_to_week + day_of_week | 
 | 292 |  | 
 | 293 |  | 
| Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 294 | def strptime(data_string, format="%a %b %d %H:%M:%S %Y"): | 
| Brett Cannon | 5187a3b | 2003-08-11 07:24:05 +0000 | [diff] [blame] | 295 |     """Return a time struct based on the input string and the format string.""" | 
| Brett Cannon | a783d06 | 2005-09-15 02:34:56 +0000 | [diff] [blame] | 296 |     global _TimeRE_cache, _regex_cache | 
| Thomas Wouters | 9fe394c | 2007-02-05 01:24:16 +0000 | [diff] [blame] | 297 |     with _cache_lock: | 
| Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 298 |         if _getlang() != _TimeRE_cache.locale_time.lang: | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 299 |             _TimeRE_cache = TimeRE() | 
| Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 300 |             _regex_cache.clear() | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 301 |         if len(_regex_cache) > _CACHE_MAX_SIZE: | 
 | 302 |             _regex_cache.clear() | 
| Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 303 |         locale_time = _TimeRE_cache.locale_time | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 304 |         format_regex = _regex_cache.get(format) | 
 | 305 |         if not format_regex: | 
| Brett Cannon | 5d0bf94 | 2005-11-02 23:04:26 +0000 | [diff] [blame] | 306 |             try: | 
| Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 307 |                 format_regex = _TimeRE_cache.compile(format) | 
| Brett Cannon | 5d0bf94 | 2005-11-02 23:04:26 +0000 | [diff] [blame] | 308 |             # KeyError raised when a bad format is found; can be specified as | 
 | 309 |             # \\, in which case it was a stray % but with a space after it | 
| Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 310 |             except KeyError as err: | 
| Brett Cannon | 5d0bf94 | 2005-11-02 23:04:26 +0000 | [diff] [blame] | 311 |                 bad_directive = err.args[0] | 
 | 312 |                 if bad_directive == "\\": | 
 | 313 |                     bad_directive = "%" | 
 | 314 |                 del err | 
 | 315 |                 raise ValueError("'%s' is a bad directive in format '%s'" % | 
 | 316 |                                     (bad_directive, format)) | 
 | 317 |             # IndexError only occurs when the format string is "%" | 
 | 318 |             except IndexError: | 
 | 319 |                 raise ValueError("stray %% in format '%s'" % format) | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 320 |             _regex_cache[format] = format_regex | 
| Tim Peters | 80cebc1 | 2003-01-19 04:40:44 +0000 | [diff] [blame] | 321 |     found = format_regex.match(data_string) | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 322 |     if not found: | 
| Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 323 |         raise ValueError("time data %r does not match format %r" % | 
| Raymond Hettinger | 4a6302b | 2003-07-13 01:31:38 +0000 | [diff] [blame] | 324 |                          (data_string, format)) | 
| Brett Cannon | 2b6dfec | 2003-04-28 21:30:13 +0000 | [diff] [blame] | 325 |     if len(data_string) != found.end(): | 
 | 326 |         raise ValueError("unconverted data remains: %s" % | 
 | 327 |                           data_string[found.end():]) | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 328 |     year = 1900 | 
 | 329 |     month = day = 1 | 
 | 330 |     hour = minute = second = 0 | 
 | 331 |     tz = -1 | 
| Brett Cannon | 8dc25ad | 2004-10-18 01:47:46 +0000 | [diff] [blame] | 332 |     # Default to -1 to signify that values not known; not critical to have, | 
 | 333 |     # though | 
| Brett Cannon | 8abcc5d | 2004-10-18 01:37:57 +0000 | [diff] [blame] | 334 |     week_of_year = -1 | 
 | 335 |     week_of_year_start = -1 | 
| Brett Cannon | 8dc25ad | 2004-10-18 01:47:46 +0000 | [diff] [blame] | 336 |     # weekday and julian defaulted to -1 so as to signal need to calculate | 
 | 337 |     # values | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 338 |     weekday = julian = -1 | 
 | 339 |     found_dict = found.groupdict() | 
| Guido van Rossum | cc2b016 | 2007-02-11 06:12:03 +0000 | [diff] [blame] | 340 |     for group_key in found_dict.keys(): | 
| Brett Cannon | 8abcc5d | 2004-10-18 01:37:57 +0000 | [diff] [blame] | 341 |         # Directives not explicitly handled below: | 
 | 342 |         #   c, x, X | 
 | 343 |         #      handled by making out of other directives | 
 | 344 |         #   U, W | 
 | 345 |         #      worthless without day of the week | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 346 |         if group_key == 'y': | 
 | 347 |             year = int(found_dict['y']) | 
 | 348 |             # Open Group specification for strptime() states that a %y | 
 | 349 |             #value in the range of [00, 68] is in the century 2000, while | 
 | 350 |             #[69,99] is in the century 1900 | 
 | 351 |             if year <= 68: | 
 | 352 |                 year += 2000 | 
 | 353 |             else: | 
 | 354 |                 year += 1900 | 
 | 355 |         elif group_key == 'Y': | 
 | 356 |             year = int(found_dict['Y']) | 
 | 357 |         elif group_key == 'm': | 
 | 358 |             month = int(found_dict['m']) | 
 | 359 |         elif group_key == 'B': | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 360 |             month = locale_time.f_month.index(found_dict['B'].lower()) | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 361 |         elif group_key == 'b': | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 362 |             month = locale_time.a_month.index(found_dict['b'].lower()) | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 363 |         elif group_key == 'd': | 
 | 364 |             day = int(found_dict['d']) | 
| Neal Norwitz | 77290f2 | 2003-06-29 04:16:49 +0000 | [diff] [blame] | 365 |         elif group_key == 'H': | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 366 |             hour = int(found_dict['H']) | 
 | 367 |         elif group_key == 'I': | 
 | 368 |             hour = int(found_dict['I']) | 
 | 369 |             ampm = found_dict.get('p', '').lower() | 
 | 370 |             # 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] | 371 |             if ampm in ('', locale_time.am_pm[0]): | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 372 |                 # We're in AM so the hour is correct unless we're | 
 | 373 |                 # looking at 12 midnight. | 
 | 374 |                 # 12 midnight == 12 AM == hour 0 | 
 | 375 |                 if hour == 12: | 
 | 376 |                     hour = 0 | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 377 |             elif ampm == locale_time.am_pm[1]: | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 378 |                 # We're in PM so we need to add 12 to the hour unless | 
 | 379 |                 # we're looking at 12 noon. | 
 | 380 |                 # 12 noon == 12 PM == hour 12 | 
 | 381 |                 if hour != 12: | 
 | 382 |                     hour += 12 | 
 | 383 |         elif group_key == 'M': | 
 | 384 |             minute = int(found_dict['M']) | 
 | 385 |         elif group_key == 'S': | 
 | 386 |             second = int(found_dict['S']) | 
 | 387 |         elif group_key == 'A': | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 388 |             weekday = locale_time.f_weekday.index(found_dict['A'].lower()) | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 389 |         elif group_key == 'a': | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 390 |             weekday = locale_time.a_weekday.index(found_dict['a'].lower()) | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 391 |         elif group_key == 'w': | 
 | 392 |             weekday = int(found_dict['w']) | 
 | 393 |             if weekday == 0: | 
 | 394 |                 weekday = 6 | 
 | 395 |             else: | 
 | 396 |                 weekday -= 1 | 
 | 397 |         elif group_key == 'j': | 
 | 398 |             julian = int(found_dict['j']) | 
| Brett Cannon | 8abcc5d | 2004-10-18 01:37:57 +0000 | [diff] [blame] | 399 |         elif group_key in ('U', 'W'): | 
 | 400 |             week_of_year = int(found_dict[group_key]) | 
 | 401 |             if group_key == 'U': | 
| Thomas Wouters | 9fe394c | 2007-02-05 01:24:16 +0000 | [diff] [blame] | 402 |                 # U starts week on Sunday. | 
| Brett Cannon | 8abcc5d | 2004-10-18 01:37:57 +0000 | [diff] [blame] | 403 |                 week_of_year_start = 6 | 
 | 404 |             else: | 
| Thomas Wouters | 9fe394c | 2007-02-05 01:24:16 +0000 | [diff] [blame] | 405 |                 # W starts week on Monday. | 
| Brett Cannon | 8abcc5d | 2004-10-18 01:37:57 +0000 | [diff] [blame] | 406 |                 week_of_year_start = 0 | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 407 |         elif group_key == 'Z': | 
| Brett Cannon | 172d9ef | 2003-05-11 06:23:36 +0000 | [diff] [blame] | 408 |             # Since -1 is default value only need to worry about setting tz if | 
 | 409 |             # it can be something other than -1. | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 410 |             found_zone = found_dict['Z'].lower() | 
| Brett Cannon | 5187a3b | 2003-08-11 07:24:05 +0000 | [diff] [blame] | 411 |             for value, tz_values in enumerate(locale_time.timezone): | 
 | 412 |                 if found_zone in tz_values: | 
 | 413 |                     # Deal with bad locale setup where timezone names are the | 
 | 414 |                     # same and yet time.daylight is true; too ambiguous to | 
 | 415 |                     # be able to tell what timezone has daylight savings | 
| Brett Cannon | 8172ac3 | 2004-03-07 23:16:27 +0000 | [diff] [blame] | 416 |                     if (time.tzname[0] == time.tzname[1] and | 
 | 417 |                        time.daylight and found_zone not in ("utc", "gmt")): | 
| Tim Peters | 58eb11c | 2004-01-18 20:29:55 +0000 | [diff] [blame] | 418 |                         break | 
| Brett Cannon | 5187a3b | 2003-08-11 07:24:05 +0000 | [diff] [blame] | 419 |                     else: | 
| Brett Cannon | 474335c | 2003-08-05 04:02:49 +0000 | [diff] [blame] | 420 |                         tz = value | 
| Brett Cannon | 5187a3b | 2003-08-11 07:24:05 +0000 | [diff] [blame] | 421 |                         break | 
| Brett Cannon | 8abcc5d | 2004-10-18 01:37:57 +0000 | [diff] [blame] | 422 |     # If we know the week of the year and what day of that week, we can figure | 
| Thomas Wouters | 9fe394c | 2007-02-05 01:24:16 +0000 | [diff] [blame] | 423 |     # out the Julian day of the year. | 
| Brett Cannon | 14adbe7 | 2004-10-28 04:49:21 +0000 | [diff] [blame] | 424 |     if julian == -1 and week_of_year != -1 and weekday != -1: | 
| Thomas Wouters | 9fe394c | 2007-02-05 01:24:16 +0000 | [diff] [blame] | 425 |         week_starts_Mon = True if week_of_year_start == 0 else False | 
 | 426 |         julian = _calc_julian_from_U_or_W(year, week_of_year, weekday, | 
 | 427 |                                             week_starts_Mon) | 
| Raymond Hettinger | 1fdb633 | 2003-03-09 07:44:42 +0000 | [diff] [blame] | 428 |     # Cannot pre-calculate datetime_date() since can change in Julian | 
| Thomas Wouters | 9fe394c | 2007-02-05 01:24:16 +0000 | [diff] [blame] | 429 |     # calculation and thus could have different value for the day of the week | 
 | 430 |     # calculation. | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 431 |     if julian == -1: | 
| Raymond Hettinger | 1fdb633 | 2003-03-09 07:44:42 +0000 | [diff] [blame] | 432 |         # Need to add 1 to result since first day of the year is 1, not 0. | 
 | 433 |         julian = datetime_date(year, month, day).toordinal() - \ | 
 | 434 |                   datetime_date(year, 1, 1).toordinal() + 1 | 
 | 435 |     else:  # Assume that if they bothered to include Julian day it will | 
| Thomas Wouters | 9fe394c | 2007-02-05 01:24:16 +0000 | [diff] [blame] | 436 |            # be accurate. | 
| Raymond Hettinger | 1fdb633 | 2003-03-09 07:44:42 +0000 | [diff] [blame] | 437 |         datetime_result = datetime_date.fromordinal((julian - 1) + datetime_date(year, 1, 1).toordinal()) | 
 | 438 |         year = datetime_result.year | 
 | 439 |         month = datetime_result.month | 
 | 440 |         day = datetime_result.day | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 441 |     if weekday == -1: | 
| Raymond Hettinger | 1fdb633 | 2003-03-09 07:44:42 +0000 | [diff] [blame] | 442 |         weekday = datetime_date(year, month, day).weekday() | 
| Tim Peters | 08e5427 | 2003-01-18 03:53:49 +0000 | [diff] [blame] | 443 |     return time.struct_time((year, month, day, | 
 | 444 |                              hour, minute, second, | 
 | 445 |                              weekday, julian, tz)) |