1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use glib_sys;
use std::cmp;
use std::hash;
use std::mem;
use translate::*;
use GString;
use TimeSpan;
use TimeZone;

glib_wrapper! {
    #[derive(Debug)]
    pub struct DateTime(Shared<glib_sys::GDateTime>);

    match fn {
        ref => |ptr| glib_sys::g_date_time_ref(ptr),
        unref => |ptr| glib_sys::g_date_time_unref(ptr),
        get_type => || glib_sys::g_date_time_get_type(),
    }
}

impl DateTime {
    pub fn new(
        tz: &TimeZone,
        year: i32,
        month: i32,
        day: i32,
        hour: i32,
        minute: i32,
        seconds: f64,
    ) -> DateTime {
        unsafe {
            from_glib_full(glib_sys::g_date_time_new(
                tz.to_glib_none().0,
                year,
                month,
                day,
                hour,
                minute,
                seconds,
            ))
        }
    }

    #[cfg(any(feature = "v2_56", feature = "dox"))]
    pub fn new_from_iso8601(text: &str, default_tz: Option<&TimeZone>) -> Option<DateTime> {
        unsafe {
            from_glib_full(glib_sys::g_date_time_new_from_iso8601(
                text.to_glib_none().0,
                default_tz.to_glib_none().0,
            ))
        }
    }

    //#[cfg_attr(feature = "v2_62", deprecated)]
    //pub fn new_from_timeval_local(tv: /*Ignored*/&TimeVal) -> DateTime {
    //    unsafe { TODO: call glib_sys:g_date_time_new_from_timeval_local() }
    //}

    //#[cfg_attr(feature = "v2_62", deprecated)]
    //pub fn new_from_timeval_utc(tv: /*Ignored*/&TimeVal) -> DateTime {
    //    unsafe { TODO: call glib_sys:g_date_time_new_from_timeval_utc() }
    //}

    pub fn new_from_unix_local(t: i64) -> DateTime {
        unsafe { from_glib_full(glib_sys::g_date_time_new_from_unix_local(t)) }
    }

    pub fn new_from_unix_utc(t: i64) -> DateTime {
        unsafe { from_glib_full(glib_sys::g_date_time_new_from_unix_utc(t)) }
    }

    pub fn new_local(
        year: i32,
        month: i32,
        day: i32,
        hour: i32,
        minute: i32,
        seconds: f64,
    ) -> DateTime {
        unsafe {
            from_glib_full(glib_sys::g_date_time_new_local(
                year, month, day, hour, minute, seconds,
            ))
        }
    }

    pub fn new_now(tz: &TimeZone) -> DateTime {
        unsafe { from_glib_full(glib_sys::g_date_time_new_now(tz.to_glib_none().0)) }
    }

    pub fn new_now_local() -> DateTime {
        unsafe { from_glib_full(glib_sys::g_date_time_new_now_local()) }
    }

    pub fn new_now_utc() -> DateTime {
        unsafe { from_glib_full(glib_sys::g_date_time_new_now_utc()) }
    }

    pub fn new_utc(
        year: i32,
        month: i32,
        day: i32,
        hour: i32,
        minute: i32,
        seconds: f64,
    ) -> DateTime {
        unsafe {
            from_glib_full(glib_sys::g_date_time_new_utc(
                year, month, day, hour, minute, seconds,
            ))
        }
    }

    pub fn add(&self, timespan: TimeSpan) -> Option<DateTime> {
        unsafe { from_glib_full(glib_sys::g_date_time_add(self.to_glib_none().0, timespan)) }
    }

    pub fn add_days(&self, days: i32) -> Option<DateTime> {
        unsafe { from_glib_full(glib_sys::g_date_time_add_days(self.to_glib_none().0, days)) }
    }

    pub fn add_full(
        &self,
        years: i32,
        months: i32,
        days: i32,
        hours: i32,
        minutes: i32,
        seconds: f64,
    ) -> Option<DateTime> {
        unsafe {
            from_glib_full(glib_sys::g_date_time_add_full(
                self.to_glib_none().0,
                years,
                months,
                days,
                hours,
                minutes,
                seconds,
            ))
        }
    }

