2005-10-23 05:37:59 +08:00
|
|
|
"Implementation of tzinfo classes for use with datetime.datetime."
|
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
import locale
|
2005-10-23 05:37:59 +08:00
|
|
|
import time
|
|
|
|
from datetime import timedelta, tzinfo
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
from django.utils.encoding import smart_unicode
|
|
|
|
|
2008-03-01 01:13:20 +08:00
|
|
|
try:
|
|
|
|
DEFAULT_ENCODING = locale.getdefaultlocale()[1] or 'ascii'
|
|
|
|
except:
|
|
|
|
# Any problems at all determining the locale and we fallback. See #5846.
|
|
|
|
DEFAULT_ENCODING = 'ascii'
|
2005-10-23 05:37:59 +08:00
|
|
|
|
|
|
|
class FixedOffset(tzinfo):
|
|
|
|
"Fixed offset in minutes east from UTC."
|
|
|
|
def __init__(self, offset):
|
2008-08-06 01:38:49 +08:00
|
|
|
if isinstance(offset, timedelta):
|
|
|
|
self.__offset = offset
|
|
|
|
offset = self.__offset.seconds // 60
|
|
|
|
else:
|
|
|
|
self.__offset = timedelta(minutes=offset)
|
|
|
|
|
|
|
|
self.__name = u"%+03d%02d" % (offset / 60, offset % 60)
|
2005-10-23 05:37:59 +08:00
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return self.__name
|
|
|
|
|
|
|
|
def utcoffset(self, dt):
|
|
|
|
return self.__offset
|
|
|
|
|
|
|
|
def tzname(self, dt):
|
|
|
|
return self.__name
|
|
|
|
|
|
|
|
def dst(self, dt):
|
|
|
|
return timedelta(0)
|
|
|
|
|
|
|
|
class LocalTimezone(tzinfo):
|
|
|
|
"Proxy timezone information from time module."
|
|
|
|
def __init__(self, dt):
|
2008-08-09 02:33:02 +08:00
|
|
|
tzinfo.__init__(self)
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
self._tzname = self.tzname(dt)
|
2005-10-23 05:37:59 +08:00
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return self._tzname
|
|
|
|
|
|
|
|
def utcoffset(self, dt):
|
|
|
|
if self._isdst(dt):
|
|
|
|
return timedelta(seconds=-time.altzone)
|
|
|
|
else:
|
|
|
|
return timedelta(seconds=-time.timezone)
|
|
|
|
|
|
|
|
def dst(self, dt):
|
|
|
|
if self._isdst(dt):
|
|
|
|
return timedelta(seconds=-time.altzone) - timedelta(seconds=-time.timezone)
|
|
|
|
else:
|
|
|
|
return timedelta(0)
|
|
|
|
|
|
|
|
def tzname(self, dt):
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
try:
|
|
|
|
return smart_unicode(time.tzname[self._isdst(dt)], DEFAULT_ENCODING)
|
|
|
|
except UnicodeDecodeError:
|
|
|
|
return None
|
2005-10-23 05:37:59 +08:00
|
|
|
|
|
|
|
def _isdst(self, dt):
|
|
|
|
tt = (dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second, dt.weekday(), 0, -1)
|
2007-11-30 03:39:46 +08:00
|
|
|
try:
|
|
|
|
stamp = time.mktime(tt)
|
2008-07-18 11:45:30 +08:00
|
|
|
except (OverflowError, ValueError):
|
|
|
|
# 32 bit systems can't handle dates after Jan 2038, and certain
|
|
|
|
# systems can't handle dates before ~1901-12-01:
|
|
|
|
#
|
|
|
|
# >>> time.mktime((1900, 1, 13, 0, 0, 0, 0, 0, 0))
|
|
|
|
# OverflowError: mktime argument out of range
|
|
|
|
# >>> time.mktime((1850, 1, 13, 0, 0, 0, 0, 0, 0))
|
|
|
|
# ValueError: year out of range
|
|
|
|
#
|
|
|
|
# In this case, we fake the date, because we only care about the
|
|
|
|
# DST flag.
|
2007-11-30 03:39:46 +08:00
|
|
|
tt = (2037,) + tt[1:]
|
|
|
|
stamp = time.mktime(tt)
|
2005-10-23 05:37:59 +08:00
|
|
|
tt = time.localtime(stamp)
|
|
|
|
return tt.tm_isdst > 0
|