All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 local strformat = string.format
2 local floor = math.floor
3 local function idiv ( n , d )
8 local mon_lengths = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
9 -- Number of days in year until start of month; not corrected for leap years
10 local months_to_days_cumulative = { 0 }
12 months_to_days_cumulative [ i ] = months_to_days_cumulative [ i-1 ] + mon_lengths [ i-1 ]
15 local function is_leap ( y )
16 return (y % 4) == 0 and (y % 100) ~= 0 or (y % 400) == 0
19 local function year_length ( y )
20 return is_leap ( y ) and 366 or 365
23 local function month_length ( m , y )
24 m = ( m - 1 ) % 12 + 1
26 return is_leap ( y ) and 29 or 28
28 return mon_lengths [ m ]
32 local function leap_years_since ( year )
33 return idiv ( year , 4 ) - idiv ( year , 100 ) + idiv ( year , 400 )
36 local function doomsday ( year )
38 - 1 + year + leap_years_since ( year ) )
41 local doomsday_cache = setmetatable ( { } , {
42 __index = function ( cache , year )
43 local d = doomsday ( year )
49 local function day_of_year ( day , month , year )
50 local yday = months_to_days_cumulative [ month ]
51 if month > 2 and is_leap ( year ) then
57 local function day_of_week ( yday , year )
58 return ( yday - doomsday_cache [ year ] - 1 ) % 7 + 1
61 local function increment ( tens , units , base )
63 tens = tens + idiv ( units , base )
66 tens = tens - 1 + idiv ( -units , base )
67 units = base - ( -units % base )
72 local function unpack_tm ( tm )
73 return assert ( tm.year , "year required" ) ,
74 assert ( tm.month , "month required" ) ,
75 assert ( tm.day , "day required" ) ,
83 -- Modify parameters so they all fit within the "normal" range
84 local function normalise ( year , month , day , hour , min , sec )
85 min , sec = increment ( min , sec , 60 ) -- TODO: consider leap seconds?
86 hour , min = increment ( hour , min , 60 )
87 day , hour = increment ( day , hour , 24 )
91 day = day + year_length ( year )
94 -- This could potentially be slow if `day` is very large
96 local i = month_length ( month , year )
97 if day <= i then break end
102 -- Lua months start from 1, need -1 and +1 around this increment
103 year , month = increment ( year , month - 1 , 12 )
106 return year , month , day , hour , min , sec
109 local leap_years_since_1970 = leap_years_since ( 1970 )
110 local function timestamp ( year , month , day , hour , min , sec )
111 year , month , day , hour , min , sec = normalise ( year , month , day , hour , min , sec )
113 local days_since_epoch = day_of_year ( day , month , year )
114 + 365 * ( year - 1970 )
115 -- Each leap year adds one day
116 + ( leap_years_since ( year - 1 ) - leap_years_since_1970 ) - 1
118 return days_since_epoch * (60*60*24)
125 local timetable_methods = { }
127 function timetable_methods:normalise ( )
128 local year , month , day
129 year , month , day , self.hour , self.min , self.sec = normalise ( unpack_tm ( self ) )
135 local yday = day_of_year ( day , month , year )
136 local wday = day_of_week ( yday , year )
143 timetable_methods.normalize = timetable_methods.normalise -- American English
145 function timetable_methods:timestamp ( )
146 return timestamp ( unpack_tm ( self ) )
149 function timetable_methods:rfc_3339 ( )
150 -- %06.4g gives 3 (=6-4+1) digits after decimal
151 return strformat ( "%04u-%02u-%02uT%02u:%02u:%06.4g" , unpack_tm ( self ) )
156 local function coerce_arg ( t )
157 if getmetatable ( t ) == timetable_mt then
158 return t:timestamp ( )
164 __index = timetable_methods ;
165 __tostring = timetable_methods.rfc_3339 ;
166 __eq = function ( a , b )
167 return coerce_arg ( a ) == coerce_arg ( b )
169 __lt = function ( a , b )
170 return coerce_arg ( a ) < coerce_arg ( b )
174 local function cast_timetable ( tm )
175 return setmetatable ( tm , timetable_mt )
178 local function new_timetable ( year , month , day , hour , min , sec , yday , wday )
179 return cast_timetable {
191 function timetable_methods:clone ( )
192 return new_timetable ( unpack_tm ( self ) )
195 local function new_from_timestamp ( ts )
196 return new_timetable ( 1970 , 1 , 1 , 0 , 0 , ts )
200 doomsday = doomsday ;
201 normalise = normalise ;
202 timestamp = timestamp ;
204 new = new_timetable ;
205 new_from_timestamp = new_from_timestamp ;
206 cast = cast_timetable ;
207 timetable_mt = timetable_mt ;