    pub fn add_hours(&self, hours: i32) -> Option<DateTime> {
        unsafe {
            from_glib_full(glib_sys::g_date_time_add_hours(
                self.to_glib_none().0,
                hours,
            ))
        }
    }

    pub fn add_minutes(&self, minutes: i32) -> Option<DateTime> {
        unsafe {
            from_glib_full(glib_sys::g_date_time_add_minutes(
                self.to_glib_none().0,
                minutes,
            ))
        }
    }

    pub fn add_months(&self, months: i32) -> Option<DateTime> {
        unsafe {
            from_glib_full(glib_sys::g_date_time_add_months(
                self.to_glib_none().0,
                months,
            ))
        }
    }

    pub fn add_seconds(&self, seconds: f64) -> Option<DateTime> {
        unsafe {
            from_glib_full(glib_sys::g_date_time_add_seconds(
                self.to_glib_none().0,
                seconds,
            ))
        }
    }

    pub fn add_weeks(&self, weeks: i32) -> Option<DateTime> {
        unsafe {
            from_glib_full(glib_sys::g_date_time_add_weeks(
                self.to_glib_none().0,
                weeks,
            ))
        }
    }

    pub fn add_years(&self, years: i32) -> Option<DateTime> {
        unsafe {
            from_glib_full(glib_sys::g_date_time_add_years(
                self.to_glib_none().0,
                years,
            ))
        }
    }

    pub fn difference(&self, begin: &DateTime) -> TimeSpan {
        unsafe { glib_sys::g_date_time_difference(self.to_glib_none().0, begin.to_glib_none().0) }
    }

    pub fn format(&self, format: &str) -> Option<GString> {
        unsafe {
            from_glib_full(glib_sys::g_date_time_format(
                self.to_glib_none().0,
                format.to_glib_none().0,
            ))
        }
    }

    #[cfg(any(feature = "v2_62", feature = "dox"))]
    pub fn format_iso8601(&self) -> Option<GString> {
        unsafe { from_glib_full(glib_sys::g_date_time_format_iso8601(self.to_glib_none().0)) }
    }

    pub fn get_day_of_month(&self) -> i32 {
        unsafe { glib_sys::g_date_time_get_day_of_month(self.to_glib_none().0) }
    }

    pub fn get_day_of_week(&self) -> i32 {
        unsafe { glib_sys::g_date_time_get_day_of_week(self.to_glib_none().0) }
    }

    pub fn get_day_of_year(&self) -> i32 {
        unsafe { glib_sys::g_date_time_get_day_of_year(self.to_glib_none().0) }
    }

    pub fn get_hour(&self) -> i32 {
        unsafe { glib_sys::g_date_time_get_hour(self.to_glib_none().0) }
    }

    pub fn get_microsecond(&self) -> i32 {
        unsafe { glib_sys::g_date_time_get_microsecond(self.to_glib_none().0) }
    }

    pub fn get_minute(&self) -> i32 {
        unsafe { glib_sys::g_date_time_get_minute(self.to_glib_none().0) }
    }

    pub fn get_month(&self) -> i32 {
        unsafe { glib_sys::g_date_time_get_month(self.to_glib_none().0) }
    }

    pub fn get_second(&self) -> i32 {
        unsafe { glib_sys::g_date_time_get_second(self.to_glib_none().0) }
    }

    pub fn get_seconds(&self) -> f64 {
        unsafe { glib_sys::g_date_time_get_seconds(self.to_glib_none().0) }
    }

    #[cfg(any(feature = "v2_58", feature = "dox"))]
    pub fn get_timezone(&self) -> Option<TimeZone> {
        unsafe { from_glib_none(glib_sys::g_date_time_get_timezone(self.to_glib_none().0)) }
    }

    pub fn get_timezone_abbreviation(&self) -> Option<GString> {
        unsafe {
            from_glib_none(glib_sys::g_date_time_get_timezone_abbreviation(
                self.to_glib_none().0,
            ))
        }
    }

    pub fn get_utc_offset(&self) -> TimeSpan {
        unsafe { glib_sys::g_date_time_get_utc_offset(self.to_glib_none().0) }
    }

