Merge: Annotation lateinit
[nit.git] / lib / standard / time.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2008 Floréal Morandat <morandat@lirmm.fr>
4 # Copyright 2014 Alexandre Terrasa <alexandre@moz-code.org>
5 #
6 # This file is free software, which comes along with NIT. This software is
7 # distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
8 # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
9 # PARTICULAR PURPOSE. You can modify it is you want, provided this header
10 # is kept unaltered, and a notification of the changes is added.
11 # You are allowed to redistribute it and sell it, alone or is a part of
12 # another product.
13
14 # Management of time and dates
15 module time
16
17 import string_search
18 import stream
19
20 in "C Header" `{
21 #include <time.h>
22 `}
23
24 redef class Object
25 # Unix time: the number of seconds elapsed since January 1, 1970
26 protected fun get_time: Int is extern "kernel_Any_Any_get_time_0"
27 end
28
29 redef class Sys
30 # Wait a specific number of second and nanoseconds
31 fun nanosleep(sec, nanosec: Int) is extern "std_nanosleep"
32 end
33
34 # Time since epoch
35 extern class TimeT `{time_t`}
36
37 # Returns Time since epoch from now.
38 new `{ return time(NULL); `}
39
40 # Returns Time since epoch from `i` (expressed in seconds).
41 new from_i(i: Int) `{ return i; `}
42
43 # Update current time.
44 fun update `{ time(&self); `}
45
46 # Convert `self` to a human readable String.
47 fun ctime: String import NativeString.to_s_with_copy `{
48 return NativeString_to_s_with_copy( ctime(&self) );
49 `}
50
51 # Difference in secondes from start (self if the end time)
52 fun difftime(start: TimeT): Float `{ return difftime(self, start); `}
53
54 redef fun to_s do return ctime.replace("\n", "")
55
56 # Convert self to Int (expressed as seconds since epoch).
57 fun to_i: Int `{ return (int)self; `}
58 end
59
60 # Time structure
61 extern class Tm `{struct tm *`}
62
63 # Create a new Time structure expressed in Coordinated Universal Time (UTC).
64 new gmtime `{
65 struct tm *tm;
66 time_t t = time(NULL);
67 tm = gmtime(&t);
68 return tm;
69 `}
70
71 # Create a new Time structure expressed in UTC from `t`.
72 new gmtime_from_timet(t: TimeT) `{
73 struct tm *tm;
74 tm = gmtime(&t);
75 return tm;
76 `}
77
78 # Create a new Time structure expressed in the local timezone.
79 new localtime `{
80 struct tm *tm;
81 time_t t = time(NULL);
82 tm = localtime(&t);
83 return tm;
84 `}
85
86 # Create a new Time structure expressed in the local timezone from `t`.
87 new localtime_from_timet(t: TimeT) `{
88 struct tm *tm;
89 tm = localtime(&t);
90 return tm;
91 `}
92
93 # Convert `self` as a TimeT.
94 fun to_timet: TimeT `{ return mktime(self); `}
95
96 # Seconds after the minute.
97 fun sec: Int `{ return self->tm_sec; `}
98
99 # Minutes after the hour.
100 fun min: Int `{ return self->tm_min; `}
101
102 # hours since midnight.
103 fun hour: Int `{ return self->tm_hour; `}
104
105 # Day of the month.
106 fun mday: Int `{ return self->tm_mday; `}
107
108 # Months since January.
109 fun mon: Int `{ return self->tm_mon; `}
110
111 # Years since 1900.
112 fun year: Int `{ return self->tm_year; `}
113
114 # Days since Sunday.
115 fun wday: Int `{ return self->tm_wday; `}
116
117 # Days since January 1st.
118 fun yday: Int `{ return self->tm_yday; `}
119
120 # Is `self` in Daylight Saving Time.
121 fun is_dst: Bool `{ return self->tm_isdst; `}
122
123 # Convert `self` to a human readable String.
124 fun asctime: String import NativeString.to_s_with_copy `{
125 return NativeString_to_s_with_copy( asctime(self) );
126 `}
127
128 # Convert `self` to a human readable String corresponding to `format`.
129 # TODO document allowed format.
130 fun strftime(format: String): String import String.to_cstring, NativeString.to_s `{
131 char* buf, *c_format;
132 size_t res;
133
134 buf = (char*)malloc(100);
135 c_format = String_to_cstring(format);
136
137 res = strftime(buf, 100, c_format, self);
138 String s = NativeString_to_s_with_copy(buf);
139 free(buf);
140 return s;
141 `}
142
143 redef fun to_s do return asctime.replace("\n", "")
144 end
145
146 # Date using the international format defined by ISO 8601.
147 #
148 # Usage:
149 #
150 # # By default ISODate at today.
151 # var date = new ISODate
152 # var tm = new Tm.localtime
153 # assert date.year == tm.year + 1900
154 # assert date.month == tm.mon + 1
155 # assert date.day == tm.mday
156 #
157 # # ISODate can be initialized from a String.
158 # date = new ISODate.from_string("1970-01-01T00:00:00Z")
159 # assert date.year == 1970
160 # assert date.month == 1
161 # assert date.day == 1
162 #
163 # # ISODate can be printed as String following the ISO format.
164 # assert date.to_s == "1970-01-01T00:00:00Z"
165 #
166 # Note that only the `YYYY-MM-DDTHH:MM:SSZ` is supported for now.
167 #
168 # See <http://www.w3.org/QA/Tips/iso-date>
169 class ISODate
170 super Comparable
171
172 # UTC years as Int.
173 var year: Int is noinit
174
175 # UTC months as Int (`1` for January).
176 var month: Int is noinit
177
178 # UTC days as Int (starting at `1`).
179 var day: Int is noinit
180
181 # UTC hours as Int.
182 var hours: Int is noinit
183
184 # UTC minutes as Int.
185 var minutes: Int is noinit
186
187 # UTC seconds as Int.
188 var seconds: Int is noinit
189
190 # UTC timezone marker.
191 #
192 # Note that I don't know what will happen if you change this value...
193 var timezone = "Z"
194
195 init do
196 var t = new Tm.localtime
197 year = 1900 + t.year
198 month = t.mon + 1
199 day = t.mday
200 hours = t.hour
201 minutes = t.min
202 seconds = t.sec
203 end
204
205 # Init `self` from a ISODate formatted string.
206 init from_string(str: String) do
207 year = str.substring(0, 4).to_i
208 month = str.substring(5, 2).to_i
209 day = str.substring(8, 2).to_i
210 hours = str.substring(11, 2).to_i
211 minutes = str.substring(14, 2).to_i
212 seconds = str.substring(17, 2).to_i
213 timezone = str.substring(19, str.length)
214 end
215
216 redef fun to_s do
217 var buff = new FlatBuffer
218 buff.append year.to_s
219 buff.add '-'
220 if month < 10 then buff.add '0'
221 buff.append month.to_s
222 buff.add '-'
223 if day < 10 then buff.add '0'
224 buff.append day.to_s
225 buff.add 'T'
226 if hours < 10 then buff.add '0'
227 buff.append hours.to_s
228 buff.add ':'
229 if minutes < 10 then buff.add '0'
230 buff.append minutes.to_s
231 buff.add ':'
232 if seconds < 10 then buff.add '0'
233 buff.append seconds.to_s
234 buff.append timezone
235 return buff.write_to_string
236 end
237
238 redef type OTHER: ISODate
239
240 # TODO handle timezones
241 redef fun <(o) do return to_s < o.to_s
242 end