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 ]
14 -- For Sakamoto's Algorithm (day of week)
15 local sakamoto = {0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4};
17 local function is_leap ( y )
18 return (y % 4) == 0 and (y % 100) ~= 0 or (y % 400) == 0
21 local function year_length ( y )
22 return is_leap ( y ) and 366 or 365
25 local function month_length ( m , y )
27 return is_leap ( y ) and 29 or 28
29 return mon_lengths [ m ]
33 local function leap_years_since ( year )
34 return idiv ( year , 4 ) - idiv ( year , 100 ) + idiv ( year , 400 )
37 local function day_of_year ( day , month , year )
38 local yday = months_to_days_cumulative [ month ]
39 if month > 2 and is_leap ( year ) then
45 local function day_of_week ( day , month , year )
49 return ( year + leap_years_since ( year ) + sakamoto[month] + day ) % 7 + 1
52 local function increment ( tens , units , base )
54 tens = tens + idiv ( units , base )
57 tens = tens - 1 + idiv ( -units , base )
58 units = base - ( -units % base )
63 -- Modify parameters so they all fit within the "normal" range
64 local function normalise ( year , month , day , hour , min , sec )
65 min , sec = increment ( min , sec , 60 ) -- TODO: consider leap seconds?
66 hour , min = increment ( hour , min , 60 )
67 day , hour = increment ( day , hour , 24 )
71 day = day + year_length ( year )
74 -- Lua months start from 1, need -1 and +1 around this increment
76 year , month = increment ( year , month , 12 )
79 -- This could potentially be slow if `day` is very large
81 local i = month_length ( month , year )
82 if day <= i then break end
91 return year , month , day , hour , min , sec
94 local leap_years_since_1970 = leap_years_since ( 1970 )
95 local function timestamp ( year , month , day , hour , min , sec )
96 year , month , day , hour , min , sec = normalise ( year , month , day , hour , min , sec )
98 local days_since_epoch = day_of_year ( day , month , year )
99 + 365 * ( year - 1970 )
100 -- Each leap year adds one day
101 + ( leap_years_since ( year - 1 ) - leap_years_since_1970 ) - 1
103 return days_since_epoch * (60*60*24)
110 local timetable_methods = { }
112 function timetable_methods:unpack ( )
113 return assert ( self.year , "year required" ) ,
114 assert ( self.month , "month required" ) ,
115 assert ( self.day , "day required" ) ,
123 function timetable_methods:normalise ( )
124 local year , month , day
125 year , month , day , self.hour , self.min , self.sec = normalise ( self:unpack ( ) )
130 self.yday = day_of_year ( day , month , year )
131 self.wday = day_of_week ( day , month , year )
135 timetable_methods.normalize = timetable_methods.normalise -- American English
137 function timetable_methods:timestamp ( )
138 return timestamp ( self:unpack ( ) )
141 function timetable_methods:rfc_3339 ( )
142 -- %06.3f gives 3 (=6-3) digits after decimal
143 return strformat ( "%04u-%02u-%02uT%02u:%02u:%06.3f" , self:unpack ( ) )
146 local strftime = require "luatz.strftime".strftime
147 function timetable_methods:strftime ( format_string )
148 return strftime ( format_string , self )
151 function timetable_methods:asctime ( )
152 return self:strftime ( "%c\n" )
155 local timetable_mt = {
156 __index = timetable_methods ;
157 __tostring = timetable_methods.rfc_3339 ;
158 __eq = function ( a , b )
159 return a:timestamp ( ) == b:timestamp ( )
161 __lt = function ( a , b )
162 return a:timestamp ( ) < b:timestamp ( )
166 local function cast_timetable ( tm )
167 return setmetatable ( tm , timetable_mt )
170 local function new_timetable ( year , month , day , hour , min , sec , yday , wday )
171 return cast_timetable {
183 function timetable_methods:clone ( )
184 return new_timetable ( self:unpack ( ) )
187 local function new_from_timestamp ( ts )
188 return new_timetable ( 1970 , 1 , 1 , 0 , 0 , ts )
192 day_of_year = day_of_year ;
193 day_of_week = day_of_week ;
194 normalise = normalise ;
195 timestamp = timestamp ;
197 new = new_timetable ;
198 new_from_timestamp = new_from_timestamp ;
199 cast = cast_timetable ;
200 timetable_mt = timetable_mt ;