    pub fn get_week_numbering_year(&self) -> i32 {
        unsafe { glib_sys::g_date_time_get_week_numbering_year(self.to_glib_none().0) }
    }

    pub fn get_week_of_year(&self) -> i32 {
        unsafe { glib_sys::g_date_time_get_week_of_year(self.to_glib_none().0) }
    }

    pub fn get_year(&self) -> i32 {
        unsafe { glib_sys::g_date_time_get_year(self.to_glib_none().0) }
    }

    pub fn get_ymd(&self) -> (i32, i32, i32) {
        unsafe {
            let mut year = mem::MaybeUninit::uninit();
            let mut month = mem::MaybeUninit::uninit();
            let mut day = mem::MaybeUninit::uninit();
            glib_sys::g_date_time_get_ymd(
                self.to_glib_none().0,
                year.as_mut_ptr(),
                month.as_mut_ptr(),
                day.as_mut_ptr(),
            );
            let year = year.assume_init();
            let month = month.assume_init();
            let day = day.assume_init();
            (year, month, day)
        }
    }

    pub fn is_daylight_savings(&self) -> bool {
        unsafe {
            from_glib(glib_sys::g_date_time_is_daylight_savings(
                self.to_glib_none().0,
            ))
        }
    }

    pub fn to_local(&self) -> Option<DateTime> {
        unsafe { from_glib_full(glib_sys::g_date_time_to_local(self.to_glib_none().0)) }
    }

    //#[cfg_attr(feature = "v2_62", deprecated)]
    //pub fn to_timeval(&self, tv: /*Ignored*/&mut TimeVal) -> bool {
    //    unsafe { TODO: call glib_sys:g_date_time_to_timeval() }
    //}

    pub fn to_timezone(&self, tz: &TimeZone) -> Option<DateTime> {
        unsafe {
            from_glib_full(glib_sys::g_date_time_to_timezone(
                self.to_glib_none().0,
                tz.to_glib_none().0,
            ))
        }
    }

    pub fn to_unix(&self) -> i64 {
        unsafe { glib_sys::g_date_time_to_unix(self.to_glib_none().0) }
    }

    pub fn to_utc(&self) -> Option<DateTime> {
        unsafe { from_glib_full(glib_sys::g_date_time_to_utc(self.to_glib_none().0)) }
    }

    fn compare(&self, dt2: &DateTime) -> i32 {
        unsafe {
            glib_sys::g_date_time_compare(
                ToGlibPtr::<*mut glib_sys::GDateTime>::to_glib_none(self).0
                    as glib_sys::gconstpointer,
                ToGlibPtr::<*mut glib_sys::GDateTime>::to_glib_none(dt2).0
                    as glib_sys::gconstpointer,
            )
        }
    }

    fn equal(&self, dt2: &DateTime) -> bool {
        unsafe {
            from_glib(glib_sys::g_date_time_equal(
                ToGlibPtr::<*mut glib_sys::GDateTime>::to_glib_none(self).0
                    as glib_sys::gconstpointer,
                ToGlibPtr::<*mut glib_sys::GDateTime>::to_glib_none(dt2).0
                    as glib_sys::gconstpointer,
            ))
        }
    }

    fn hash(&self) -> u32 {
        unsafe {
            glib_sys::g_date_time_hash(
                ToGlibPtr::<*mut glib_sys::GDateTime>::to_glib_none(self).0
                    as glib_sys::gconstpointer,
            )
        }
    }
}

impl PartialOrd for DateTime {
    #[inline]
    fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
        self.compare(other).partial_cmp(&0)
    }
}

impl Ord for DateTime {
    #[inline]
    fn cmp(&self, other: &Self) -> cmp::Ordering {
        self.compare(other).cmp(&0)
    }
}

impl PartialEq for DateTime {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        self.equal(other)
    }
}

impl Eq for DateTime {}

impl hash::Hash for DateTime {
    #[inline]
    fn hash<H>(&self, state: &mut H)
    where
        H: hash::Hasher,
    {
        hash::Hash::hash(&self.hash(), state)
    }
}

unsafe impl Send for DateTime {}
unsafe impl Sync for DateTime {}