blob: 06ffa36fa99beb727fbfa198bb99dcac4cae34a8 [file] [log] [blame]
Guido van Rossum102abab1993-10-30 12:38:16 +00001# Class Date supplies date objects that support date arithmetic.
2#
3# Date(month,day,year) returns a Date object. An instance prints as,
4# e.g., 'Mon 16 Aug 1993'.
5#
6# Addition, subtraction, comparison operators, min, max, and sorting
7# all work as expected for date objects: int+date or date+int returns
8# the date `int' days from `date'; date+date raises an exception;
9# date-int returns the date `int' days before `date'; date2-date1 returns
10# an integer, the number of days from date1 to date2; int-date raises an
11# exception; date1 < date2 is true iff date1 occurs before date2 (&
12# similarly for other comparisons); min(date1,date2) is the earlier of
13# the two dates and max(date1,date2) the later; and date objects can be
14# used as dictionary keys.
15#
16# Date objects support one visible method, date.weekday(). This returns
17# the day of the week the date falls on, as a string.
18#
Guido van Rossum2e611031994-10-09 22:36:28 +000019# Date objects also have 4 read-only data attributes:
Guido van Rossum102abab1993-10-30 12:38:16 +000020# .month in 1..12
21# .day in 1..31
22# .year int or long int
23# .ord the ordinal of the date relative to an arbitrary staring point
24#
25# The Dates module also supplies function today(), which returns the
26# current date as a date object.
27#
28# Those entranced by calendar trivia will be disappointed, as no attempt
29# has been made to accommodate the Julian (etc) system. On the other
30# hand, at least this package knows that 2000 is a leap year but 2100
31# isn't, and works fine for years with a hundred decimal digits <wink>.
32
33# Tim Peters tim@ksr.com
34# not speaking for Kendall Square Research Corp
35
Guido van Rossum2e611031994-10-09 22:36:28 +000036# Adapted to Python 1.1 (where some hacks to overcome coercion are unnecessary)
37# by Guido van Rossum
38
Martin v. Löwis7890c262003-06-07 19:39:56 +000039# Note that as of Python 2.3, a datetime module is included in the stardard
40# library.
41
Guido van Rossum2e611031994-10-09 22:36:28 +000042# vi:set tabsize=8:
43
Guido van Rossum102abab1993-10-30 12:38:16 +000044_MONTH_NAMES = [ 'January', 'February', 'March', 'April', 'May',
Guido van Rossumdcd038f1998-09-14 15:34:45 +000045 'June', 'July', 'August', 'September', 'October',
46 'November', 'December' ]
Guido van Rossum102abab1993-10-30 12:38:16 +000047
48_DAY_NAMES = [ 'Friday', 'Saturday', 'Sunday', 'Monday',
Guido van Rossumdcd038f1998-09-14 15:34:45 +000049 'Tuesday', 'Wednesday', 'Thursday' ]
Guido van Rossum102abab1993-10-30 12:38:16 +000050
51_DAYS_IN_MONTH = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ]
52
53_DAYS_BEFORE_MONTH = []
54dbm = 0
55for dim in _DAYS_IN_MONTH:
56 _DAYS_BEFORE_MONTH.append(dbm)
57 dbm = dbm + dim
58del dbm, dim
59
60_INT_TYPES = type(1), type(1L)
61
Guido van Rossumdcd038f1998-09-14 15:34:45 +000062def _is_leap( year ): # 1 if leap year, else 0
Guido van Rossum102abab1993-10-30 12:38:16 +000063 if year % 4 != 0: return 0
64 if year % 400 == 0: return 1
65 return year % 100 != 0
66
Guido van Rossumdcd038f1998-09-14 15:34:45 +000067def _days_in_year( year ): # number of days in year
Guido van Rossum102abab1993-10-30 12:38:16 +000068 return 365 + _is_leap(year)
69
Guido van Rossumdcd038f1998-09-14 15:34:45 +000070def _days_before_year( year ): # number of days before year
Guido van Rossum102abab1993-10-30 12:38:16 +000071 return year*365L + (year+3)/4 - (year+99)/100 + (year+399)/400
72
Guido van Rossumdcd038f1998-09-14 15:34:45 +000073def _days_in_month( month, year ): # number of days in month of year
Guido van Rossum102abab1993-10-30 12:38:16 +000074 if month == 2 and _is_leap(year): return 29
75 return _DAYS_IN_MONTH[month-1]
76
Guido van Rossumdcd038f1998-09-14 15:34:45 +000077def _days_before_month( month, year ): # number of days in year before month
Guido van Rossum102abab1993-10-30 12:38:16 +000078 return _DAYS_BEFORE_MONTH[month-1] + (month > 2 and _is_leap(year))
79
Guido van Rossumdcd038f1998-09-14 15:34:45 +000080def _date2num( date ): # compute ordinal of date.month,day,year
Guido van Rossum102abab1993-10-30 12:38:16 +000081 return _days_before_year( date.year ) + \
Guido van Rossumdcd038f1998-09-14 15:34:45 +000082 _days_before_month( date.month, date.year ) + \
83 date.day
Guido van Rossum102abab1993-10-30 12:38:16 +000084
Guido van Rossumdcd038f1998-09-14 15:34:45 +000085_DI400Y = _days_before_year( 400 ) # number of days in 400 years
Guido van Rossum102abab1993-10-30 12:38:16 +000086
Guido van Rossumdcd038f1998-09-14 15:34:45 +000087def _num2date( n ): # return date with ordinal n
Guido van Rossum102abab1993-10-30 12:38:16 +000088 if type(n) not in _INT_TYPES:
Guido van Rossumdcd038f1998-09-14 15:34:45 +000089 raise TypeError, 'argument must be integer: ' + `type(n)`
Guido van Rossum102abab1993-10-30 12:38:16 +000090
Guido van Rossumdcd038f1998-09-14 15:34:45 +000091 ans = Date(1,1,1) # arguments irrelevant; just getting a Date obj
Guido van Rossum2e611031994-10-09 22:36:28 +000092 del ans.ord, ans.month, ans.day, ans.year # un-initialize it
Guido van Rossum102abab1993-10-30 12:38:16 +000093 ans.ord = n
94
Guido van Rossumdcd038f1998-09-14 15:34:45 +000095 n400 = (n-1)/_DI400Y # # of 400-year blocks preceding
Guido van Rossum102abab1993-10-30 12:38:16 +000096 year, n = 400 * n400, n - _DI400Y * n400
97 more = n / 365
98 dby = _days_before_year( more )
99 if dby >= n:
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000100 more = more - 1
101 dby = dby - _days_in_year( more )
Guido van Rossum102abab1993-10-30 12:38:16 +0000102 year, n = year + more, int(n - dby)
103
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000104 try: year = int(year) # chop to int, if it fits
Guido van Rossum2e611031994-10-09 22:36:28 +0000105 except (ValueError, OverflowError): pass
Guido van Rossum102abab1993-10-30 12:38:16 +0000106
107 month = min( n/29 + 1, 12 )
108 dbm = _days_before_month( month, year )
109 if dbm >= n:
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000110 month = month - 1
111 dbm = dbm - _days_in_month( month, year )
Guido van Rossum102abab1993-10-30 12:38:16 +0000112
113 ans.month, ans.day, ans.year = month, n-dbm, year
114 return ans
115
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000116def _num2day( n ): # return weekday name of day with ordinal n
Guido van Rossum102abab1993-10-30 12:38:16 +0000117 return _DAY_NAMES[ int(n % 7) ]
118
119
120class Date:
121 def __init__( self, month, day, year ):
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000122 if not 1 <= month <= 12:
123 raise ValueError, 'month must be in 1..12: ' + `month`
124 dim = _days_in_month( month, year )
125 if not 1 <= day <= dim:
126 raise ValueError, 'day must be in 1..' + `dim` + ': ' + `day`
127 self.month, self.day, self.year = month, day, year
128 self.ord = _date2num( self )
Guido van Rossum102abab1993-10-30 12:38:16 +0000129
Guido van Rossum2e611031994-10-09 22:36:28 +0000130 # don't allow setting existing attributes
131 def __setattr__( self, name, value ):
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000132 if self.__dict__.has_key(name):
133 raise AttributeError, 'read-only attribute ' + name
134 self.__dict__[name] = value
Guido van Rossum2e611031994-10-09 22:36:28 +0000135
Guido van Rossum102abab1993-10-30 12:38:16 +0000136 def __cmp__( self, other ):
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000137 return cmp( self.ord, other.ord )
Guido van Rossum102abab1993-10-30 12:38:16 +0000138
139 # define a hash function so dates can be used as dictionary keys
140 def __hash__( self ):
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000141 return hash( self.ord )
Guido van Rossum102abab1993-10-30 12:38:16 +0000142
143 # print as, e.g., Mon 16 Aug 1993
144 def __repr__( self ):
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000145 return '%.3s %2d %.3s ' % (
146 self.weekday(),
147 self.day,
148 _MONTH_NAMES[self.month-1] ) + `self.year`
Guido van Rossum102abab1993-10-30 12:38:16 +0000149
Guido van Rossum2e611031994-10-09 22:36:28 +0000150 # Python 1.1 coerces neither int+date nor date+int
Guido van Rossum102abab1993-10-30 12:38:16 +0000151 def __add__( self, n ):
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000152 if type(n) not in _INT_TYPES:
153 raise TypeError, 'can\'t add ' + `type(n)` + ' to date'
154 return _num2date( self.ord + n )
Guido van Rossum2e611031994-10-09 22:36:28 +0000155 __radd__ = __add__ # handle int+date
Guido van Rossum102abab1993-10-30 12:38:16 +0000156
Guido van Rossum2e611031994-10-09 22:36:28 +0000157 # Python 1.1 coerces neither date-int nor date-date
Guido van Rossum102abab1993-10-30 12:38:16 +0000158 def __sub__( self, other ):
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000159 if type(other) in _INT_TYPES: # date-int
160 return _num2date( self.ord - other )
161 else:
162 return self.ord - other.ord # date-date
Guido van Rossum102abab1993-10-30 12:38:16 +0000163
Guido van Rossum2e611031994-10-09 22:36:28 +0000164 # complain about int-date
165 def __rsub__( self, other ):
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000166 raise TypeError, 'Can\'t subtract date from integer'
Guido van Rossum2e611031994-10-09 22:36:28 +0000167
Guido van Rossum102abab1993-10-30 12:38:16 +0000168 def weekday( self ):
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000169 return _num2day( self.ord )
Guido van Rossum102abab1993-10-30 12:38:16 +0000170
Guido van Rossum102abab1993-10-30 12:38:16 +0000171def today():
172 import time
173 local = time.localtime(time.time())
174 return Date( local[1], local[2], local[0] )
175
176DateTestError = 'DateTestError'
177def test( firstyear, lastyear ):
178 a = Date(9,30,1913)
179 b = Date(9,30,1914)
180 if `a` != 'Tue 30 Sep 1913':
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000181 raise DateTestError, '__repr__ failure'
Guido van Rossum2e611031994-10-09 22:36:28 +0000182 if (not a < b) or a == b or a > b or b != b:
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000183 raise DateTestError, '__cmp__ failure'
Guido van Rossum102abab1993-10-30 12:38:16 +0000184 if a+365 != b or 365+a != b:
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000185 raise DateTestError, '__add__ failure'
Guido van Rossum102abab1993-10-30 12:38:16 +0000186 if b-a != 365 or b-365 != a:
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000187 raise DateTestError, '__sub__ failure'
Guido van Rossum102abab1993-10-30 12:38:16 +0000188 try:
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000189 x = 1 - a
190 raise DateTestError, 'int-date should have failed'
Guido van Rossum102abab1993-10-30 12:38:16 +0000191 except TypeError:
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000192 pass
Guido van Rossum102abab1993-10-30 12:38:16 +0000193 try:
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000194 x = a + b
195 raise DateTestError, 'date+date should have failed'
Guido van Rossum102abab1993-10-30 12:38:16 +0000196 except TypeError:
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000197 pass
Guido van Rossum102abab1993-10-30 12:38:16 +0000198 if a.weekday() != 'Tuesday':
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000199 raise DateTestError, 'weekday() failure'
Guido van Rossum102abab1993-10-30 12:38:16 +0000200 if max(a,b) is not b or min(a,b) is not a:
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000201 raise DateTestError, 'min/max failure'
Guido van Rossum102abab1993-10-30 12:38:16 +0000202 d = {a-1:b, b:a+1}
203 if d[b-366] != b or d[a+(b-a)] != Date(10,1,1913):
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000204 raise DateTestError, 'dictionary failure'
Guido van Rossum102abab1993-10-30 12:38:16 +0000205
206 # verify date<->number conversions for first and last days for
207 # all years in firstyear .. lastyear
208
209 lord = _days_before_year( firstyear )
210 y = firstyear
211 while y <= lastyear:
Guido van Rossumdcd038f1998-09-14 15:34:45 +0000212 ford = lord + 1
213 lord = ford + _days_in_year(y) - 1
214 fd, ld = Date(1,1,y), Date(12,31,y)
215 if (fd.ord,ld.ord) != (ford,lord):
216 raise DateTestError, ('date->num failed', y)
217 fd, ld = _num2date(ford), _num2date(lord)
218 if (1,1,y,12,31,y) != \
219 (fd.month,fd.day,fd.year,ld.month,ld.day,ld.year):
220 raise DateTestError, ('num->date failed', y)
221 y = y + 1