blob: f84227be4927020b38ea9d7716fcb79aa7068685 [file] [log] [blame]
Guido van Rossum00efe7e2002-07-19 17:04:46 +00001"""Strptime-related classes and functions.
2
3CLASSES:
Brett Cannon474335c2003-08-05 04:02:49 +00004 LocaleTime -- Discovers and stores locale-specific time information
Barry Warsaw4d895fa2002-09-23 22:46:49 +00005 TimeRE -- Creates regexes for pattern matching a string of text containing
Brett Cannon474335c2003-08-05 04:02:49 +00006 time information
Guido van Rossum00efe7e2002-07-19 17:04:46 +00007
8FUNCTIONS:
Raymond Hettinger1fdb6332003-03-09 07:44:42 +00009 _getlang -- Figure out what language is being used for the locale
Guido van Rossum00efe7e2002-07-19 17:04:46 +000010 strptime -- Calculates the time struct represented by the passed-in string
11
Guido van Rossum00efe7e2002-07-19 17:04:46 +000012"""
13import time
14import locale
15import calendar
16from re import compile as re_compile
Victor Stinner7fa767e2014-03-20 09:16:38 +010017from re import IGNORECASE
Brett Cannon4f35c712004-10-06 02:11:37 +000018from re import escape as re_escape
Alexander Belopolskyca94f552010-06-17 18:30:34 +000019from datetime import (date as datetime_date,
Alexander Belopolskyca94f552010-06-17 18:30:34 +000020 timedelta as datetime_timedelta,
21 timezone as datetime_timezone)
Brett Cannon474335c2003-08-05 04:02:49 +000022try:
Georg Brandl2067bfd2008-05-25 13:05:15 +000023 from _thread import allocate_lock as _thread_allocate_lock
Brett Cannoncd171c82013-07-04 17:43:24 -040024except ImportError:
Georg Brandl2067bfd2008-05-25 13:05:15 +000025 from _dummy_thread import allocate_lock as _thread_allocate_lock
Guido van Rossum00efe7e2002-07-19 17:04:46 +000026
Christian Heimesdd15f6c2008-03-16 00:07:10 +000027__all__ = []
Guido van Rossum00efe7e2002-07-19 17:04:46 +000028
Tim Peters80cebc12003-01-19 04:40:44 +000029def _getlang():
30 # Figure out what the current language is set to.
Brett Cannon175ddb52003-07-24 06:27:17 +000031 return locale.getlocale(locale.LC_TIME)
Barry Warsaw35816e62002-08-29 16:24:50 +000032
Guido van Rossum00efe7e2002-07-19 17:04:46 +000033class LocaleTime(object):
34 """Stores and handles locale-specific information related to time.
35
Brett Cannon474335c2003-08-05 04:02:49 +000036 ATTRIBUTES:
Guido van Rossum00efe7e2002-07-19 17:04:46 +000037 f_weekday -- full weekday names (7-item list)
38 a_weekday -- abbreviated weekday names (7-item list)
Brett Cannonf5c96fb2003-08-08 01:53:05 +000039 f_month -- full month names (13-item list; dummy value in [0], which
Guido van Rossum00efe7e2002-07-19 17:04:46 +000040 is added by code)
Brett Cannonf5c96fb2003-08-08 01:53:05 +000041 a_month -- abbreviated month names (13-item list, dummy value in
Guido van Rossum00efe7e2002-07-19 17:04:46 +000042 [0], which is added by code)
43 am_pm -- AM/PM representation (2-item list)
44 LC_date_time -- format string for date/time representation (string)
45 LC_date -- format string for date representation (string)
46 LC_time -- format string for time representation (string)
Tim Peters469cdad2002-08-08 20:19:19 +000047 timezone -- daylight- and non-daylight-savings timezone representation
Brett Cannon474335c2003-08-05 04:02:49 +000048 (2-item list of sets)
49 lang -- Language used by instance (2-item tuple)
Guido van Rossum00efe7e2002-07-19 17:04:46 +000050 """
51
Brett Cannon474335c2003-08-05 04:02:49 +000052 def __init__(self):
53 """Set all attributes.
Raymond Hettinger6b59f5f2003-10-16 05:53:16 +000054
Brett Cannon474335c2003-08-05 04:02:49 +000055 Order of methods called matters for dependency reasons.
56
57 The locale language is set at the offset and then checked again before
58 exiting. This is to make sure that the attributes were not set with a
59 mix of information from more than one locale. This would most likely
60 happen when using threads where one thread calls a locale-dependent
61 function while another thread changes the locale while the function in
62 the other thread is still running. Proper coding would call for
63 locks to prevent changing the locale while locale-dependent code is
64 running. The check here is done in case someone does not think about
65 doing this.
Brett Cannon5187a3b2003-08-11 07:24:05 +000066
67 Only other possible issue is if someone changed the timezone and did
68 not call tz.tzset . That is an issue for the programmer, though,
69 since changing the timezone is worthless without that call.
Raymond Hettinger6b59f5f2003-10-16 05:53:16 +000070
Brett Cannon474335c2003-08-05 04:02:49 +000071 """
72 self.lang = _getlang()
73 self.__calc_weekday()
74 self.__calc_month()
75 self.__calc_am_pm()
76 self.__calc_timezone()
77 self.__calc_date_time()
78 if _getlang() != self.lang:
79 raise ValueError("locale changed during initialization")
Serhiy Storchakac7217d72015-12-03 22:21:07 +020080 if time.tzname != self.tzname or time.daylight != self.daylight:
81 raise ValueError("timezone changed during initialization")
Guido van Rossum00efe7e2002-07-19 17:04:46 +000082
83 def __pad(self, seq, front):
Brett Cannon474335c2003-08-05 04:02:49 +000084 # Add '' to seq to either the front (is True), else the back.
Guido van Rossum00efe7e2002-07-19 17:04:46 +000085 seq = list(seq)
Barry Warsaw35816e62002-08-29 16:24:50 +000086 if front:
87 seq.insert(0, '')
88 else:
89 seq.append('')
Guido van Rossum00efe7e2002-07-19 17:04:46 +000090 return seq
91
Guido van Rossum00efe7e2002-07-19 17:04:46 +000092 def __calc_weekday(self):
Brett Cannon474335c2003-08-05 04:02:49 +000093 # Set self.a_weekday and self.f_weekday using the calendar
Barry Warsaw35816e62002-08-29 16:24:50 +000094 # module.
Brett Cannon474335c2003-08-05 04:02:49 +000095 a_weekday = [calendar.day_abbr[i].lower() for i in range(7)]
96 f_weekday = [calendar.day_name[i].lower() for i in range(7)]
97 self.a_weekday = a_weekday
98 self.f_weekday = f_weekday
Tim Peters469cdad2002-08-08 20:19:19 +000099
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000100 def __calc_month(self):
Brett Cannon474335c2003-08-05 04:02:49 +0000101 # Set self.f_month and self.a_month using the calendar module.
102 a_month = [calendar.month_abbr[i].lower() for i in range(13)]
103 f_month = [calendar.month_name[i].lower() for i in range(13)]
104 self.a_month = a_month
105 self.f_month = f_month
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000106
107 def __calc_am_pm(self):
Brett Cannon474335c2003-08-05 04:02:49 +0000108 # Set self.am_pm by using time.strftime().
Tim Peters469cdad2002-08-08 20:19:19 +0000109
Barry Warsaw35816e62002-08-29 16:24:50 +0000110 # The magic date (1999,3,17,hour,44,55,2,76,0) is not really that
111 # magical; just happened to have used it everywhere else where a
112 # static date was needed.
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000113 am_pm = []
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000114 for hour in (1, 22):
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000115 time_tuple = time.struct_time((1999,3,17,hour,44,55,2,76,0))
Brett Cannon474335c2003-08-05 04:02:49 +0000116 am_pm.append(time.strftime("%p", time_tuple).lower())
117 self.am_pm = am_pm
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000118
119 def __calc_date_time(self):
Brett Cannon474335c2003-08-05 04:02:49 +0000120 # Set self.date_time, self.date, & self.time by using
Barry Warsaw35816e62002-08-29 16:24:50 +0000121 # time.strftime().
Tim Peters469cdad2002-08-08 20:19:19 +0000122
Barry Warsaw35816e62002-08-29 16:24:50 +0000123 # Use (1999,3,17,22,44,55,2,76,0) for magic date because the amount of
124 # overloaded numbers is minimized. The order in which searches for
125 # values within the format string is very important; it eliminates
126 # possible ambiguity for what something represents.
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000127 time_tuple = time.struct_time((1999,3,17,22,44,55,2,76,0))
128 date_time = [None, None, None]
Brett Cannon474335c2003-08-05 04:02:49 +0000129 date_time[0] = time.strftime("%c", time_tuple).lower()
130 date_time[1] = time.strftime("%x", time_tuple).lower()
131 date_time[2] = time.strftime("%X", time_tuple).lower()
132 replacement_pairs = [('%', '%%'), (self.f_weekday[2], '%A'),
Barry Warsaw4d895fa2002-09-23 22:46:49 +0000133 (self.f_month[3], '%B'), (self.a_weekday[2], '%a'),
134 (self.a_month[3], '%b'), (self.am_pm[1], '%p'),
Barry Warsaw4d895fa2002-09-23 22:46:49 +0000135 ('1999', '%Y'), ('99', '%y'), ('22', '%H'),
136 ('44', '%M'), ('55', '%S'), ('76', '%j'),
137 ('17', '%d'), ('03', '%m'), ('3', '%m'),
138 # '3' needed for when no leading zero.
Brett Cannon474335c2003-08-05 04:02:49 +0000139 ('2', '%w'), ('10', '%I')]
140 replacement_pairs.extend([(tz, "%Z") for tz_values in self.timezone
141 for tz in tz_values])
142 for offset,directive in ((0,'%c'), (1,'%x'), (2,'%X')):
143 current_format = date_time[offset]
144 for old, new in replacement_pairs:
Jack Jansen62fe7552003-01-15 22:59:39 +0000145 # Must deal with possible lack of locale info
146 # manifesting itself as the empty string (e.g., Swedish's
147 # lack of AM/PM info) or a platform returning a tuple of empty
148 # strings (e.g., MacOS 9 having timezone as ('','')).
149 if old:
Barry Warsaw4d895fa2002-09-23 22:46:49 +0000150 current_format = current_format.replace(old, new)
Brett Cannonf1b2ba62005-08-29 18:25:55 +0000151 # If %W is used, then Sunday, 2005-01-03 will fall on week 0 since
152 # 2005-01-03 occurs before the first Monday of the year. Otherwise
153 # %U is used.
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000154 time_tuple = time.struct_time((1999,1,3,1,1,1,6,3,0))
Brett Cannon6e372d12005-08-27 19:25:59 +0000155 if '00' in time.strftime(directive, time_tuple):
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000156 U_W = '%W'
Brett Cannonf1b2ba62005-08-29 18:25:55 +0000157 else:
158 U_W = '%U'
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000159 date_time[offset] = current_format.replace('11', U_W)
Brett Cannon474335c2003-08-05 04:02:49 +0000160 self.LC_date_time = date_time[0]
161 self.LC_date = date_time[1]
Raymond Hettinger6b59f5f2003-10-16 05:53:16 +0000162 self.LC_time = date_time[2]
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000163
164 def __calc_timezone(self):
Brett Cannon474335c2003-08-05 04:02:49 +0000165 # Set self.timezone by using time.tzname.
Serhiy Storchakac7217d72015-12-03 22:21:07 +0200166 # Do not worry about possibility of time.tzname[0] == time.tzname[1]
167 # and time.daylight; handle that in strptime.
Brett Cannonabe8eb02003-05-13 20:28:15 +0000168 try:
169 time.tzset()
170 except AttributeError:
171 pass
Serhiy Storchakac7217d72015-12-03 22:21:07 +0200172 self.tzname = time.tzname
173 self.daylight = time.daylight
Serhiy Storchakab1f64e72015-12-03 22:26:36 +0200174 no_saving = frozenset({"utc", "gmt", self.tzname[0].lower()})
Serhiy Storchakac7217d72015-12-03 22:21:07 +0200175 if self.daylight:
Serhiy Storchakab1f64e72015-12-03 22:26:36 +0200176 has_saving = frozenset({self.tzname[1].lower()})
Brett Cannon172d9ef2003-05-11 06:23:36 +0000177 else:
Raymond Hettingera690a992003-11-16 16:17:49 +0000178 has_saving = frozenset()
Brett Cannon474335c2003-08-05 04:02:49 +0000179 self.timezone = (no_saving, has_saving)
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000180
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000181
182class TimeRE(dict):
183 """Handle conversion from format directives to regexes."""
184
Brett Cannon2c24d422003-07-24 20:02:28 +0000185 def __init__(self, locale_time=None):
Brett Cannon474335c2003-08-05 04:02:49 +0000186 """Create keys/values.
Raymond Hettinger6b59f5f2003-10-16 05:53:16 +0000187
Brett Cannon474335c2003-08-05 04:02:49 +0000188 Order of execution is important for dependency reasons.
Raymond Hettinger6b59f5f2003-10-16 05:53:16 +0000189
Brett Cannon474335c2003-08-05 04:02:49 +0000190 """
191 if locale_time:
192 self.locale_time = locale_time
193 else:
194 self.locale_time = LocaleTime()
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000195 base = super()
Neal Norwitz5efc50d2002-12-30 22:23:12 +0000196 base.__init__({
Brett Cannon474335c2003-08-05 04:02:49 +0000197 # The " \d" part of the regex is to make %c from ANSI C work
Neal Norwitz5efc50d2002-12-30 22:23:12 +0000198 'd': r"(?P<d>3[0-1]|[1-2]\d|0[1-9]|[1-9]| [1-9])",
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000199 'f': r"(?P<f>[0-9]{1,6})",
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000200 'H': r"(?P<H>2[0-3]|[0-1]\d|\d)",
Neal Norwitz5efc50d2002-12-30 22:23:12 +0000201 'I': r"(?P<I>1[0-2]|0[1-9]|[1-9])",
202 '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])",
203 'm': r"(?P<m>1[0-2]|0[1-9]|[1-9])",
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000204 'M': r"(?P<M>[0-5]\d|\d)",
205 'S': r"(?P<S>6[0-1]|[0-5]\d|\d)",
206 'U': r"(?P<U>5[0-3]|[0-4]\d|\d)",
207 'w': r"(?P<w>[0-6])",
Neal Norwitz5efc50d2002-12-30 22:23:12 +0000208 # W is set below by using 'U'
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000209 'y': r"(?P<y>\d\d)",
Brett Cannon474335c2003-08-05 04:02:49 +0000210 #XXX: Does 'Y' need to worry about having less or more than
211 # 4 digits?
212 'Y': r"(?P<Y>\d\d\d\d)",
Alexander Belopolskyca94f552010-06-17 18:30:34 +0000213 'z': r"(?P<z>[+-]\d\d[0-5]\d)",
Brett Cannon474335c2003-08-05 04:02:49 +0000214 'A': self.__seqToRE(self.locale_time.f_weekday, 'A'),
215 'a': self.__seqToRE(self.locale_time.a_weekday, 'a'),
216 'B': self.__seqToRE(self.locale_time.f_month[1:], 'B'),
217 'b': self.__seqToRE(self.locale_time.a_month[1:], 'b'),
218 'p': self.__seqToRE(self.locale_time.am_pm, 'p'),
Brett Cannonf7948c22004-10-06 02:23:14 +0000219 'Z': self.__seqToRE((tz for tz_names in self.locale_time.timezone
220 for tz in tz_names),
Brett Cannon474335c2003-08-05 04:02:49 +0000221 'Z'),
222 '%': '%'})
Brett Cannon8abcc5d2004-10-18 01:37:57 +0000223 base.__setitem__('W', base.__getitem__('U').replace('U', 'W'))
Brett Cannon474335c2003-08-05 04:02:49 +0000224 base.__setitem__('c', self.pattern(self.locale_time.LC_date_time))
225 base.__setitem__('x', self.pattern(self.locale_time.LC_date))
226 base.__setitem__('X', self.pattern(self.locale_time.LC_time))
Tim Peters469cdad2002-08-08 20:19:19 +0000227
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000228 def __seqToRE(self, to_convert, directive):
Brett Cannon474335c2003-08-05 04:02:49 +0000229 """Convert a list to a regex string for matching a directive.
Raymond Hettinger6b59f5f2003-10-16 05:53:16 +0000230
Brett Cannon474335c2003-08-05 04:02:49 +0000231 Want possible matching values to be from longest to shortest. This
Ezio Melotti30b9d5d2013-08-17 15:50:46 +0300232 prevents the possibility of a match occurring for a value that also
Brett Cannon474335c2003-08-05 04:02:49 +0000233 a substring of a larger value that should have matched (e.g., 'abc'
234 matching when 'abcdef' should have been the match).
Raymond Hettinger6b59f5f2003-10-16 05:53:16 +0000235
Brett Cannon474335c2003-08-05 04:02:49 +0000236 """
Brett Cannonffa5cf92004-10-06 22:48:58 +0000237 to_convert = sorted(to_convert, key=len, reverse=True)
Jack Jansen62fe7552003-01-15 22:59:39 +0000238 for value in to_convert:
239 if value != '':
240 break
241 else:
242 return ''
Brett Cannon4f35c712004-10-06 02:11:37 +0000243 regex = '|'.join(re_escape(stuff) for stuff in to_convert)
Barry Warsaw4d895fa2002-09-23 22:46:49 +0000244 regex = '(?P<%s>%s' % (directive, regex)
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000245 return '%s)' % regex
246
247 def pattern(self, format):
Brett Cannon474335c2003-08-05 04:02:49 +0000248 """Return regex pattern for the format string.
Tim Peters0eadaac2003-04-24 16:02:54 +0000249
Brett Cannon1e91d8e2003-04-19 04:00:56 +0000250 Need to make sure that any characters that might be interpreted as
Brett Cannon5187a3b2003-08-11 07:24:05 +0000251 regex syntax are escaped.
Tim Peters0eadaac2003-04-24 16:02:54 +0000252
Brett Cannon1e91d8e2003-04-19 04:00:56 +0000253 """
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000254 processed_format = ''
Brett Cannon1e91d8e2003-04-19 04:00:56 +0000255 # The sub() call escapes all characters that might be misconstrued
Brett Cannon4f35c712004-10-06 02:11:37 +0000256 # as regex syntax. Cannot use re.escape since we have to deal with
257 # format directives (%m, etc.).
Brett Cannon953c6f52003-08-29 02:28:54 +0000258 regex_chars = re_compile(r"([\\.^$*+?\(\){}\[\]|])")
Brett Cannon1e91d8e2003-04-19 04:00:56 +0000259 format = regex_chars.sub(r"\\\1", format)
Serhiy Storchaka15fa1c42015-03-25 01:21:50 +0200260 whitespace_replacement = re_compile(r'\s+')
261 format = whitespace_replacement.sub(r'\\s+', format)
Raymond Hettingerbac788a2004-05-04 09:21:43 +0000262 while '%' in format:
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000263 directive_index = format.index('%')+1
Tim Peters469cdad2002-08-08 20:19:19 +0000264 processed_format = "%s%s%s" % (processed_format,
Barry Warsaw35816e62002-08-29 16:24:50 +0000265 format[:directive_index-1],
266 self[format[directive_index]])
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000267 format = format[directive_index+1:]
268 return "%s%s" % (processed_format, format)
269
270 def compile(self, format):
271 """Return a compiled re object for the format string."""
Brett Cannon7f6b4f82009-03-30 21:30:26 +0000272 return re_compile(self.pattern(format), IGNORECASE)
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000273
Brett Cannon474335c2003-08-05 04:02:49 +0000274_cache_lock = _thread_allocate_lock()
275# DO NOT modify _TimeRE_cache or _regex_cache without acquiring the cache lock
276# first!
277_TimeRE_cache = TimeRE()
Brett Cannon5187a3b2003-08-11 07:24:05 +0000278_CACHE_MAX_SIZE = 5 # Max number of regexes stored in _regex_cache
Brett Cannon474335c2003-08-05 04:02:49 +0000279_regex_cache = {}
Guido van Rossum00efe7e2002-07-19 17:04:46 +0000280
Thomas Wouters9fe394c2007-02-05 01:24:16 +0000281def _calc_julian_from_U_or_W(year, week_of_year, day_of_week, week_starts_Mon):
282 """Calculate the Julian day based on the year, week of the year, and day of
283 the week, with week_start_day representing whether the week of the year
284 assumes the week starts on Sunday or Monday (6 or 0)."""
285 first_weekday = datetime_date(year, 1, 1).weekday()
286 # If we are dealing with the %U directive (week starts on Sunday), it's
287 # easier to just shift the view to Sunday being the first day of the
288 # week.
289 if not week_starts_Mon:
290 first_weekday = (first_weekday + 1) % 7
291 day_of_week = (day_of_week + 1) % 7
292 # Need to watch out for a week 0 (when the first day of the year is not
293 # the same as that specified by %U or %W).
294 week_0_length = (7 - first_weekday) % 7
295 if week_of_year == 0:
296 return 1 + day_of_week - first_weekday
297 else:
298 days_to_week = week_0_length + (7 * (week_of_year - 1))
299 return 1 + days_to_week + day_of_week
300
301
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000302def _strptime(data_string, format="%a %b %d %H:%M:%S %Y"):
Alexander Belopolskyf5682182010-06-18 18:44:37 +0000303 """Return a 2-tuple consisting of a time struct and an int containing
Alexander Belopolskyca94f552010-06-17 18:30:34 +0000304 the number of microseconds based on the input string and the
305 format string."""
Brett Cannon7f6b4f82009-03-30 21:30:26 +0000306
307 for index, arg in enumerate([data_string, format]):
308 if not isinstance(arg, str):
309 msg = "strptime() argument {} must be str, not {}"
Brett Cannon71095ea2009-03-31 03:58:04 +0000310 raise TypeError(msg.format(index, type(arg)))
Brett Cannon7f6b4f82009-03-30 21:30:26 +0000311
Brett Cannona783d062005-09-15 02:34:56 +0000312 global _TimeRE_cache, _regex_cache
Thomas Wouters9fe394c2007-02-05 01:24:16 +0000313 with _cache_lock:
Serhiy Storchakac7217d72015-12-03 22:21:07 +0200314 locale_time = _TimeRE_cache.locale_time
315 if (_getlang() != locale_time.lang or
316 time.tzname != locale_time.tzname or
317 time.daylight != locale_time.daylight):
Brett Cannon474335c2003-08-05 04:02:49 +0000318 _TimeRE_cache = TimeRE()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000319 _regex_cache.clear()
Serhiy Storchakac7217d72015-12-03 22:21:07 +0200320 locale_time = _TimeRE_cache.locale_time
Brett Cannon474335c2003-08-05 04:02:49 +0000321 if len(_regex_cache) > _CACHE_MAX_SIZE:
322 _regex_cache.clear()
323 format_regex = _regex_cache.get(format)
324 if not format_regex:
Brett Cannon5d0bf942005-11-02 23:04:26 +0000325 try:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000326 format_regex = _TimeRE_cache.compile(format)
Brett Cannon5d0bf942005-11-02 23:04:26 +0000327 # KeyError raised when a bad format is found; can be specified as
328 # \\, in which case it was a stray % but with a space after it
Guido van Rossumb940e112007-01-10 16:19:56 +0000329 except KeyError as err:
Brett Cannon5d0bf942005-11-02 23:04:26 +0000330 bad_directive = err.args[0]
331 if bad_directive == "\\":
332 bad_directive = "%"
333 del err
334 raise ValueError("'%s' is a bad directive in format '%s'" %
Ezio Melotti0f389082013-04-04 02:09:20 +0300335 (bad_directive, format)) from None
Brett Cannon5d0bf942005-11-02 23:04:26 +0000336 # IndexError only occurs when the format string is "%"
337 except IndexError:
Serhiy Storchakacdac3022013-11-24 18:15:37 +0200338 raise ValueError("stray %% in format '%s'" % format) from None
Brett Cannon474335c2003-08-05 04:02:49 +0000339 _regex_cache[format] = format_regex
Tim Peters80cebc12003-01-19 04:40:44 +0000340 found = format_regex.match(data_string)
Tim Peters08e54272003-01-18 03:53:49 +0000341 if not found:
Thomas Wouters89f507f2006-12-13 04:49:30 +0000342 raise ValueError("time data %r does not match format %r" %
Raymond Hettinger4a6302b2003-07-13 01:31:38 +0000343 (data_string, format))
Brett Cannon2b6dfec2003-04-28 21:30:13 +0000344 if len(data_string) != found.end():
345 raise ValueError("unconverted data remains: %s" %
346 data_string[found.end():])
Alexander Belopolskyca94f552010-06-17 18:30:34 +0000347
Antoine Pitrou1682e5d2012-05-10 20:17:46 +0200348 year = None
Tim Peters08e54272003-01-18 03:53:49 +0000349 month = day = 1
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000350 hour = minute = second = fraction = 0
Tim Peters08e54272003-01-18 03:53:49 +0000351 tz = -1
Alexander Belopolskyca94f552010-06-17 18:30:34 +0000352 tzoffset = None
Brett Cannon8dc25ad2004-10-18 01:47:46 +0000353 # Default to -1 to signify that values not known; not critical to have,
354 # though
Brett Cannon8abcc5d2004-10-18 01:37:57 +0000355 week_of_year = -1
356 week_of_year_start = -1
Serhiy Storchaka423feea2015-03-19 19:13:37 +0200357 # weekday and julian defaulted to None so as to signal need to calculate
Brett Cannon8dc25ad2004-10-18 01:47:46 +0000358 # values
Serhiy Storchaka423feea2015-03-19 19:13:37 +0200359 weekday = julian = None
Tim Peters08e54272003-01-18 03:53:49 +0000360 found_dict = found.groupdict()
Guido van Rossumcc2b0162007-02-11 06:12:03 +0000361 for group_key in found_dict.keys():
Brett Cannon8abcc5d2004-10-18 01:37:57 +0000362 # Directives not explicitly handled below:
363 # c, x, X
364 # handled by making out of other directives
365 # U, W
366 # worthless without day of the week
Tim Peters08e54272003-01-18 03:53:49 +0000367 if group_key == 'y':
368 year = int(found_dict['y'])
369 # Open Group specification for strptime() states that a %y
370 #value in the range of [00, 68] is in the century 2000, while
371 #[69,99] is in the century 1900
372 if year <= 68:
373 year += 2000
374 else:
375 year += 1900
376 elif group_key == 'Y':
377 year = int(found_dict['Y'])
378 elif group_key == 'm':
379 month = int(found_dict['m'])
380 elif group_key == 'B':
Brett Cannon474335c2003-08-05 04:02:49 +0000381 month = locale_time.f_month.index(found_dict['B'].lower())
Tim Peters08e54272003-01-18 03:53:49 +0000382 elif group_key == 'b':
Brett Cannon474335c2003-08-05 04:02:49 +0000383 month = locale_time.a_month.index(found_dict['b'].lower())
Tim Peters08e54272003-01-18 03:53:49 +0000384 elif group_key == 'd':
385 day = int(found_dict['d'])
Neal Norwitz77290f22003-06-29 04:16:49 +0000386 elif group_key == 'H':
Tim Peters08e54272003-01-18 03:53:49 +0000387 hour = int(found_dict['H'])
388 elif group_key == 'I':
389 hour = int(found_dict['I'])
390 ampm = found_dict.get('p', '').lower()
391 # If there was no AM/PM indicator, we'll treat this like AM
Brett Cannon474335c2003-08-05 04:02:49 +0000392 if ampm in ('', locale_time.am_pm[0]):
Tim Peters08e54272003-01-18 03:53:49 +0000393 # We're in AM so the hour is correct unless we're
394 # looking at 12 midnight.
395 # 12 midnight == 12 AM == hour 0
396 if hour == 12:
397 hour = 0
Brett Cannon474335c2003-08-05 04:02:49 +0000398 elif ampm == locale_time.am_pm[1]:
Tim Peters08e54272003-01-18 03:53:49 +0000399 # We're in PM so we need to add 12 to the hour unless
400 # we're looking at 12 noon.
401 # 12 noon == 12 PM == hour 12
402 if hour != 12:
403 hour += 12
404 elif group_key == 'M':
405 minute = int(found_dict['M'])
406 elif group_key == 'S':
407 second = int(found_dict['S'])
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000408 elif group_key == 'f':
409 s = found_dict['f']
410 # Pad to always return microseconds.
411 s += "0" * (6 - len(s))
412 fraction = int(s)
Tim Peters08e54272003-01-18 03:53:49 +0000413 elif group_key == 'A':
Brett Cannon474335c2003-08-05 04:02:49 +0000414 weekday = locale_time.f_weekday.index(found_dict['A'].lower())
Tim Peters08e54272003-01-18 03:53:49 +0000415 elif group_key == 'a':
Brett Cannon474335c2003-08-05 04:02:49 +0000416 weekday = locale_time.a_weekday.index(found_dict['a'].lower())
Tim Peters08e54272003-01-18 03:53:49 +0000417 elif group_key == 'w':
418 weekday = int(found_dict['w'])
419 if weekday == 0:
420 weekday = 6
421 else:
422 weekday -= 1
423 elif group_key == 'j':
424 julian = int(found_dict['j'])
Brett Cannon8abcc5d2004-10-18 01:37:57 +0000425 elif group_key in ('U', 'W'):
426 week_of_year = int(found_dict[group_key])
427 if group_key == 'U':
Thomas Wouters9fe394c2007-02-05 01:24:16 +0000428 # U starts week on Sunday.
Brett Cannon8abcc5d2004-10-18 01:37:57 +0000429 week_of_year_start = 6
430 else:
Thomas Wouters9fe394c2007-02-05 01:24:16 +0000431 # W starts week on Monday.
Brett Cannon8abcc5d2004-10-18 01:37:57 +0000432 week_of_year_start = 0
Alexander Belopolskyca94f552010-06-17 18:30:34 +0000433 elif group_key == 'z':
434 z = found_dict['z']
435 tzoffset = int(z[1:3]) * 60 + int(z[3:5])
436 if z.startswith("-"):
437 tzoffset = -tzoffset
Tim Peters08e54272003-01-18 03:53:49 +0000438 elif group_key == 'Z':
Brett Cannon172d9ef2003-05-11 06:23:36 +0000439 # Since -1 is default value only need to worry about setting tz if
440 # it can be something other than -1.
Tim Peters08e54272003-01-18 03:53:49 +0000441 found_zone = found_dict['Z'].lower()
Brett Cannon5187a3b2003-08-11 07:24:05 +0000442 for value, tz_values in enumerate(locale_time.timezone):
443 if found_zone in tz_values:
444 # Deal with bad locale setup where timezone names are the
445 # same and yet time.daylight is true; too ambiguous to
446 # be able to tell what timezone has daylight savings
Brett Cannon8172ac32004-03-07 23:16:27 +0000447 if (time.tzname[0] == time.tzname[1] and
448 time.daylight and found_zone not in ("utc", "gmt")):
Tim Peters58eb11c2004-01-18 20:29:55 +0000449 break
Brett Cannon5187a3b2003-08-11 07:24:05 +0000450 else:
Brett Cannon474335c2003-08-05 04:02:49 +0000451 tz = value
Brett Cannon5187a3b2003-08-11 07:24:05 +0000452 break
Antoine Pitrou072e4a32012-05-14 19:44:59 +0200453 leap_year_fix = False
Antoine Pitrou1682e5d2012-05-10 20:17:46 +0200454 if year is None and month == 2 and day == 29:
455 year = 1904 # 1904 is first leap year of 20th century
Antoine Pitrou072e4a32012-05-14 19:44:59 +0200456 leap_year_fix = True
Antoine Pitrou1682e5d2012-05-10 20:17:46 +0200457 elif year is None:
458 year = 1900
Brett Cannon8abcc5d2004-10-18 01:37:57 +0000459 # If we know the week of the year and what day of that week, we can figure
Thomas Wouters9fe394c2007-02-05 01:24:16 +0000460 # out the Julian day of the year.
Serhiy Storchaka423feea2015-03-19 19:13:37 +0200461 if julian is None and week_of_year != -1 and weekday is not None:
Thomas Wouters9fe394c2007-02-05 01:24:16 +0000462 week_starts_Mon = True if week_of_year_start == 0 else False
463 julian = _calc_julian_from_U_or_W(year, week_of_year, weekday,
464 week_starts_Mon)
Serhiy Storchaka8a7240e2016-03-12 10:51:16 +0200465 if julian <= 0:
466 year -= 1
467 yday = 366 if calendar.isleap(year) else 365
468 julian += yday
Raymond Hettinger1fdb6332003-03-09 07:44:42 +0000469 # Cannot pre-calculate datetime_date() since can change in Julian
Thomas Wouters9fe394c2007-02-05 01:24:16 +0000470 # calculation and thus could have different value for the day of the week
471 # calculation.
Serhiy Storchaka423feea2015-03-19 19:13:37 +0200472 if julian is None:
Raymond Hettinger1fdb6332003-03-09 07:44:42 +0000473 # Need to add 1 to result since first day of the year is 1, not 0.
474 julian = datetime_date(year, month, day).toordinal() - \
475 datetime_date(year, 1, 1).toordinal() + 1
476 else: # Assume that if they bothered to include Julian day it will
Thomas Wouters9fe394c2007-02-05 01:24:16 +0000477 # be accurate.
Raymond Hettinger1fdb6332003-03-09 07:44:42 +0000478 datetime_result = datetime_date.fromordinal((julian - 1) + datetime_date(year, 1, 1).toordinal())
479 year = datetime_result.year
480 month = datetime_result.month
481 day = datetime_result.day
Serhiy Storchaka423feea2015-03-19 19:13:37 +0200482 if weekday is None:
Raymond Hettinger1fdb6332003-03-09 07:44:42 +0000483 weekday = datetime_date(year, month, day).weekday()
Alexander Belopolskyca94f552010-06-17 18:30:34 +0000484 # Add timezone info
485 tzname = found_dict.get("Z")
486 if tzoffset is not None:
487 gmtoff = tzoffset * 60
488 else:
489 gmtoff = None
490
Antoine Pitrou072e4a32012-05-14 19:44:59 +0200491 if leap_year_fix:
492 # the caller didn't supply a year but asked for Feb 29th. We couldn't
493 # use the default of 1900 for computations. We set it back to ensure
494 # that February 29th is smaller than March 1st.
495 year = 1900
496
Alexander Belopolskyca94f552010-06-17 18:30:34 +0000497 return (year, month, day,
498 hour, minute, second,
Alexander Belopolskyc142bba2012-06-13 22:15:26 -0400499 weekday, julian, tz, tzname, gmtoff), fraction
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000500
501def _strptime_time(data_string, format="%a %b %d %H:%M:%S %Y"):
Alexander Belopolskyca94f552010-06-17 18:30:34 +0000502 """Return a time struct based on the input string and the
503 format string."""
504 tt = _strptime(data_string, format)[0]
Alexander Belopolskyc142bba2012-06-13 22:15:26 -0400505 return time.struct_time(tt[:time._STRUCT_TM_ITEMS])
Alexander Belopolskyca94f552010-06-17 18:30:34 +0000506
Alexander Belopolsky4988d7a2010-07-14 13:46:57 +0000507def _strptime_datetime(cls, data_string, format="%a %b %d %H:%M:%S %Y"):
508 """Return a class cls instance based on the input string and the
Alexander Belopolskyca94f552010-06-17 18:30:34 +0000509 format string."""
510 tt, fraction = _strptime(data_string, format)
Alexander Belopolskyc142bba2012-06-13 22:15:26 -0400511 tzname, gmtoff = tt[-2:]
Alexander Belopolskyca94f552010-06-17 18:30:34 +0000512 args = tt[:6] + (fraction,)
513 if gmtoff is not None:
514 tzdelta = datetime_timedelta(seconds=gmtoff)
515 if tzname:
516 tz = datetime_timezone(tzdelta, tzname)
517 else:
518 tz = datetime_timezone(tzdelta)
519 args += (tz,)
520
Alexander Belopolsky4988d7a2010-07-14 13:46:57 +0000521 return cls(*args)