| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  | """Strptime-related classes and functions.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CLASSES: | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |     LocaleTime -- Discovers and stores locale-specific time information | 
					
						
							| 
									
										
										
										
											2002-09-23 22:46:49 +00:00
										 |  |  |     TimeRE -- Creates regexes for pattern matching a string of text containing | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |                 time information | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | FUNCTIONS: | 
					
						
							| 
									
										
										
										
											2003-03-09 07:44:42 +00:00
										 |  |  |     _getlang -- Figure out what language is being used for the locale | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |     strptime -- Calculates the time struct represented by the passed-in string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | import time | 
					
						
							|  |  |  | import locale | 
					
						
							|  |  |  | import calendar | 
					
						
							|  |  |  | from re import compile as re_compile | 
					
						
							|  |  |  | from re import IGNORECASE | 
					
						
							| 
									
										
										
										
											2003-03-09 07:44:42 +00:00
										 |  |  | from datetime import date as datetime_date | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     from thread import allocate_lock as _thread_allocate_lock | 
					
						
							|  |  |  | except: | 
					
						
							|  |  |  |     from dummy_thread import allocate_lock as _thread_allocate_lock | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | __author__ = "Brett Cannon" | 
					
						
							| 
									
										
										
										
											2003-03-09 07:44:42 +00:00
										 |  |  | __email__ = "brett@python.org" | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | __all__ = ['strptime'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-19 04:40:44 +00:00
										 |  |  | def _getlang(): | 
					
						
							|  |  |  |     # Figure out what the current language is set to. | 
					
						
							| 
									
										
										
										
											2003-07-24 06:27:17 +00:00
										 |  |  |     return locale.getlocale(locale.LC_TIME) | 
					
						
							| 
									
										
										
										
											2002-08-29 16:24:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  | class LocaleTime(object): | 
					
						
							|  |  |  |     """Stores and handles locale-specific information related to time.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |     ATTRIBUTES: | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |         f_weekday -- full weekday names (7-item list) | 
					
						
							|  |  |  |         a_weekday -- abbreviated weekday names (7-item list) | 
					
						
							| 
									
										
										
										
											2003-08-08 01:53:05 +00:00
										 |  |  |         f_month -- full month names (13-item list; dummy value in [0], which | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |                     is added by code) | 
					
						
							| 
									
										
										
										
											2003-08-08 01:53:05 +00:00
										 |  |  |         a_month -- abbreviated month names (13-item list, dummy value in | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |                     [0], which is added by code) | 
					
						
							|  |  |  |         am_pm -- AM/PM representation (2-item list) | 
					
						
							|  |  |  |         LC_date_time -- format string for date/time representation (string) | 
					
						
							|  |  |  |         LC_date -- format string for date representation (string) | 
					
						
							|  |  |  |         LC_time -- format string for time representation (string) | 
					
						
							| 
									
										
										
										
											2002-08-08 20:19:19 +00:00
										 |  |  |         timezone -- daylight- and non-daylight-savings timezone representation | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |                     (2-item list of sets) | 
					
						
							|  |  |  |         lang -- Language used by instance (2-item tuple) | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |     def __init__(self): | 
					
						
							|  |  |  |         """Set all attributes.
 | 
					
						
							| 
									
										
										
										
											2003-10-16 05:53:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         Order of methods called matters for dependency reasons. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         The locale language is set at the offset and then checked again before | 
					
						
							|  |  |  |         exiting.  This is to make sure that the attributes were not set with a | 
					
						
							|  |  |  |         mix of information from more than one locale.  This would most likely | 
					
						
							|  |  |  |         happen when using threads where one thread calls a locale-dependent | 
					
						
							|  |  |  |         function while another thread changes the locale while the function in | 
					
						
							|  |  |  |         the other thread is still running.  Proper coding would call for | 
					
						
							|  |  |  |         locks to prevent changing the locale while locale-dependent code is | 
					
						
							|  |  |  |         running.  The check here is done in case someone does not think about | 
					
						
							|  |  |  |         doing this. | 
					
						
							| 
									
										
										
										
											2003-08-11 07:24:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         Only other possible issue is if someone changed the timezone and did | 
					
						
							|  |  |  |         not call tz.tzset .  That is an issue for the programmer, though, | 
					
						
							|  |  |  |         since changing the timezone is worthless without that call. | 
					
						
							| 
									
										
										
										
											2003-10-16 05:53:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         self.lang = _getlang() | 
					
						
							|  |  |  |         self.__calc_weekday() | 
					
						
							|  |  |  |         self.__calc_month() | 
					
						
							|  |  |  |         self.__calc_am_pm() | 
					
						
							|  |  |  |         self.__calc_timezone() | 
					
						
							|  |  |  |         self.__calc_date_time() | 
					
						
							|  |  |  |         if _getlang() != self.lang: | 
					
						
							|  |  |  |             raise ValueError("locale changed during initialization") | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def __pad(self, seq, front): | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         # Add '' to seq to either the front (is True), else the back. | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |         seq = list(seq) | 
					
						
							| 
									
										
										
										
											2002-08-29 16:24:50 +00:00
										 |  |  |         if front: | 
					
						
							|  |  |  |             seq.insert(0, '') | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             seq.append('') | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |         return seq | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __calc_weekday(self): | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         # Set self.a_weekday and self.f_weekday using the calendar | 
					
						
							| 
									
										
										
										
											2002-08-29 16:24:50 +00:00
										 |  |  |         # module. | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         a_weekday = [calendar.day_abbr[i].lower() for i in range(7)] | 
					
						
							|  |  |  |         f_weekday = [calendar.day_name[i].lower() for i in range(7)] | 
					
						
							|  |  |  |         self.a_weekday = a_weekday | 
					
						
							|  |  |  |         self.f_weekday = f_weekday | 
					
						
							| 
									
										
										
										
											2002-08-08 20:19:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |     def __calc_month(self): | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         # Set self.f_month and self.a_month using the calendar module. | 
					
						
							|  |  |  |         a_month = [calendar.month_abbr[i].lower() for i in range(13)] | 
					
						
							|  |  |  |         f_month = [calendar.month_name[i].lower() for i in range(13)] | 
					
						
							|  |  |  |         self.a_month = a_month | 
					
						
							|  |  |  |         self.f_month = f_month | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def __calc_am_pm(self): | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         # Set self.am_pm by using time.strftime(). | 
					
						
							| 
									
										
										
										
											2002-08-08 20:19:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-29 16:24:50 +00:00
										 |  |  |         # The magic date (1999,3,17,hour,44,55,2,76,0) is not really that | 
					
						
							|  |  |  |         # magical; just happened to have used it everywhere else where a | 
					
						
							|  |  |  |         # static date was needed. | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |         am_pm = [] | 
					
						
							|  |  |  |         for hour in (01,22): | 
					
						
							|  |  |  |             time_tuple = time.struct_time((1999,3,17,hour,44,55,2,76,0)) | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |             am_pm.append(time.strftime("%p", time_tuple).lower()) | 
					
						
							|  |  |  |         self.am_pm = am_pm | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def __calc_date_time(self): | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         # Set self.date_time, self.date, & self.time by using | 
					
						
							| 
									
										
										
										
											2002-08-29 16:24:50 +00:00
										 |  |  |         # time.strftime(). | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-29 16:24:50 +00:00
										 |  |  |         # Use (1999,3,17,22,44,55,2,76,0) for magic date because the amount of | 
					
						
							|  |  |  |         # overloaded numbers is minimized.  The order in which searches for | 
					
						
							|  |  |  |         # values within the format string is very important; it eliminates | 
					
						
							|  |  |  |         # possible ambiguity for what something represents. | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |         time_tuple = time.struct_time((1999,3,17,22,44,55,2,76,0)) | 
					
						
							|  |  |  |         date_time = [None, None, None] | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         date_time[0] = time.strftime("%c", time_tuple).lower() | 
					
						
							|  |  |  |         date_time[1] = time.strftime("%x", time_tuple).lower() | 
					
						
							|  |  |  |         date_time[2] = time.strftime("%X", time_tuple).lower() | 
					
						
							|  |  |  |         replacement_pairs = [('%', '%%'), (self.f_weekday[2], '%A'), | 
					
						
							| 
									
										
										
										
											2002-09-23 22:46:49 +00:00
										 |  |  |                     (self.f_month[3], '%B'), (self.a_weekday[2], '%a'), | 
					
						
							|  |  |  |                     (self.a_month[3], '%b'), (self.am_pm[1], '%p'), | 
					
						
							|  |  |  |                     ('1999', '%Y'), ('99', '%y'), ('22', '%H'), | 
					
						
							|  |  |  |                     ('44', '%M'), ('55', '%S'), ('76', '%j'), | 
					
						
							|  |  |  |                     ('17', '%d'), ('03', '%m'), ('3', '%m'), | 
					
						
							|  |  |  |                     # '3' needed for when no leading zero. | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |                     ('2', '%w'), ('10', '%I')] | 
					
						
							|  |  |  |         replacement_pairs.extend([(tz, "%Z") for tz_values in self.timezone | 
					
						
							|  |  |  |                                                 for tz in tz_values]) | 
					
						
							|  |  |  |         for offset,directive in ((0,'%c'), (1,'%x'), (2,'%X')): | 
					
						
							|  |  |  |             current_format = date_time[offset] | 
					
						
							|  |  |  |             for old, new in replacement_pairs: | 
					
						
							| 
									
										
										
										
											2003-01-15 22:59:39 +00:00
										 |  |  |                 # Must deal with possible lack of locale info | 
					
						
							|  |  |  |                 # manifesting itself as the empty string (e.g., Swedish's | 
					
						
							|  |  |  |                 # lack of AM/PM info) or a platform returning a tuple of empty | 
					
						
							|  |  |  |                 # strings (e.g., MacOS 9 having timezone as ('','')). | 
					
						
							|  |  |  |                 if old: | 
					
						
							| 
									
										
										
										
											2002-09-23 22:46:49 +00:00
										 |  |  |                     current_format = current_format.replace(old, new) | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |             time_tuple = time.struct_time((1999,1,3,1,1,1,6,3,0)) | 
					
						
							|  |  |  |             if time.strftime(directive, time_tuple).find('00'): | 
					
						
							|  |  |  |                 U_W = '%U' | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 U_W = '%W' | 
					
						
							|  |  |  |             date_time[offset] = current_format.replace('11', U_W) | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         self.LC_date_time = date_time[0] | 
					
						
							|  |  |  |         self.LC_date = date_time[1] | 
					
						
							| 
									
										
										
										
											2003-10-16 05:53:16 +00:00
										 |  |  |         self.LC_time = date_time[2] | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def __calc_timezone(self): | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         # Set self.timezone by using time.tzname. | 
					
						
							| 
									
										
										
										
											2003-08-11 07:24:05 +00:00
										 |  |  |         # Do not worry about possibility of time.tzname[0] == timetzname[1] | 
					
						
							|  |  |  |         # and time.daylight; handle that in strptime . | 
					
						
							| 
									
										
										
										
											2003-05-13 20:28:15 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             time.tzset() | 
					
						
							|  |  |  |         except AttributeError: | 
					
						
							|  |  |  |             pass | 
					
						
							| 
									
										
										
										
											2003-11-16 16:17:49 +00:00
										 |  |  |         no_saving = frozenset(["utc", "gmt", time.tzname[0].lower()]) | 
					
						
							| 
									
										
										
										
											2003-05-11 06:23:36 +00:00
										 |  |  |         if time.daylight: | 
					
						
							| 
									
										
										
										
											2003-11-16 16:17:49 +00:00
										 |  |  |             has_saving = frozenset([time.tzname[1].lower()]) | 
					
						
							| 
									
										
										
										
											2003-05-11 06:23:36 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2003-11-16 16:17:49 +00:00
										 |  |  |             has_saving = frozenset() | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         self.timezone = (no_saving, has_saving) | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class TimeRE(dict): | 
					
						
							|  |  |  |     """Handle conversion from format directives to regexes.""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-24 20:02:28 +00:00
										 |  |  |     def __init__(self, locale_time=None): | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         """Create keys/values.
 | 
					
						
							| 
									
										
										
										
											2003-10-16 05:53:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         Order of execution is important for dependency reasons. | 
					
						
							| 
									
										
										
										
											2003-10-16 05:53:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         if locale_time: | 
					
						
							|  |  |  |             self.locale_time = locale_time | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.locale_time = LocaleTime() | 
					
						
							| 
									
										
										
										
											2002-12-30 22:23:12 +00:00
										 |  |  |         base = super(TimeRE, self) | 
					
						
							|  |  |  |         base.__init__({ | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |             # The " \d" part of the regex is to make %c from ANSI C work | 
					
						
							| 
									
										
										
										
											2002-12-30 22:23:12 +00:00
										 |  |  |             'd': r"(?P<d>3[0-1]|[1-2]\d|0[1-9]|[1-9]| [1-9])", | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |             'H': r"(?P<H>2[0-3]|[0-1]\d|\d)", | 
					
						
							| 
									
										
										
										
											2002-12-30 22:23:12 +00:00
										 |  |  |             'I': r"(?P<I>1[0-2]|0[1-9]|[1-9])", | 
					
						
							|  |  |  |             'j': r"(?P<j>36[0-6]|3[0-5]\d|[1-2]\d\d|0[1-9]\d|00[1-9]|[1-9]\d|0[1-9]|[1-9])", | 
					
						
							|  |  |  |             'm': r"(?P<m>1[0-2]|0[1-9]|[1-9])", | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |             'M': r"(?P<M>[0-5]\d|\d)", | 
					
						
							|  |  |  |             'S': r"(?P<S>6[0-1]|[0-5]\d|\d)", | 
					
						
							|  |  |  |             'U': r"(?P<U>5[0-3]|[0-4]\d|\d)", | 
					
						
							|  |  |  |             'w': r"(?P<w>[0-6])", | 
					
						
							| 
									
										
										
										
											2002-12-30 22:23:12 +00:00
										 |  |  |             # W is set below by using 'U' | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |             'y': r"(?P<y>\d\d)", | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |             #XXX: Does 'Y' need to worry about having less or more than | 
					
						
							|  |  |  |             #     4 digits? | 
					
						
							|  |  |  |             'Y': r"(?P<Y>\d\d\d\d)", | 
					
						
							|  |  |  |             'A': self.__seqToRE(self.locale_time.f_weekday, 'A'), | 
					
						
							|  |  |  |             'a': self.__seqToRE(self.locale_time.a_weekday, 'a'), | 
					
						
							|  |  |  |             'B': self.__seqToRE(self.locale_time.f_month[1:], 'B'), | 
					
						
							|  |  |  |             'b': self.__seqToRE(self.locale_time.a_month[1:], 'b'), | 
					
						
							|  |  |  |             'p': self.__seqToRE(self.locale_time.am_pm, 'p'), | 
					
						
							|  |  |  |             'Z': self.__seqToRE([tz for tz_names in self.locale_time.timezone | 
					
						
							|  |  |  |                                         for tz in tz_names], | 
					
						
							|  |  |  |                                 'Z'), | 
					
						
							|  |  |  |             '%': '%'}) | 
					
						
							| 
									
										
										
										
											2002-12-30 22:23:12 +00:00
										 |  |  |         base.__setitem__('W', base.__getitem__('U')) | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         base.__setitem__('c', self.pattern(self.locale_time.LC_date_time)) | 
					
						
							|  |  |  |         base.__setitem__('x', self.pattern(self.locale_time.LC_date)) | 
					
						
							|  |  |  |         base.__setitem__('X', self.pattern(self.locale_time.LC_time)) | 
					
						
							| 
									
										
										
										
											2002-08-08 20:19:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |     def __seqToRE(self, to_convert, directive): | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         """Convert a list to a regex string for matching a directive.
 | 
					
						
							| 
									
										
										
										
											2003-10-16 05:53:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         Want possible matching values to be from longest to shortest.  This | 
					
						
							|  |  |  |         prevents the possibility of a match occuring for a value that also | 
					
						
							|  |  |  |         a substring of a larger value that should have matched (e.g., 'abc' | 
					
						
							|  |  |  |         matching when 'abcdef' should have been the match). | 
					
						
							| 
									
										
										
										
											2003-10-16 05:53:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2003-01-15 22:59:39 +00:00
										 |  |  |         for value in to_convert: | 
					
						
							|  |  |  |             if value != '': | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return '' | 
					
						
							| 
									
										
										
										
											2003-10-16 05:53:16 +00:00
										 |  |  |         to_convert = to_convert[:] | 
					
						
							|  |  |  |         to_convert.sort(key=len, reverse=True) | 
					
						
							| 
									
										
										
										
											2002-09-23 22:46:49 +00:00
										 |  |  |         regex = '|'.join(to_convert) | 
					
						
							|  |  |  |         regex = '(?P<%s>%s' % (directive, regex) | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |         return '%s)' % regex | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def pattern(self, format): | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |         """Return regex pattern for the format string.
 | 
					
						
							| 
									
										
										
										
											2003-04-24 16:02:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-19 04:00:56 +00:00
										 |  |  |         Need to make sure that any characters that might be interpreted as | 
					
						
							| 
									
										
										
										
											2003-08-11 07:24:05 +00:00
										 |  |  |         regex syntax are escaped. | 
					
						
							| 
									
										
										
										
											2003-04-24 16:02:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-19 04:00:56 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |         processed_format = '' | 
					
						
							| 
									
										
										
										
											2003-04-19 04:00:56 +00:00
										 |  |  |         # The sub() call escapes all characters that might be misconstrued | 
					
						
							|  |  |  |         # as regex syntax. | 
					
						
							| 
									
										
										
										
											2003-08-29 02:28:54 +00:00
										 |  |  |         regex_chars = re_compile(r"([\\.^$*+?\(\){}\[\]|])") | 
					
						
							| 
									
										
										
										
											2003-04-19 04:00:56 +00:00
										 |  |  |         format = regex_chars.sub(r"\\\1", format) | 
					
						
							| 
									
										
										
										
											2003-01-19 04:40:44 +00:00
										 |  |  |         whitespace_replacement = re_compile('\s+') | 
					
						
							|  |  |  |         format = whitespace_replacement.sub('\s*', format) | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |         while format.find('%') != -1: | 
					
						
							|  |  |  |             directive_index = format.index('%')+1 | 
					
						
							| 
									
										
										
										
											2002-08-08 20:19:19 +00:00
										 |  |  |             processed_format = "%s%s%s" % (processed_format, | 
					
						
							| 
									
										
										
										
											2002-08-29 16:24:50 +00:00
										 |  |  |                                            format[:directive_index-1], | 
					
						
							|  |  |  |                                            self[format[directive_index]]) | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  |             format = format[directive_index+1:] | 
					
						
							|  |  |  |         return "%s%s" % (processed_format, format) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def compile(self, format): | 
					
						
							|  |  |  |         """Return a compiled re object for the format string.""" | 
					
						
							|  |  |  |         return re_compile(self.pattern(format), IGNORECASE) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  | _cache_lock = _thread_allocate_lock() | 
					
						
							|  |  |  | # DO NOT modify _TimeRE_cache or _regex_cache without acquiring the cache lock | 
					
						
							|  |  |  | # first! | 
					
						
							|  |  |  | _TimeRE_cache = TimeRE() | 
					
						
							| 
									
										
										
										
											2003-08-11 07:24:05 +00:00
										 |  |  | _CACHE_MAX_SIZE = 5 # Max number of regexes stored in _regex_cache | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  | _regex_cache = {} | 
					
						
							| 
									
										
										
										
											2002-07-19 17:04:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def strptime(data_string, format="%a %b %d %H:%M:%S %Y"): | 
					
						
							| 
									
										
										
										
											2003-08-11 07:24:05 +00:00
										 |  |  |     """Return a time struct based on the input string and the format string.""" | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |     global _TimeRE_cache | 
					
						
							|  |  |  |     _cache_lock.acquire() | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         time_re = _TimeRE_cache | 
					
						
							|  |  |  |         locale_time = time_re.locale_time | 
					
						
							|  |  |  |         if _getlang() != locale_time.lang: | 
					
						
							|  |  |  |             _TimeRE_cache = TimeRE() | 
					
						
							|  |  |  |         if len(_regex_cache) > _CACHE_MAX_SIZE: | 
					
						
							|  |  |  |             _regex_cache.clear() | 
					
						
							|  |  |  |         format_regex = _regex_cache.get(format) | 
					
						
							|  |  |  |         if not format_regex: | 
					
						
							|  |  |  |             format_regex = time_re.compile(format) | 
					
						
							|  |  |  |             _regex_cache[format] = format_regex | 
					
						
							|  |  |  |     finally: | 
					
						
							|  |  |  |         _cache_lock.release() | 
					
						
							| 
									
										
										
										
											2003-01-19 04:40:44 +00:00
										 |  |  |     found = format_regex.match(data_string) | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |     if not found: | 
					
						
							| 
									
										
										
										
											2003-07-13 01:31:38 +00:00
										 |  |  |         raise ValueError("time data did not match format:  data=%s  fmt=%s" % | 
					
						
							|  |  |  |                          (data_string, format)) | 
					
						
							| 
									
										
										
										
											2003-04-28 21:30:13 +00:00
										 |  |  |     if len(data_string) != found.end(): | 
					
						
							|  |  |  |         raise ValueError("unconverted data remains: %s" % | 
					
						
							|  |  |  |                           data_string[found.end():]) | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |     year = 1900 | 
					
						
							|  |  |  |     month = day = 1 | 
					
						
							|  |  |  |     hour = minute = second = 0 | 
					
						
							|  |  |  |     tz = -1 | 
					
						
							| 
									
										
										
										
											2003-03-09 07:44:42 +00:00
										 |  |  |     # weekday and julian defaulted to -1 so as to signal need to calculate values | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |     weekday = julian = -1 | 
					
						
							|  |  |  |     found_dict = found.groupdict() | 
					
						
							|  |  |  |     for group_key in found_dict.iterkeys(): | 
					
						
							|  |  |  |         if group_key == 'y': | 
					
						
							|  |  |  |             year = int(found_dict['y']) | 
					
						
							|  |  |  |             # Open Group specification for strptime() states that a %y | 
					
						
							|  |  |  |             #value in the range of [00, 68] is in the century 2000, while | 
					
						
							|  |  |  |             #[69,99] is in the century 1900 | 
					
						
							|  |  |  |             if year <= 68: | 
					
						
							|  |  |  |                 year += 2000 | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 year += 1900 | 
					
						
							|  |  |  |         elif group_key == 'Y': | 
					
						
							|  |  |  |             year = int(found_dict['Y']) | 
					
						
							|  |  |  |         elif group_key == 'm': | 
					
						
							|  |  |  |             month = int(found_dict['m']) | 
					
						
							|  |  |  |         elif group_key == 'B': | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |             month = locale_time.f_month.index(found_dict['B'].lower()) | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |         elif group_key == 'b': | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |             month = locale_time.a_month.index(found_dict['b'].lower()) | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |         elif group_key == 'd': | 
					
						
							|  |  |  |             day = int(found_dict['d']) | 
					
						
							| 
									
										
										
										
											2003-06-29 04:16:49 +00:00
										 |  |  |         elif group_key == 'H': | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |             hour = int(found_dict['H']) | 
					
						
							|  |  |  |         elif group_key == 'I': | 
					
						
							|  |  |  |             hour = int(found_dict['I']) | 
					
						
							|  |  |  |             ampm = found_dict.get('p', '').lower() | 
					
						
							|  |  |  |             # If there was no AM/PM indicator, we'll treat this like AM | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |             if ampm in ('', locale_time.am_pm[0]): | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |                 # We're in AM so the hour is correct unless we're | 
					
						
							|  |  |  |                 # looking at 12 midnight. | 
					
						
							|  |  |  |                 # 12 midnight == 12 AM == hour 0 | 
					
						
							|  |  |  |                 if hour == 12: | 
					
						
							|  |  |  |                     hour = 0 | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |             elif ampm == locale_time.am_pm[1]: | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |                 # We're in PM so we need to add 12 to the hour unless | 
					
						
							|  |  |  |                 # we're looking at 12 noon. | 
					
						
							|  |  |  |                 # 12 noon == 12 PM == hour 12 | 
					
						
							|  |  |  |                 if hour != 12: | 
					
						
							|  |  |  |                     hour += 12 | 
					
						
							|  |  |  |         elif group_key == 'M': | 
					
						
							|  |  |  |             minute = int(found_dict['M']) | 
					
						
							|  |  |  |         elif group_key == 'S': | 
					
						
							|  |  |  |             second = int(found_dict['S']) | 
					
						
							|  |  |  |         elif group_key == 'A': | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |             weekday = locale_time.f_weekday.index(found_dict['A'].lower()) | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |         elif group_key == 'a': | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |             weekday = locale_time.a_weekday.index(found_dict['a'].lower()) | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |         elif group_key == 'w': | 
					
						
							|  |  |  |             weekday = int(found_dict['w']) | 
					
						
							|  |  |  |             if weekday == 0: | 
					
						
							|  |  |  |                 weekday = 6 | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 weekday -= 1 | 
					
						
							|  |  |  |         elif group_key == 'j': | 
					
						
							|  |  |  |             julian = int(found_dict['j']) | 
					
						
							|  |  |  |         elif group_key == 'Z': | 
					
						
							| 
									
										
										
										
											2003-05-11 06:23:36 +00:00
										 |  |  |             # Since -1 is default value only need to worry about setting tz if | 
					
						
							|  |  |  |             # it can be something other than -1. | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |             found_zone = found_dict['Z'].lower() | 
					
						
							| 
									
										
										
										
											2003-08-11 07:24:05 +00:00
										 |  |  |             for value, tz_values in enumerate(locale_time.timezone): | 
					
						
							|  |  |  |                 if found_zone in tz_values: | 
					
						
							|  |  |  |                     # Deal with bad locale setup where timezone names are the | 
					
						
							|  |  |  |                     # same and yet time.daylight is true; too ambiguous to | 
					
						
							|  |  |  |                     # be able to tell what timezone has daylight savings | 
					
						
							|  |  |  |                     if time.tzname[0] == time.tzname[1] and \ | 
					
						
							|  |  |  |                        time.daylight: | 
					
						
							|  |  |  |                             break | 
					
						
							|  |  |  |                     else: | 
					
						
							| 
									
										
										
										
											2003-08-05 04:02:49 +00:00
										 |  |  |                         tz = value | 
					
						
							| 
									
										
										
										
											2003-08-11 07:24:05 +00:00
										 |  |  |                         break | 
					
						
							| 
									
										
										
										
											2003-03-09 07:44:42 +00:00
										 |  |  |     # Cannot pre-calculate datetime_date() since can change in Julian | 
					
						
							|  |  |  |     #calculation and thus could have different value for the day of the week | 
					
						
							|  |  |  |     #calculation | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |     if julian == -1: | 
					
						
							| 
									
										
										
										
											2003-03-09 07:44:42 +00:00
										 |  |  |         # Need to add 1 to result since first day of the year is 1, not 0. | 
					
						
							|  |  |  |         julian = datetime_date(year, month, day).toordinal() - \ | 
					
						
							|  |  |  |                   datetime_date(year, 1, 1).toordinal() + 1 | 
					
						
							|  |  |  |     else:  # Assume that if they bothered to include Julian day it will | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |            #be accurate | 
					
						
							| 
									
										
										
										
											2003-03-09 07:44:42 +00:00
										 |  |  |         datetime_result = datetime_date.fromordinal((julian - 1) + datetime_date(year, 1, 1).toordinal()) | 
					
						
							|  |  |  |         year = datetime_result.year | 
					
						
							|  |  |  |         month = datetime_result.month | 
					
						
							|  |  |  |         day = datetime_result.day | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |     if weekday == -1: | 
					
						
							| 
									
										
										
										
											2003-03-09 07:44:42 +00:00
										 |  |  |         weekday = datetime_date(year, month, day).weekday() | 
					
						
							| 
									
										
										
										
											2003-01-18 03:53:49 +00:00
										 |  |  |     return time.struct_time((year, month, day, | 
					
						
							|  |  |  |                              hour, minute, second, | 
					
						
							|  |  |  |                              weekday, julian, tz)) |