Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 1 | """Strptime-related classes and functions. |
| 2 | |
| 3 | CLASSES: |
| 4 | LocaleTime -- Discovers and/or 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 |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 6 | time information as is returned by time.strftime() |
| 7 | |
| 8 | FUNCTIONS: |
| 9 | firstjulian -- Calculates the Julian date up to the first of the specified |
| 10 | year |
| 11 | gregorian -- Calculates the Gregorian date based on the Julian day and |
| 12 | year |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 13 | julianday -- Calculates the Julian day since the first of the year based |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 14 | on the Gregorian date |
| 15 | dayofweek -- Calculates the day of the week from the Gregorian date. |
| 16 | strptime -- Calculates the time struct represented by the passed-in string |
| 17 | |
| 18 | Requires Python 2.2.1 or higher. |
| 19 | Can be used in Python 2.2 if the following line is added: |
| 20 | >>> True = 1; False = 0 |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 21 | """ |
| 22 | import time |
| 23 | import locale |
| 24 | import calendar |
| 25 | from re import compile as re_compile |
| 26 | from re import IGNORECASE |
| 27 | from string import whitespace as whitespace_string |
| 28 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 29 | __author__ = "Brett Cannon" |
| 30 | __email__ = "drifty@bigfoot.com" |
| 31 | |
| 32 | __all__ = ['strptime'] |
| 33 | |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 34 | RegexpType = type(re_compile('')) |
| 35 | |
| 36 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 37 | class LocaleTime(object): |
| 38 | """Stores and handles locale-specific information related to time. |
| 39 | |
| 40 | ATTRIBUTES (all read-only after instance creation! Instance variables that |
| 41 | store the values have mangled names): |
| 42 | f_weekday -- full weekday names (7-item list) |
| 43 | a_weekday -- abbreviated weekday names (7-item list) |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 44 | 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] | 45 | is added by code) |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 46 | a_month -- abbreviated weekday names (13-item list, dummy value in |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 47 | [0], which is added by code) |
| 48 | am_pm -- AM/PM representation (2-item list) |
| 49 | LC_date_time -- format string for date/time representation (string) |
| 50 | LC_date -- format string for date representation (string) |
| 51 | LC_time -- format string for time representation (string) |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 52 | timezone -- daylight- and non-daylight-savings timezone representation |
| 53 | (3-item list; code tacks on blank item at end for |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 54 | possible lack of timezone such as UTC) |
| 55 | lang -- Language used by instance (string) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 56 | """ |
| 57 | |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 58 | def __init__(self, f_weekday=None, a_weekday=None, f_month=None, |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 59 | a_month=None, am_pm=None, LC_date_time=None, LC_time=None, |
| 60 | LC_date=None, timezone=None, lang=None): |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 61 | """Optionally set attributes with passed-in values.""" |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 62 | if f_weekday is None: |
| 63 | self.__f_weekday = None |
| 64 | elif len(f_weekday) == 7: |
| 65 | self.__f_weekday = list(f_weekday) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 66 | else: |
| 67 | raise TypeError("full weekday names must be a 7-item sequence") |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 68 | if a_weekday is None: |
| 69 | self.__a_weekday = None |
| 70 | elif len(a_weekday) == 7: |
| 71 | self.__a_weekday = list(a_weekday) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 72 | else: |
| 73 | raise TypeError( |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 74 | "abbreviated weekday names must be a 7-item sequence") |
| 75 | if f_month is None: |
| 76 | self.__f_month = None |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 77 | elif len(f_month) == 12: |
| 78 | self.__f_month = self.__pad(f_month, True) |
| 79 | else: |
| 80 | raise TypeError("full month names must be a 12-item sequence") |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 81 | if a_month is None: |
| 82 | self.__a_month = None |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 83 | elif len(a_month) == 12: |
| 84 | self.__a_month = self.__pad(a_month, True) |
| 85 | else: |
| 86 | raise TypeError( |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 87 | "abbreviated month names must be a 12-item sequence") |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 88 | if am_pm is None: |
| 89 | self.__am_pm = None |
| 90 | elif len(am_pm) == 2: |
| 91 | self.__am_pm = am_pm |
| 92 | else: |
| 93 | raise TypeError("AM/PM representation must be a 2-item sequence") |
| 94 | self.__LC_date_time = LC_date_time |
| 95 | self.__LC_time = LC_time |
| 96 | self.__LC_date = LC_date |
| 97 | self.__timezone = timezone |
| 98 | if timezone: |
| 99 | if len(timezone) != 2: |
| 100 | raise TypeError("timezone names must contain 2 items") |
| 101 | else: |
| 102 | self.__timezone = self.__pad(timezone, False) |
| 103 | self.__lang = lang |
| 104 | |
| 105 | def __pad(self, seq, front): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 106 | # Add '' to seq to either front (is True), else the back. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 107 | seq = list(seq) |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 108 | if front: |
| 109 | seq.insert(0, '') |
| 110 | else: |
| 111 | seq.append('') |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 112 | return seq |
| 113 | |
| 114 | def __set_nothing(self, stuff): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 115 | # Raise TypeError when trying to set an attribute. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 116 | raise TypeError("attribute does not support assignment") |
| 117 | |
| 118 | def __get_f_weekday(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 119 | # Fetch self.f_weekday. |
| 120 | if not self.__f_weekday: |
| 121 | self.__calc_weekday() |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 122 | return self.__f_weekday |
| 123 | |
| 124 | def __get_a_weekday(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 125 | # Fetch self.a_weekday. |
| 126 | if not self.__a_weekday: |
| 127 | self.__calc_weekday() |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 128 | return self.__a_weekday |
| 129 | |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 130 | f_weekday = property(__get_f_weekday, __set_nothing, |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 131 | doc="Full weekday names") |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 132 | a_weekday = property(__get_a_weekday, __set_nothing, |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 133 | doc="Abbreviated weekday names") |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 134 | |
| 135 | def __get_f_month(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 136 | # Fetch self.f_month. |
| 137 | if not self.__f_month: |
| 138 | self.__calc_month() |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 139 | return self.__f_month |
| 140 | |
| 141 | def __get_a_month(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 142 | # Fetch self.a_month. |
| 143 | if not self.__a_month: |
| 144 | self.__calc_month() |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 145 | return self.__a_month |
| 146 | |
| 147 | f_month = property(__get_f_month, __set_nothing, |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 148 | doc="Full month names (dummy value at index 0)") |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 149 | a_month = property(__get_a_month, __set_nothing, |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 150 | doc="Abbreviated month names (dummy value at index 0)") |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 151 | |
| 152 | def __get_am_pm(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 153 | # Fetch self.am_pm. |
| 154 | if not self.__am_pm: |
| 155 | self.__calc_am_pm() |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 156 | return self.__am_pm |
| 157 | |
| 158 | am_pm = property(__get_am_pm, __set_nothing, doc="AM/PM representation") |
| 159 | |
| 160 | def __get_timezone(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 161 | # Fetch self.timezone. |
| 162 | if not self.__timezone: |
| 163 | self.__calc_timezone() |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 164 | return self.__timezone |
| 165 | |
| 166 | timezone = property(__get_timezone, __set_nothing, |
| 167 | doc="Timezone representation (dummy value at index 2)") |
| 168 | |
| 169 | def __get_LC_date_time(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 170 | # Fetch self.LC_date_time. |
| 171 | if not self.__LC_date_time: |
| 172 | self.__calc_date_time() |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 173 | return self.__LC_date_time |
| 174 | |
| 175 | def __get_LC_date(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 176 | # Fetch self.LC_date. |
| 177 | if not self.__LC_date: |
| 178 | self.__calc_date_time() |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 179 | return self.__LC_date |
| 180 | |
| 181 | def __get_LC_time(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 182 | # Fetch self.LC_time. |
| 183 | if not self.__LC_time: |
| 184 | self.__calc_date_time() |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 185 | return self.__LC_time |
| 186 | |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 187 | LC_date_time = property( |
| 188 | __get_LC_date_time, __set_nothing, |
| 189 | doc= |
| 190 | "Format string for locale's date/time representation ('%c' format)") |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 191 | LC_date = property(__get_LC_date, __set_nothing, |
| 192 | doc="Format string for locale's date representation ('%x' format)") |
| 193 | LC_time = property(__get_LC_time, __set_nothing, |
| 194 | doc="Format string for locale's time representation ('%X' format)") |
| 195 | |
| 196 | def __get_lang(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 197 | # Fetch self.lang. |
| 198 | if not self.__lang: |
| 199 | self.__calc_lang() |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 200 | return self.__lang |
| 201 | |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 202 | lang = property(__get_lang, __set_nothing, |
| 203 | doc="Language used for instance") |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 204 | |
| 205 | def __calc_weekday(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 206 | # Set self.__a_weekday and self.__f_weekday using the calendar |
| 207 | # module. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 208 | a_weekday = [calendar.day_abbr[i] for i in range(7)] |
| 209 | f_weekday = [calendar.day_name[i] for i in range(7)] |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 210 | if not self.__a_weekday: |
| 211 | self.__a_weekday = a_weekday |
| 212 | if not self.__f_weekday: |
| 213 | self.__f_weekday = f_weekday |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 214 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 215 | def __calc_month(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 216 | # Set self.__f_month and self.__a_month using the calendar module. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 217 | a_month = [calendar.month_abbr[i] for i in range(13)] |
| 218 | f_month = [calendar.month_name[i] for i in range(13)] |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 219 | if not self.__a_month: |
| 220 | self.__a_month = a_month |
| 221 | if not self.__f_month: |
| 222 | self.__f_month = f_month |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 223 | |
| 224 | def __calc_am_pm(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 225 | # Set self.__am_pm by using time.strftime(). |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 226 | |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 227 | # The magic date (1999,3,17,hour,44,55,2,76,0) is not really that |
| 228 | # magical; just happened to have used it everywhere else where a |
| 229 | # static date was needed. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 230 | am_pm = [] |
| 231 | for hour in (01,22): |
| 232 | time_tuple = time.struct_time((1999,3,17,hour,44,55,2,76,0)) |
| 233 | am_pm.append(time.strftime("%p", time_tuple)) |
| 234 | self.__am_pm = am_pm |
| 235 | |
| 236 | def __calc_date_time(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 237 | # Set self.__date_time, self.__date, & self.__time by using |
| 238 | # time.strftime(). |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 239 | |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 240 | # Use (1999,3,17,22,44,55,2,76,0) for magic date because the amount of |
| 241 | # overloaded numbers is minimized. The order in which searches for |
| 242 | # values within the format string is very important; it eliminates |
| 243 | # possible ambiguity for what something represents. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 244 | time_tuple = time.struct_time((1999,3,17,22,44,55,2,76,0)) |
| 245 | date_time = [None, None, None] |
| 246 | date_time[0] = time.strftime("%c", time_tuple) |
| 247 | date_time[1] = time.strftime("%x", time_tuple) |
| 248 | date_time[2] = time.strftime("%X", time_tuple) |
| 249 | for offset,directive in ((0,'%c'), (1,'%x'), (2,'%X')): |
| 250 | current_format = date_time[offset] |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 251 | for old, new in ( |
| 252 | ('%', '%%'), (self.f_weekday[2], '%A'), |
| 253 | (self.f_month[3], '%B'), (self.a_weekday[2], '%a'), |
| 254 | (self.a_month[3], '%b'), (self.am_pm[1], '%p'), |
| 255 | (self.timezone[0], '%Z'), (self.timezone[1], '%Z'), |
| 256 | ('1999', '%Y'), ('99', '%y'), ('22', '%H'), |
| 257 | ('44', '%M'), ('55', '%S'), ('76', '%j'), |
| 258 | ('17', '%d'), ('03', '%m'), ('3', '%m'), |
| 259 | # '3' needed for when no leading zero. |
| 260 | ('2', '%w'), ('10', '%I')): |
| 261 | try: |
| 262 | # Done this way to deal with possible lack of locale info |
| 263 | # manifesting itself as the empty string (i.e., Swedish's |
| 264 | # lack of AM/PM info). |
| 265 | current_format = current_format.replace(old, new) |
| 266 | except ValueError: |
| 267 | pass |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 268 | time_tuple = time.struct_time((1999,1,3,1,1,1,6,3,0)) |
| 269 | if time.strftime(directive, time_tuple).find('00'): |
| 270 | U_W = '%U' |
| 271 | else: |
| 272 | U_W = '%W' |
| 273 | date_time[offset] = current_format.replace('11', U_W) |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 274 | if not self.__LC_date_time: |
| 275 | self.__LC_date_time = date_time[0] |
| 276 | if not self.__LC_date: |
| 277 | self.__LC_date = date_time[1] |
| 278 | if not self.__LC_time: |
| 279 | self.__LC_time = date_time[2] |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 280 | |
| 281 | def __calc_timezone(self): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 282 | # Set self.__timezone by using time.tzname. |
| 283 | # |
| 284 | # Empty string used for matching when timezone is not used/needed such |
| 285 | # as with UTC. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 286 | self.__timezone = self.__pad(time.tzname, 0) |
| 287 | |
| 288 | def __calc_lang(self): |
Martin v. Löwis | e16e01f | 2002-11-27 08:30:25 +0000 | [diff] [blame] | 289 | # Set self.__lang by using locale.getlocale() or |
| 290 | # locale.getdefaultlocale(). If both turn up empty, set the attribute |
| 291 | # to ''. This is to stop calls to this method and to make sure |
| 292 | # strptime() can produce an re object correctly. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 293 | current_lang = locale.getlocale(locale.LC_TIME)[0] |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 294 | if current_lang: |
| 295 | self.__lang = current_lang |
| 296 | else: |
Martin v. Löwis | e16e01f | 2002-11-27 08:30:25 +0000 | [diff] [blame] | 297 | current_lang = locale.getdefaultlocale()[0] |
| 298 | if current_lang: |
| 299 | self.__lang = current_lang |
| 300 | else: |
| 301 | self.__lang = '' |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 302 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 303 | |
| 304 | class TimeRE(dict): |
| 305 | """Handle conversion from format directives to regexes.""" |
| 306 | |
| 307 | def __init__(self, locale_time=LocaleTime()): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 308 | """Init inst with non-locale regexes and store LocaleTime object.""" |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 309 | super(TimeRE,self).__init__({ |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 310 | # The " \d" option is to make %c from ANSI C work |
| 311 | 'd': r"(?P<d>3[0-1]|[0-2]\d|\d| \d)", |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 312 | 'H': r"(?P<H>2[0-3]|[0-1]\d|\d)", |
| 313 | 'I': r"(?P<I>0\d|1[0-2]|\d)", |
| 314 | 'j': r"(?P<j>(?:3[0-5]\d|6[0-6])|[0-2]\d\d|\d)", |
| 315 | 'm': r"(?P<m>0\d|1[0-2]|\d)", |
| 316 | 'M': r"(?P<M>[0-5]\d|\d)", |
| 317 | 'S': r"(?P<S>6[0-1]|[0-5]\d|\d)", |
| 318 | 'U': r"(?P<U>5[0-3]|[0-4]\d|\d)", |
| 319 | 'w': r"(?P<w>[0-6])", |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 320 | 'W': r"(?P<W>5[0-3]|[0-4]\d|\d)", # Same as U |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 321 | 'y': r"(?P<y>\d\d)", |
| 322 | 'Y': r"(?P<Y>\d\d\d\d)"}) |
| 323 | self.locale_time = locale_time |
| 324 | |
| 325 | def __getitem__(self, fetch): |
| 326 | """Try to fetch regex; if it does not exist, construct it.""" |
| 327 | try: |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 328 | return super(TimeRE, self).__getitem__(fetch) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 329 | except KeyError: |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 330 | constructors = { |
| 331 | 'A': lambda: self.__seqToRE(self.locale_time.f_weekday, fetch), |
| 332 | 'a': lambda: self.__seqToRE(self.locale_time.a_weekday, fetch), |
| 333 | 'B': lambda: self.__seqToRE(self.locale_time.f_month[1:], |
| 334 | fetch), |
| 335 | 'b': lambda: self.__seqToRE(self.locale_time.a_month[1:], |
| 336 | fetch), |
| 337 | 'c': lambda: self.pattern(self.locale_time.LC_date_time), |
| 338 | 'p': lambda: self.__seqToRE(self.locale_time.am_pm, fetch), |
| 339 | 'x': lambda: self.pattern(self.locale_time.LC_date), |
| 340 | 'X': lambda: self.pattern(self.locale_time.LC_time), |
| 341 | 'Z': lambda: self.__seqToRE(self.locale_time.timezone, fetch), |
| 342 | '%': lambda: '%', |
| 343 | } |
| 344 | if fetch in constructors: |
| 345 | self[fetch] = constructors[fetch]() |
| 346 | return self[fetch] |
| 347 | else: |
| 348 | raise |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 349 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 350 | def __seqToRE(self, to_convert, directive): |
| 351 | """Convert a list to a regex string for matching directive.""" |
| 352 | def sorter(a, b): |
| 353 | """Sort based on length. |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 354 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 355 | Done in case for some strange reason that names in the locale only |
| 356 | differ by a suffix and thus want the name with the suffix to match |
| 357 | first. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 358 | """ |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 359 | try: |
| 360 | a_length = len(a) |
| 361 | except TypeError: |
| 362 | a_length = 0 |
| 363 | try: |
| 364 | b_length = len(b) |
| 365 | except TypeError: |
| 366 | b_length = 0 |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 367 | return cmp(b_length, a_length) |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 368 | |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 369 | to_convert = to_convert[:] # Don't want to change value in-place. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 370 | to_convert.sort(sorter) |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 371 | regex = '|'.join(to_convert) |
| 372 | regex = '(?P<%s>%s' % (directive, regex) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 373 | return '%s)' % regex |
| 374 | |
| 375 | def pattern(self, format): |
| 376 | """Return re pattern for the format string.""" |
| 377 | processed_format = '' |
| 378 | for whitespace in whitespace_string: |
| 379 | format = format.replace(whitespace, r'\s*') |
| 380 | while format.find('%') != -1: |
| 381 | directive_index = format.index('%')+1 |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 382 | processed_format = "%s%s%s" % (processed_format, |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 383 | format[:directive_index-1], |
| 384 | self[format[directive_index]]) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 385 | format = format[directive_index+1:] |
| 386 | return "%s%s" % (processed_format, format) |
| 387 | |
| 388 | def compile(self, format): |
| 389 | """Return a compiled re object for the format string.""" |
| 390 | format = "(?#%s)%s" % (self.locale_time.lang,format) |
| 391 | return re_compile(self.pattern(format), IGNORECASE) |
| 392 | |
| 393 | |
| 394 | def strptime(data_string, format="%a %b %d %H:%M:%S %Y"): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 395 | """Return a time struct based on the input data and the format string. |
Tim Peters | 469cdad | 2002-08-08 20:19:19 +0000 | [diff] [blame] | 396 | |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 397 | The format argument may either be a regular expression object compiled by |
| 398 | strptime(), or a format string. If False is passed in for data_string |
| 399 | then the re object calculated for format will be returned. The re object |
| 400 | must be used with the same locale as was used to compile the re object. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 401 | """ |
| 402 | locale_time = LocaleTime() |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 403 | if isinstance(format, RegexpType): |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 404 | if format.pattern.find(locale_time.lang) == -1: |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 405 | raise TypeError("re object not created with same language as " |
| 406 | "LocaleTime instance") |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 407 | else: |
| 408 | compiled_re = format |
| 409 | else: |
| 410 | compiled_re = TimeRE(locale_time).compile(format) |
| 411 | if data_string is False: |
| 412 | return compiled_re |
| 413 | else: |
| 414 | found = compiled_re.match(data_string) |
| 415 | if not found: |
| 416 | raise ValueError("time data did not match format") |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 417 | year = month = day = hour = minute = second = weekday = julian = tz =-1 |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 418 | found_dict = found.groupdict() |
| 419 | for group_key in found_dict.iterkeys(): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 420 | if group_key == 'y': |
| 421 | year = int("%s%s" % |
| 422 | (time.strftime("%Y")[:-2], found_dict['y'])) |
| 423 | elif group_key == 'Y': |
| 424 | year = int(found_dict['Y']) |
| 425 | elif group_key == 'm': |
| 426 | month = int(found_dict['m']) |
| 427 | elif group_key == 'B': |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 428 | month = _insensitiveindex(locale_time.f_month, found_dict['B']) |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 429 | elif group_key == 'b': |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 430 | month = _insensitiveindex(locale_time.a_month, found_dict['b']) |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 431 | elif group_key == 'd': |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 432 | day = int(found_dict['d']) |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 433 | elif group_key is 'H': |
| 434 | hour = int(found_dict['H']) |
| 435 | elif group_key == 'I': |
| 436 | hour = int(found_dict['I']) |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 437 | ampm = found_dict.get('p', '').lower() |
| 438 | # If there was no AM/PM indicator, we'll treat this like AM |
| 439 | if ampm in ('', locale_time.am_pm[0].lower()): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 440 | # We're in AM so the hour is correct unless we're |
| 441 | # looking at 12 midnight. |
| 442 | # 12 midnight == 12 AM == hour 0 |
| 443 | if hour == 12: |
| 444 | hour = 0 |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 445 | elif ampm == locale_time.am_pm[1].lower(): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 446 | # We're in PM so we need to add 12 to the hour unless |
| 447 | # we're looking at 12 noon. |
| 448 | # 12 noon == 12 PM == hour 12 |
| 449 | if hour != 12: |
| 450 | hour += 12 |
| 451 | elif group_key == 'M': |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 452 | minute = int(found_dict['M']) |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 453 | elif group_key == 'S': |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 454 | second = int(found_dict['S']) |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 455 | elif group_key == 'A': |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 456 | weekday = _insensitiveindex(locale_time.f_weekday, |
| 457 | found_dict['A']) |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 458 | elif group_key == 'a': |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 459 | weekday = _insensitiveindex(locale_time.a_weekday, |
| 460 | found_dict['a']) |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 461 | elif group_key == 'w': |
| 462 | weekday = int(found_dict['w']) |
| 463 | if weekday == 0: |
| 464 | weekday = 6 |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 465 | else: |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 466 | weekday -= 1 |
| 467 | elif group_key == 'j': |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 468 | julian = int(found_dict['j']) |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 469 | elif group_key == 'Z': |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 470 | found_zone = found_dict['Z'].lower() |
Martin v. Löwis | e16e01f | 2002-11-27 08:30:25 +0000 | [diff] [blame] | 471 | if locale_time.timezone[0] == locale_time.timezone[1]: |
| 472 | pass #Deals with bad locale setup where timezone info is |
| 473 | # the same; first found on FreeBSD 4.4 -current |
| 474 | elif locale_time.timezone[0].lower() == found_zone: |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 475 | tz = 0 |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 476 | elif locale_time.timezone[1].lower() == found_zone: |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 477 | tz = 1 |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 478 | elif locale_time.timezone[2].lower() == found_zone: |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 479 | tz = 0 |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 480 | #XXX <bc>: If calculating fxns are never exposed to the general |
| 481 | # populous then just inline calculations. |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 482 | if julian == -1 and year != -1 and month != -1 and day != -1: |
| 483 | julian = julianday(year, month, day) |
| 484 | if (month == -1 or day == -1) and julian != -1 and year != -1: |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 485 | year, month, day = gregorian(julian, year) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 486 | if weekday == -1 and year != -1 and month != -1 and day != -1: |
| 487 | weekday = dayofweek(year, month, day) |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 488 | return time.struct_time( |
| 489 | (year,month,day,hour,minute,second,weekday, julian,tz)) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 490 | |
Barry Warsaw | 4d895fa | 2002-09-23 22:46:49 +0000 | [diff] [blame] | 491 | def _insensitiveindex(lst, findme): |
| 492 | # Perform a case-insensitive index search. |
| 493 | |
| 494 | #XXX <bc>: If LocaleTime is not exposed, then consider removing this and |
| 495 | # just lowercase when LocaleTime sets its vars and lowercasing |
| 496 | # search values. |
| 497 | findme = findme.lower() |
| 498 | for key,item in enumerate(lst): |
| 499 | if item.lower() == findme: |
| 500 | return key |
| 501 | else: |
| 502 | raise ValueError("value not in list") |
| 503 | |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 504 | def firstjulian(year): |
| 505 | """Calculate the Julian date up until the first of the year.""" |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 506 | return ((146097 * (year + 4799)) // 400) - 31738 |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 507 | |
| 508 | def julianday(year, month, day): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 509 | """Calculate the Julian day since the beginning of the year. |
| 510 | Calculated from the Gregorian date. |
| 511 | """ |
| 512 | a = (14 - month) // 12 |
| 513 | return (day - 32045 |
| 514 | + (((153 * (month + (12 * a) - 3)) + 2) // 5) |
| 515 | + ((146097 * (year + 4800 - a)) // 400)) - firstjulian(year) + 1 |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 516 | |
| 517 | def gregorian(julian, year): |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 518 | """Return 3-item list containing Gregorian date based on the Julian day.""" |
| 519 | a = 32043 + julian + firstjulian(year) |
| 520 | b = ((4 * a) + 3) // 146097 |
| 521 | c = a - ((146097 * b) // 4) |
| 522 | d = ((4 * c) + 3) // 1461 |
| 523 | e = c - ((1461 * d) // 4) |
| 524 | m = ((5 * e) + 2) // 153 |
| 525 | day = 1 + e - (((153 * m) + 2) // 5) |
| 526 | month = m + 3 - (12 * (m // 10)) |
| 527 | year = (100 * b) + d - 4800 + (m // 10) |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 528 | return [year, month, day] |
| 529 | |
| 530 | def dayofweek(year, month, day): |
| 531 | """Calculate the day of the week (Monday is 0).""" |
Barry Warsaw | 35816e6 | 2002-08-29 16:24:50 +0000 | [diff] [blame] | 532 | a = (14 - month) // 12 |
| 533 | y = year - a |
| 534 | weekday = (day + y + ((97 * y) // 400) |
| 535 | + ((31 * (month + (12 * a) -2 )) // 12)) % 7 |
Guido van Rossum | 00efe7e | 2002-07-19 17:04:46 +0000 | [diff] [blame] | 536 | if weekday == 0: |
| 537 | return 6 |
| 538 | else: |
| 539 | return weekday-1 |