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 strftime = require "luatz.strftime".strftime
2 local strformat = string.format
3 local floor = math.floor
4 local function idiv ( n , d )
9 local mon_lengths = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
10 -- Number of days in year until start of month; not corrected for leap years
11 local months_to_days_cumulative = { 0 }
13 months_to_days_cumulative [ i ] = months_to_days_cumulative [ i-1 ] + mon_lengths [ i-1 ]
15 -- For Sakamoto's Algorithm (day of week)
16 local sakamoto = {0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4};
18 local function is_leap ( y )
21 elseif (y % 100) ~= 0 then
28 local function year_length ( y )
29 return is_leap ( y ) and 366 or 365
32 local function month_length ( m , y )
34 return is_leap ( y ) and 29 or 28
36 return mon_lengths [ m ]
40 local function leap_years_since ( year )
41 return idiv ( year , 4 ) - idiv ( year , 100 ) + idiv ( year , 400 )
44 local function day_of_year ( day , month , year )
45 local yday = months_to_days_cumulative [ month ]
46 if month > 2 and is_leap ( year ) then
52 local function day_of_week ( day , month , year )
56 return ( year + leap_years_since ( year ) + sakamoto[month] + day ) % 7 + 1
59 local function carry ( tens , units , base )
61 tens = tens + idiv ( units , base )
64 tens = tens - 1 + idiv ( -units , base )
65 units = base - ( -units % base )
70 -- Modify parameters so they all fit within the "normal" range
71 local function normalise ( year , month , day , hour , min , sec )
72 -- Propagate out of range values up
73 -- e.g. if `min` is 70, `hour` increments by 1 and `min` becomes 10
74 min , sec = carry ( min , sec , 60 ) -- TODO: consider leap seconds?
75 hour , min = carry ( hour , min , 60 )
76 day , hour = carry ( day , hour , 24 )
80 day = day + year_length ( year )
83 -- Lua months start from 1, need -1 and +1 around this increment
85 year , month = carry ( year , month , 12 )
88 -- This could potentially be slow if `day` is very large
90 local i = month_length ( month , year )
91 if day <= i then break end
100 return year , month , day , hour , min , sec
103 local leap_years_since_1970 = leap_years_since ( 1970 )
104 local function timestamp ( year , month , day , hour , min , sec )
105 year , month , day , hour , min , sec = normalise ( year , month , day , hour , min , sec )
107 local days_since_epoch = day_of_year ( day , month , year )
108 + 365 * ( year - 1970 )
109 -- Each leap year adds one day
110 + ( leap_years_since ( year - 1 ) - leap_years_since_1970 ) - 1
112 return days_since_epoch * (60*60*24)
119 local timetable_methods = { }
121 function timetable_methods:unpack ( )
122 return assert ( self.year , "year required" ) ,
123 assert ( self.month , "month required" ) ,
124 assert ( self.day , "day required" ) ,
132 function timetable_methods:normalise ( )
133 local year , month , day
134 year , month , day , self.hour , self.min , self.sec = normalise ( self:unpack ( ) )
139 self.yday = day_of_year ( day , month , year )
140 self.wday = day_of_week ( day , month , year )
144 timetable_methods.normalize = timetable_methods.normalise -- American English
146 function timetable_methods:timestamp ( )
147 return timestamp ( self:unpack ( ) )
150 function timetable_methods:rfc_3339 ( )
151 -- %06.3f gives 3 (=6-3) digits after decimal
152 return strformat ( "%04u-%02u-%02uT%02u:%02u:%06.3f" , self:unpack ( ) )
155 function timetable_methods:strftime ( format_string )
156 return strftime ( format_string , self )
161 local function coerce_arg ( t )
162 if getmetatable ( t ) == timetable_mt then
163 return t:timestamp ( )
169 __index = timetable_methods ;
170 __tostring = timetable_methods.rfc_3339 ;
171 __eq = function ( a , b )
172 return a:timestamp ( ) == b:timestamp ( )
174 __lt = function ( a , b )
175 return a:timestamp ( ) < b:timestamp ( )
177 __sub = function ( a , b )
178 return coerce_arg ( a ) - coerce_arg ( b )
182 local function cast_timetable ( tm )
183 return setmetatable ( tm , timetable_mt )
186 local function new_timetable ( year , month , day , hour , min , sec , yday , wday )
187 return cast_timetable {
199 function timetable_methods:clone ( )
200 return new_timetable ( self:unpack ( ) )
203 local function new_from_timestamp ( ts )
204 if type ( ts ) ~= "number" then
205 error ( "bad argument #1 to 'new_from_timestamp' (number expected, got " .. type ( ts ) .. ")" , 2 )
207 return new_timetable ( 1970 , 1 , 1 , 0 , 0 , ts )
212 day_of_year = day_of_year ;
213 day_of_week = day_of_week ;
214 normalise = normalise ;
215 timestamp = timestamp ;
217 new = new_timetable ;
218 new_from_timestamp = new_from_timestamp ;
219 cast = cast_timetable ;
220 timetable_mt = timetable_mt ;