2011-11-18 21:01:06 +08:00
|
|
|
"""Functions to parse datetime objects."""
|
|
|
|
|
|
|
|
# We're using regular expressions rather than time.strptime because:
|
2011-12-17 10:31:34 +08:00
|
|
|
# - They provide both validation and parsing.
|
|
|
|
# - They're more flexible for datetimes.
|
|
|
|
# - The date/datetime/time constructors produce friendlier error messages.
|
2011-11-18 21:01:06 +08:00
|
|
|
|
|
|
|
import datetime
|
|
|
|
import re
|
2013-09-08 16:43:33 +08:00
|
|
|
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.utils.timezone import get_fixed_timezone, utc
|
2011-11-18 21:01:06 +08:00
|
|
|
|
|
|
|
date_re = re.compile(
|
2011-12-17 10:31:34 +08:00
|
|
|
r'(?P<year>\d{4})-(?P<month>\d{1,2})-(?P<day>\d{1,2})$'
|
2011-11-18 21:01:06 +08:00
|
|
|
)
|
|
|
|
|
2012-08-20 03:47:41 +08:00
|
|
|
time_re = re.compile(
|
|
|
|
r'(?P<hour>\d{1,2}):(?P<minute>\d{1,2})'
|
2011-12-17 10:31:34 +08:00
|
|
|
r'(?::(?P<second>\d{1,2})(?:\.(?P<microsecond>\d{1,6})\d{0,6})?)?'
|
2011-11-18 21:01:06 +08:00
|
|
|
)
|
|
|
|
|
2012-08-20 03:47:41 +08:00
|
|
|
datetime_re = re.compile(
|
|
|
|
r'(?P<year>\d{4})-(?P<month>\d{1,2})-(?P<day>\d{1,2})'
|
|
|
|
r'[T ](?P<hour>\d{1,2}):(?P<minute>\d{1,2})'
|
2011-12-17 10:31:34 +08:00
|
|
|
r'(?::(?P<second>\d{1,2})(?:\.(?P<microsecond>\d{1,6})\d{0,6})?)?'
|
2014-06-13 00:58:50 +08:00
|
|
|
r'(?P<tzinfo>Z|[+-]\d{2}(?::?\d{2})?)?$'
|
2011-11-18 21:01:06 +08:00
|
|
|
)
|
|
|
|
|
2014-07-24 20:57:24 +08:00
|
|
|
standard_duration_re = re.compile(
|
|
|
|
r'^'
|
2015-06-02 17:08:41 +08:00
|
|
|
r'(?:(?P<days>-?\d+) (days?, )?)?'
|
2017-01-14 18:17:54 +08:00
|
|
|
r'((?:(?P<hours>-?\d+):)(?=\d+:\d+))?'
|
|
|
|
r'(?:(?P<minutes>-?\d+):)?'
|
|
|
|
r'(?P<seconds>-?\d+)'
|
2014-07-24 20:57:24 +08:00
|
|
|
r'(?:\.(?P<microseconds>\d{1,6})\d{0,6})?'
|
|
|
|
r'$'
|
|
|
|
)
|
|
|
|
|
|
|
|
# Support the sections of ISO 8601 date representation that are accepted by
|
|
|
|
# timedelta
|
|
|
|
iso8601_duration_re = re.compile(
|
2016-05-26 20:48:36 +08:00
|
|
|
r'^(?P<sign>[-+]?)'
|
|
|
|
r'P'
|
2014-07-24 20:57:24 +08:00
|
|
|
r'(?:(?P<days>\d+(.\d+)?)D)?'
|
|
|
|
r'(?:T'
|
|
|
|
r'(?:(?P<hours>\d+(.\d+)?)H)?'
|
|
|
|
r'(?:(?P<minutes>\d+(.\d+)?)M)?'
|
|
|
|
r'(?:(?P<seconds>\d+(.\d+)?)S)?'
|
|
|
|
r')?'
|
|
|
|
r'$'
|
|
|
|
)
|
|
|
|
|
2013-09-08 16:43:33 +08:00
|
|
|
|
2011-11-18 21:01:06 +08:00
|
|
|
def parse_date(value):
|
2017-01-25 04:32:33 +08:00
|
|
|
"""Parse a string and return a datetime.date.
|
2011-11-18 21:01:06 +08:00
|
|
|
|
2017-01-25 04:32:33 +08:00
|
|
|
Raise ValueError if the input is well formatted but not a valid date.
|
|
|
|
Return None if the input isn't well formatted.
|
2011-11-18 21:01:06 +08:00
|
|
|
"""
|
|
|
|
match = date_re.match(value)
|
|
|
|
if match:
|
2017-01-07 19:11:46 +08:00
|
|
|
kw = {k: int(v) for k, v in match.groupdict().items()}
|
2011-11-18 21:01:06 +08:00
|
|
|
return datetime.date(**kw)
|
|
|
|
|
2013-11-03 07:53:29 +08:00
|
|
|
|
2011-11-18 21:01:06 +08:00
|
|
|
def parse_time(value):
|
2017-01-25 04:32:33 +08:00
|
|
|
"""Parse a string and return a datetime.time.
|
2011-11-18 21:01:06 +08:00
|
|
|
|
|
|
|
This function doesn't support time zone offsets.
|
|
|
|
|
2017-01-25 04:32:33 +08:00
|
|
|
Raise ValueError if the input is well formatted but not a valid time.
|
|
|
|
Return None if the input isn't well formatted, in particular if it
|
2011-11-18 21:01:06 +08:00
|
|
|
contains an offset.
|
|
|
|
"""
|
|
|
|
match = time_re.match(value)
|
|
|
|
if match:
|
|
|
|
kw = match.groupdict()
|
|
|
|
if kw['microsecond']:
|
|
|
|
kw['microsecond'] = kw['microsecond'].ljust(6, '0')
|
2017-01-07 19:11:46 +08:00
|
|
|
kw = {k: int(v) for k, v in kw.items() if v is not None}
|
2011-11-18 21:01:06 +08:00
|
|
|
return datetime.time(**kw)
|
|
|
|
|
2013-11-03 07:53:29 +08:00
|
|
|
|
2011-11-18 21:01:06 +08:00
|
|
|
def parse_datetime(value):
|
2017-01-25 04:32:33 +08:00
|
|
|
"""Parse a string and return a datetime.datetime.
|
2011-11-18 21:01:06 +08:00
|
|
|
|
|
|
|
This function supports time zone offsets. When the input contains one,
|
2013-09-08 16:43:33 +08:00
|
|
|
the output uses a timezone with a fixed offset from UTC.
|
2011-11-18 21:01:06 +08:00
|
|
|
|
2017-01-25 04:32:33 +08:00
|
|
|
Raise ValueError if the input is well formatted but not a valid datetime.
|
|
|
|
Return None if the input isn't well formatted.
|
2011-11-18 21:01:06 +08:00
|
|
|
"""
|
|
|
|
match = datetime_re.match(value)
|
|
|
|
if match:
|
|
|
|
kw = match.groupdict()
|
|
|
|
if kw['microsecond']:
|
|
|
|
kw['microsecond'] = kw['microsecond'].ljust(6, '0')
|
|
|
|
tzinfo = kw.pop('tzinfo')
|
|
|
|
if tzinfo == 'Z':
|
|
|
|
tzinfo = utc
|
|
|
|
elif tzinfo is not None:
|
2014-06-13 00:58:50 +08:00
|
|
|
offset_mins = int(tzinfo[-2:]) if len(tzinfo) > 3 else 0
|
|
|
|
offset = 60 * int(tzinfo[1:3]) + offset_mins
|
2011-11-18 21:01:06 +08:00
|
|
|
if tzinfo[0] == '-':
|
|
|
|
offset = -offset
|
2013-09-08 16:43:33 +08:00
|
|
|
tzinfo = get_fixed_timezone(offset)
|
2017-01-07 19:11:46 +08:00
|
|
|
kw = {k: int(v) for k, v in kw.items() if v is not None}
|
2011-11-18 21:01:06 +08:00
|
|
|
kw['tzinfo'] = tzinfo
|
|
|
|
return datetime.datetime(**kw)
|
2014-07-24 20:57:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
def parse_duration(value):
|
2017-01-25 04:32:33 +08:00
|
|
|
"""Parse a duration string and return a datetime.timedelta.
|
2014-07-24 20:57:24 +08:00
|
|
|
|
|
|
|
The preferred format for durations in Django is '%d %H:%M:%S.%f'.
|
|
|
|
|
|
|
|
Also supports ISO 8601 representation.
|
|
|
|
"""
|
|
|
|
match = standard_duration_re.match(value)
|
|
|
|
if not match:
|
|
|
|
match = iso8601_duration_re.match(value)
|
|
|
|
if match:
|
|
|
|
kw = match.groupdict()
|
2016-05-26 20:48:36 +08:00
|
|
|
sign = -1 if kw.pop('sign', '+') == '-' else 1
|
2014-07-24 20:57:24 +08:00
|
|
|
if kw.get('microseconds'):
|
|
|
|
kw['microseconds'] = kw['microseconds'].ljust(6, '0')
|
2017-01-14 18:17:54 +08:00
|
|
|
if kw.get('seconds') and kw.get('microseconds') and kw['seconds'].startswith('-'):
|
|
|
|
kw['microseconds'] = '-' + kw['microseconds']
|
2017-01-07 19:11:46 +08:00
|
|
|
kw = {k: float(v) for k, v in kw.items() if v is not None}
|
2016-05-26 20:48:36 +08:00
|
|
|
return sign * datetime.timedelta(**kw)
|