2014-04-01 17:14:57 +00:00
|
|
|
// This is a part of rust-chrono.
|
|
|
|
// Copyright (c) 2014, Kang Seonghoon.
|
|
|
|
// See README.md and LICENSE.txt for details.
|
|
|
|
|
2014-03-28 11:38:11 +00:00
|
|
|
/*!
|
|
|
|
* ISO 8601 date and time.
|
|
|
|
*/
|
|
|
|
|
2014-07-29 06:41:07 +00:00
|
|
|
use std::{fmt, hash};
|
|
|
|
use offset::Offset;
|
2014-03-29 20:13:44 +00:00
|
|
|
use duration::Duration;
|
2014-07-29 06:41:07 +00:00
|
|
|
use time::{Timelike, TimeZ, Time};
|
|
|
|
use date::{Datelike, DateZ, Date, Weekday};
|
2014-03-28 11:38:11 +00:00
|
|
|
|
2014-07-29 06:33:46 +00:00
|
|
|
/// ISO 8601 combined date and time without timezone.
|
|
|
|
#[deriving(PartialEq, Eq, PartialOrd, Ord, Clone, Hash)]
|
2014-03-28 12:56:38 +00:00
|
|
|
pub struct DateTimeZ {
|
|
|
|
date: DateZ,
|
|
|
|
time: TimeZ,
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
|
2014-03-28 12:56:38 +00:00
|
|
|
impl DateTimeZ {
|
2014-07-25 09:12:51 +00:00
|
|
|
/// Makes a new `DateTimeZ` from date and time components.
|
2014-03-28 11:38:11 +00:00
|
|
|
#[inline]
|
2014-03-28 12:56:38 +00:00
|
|
|
pub fn new(date: DateZ, time: TimeZ) -> DateTimeZ {
|
|
|
|
DateTimeZ { date: date, time: time }
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
|
2014-07-25 09:12:51 +00:00
|
|
|
/// Makes a new `DateTimeZ` from year, month, day, hour, minute and second.
|
|
|
|
///
|
|
|
|
/// Fails on invalid arguments.
|
2014-03-28 11:38:11 +00:00
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
pub fn from_ymdhms(year: i32, month: u32, day: u32,
|
2014-07-19 17:51:57 +00:00
|
|
|
hour: u32, min: u32, sec: u32) -> DateTimeZ {
|
|
|
|
let dt = DateTimeZ::from_ymdhms_opt(year, month, day, hour, min, sec);
|
|
|
|
dt.expect("invalid or out-of-range date or time")
|
|
|
|
}
|
|
|
|
|
2014-07-25 09:12:51 +00:00
|
|
|
/// Makes a new `DateTimeZ` from year, month, day, hour, minute and second.
|
|
|
|
///
|
|
|
|
/// Returns `None` on invalid arguments.
|
2014-07-19 17:51:57 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn from_ymdhms_opt(year: i32, month: u32, day: u32,
|
|
|
|
hour: u32, min: u32, sec: u32) -> Option<DateTimeZ> {
|
|
|
|
match (DateZ::from_ymd_opt(year, month, day), TimeZ::from_hms_opt(hour, min, sec)) {
|
2014-03-28 12:56:38 +00:00
|
|
|
(Some(d), Some(t)) => Some(DateTimeZ::new(d, t)),
|
2014-03-28 11:38:11 +00:00
|
|
|
(_, _) => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-25 09:12:51 +00:00
|
|
|
/// Makes a new `DateTimeZ` from year, day of year (DOY or "ordinal"), hour, minute and second.
|
|
|
|
///
|
|
|
|
/// Fails on invalid arguments.
|
2014-03-28 11:38:11 +00:00
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
pub fn from_yohms(year: i32, ordinal: u32,
|
2014-07-19 17:51:57 +00:00
|
|
|
hour: u32, min: u32, sec: u32) -> DateTimeZ {
|
|
|
|
let dt = DateTimeZ::from_yohms_opt(year, ordinal, hour, min, sec);
|
|
|
|
dt.expect("invalid or out-of-range date or time")
|
|
|
|
}
|
|
|
|
|
2014-07-25 09:12:51 +00:00
|
|
|
/// Makes a new `DateTimeZ` from year, day of year (DOY or "ordinal"), hour, minute and second.
|
|
|
|
///
|
|
|
|
/// Returns `None` on invalid arguments.
|
2014-07-19 17:51:57 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn from_yohms_opt(year: i32, ordinal: u32,
|
|
|
|
hour: u32, min: u32, sec: u32) -> Option<DateTimeZ> {
|
|
|
|
match (DateZ::from_yo_opt(year, ordinal), TimeZ::from_hms_opt(hour, min, sec)) {
|
2014-03-28 12:56:38 +00:00
|
|
|
(Some(d), Some(t)) => Some(DateTimeZ::new(d, t)),
|
2014-03-28 11:38:11 +00:00
|
|
|
(_, _) => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-25 09:12:51 +00:00
|
|
|
/// Makes a new `DateTimeZ` from ISO week date (year and week number), day of the week (DOW),
|
|
|
|
/// hour, minute and second.
|
|
|
|
///
|
|
|
|
/// Fails on invalid arguments.
|
2014-03-28 11:38:11 +00:00
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
pub fn from_isoywdhms(year: i32, week: u32, weekday: Weekday,
|
2014-07-19 17:51:57 +00:00
|
|
|
hour: u32, min: u32, sec: u32) -> DateTimeZ {
|
|
|
|
let dt = DateTimeZ::from_isoywdhms_opt(year, week, weekday, hour, min, sec);
|
|
|
|
dt.expect("invalid or out-of-range date or time")
|
|
|
|
}
|
|
|
|
|
2014-07-25 09:12:51 +00:00
|
|
|
/// Makes a new `DateTimeZ` from ISO week date (year and week number), day of the week (DOW),
|
|
|
|
/// hour, minute and second.
|
|
|
|
///
|
|
|
|
/// Returns `None` on invalid arguments.
|
2014-07-19 17:51:57 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn from_isoywdhms_opt(year: i32, week: u32, weekday: Weekday,
|
|
|
|
hour: u32, min: u32, sec: u32) -> Option<DateTimeZ> {
|
|
|
|
match (DateZ::from_isoywd_opt(year, week, weekday), TimeZ::from_hms_opt(hour, min, sec)) {
|
2014-03-28 12:56:38 +00:00
|
|
|
(Some(d), Some(t)) => Some(DateTimeZ::new(d, t)),
|
2014-03-28 11:38:11 +00:00
|
|
|
(_, _) => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-29 06:33:46 +00:00
|
|
|
/// Retrieves a date component.
|
2014-04-01 16:30:52 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn date(&self) -> DateZ {
|
|
|
|
self.date
|
|
|
|
}
|
|
|
|
|
2014-07-29 06:33:46 +00:00
|
|
|
/// Retrieves a time component.
|
2014-04-01 16:30:52 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn time(&self) -> TimeZ {
|
|
|
|
self.time
|
|
|
|
}
|
|
|
|
|
2014-07-29 06:33:46 +00:00
|
|
|
/// Returns the number of non-leap seconds since January 1, 1970 0:00:00 UTC.
|
2014-03-28 12:56:38 +00:00
|
|
|
/// Note that this does *not* account for the timezone!
|
2014-03-28 11:38:11 +00:00
|
|
|
#[inline]
|
2014-07-25 12:00:32 +00:00
|
|
|
pub fn num_seconds_from_unix_epoch(&self) -> i64 {
|
|
|
|
let ndays = self.date.num_days_from_ce() as i64;
|
|
|
|
let nseconds = self.time.num_seconds_from_midnight() as i64;
|
2014-07-19 17:00:33 +00:00
|
|
|
(ndays - 719163) * 86400 + nseconds
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
2014-03-28 12:56:38 +00:00
|
|
|
}
|
2014-03-28 11:38:11 +00:00
|
|
|
|
2014-03-28 12:56:38 +00:00
|
|
|
impl Datelike for DateTimeZ {
|
2014-07-19 17:00:33 +00:00
|
|
|
#[inline] fn year(&self) -> i32 { self.date.year() }
|
|
|
|
#[inline] fn month(&self) -> u32 { self.date.month() }
|
|
|
|
#[inline] fn month0(&self) -> u32 { self.date.month0() }
|
|
|
|
#[inline] fn day(&self) -> u32 { self.date.day() }
|
|
|
|
#[inline] fn day0(&self) -> u32 { self.date.day0() }
|
|
|
|
#[inline] fn ordinal(&self) -> u32 { self.date.ordinal() }
|
|
|
|
#[inline] fn ordinal0(&self) -> u32 { self.date.ordinal0() }
|
2014-03-28 12:56:38 +00:00
|
|
|
#[inline] fn weekday(&self) -> Weekday { self.date.weekday() }
|
2014-07-19 17:00:33 +00:00
|
|
|
#[inline] fn isoweekdate(&self) -> (i32, u32, Weekday) { self.date.isoweekdate() }
|
2014-03-28 11:38:11 +00:00
|
|
|
|
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
fn with_year(&self, year: i32) -> Option<DateTimeZ> {
|
2014-03-28 12:56:38 +00:00
|
|
|
self.date.with_year(year).map(|d| DateTimeZ { date: d, ..*self })
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
fn with_month(&self, month: u32) -> Option<DateTimeZ> {
|
2014-03-28 12:56:38 +00:00
|
|
|
self.date.with_month(month).map(|d| DateTimeZ { date: d, ..*self })
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
fn with_month0(&self, month0: u32) -> Option<DateTimeZ> {
|
2014-03-28 12:56:38 +00:00
|
|
|
self.date.with_month0(month0).map(|d| DateTimeZ { date: d, ..*self })
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
fn with_day(&self, day: u32) -> Option<DateTimeZ> {
|
2014-03-28 12:56:38 +00:00
|
|
|
self.date.with_day(day).map(|d| DateTimeZ { date: d, ..*self })
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
fn with_day0(&self, day0: u32) -> Option<DateTimeZ> {
|
2014-03-28 12:56:38 +00:00
|
|
|
self.date.with_day0(day0).map(|d| DateTimeZ { date: d, ..*self })
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
fn with_ordinal(&self, ordinal: u32) -> Option<DateTimeZ> {
|
2014-03-28 12:56:38 +00:00
|
|
|
self.date.with_ordinal(ordinal).map(|d| DateTimeZ { date: d, ..*self })
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
fn with_ordinal0(&self, ordinal0: u32) -> Option<DateTimeZ> {
|
2014-03-28 12:56:38 +00:00
|
|
|
self.date.with_ordinal0(ordinal0).map(|d| DateTimeZ { date: d, ..*self })
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
2014-03-28 12:56:38 +00:00
|
|
|
}
|
2014-03-28 11:38:11 +00:00
|
|
|
|
2014-03-28 12:56:38 +00:00
|
|
|
impl Timelike for DateTimeZ {
|
2014-07-19 17:00:33 +00:00
|
|
|
#[inline] fn hour(&self) -> u32 { self.time.hour() }
|
|
|
|
#[inline] fn minute(&self) -> u32 { self.time.minute() }
|
|
|
|
#[inline] fn second(&self) -> u32 { self.time.second() }
|
|
|
|
#[inline] fn nanosecond(&self) -> u32 { self.time.nanosecond() }
|
2014-03-28 11:38:11 +00:00
|
|
|
|
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
fn with_hour(&self, hour: u32) -> Option<DateTimeZ> {
|
2014-03-28 12:56:38 +00:00
|
|
|
self.time.with_hour(hour).map(|t| DateTimeZ { time: t, ..*self })
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
fn with_minute(&self, min: u32) -> Option<DateTimeZ> {
|
2014-03-28 12:56:38 +00:00
|
|
|
self.time.with_minute(min).map(|t| DateTimeZ { time: t, ..*self })
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
fn with_second(&self, sec: u32) -> Option<DateTimeZ> {
|
2014-03-28 12:56:38 +00:00
|
|
|
self.time.with_second(sec).map(|t| DateTimeZ { time: t, ..*self })
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2014-07-19 17:00:33 +00:00
|
|
|
fn with_nanosecond(&self, nano: u32) -> Option<DateTimeZ> {
|
2014-03-28 12:56:38 +00:00
|
|
|
self.time.with_nanosecond(nano).map(|t| DateTimeZ { time: t, ..*self })
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-29 20:13:44 +00:00
|
|
|
impl Add<Duration,DateTimeZ> for DateTimeZ {
|
|
|
|
fn add(&self, rhs: &Duration) -> DateTimeZ {
|
2014-07-29 06:38:24 +00:00
|
|
|
// we want `(DateZ + days in Duration) + (TimeZ + secs/nanos in Duration)`
|
|
|
|
// to be equal to `DateTimeZ + Duration`, but `DateZ + Duration` rounds towards zero.
|
|
|
|
let mut date = self.date + Duration::days(rhs.to_tuple().val0());
|
2014-03-29 20:13:44 +00:00
|
|
|
let time = self.time + *rhs;
|
|
|
|
if time < self.time {
|
|
|
|
// since the time portion of the duration is always positive and bounded,
|
|
|
|
// this condition always means that the time part has been overflowed.
|
2014-07-19 17:51:57 +00:00
|
|
|
date = date.succ();
|
2014-03-29 20:13:44 +00:00
|
|
|
}
|
|
|
|
DateTimeZ { date: date, time: time }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
// Rust issue #7590, the current coherence checker can't handle multiple Add impls
|
|
|
|
impl Add<DateTimeZ,DateTimeZ> for Duration {
|
|
|
|
#[inline]
|
|
|
|
fn add(&self, rhs: &DateTimeZ) -> DateTimeZ { rhs.add(self) }
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
impl Sub<DateTimeZ,Duration> for DateTimeZ {
|
|
|
|
fn sub(&self, rhs: &DateTimeZ) -> Duration {
|
|
|
|
(self.date - rhs.date) + (self.time - rhs.time)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-28 12:56:38 +00:00
|
|
|
impl fmt::Show for DateTimeZ {
|
2014-03-28 11:38:11 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2014-05-23 14:45:12 +00:00
|
|
|
write!(f, "{}T{}", self.date, self.time)
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-29 06:41:07 +00:00
|
|
|
/// ISO 8601 combined date and time with timezone.
|
|
|
|
#[deriving(Clone)]
|
|
|
|
pub struct DateTime<Off> {
|
|
|
|
datetime: DateTimeZ,
|
|
|
|
offset: Off,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Off:Offset> DateTime<Off> {
|
|
|
|
/// Makes a new `DateTime` with given *UTC* datetime and offset.
|
|
|
|
/// The local datetime should be constructed via the `Offset` trait.
|
|
|
|
#[inline]
|
|
|
|
pub fn from_utc(datetime: DateTimeZ, offset: Off) -> DateTime<Off> {
|
|
|
|
DateTime { datetime: datetime, offset: offset }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Retrieves a date component.
|
|
|
|
#[inline]
|
|
|
|
pub fn date(&self) -> Date<Off> {
|
|
|
|
Date::from_utc(self.datetime.date().clone(), self.offset.clone())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Retrieves a time component.
|
|
|
|
#[inline]
|
|
|
|
pub fn time(&self) -> Time<Off> {
|
|
|
|
Time::from_utc(self.datetime.time().clone(), self.offset.clone())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the number of non-leap seconds since January 1, 1970 0:00:00 UTC.
|
|
|
|
#[inline]
|
|
|
|
pub fn num_seconds_from_unix_epoch(&self) -> i64 {
|
|
|
|
self.datetime.num_seconds_from_unix_epoch()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns a view to the local datetime.
|
|
|
|
fn local(&self) -> DateTimeZ {
|
|
|
|
self.offset.to_local_datetime(&self.datetime)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Off:Offset> Datelike for DateTime<Off> {
|
|
|
|
#[inline] fn year(&self) -> i32 { self.local().year() }
|
|
|
|
#[inline] fn month(&self) -> u32 { self.local().month() }
|
|
|
|
#[inline] fn month0(&self) -> u32 { self.local().month0() }
|
|
|
|
#[inline] fn day(&self) -> u32 { self.local().day() }
|
|
|
|
#[inline] fn day0(&self) -> u32 { self.local().day0() }
|
|
|
|
#[inline] fn ordinal(&self) -> u32 { self.local().ordinal() }
|
|
|
|
#[inline] fn ordinal0(&self) -> u32 { self.local().ordinal0() }
|
|
|
|
#[inline] fn weekday(&self) -> Weekday { self.local().weekday() }
|
|
|
|
#[inline] fn isoweekdate(&self) -> (i32, u32, Weekday) { self.local().isoweekdate() }
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_year(&self, year: i32) -> Option<DateTime<Off>> {
|
|
|
|
self.local().with_year(year)
|
|
|
|
.and_then(|datetime| self.offset.from_local_datetime(&datetime).single())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_month(&self, month: u32) -> Option<DateTime<Off>> {
|
|
|
|
self.local().with_month(month)
|
|
|
|
.and_then(|datetime| self.offset.from_local_datetime(&datetime).single())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_month0(&self, month0: u32) -> Option<DateTime<Off>> {
|
|
|
|
self.local().with_month0(month0)
|
|
|
|
.and_then(|datetime| self.offset.from_local_datetime(&datetime).single())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_day(&self, day: u32) -> Option<DateTime<Off>> {
|
|
|
|
self.local().with_day(day)
|
|
|
|
.and_then(|datetime| self.offset.from_local_datetime(&datetime).single())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_day0(&self, day0: u32) -> Option<DateTime<Off>> {
|
|
|
|
self.local().with_day0(day0)
|
|
|
|
.and_then(|datetime| self.offset.from_local_datetime(&datetime).single())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_ordinal(&self, ordinal: u32) -> Option<DateTime<Off>> {
|
|
|
|
self.local().with_ordinal(ordinal)
|
|
|
|
.and_then(|datetime| self.offset.from_local_datetime(&datetime).single())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_ordinal0(&self, ordinal0: u32) -> Option<DateTime<Off>> {
|
|
|
|
self.local().with_ordinal0(ordinal0)
|
|
|
|
.and_then(|datetime| self.offset.from_local_datetime(&datetime).single())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Off:Offset> Timelike for DateTime<Off> {
|
|
|
|
#[inline] fn hour(&self) -> u32 { self.local().hour() }
|
|
|
|
#[inline] fn minute(&self) -> u32 { self.local().minute() }
|
|
|
|
#[inline] fn second(&self) -> u32 { self.local().second() }
|
|
|
|
#[inline] fn nanosecond(&self) -> u32 { self.local().nanosecond() }
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_hour(&self, hour: u32) -> Option<DateTime<Off>> {
|
|
|
|
self.local().with_hour(hour)
|
|
|
|
.and_then(|datetime| self.offset.from_local_datetime(&datetime).single())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_minute(&self, min: u32) -> Option<DateTime<Off>> {
|
|
|
|
self.local().with_minute(min)
|
|
|
|
.and_then(|datetime| self.offset.from_local_datetime(&datetime).single())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_second(&self, sec: u32) -> Option<DateTime<Off>> {
|
|
|
|
self.local().with_second(sec)
|
|
|
|
.and_then(|datetime| self.offset.from_local_datetime(&datetime).single())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_nanosecond(&self, nano: u32) -> Option<DateTime<Off>> {
|
|
|
|
self.local().with_nanosecond(nano)
|
|
|
|
.and_then(|datetime| self.offset.from_local_datetime(&datetime).single())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Off:Offset> PartialEq for DateTime<Off> {
|
|
|
|
fn eq(&self, other: &DateTime<Off>) -> bool { self.datetime == other.datetime }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Off:Offset> Eq for DateTime<Off> {
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Off:Offset, Off2:Offset> Equiv<DateTime<Off2>> for DateTime<Off> {
|
|
|
|
fn equiv(&self, other: &DateTime<Off2>) -> bool { self.datetime == other.datetime }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Off:Offset> PartialOrd for DateTime<Off> {
|
|
|
|
fn partial_cmp(&self, other: &DateTime<Off>) -> Option<Ordering> {
|
|
|
|
self.datetime.partial_cmp(&other.datetime)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Off:Offset> Ord for DateTime<Off> {
|
|
|
|
fn cmp(&self, other: &DateTime<Off>) -> Ordering { self.datetime.cmp(&other.datetime) }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Off:Offset> hash::Hash for DateTime<Off> {
|
|
|
|
fn hash(&self, state: &mut hash::sip::SipState) { self.datetime.hash(state) }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Off:Offset> Add<Duration,DateTime<Off>> for DateTime<Off> {
|
|
|
|
fn add(&self, rhs: &Duration) -> DateTime<Off> {
|
|
|
|
DateTime { datetime: self.datetime + *rhs, offset: self.offset.clone() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
// Rust issue #7590, the current coherence checker can't handle multiple Add impls
|
|
|
|
impl<Off:Offset> Add<DateTime<Off>,DateTime<Off>> for Duration {
|
|
|
|
#[inline]
|
|
|
|
fn add(&self, rhs: &DateTime<Off>) -> DateTime<Off> { rhs.add(self) }
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
impl<Off:Offset, Off2:Offset> Sub<DateTime<Off2>,Duration> for DateTime<Off> {
|
|
|
|
fn sub(&self, rhs: &DateTime<Off2>) -> Duration {
|
|
|
|
self.datetime - rhs.datetime
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Off:Offset> fmt::Show for DateTime<Off> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "{}{}", self.local(), self.offset)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-28 11:38:11 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2014-07-15 03:53:40 +00:00
|
|
|
use super::DateTimeZ;
|
2014-03-29 20:13:44 +00:00
|
|
|
use duration::Duration;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_datetime_add() {
|
2014-07-19 17:51:57 +00:00
|
|
|
let ymdhms = |y,m,d,h,n,s| DateTimeZ::from_ymdhms(y,m,d,h,n,s);
|
2014-03-29 20:13:44 +00:00
|
|
|
assert_eq!(ymdhms(2014, 5, 6, 7, 8, 9) + Duration::seconds(3600 + 60 + 1),
|
|
|
|
ymdhms(2014, 5, 6, 8, 9, 10));
|
2014-07-29 06:38:24 +00:00
|
|
|
assert_eq!(ymdhms(2014, 5, 6, 7, 8, 9) + Duration::seconds(-(3600 + 60 + 1)),
|
|
|
|
ymdhms(2014, 5, 6, 6, 7, 8));
|
2014-03-29 20:13:44 +00:00
|
|
|
assert_eq!(ymdhms(2014, 5, 6, 7, 8, 9) + Duration::seconds(86399),
|
|
|
|
ymdhms(2014, 5, 7, 7, 8, 8));
|
|
|
|
assert_eq!(ymdhms(2014, 5, 6, 7, 8, 9) + Duration::seconds(86400 * 10),
|
|
|
|
ymdhms(2014, 5, 16, 7, 8, 9));
|
|
|
|
assert_eq!(ymdhms(2014, 5, 6, 7, 8, 9) + Duration::seconds(-86400 * 10),
|
|
|
|
ymdhms(2014, 4, 26, 7, 8, 9));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_datetime_sub() {
|
2014-07-19 17:51:57 +00:00
|
|
|
let ymdhms = |y,m,d,h,n,s| DateTimeZ::from_ymdhms(y,m,d,h,n,s);
|
2014-03-29 20:13:44 +00:00
|
|
|
assert_eq!(ymdhms(2014, 5, 6, 7, 8, 9) - ymdhms(2014, 5, 6, 7, 8, 9), Duration::zero());
|
|
|
|
assert_eq!(ymdhms(2014, 5, 6, 7, 8, 10) - ymdhms(2014, 5, 6, 7, 8, 9),
|
|
|
|
Duration::seconds(1));
|
|
|
|
assert_eq!(ymdhms(2014, 5, 6, 7, 8, 9) - ymdhms(2014, 5, 6, 7, 8, 10),
|
|
|
|
Duration::seconds(-1));
|
|
|
|
assert_eq!(ymdhms(2014, 5, 7, 7, 8, 9) - ymdhms(2014, 5, 6, 7, 8, 10),
|
|
|
|
Duration::seconds(86399));
|
|
|
|
assert_eq!(ymdhms(2001, 9, 9, 1, 46, 39) - ymdhms(1970, 1, 1, 0, 0, 0),
|
|
|
|
Duration::seconds(999_999_999));
|
|
|
|
}
|
2014-03-28 11:38:11 +00:00
|
|
|
|
|
|
|
#[test]
|
2014-07-29 06:33:46 +00:00
|
|
|
fn test_datetime_num_seconds_from_unix_epoch() {
|
2014-03-28 11:38:11 +00:00
|
|
|
let to_timestamp =
|
2014-07-25 12:00:32 +00:00
|
|
|
|y,m,d,h,n,s| DateTimeZ::from_ymdhms(y,m,d,h,n,s).num_seconds_from_unix_epoch();
|
2014-03-28 11:38:11 +00:00
|
|
|
assert_eq!(to_timestamp(1969, 12, 31, 23, 59, 59), -1);
|
|
|
|
assert_eq!(to_timestamp(1970, 1, 1, 0, 0, 0), 0);
|
|
|
|
assert_eq!(to_timestamp(1970, 1, 1, 0, 0, 1), 1);
|
|
|
|
assert_eq!(to_timestamp(2001, 9, 9, 1, 46, 40), 1_000_000_000);
|
|
|
|
assert_eq!(to_timestamp(2038, 1, 19, 3, 14, 7), 0x7fffffff);
|
|
|
|
}
|
2014-07-29 06:41:07 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[allow(uppercase_variables)]
|
|
|
|
fn test_datetime_offset() {
|
|
|
|
use offset::{Offset, UTC, FixedOffset};
|
|
|
|
let EDT = FixedOffset::east(4*60*60);
|
|
|
|
assert_eq!(UTC.ymd(2014, 5, 6).and_hms(7, 8, 9).to_string(),
|
|
|
|
"2014-05-06T07:08:09Z".to_string());
|
|
|
|
assert_eq!(EDT.ymd(2014, 5, 6).and_hms(7, 8, 9).to_string(),
|
|
|
|
"2014-05-06T07:08:09+04:00".to_string());
|
|
|
|
assert!(UTC.ymd(2014, 5, 6).and_hms(7, 8, 9).equiv(&EDT.ymd(2014, 5, 6).and_hms(11, 8, 9)));
|
|
|
|
assert_eq!(UTC.ymd(2014, 5, 6).and_hms(7, 8, 9) + Duration::seconds(3600 + 60 + 1),
|
|
|
|
UTC.ymd(2014, 5, 6).and_hms(8, 9, 10));
|
|
|
|
assert_eq!(UTC.ymd(2014, 5, 6).and_hms(7, 8, 9) - EDT.ymd(2014, 5, 6).and_hms(10, 11, 12),
|
|
|
|
Duration::seconds(3600 - 3*60 - 3));
|
|
|
|
}
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
|