2014-04-01 17:14:57 +00:00
|
|
|
// This is a part of rust-chrono.
|
2015-01-04 06:08:19 +00:00
|
|
|
// Copyright (c) 2014-2015, Kang Seonghoon.
|
2014-04-01 17:14:57 +00:00
|
|
|
// 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};
|
2015-01-03 22:45:07 +00:00
|
|
|
use std::cmp::Ordering;
|
|
|
|
use std::ops::{Add, Sub};
|
2014-07-29 07:14:46 +00:00
|
|
|
|
|
|
|
use {Weekday, Timelike, Datelike};
|
2014-07-29 06:41:07 +00:00
|
|
|
use offset::Offset;
|
2014-03-29 20:13:44 +00:00
|
|
|
use duration::Duration;
|
2014-07-29 07:14:46 +00:00
|
|
|
use naive::datetime::NaiveDateTime;
|
|
|
|
use time::Time;
|
|
|
|
use date::Date;
|
2014-07-31 19:08:19 +00:00
|
|
|
use format::DelayedFormat;
|
2014-03-28 11:38:11 +00:00
|
|
|
|
2014-07-29 06:41:07 +00:00
|
|
|
/// ISO 8601 combined date and time with timezone.
|
2015-01-03 22:45:07 +00:00
|
|
|
#[derive(Clone)]
|
2014-07-29 06:41:07 +00:00
|
|
|
pub struct DateTime<Off> {
|
2014-07-29 06:55:40 +00:00
|
|
|
datetime: NaiveDateTime,
|
2014-07-29 06:41:07 +00:00
|
|
|
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]
|
2014-07-29 06:55:40 +00:00
|
|
|
pub fn from_utc(datetime: NaiveDateTime, offset: Off) -> DateTime<Off> {
|
2014-07-29 06:41:07 +00:00
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2014-08-29 09:14:08 +00:00
|
|
|
/// Retrieves an associated offset.
|
|
|
|
#[inline]
|
|
|
|
pub fn offset<'a>(&'a self) -> &'a Off {
|
|
|
|
&self.offset
|
|
|
|
}
|
|
|
|
|
2014-11-28 14:53:22 +00:00
|
|
|
/// Changes the associated offset.
|
|
|
|
/// This does not change the actual `DateTime` (but will change the string representation).
|
|
|
|
#[inline]
|
|
|
|
pub fn with_offset<Off2:Offset>(&self, offset: Off2) -> DateTime<Off2> {
|
|
|
|
DateTime::from_utc(self.datetime, offset)
|
|
|
|
}
|
|
|
|
|
2015-01-09 18:27:24 +00:00
|
|
|
/// Returns a view to the local datetime.
|
|
|
|
fn local(&self) -> NaiveDateTime {
|
|
|
|
self.offset.to_local_datetime(&self.datetime)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 08:45:12 +00:00
|
|
|
impl<Off: Offset + fmt::Display> DateTime<Off> {
|
2014-07-31 19:08:19 +00:00
|
|
|
/// Formats the combined date and time in the specified format string.
|
|
|
|
/// See the `format` module on the supported escape sequences.
|
|
|
|
#[inline]
|
|
|
|
pub fn format<'a>(&'a self, fmt: &'a str) -> DelayedFormat<'a> {
|
|
|
|
let local = self.local();
|
|
|
|
DelayedFormat::new_with_offset(Some(local.date()), Some(local.time()), &self.offset, fmt)
|
|
|
|
}
|
2014-07-29 06:41:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-13 11:29:06 +00:00
|
|
|
impl<Off:Offset, Off2:Offset> PartialEq<DateTime<Off2>> for DateTime<Off> {
|
|
|
|
fn eq(&self, other: &DateTime<Off2>) -> bool { self.datetime == other.datetime }
|
2014-07-29 06:41:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<Off:Offset> Eq for DateTime<Off> {
|
|
|
|
}
|
|
|
|
|
|
|
|
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) }
|
|
|
|
}
|
|
|
|
|
2015-01-09 18:27:24 +00:00
|
|
|
impl<Off: Offset, H: hash::Hasher + hash::Writer> hash::Hash<H> for DateTime<Off> {
|
|
|
|
fn hash(&self, state: &mut H) { self.datetime.hash(state) }
|
2014-07-29 06:41:07 +00:00
|
|
|
}
|
|
|
|
|
2015-01-05 09:31:15 +00:00
|
|
|
impl<Off:Offset> Add<Duration> for DateTime<Off> {
|
|
|
|
type Output = DateTime<Off>;
|
|
|
|
|
2014-12-17 01:28:14 +00:00
|
|
|
fn add(self, rhs: Duration) -> DateTime<Off> {
|
|
|
|
DateTime { datetime: self.datetime + rhs, offset: self.offset }
|
2014-07-29 06:41:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-05 09:31:15 +00:00
|
|
|
impl<Off:Offset, Off2:Offset> Sub<DateTime<Off2>> for DateTime<Off> {
|
|
|
|
type Output = Duration;
|
|
|
|
|
2014-12-17 01:28:14 +00:00
|
|
|
fn sub(self, rhs: DateTime<Off2>) -> Duration { self.datetime - rhs.datetime }
|
2014-07-29 06:41:07 +00:00
|
|
|
}
|
|
|
|
|
2015-01-05 09:31:15 +00:00
|
|
|
impl<Off:Offset> Sub<Duration> for DateTime<Off> {
|
|
|
|
type Output = DateTime<Off>;
|
|
|
|
|
2014-11-28 14:53:22 +00:00
|
|
|
#[inline]
|
2014-12-17 01:28:14 +00:00
|
|
|
fn sub(self, rhs: Duration) -> DateTime<Off> { self.add(-rhs) }
|
2014-11-28 14:53:22 +00:00
|
|
|
}
|
|
|
|
|
2015-01-24 08:45:12 +00:00
|
|
|
impl<Off: Offset> fmt::Debug for DateTime<Off> {
|
2015-01-09 18:27:24 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "{:?}{:?}", self.local(), self.offset)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 08:45:12 +00:00
|
|
|
impl<Off: Offset + fmt::Display> fmt::Display for DateTime<Off> {
|
2014-07-29 06:41:07 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2015-01-09 18:27:24 +00:00
|
|
|
write!(f, "{} {}", self.local(), self.offset)
|
2014-07-29 06:41:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-28 11:38:11 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2015-01-10 03:25:08 +00:00
|
|
|
use {Datelike};
|
2014-03-29 20:13:44 +00:00
|
|
|
use duration::Duration;
|
2015-01-10 03:25:08 +00:00
|
|
|
use offset::{Offset, UTC, Local, FixedOffset};
|
2014-07-29 06:41:07 +00:00
|
|
|
|
|
|
|
#[test]
|
2014-08-31 05:43:26 +00:00
|
|
|
#[allow(non_snake_case)]
|
2014-07-29 06:41:07 +00:00
|
|
|
fn test_datetime_offset() {
|
2014-08-29 09:14:08 +00:00
|
|
|
let EST = FixedOffset::east(5*60*60);
|
2014-07-29 06:41:07 +00:00
|
|
|
let EDT = FixedOffset::east(4*60*60);
|
2014-08-29 09:14:08 +00:00
|
|
|
|
2015-01-09 18:27:24 +00:00
|
|
|
assert_eq!(format!("{}", UTC.ymd(2014, 5, 6).and_hms(7, 8, 9)),
|
|
|
|
"2014-05-06 07:08:09 UTC");
|
|
|
|
assert_eq!(format!("{}", EDT.ymd(2014, 5, 6).and_hms(7, 8, 9)),
|
|
|
|
"2014-05-06 07:08:09 +04:00");
|
|
|
|
assert_eq!(format!("{:?}", UTC.ymd(2014, 5, 6).and_hms(7, 8, 9)),
|
|
|
|
"2014-05-06T07:08:09Z");
|
|
|
|
assert_eq!(format!("{:?}", EDT.ymd(2014, 5, 6).and_hms(7, 8, 9)),
|
|
|
|
"2014-05-06T07:08:09+04:00");
|
|
|
|
|
2014-12-13 11:29:06 +00:00
|
|
|
assert_eq!(UTC.ymd(2014, 5, 6).and_hms(7, 8, 9), EDT.ymd(2014, 5, 6).and_hms(11, 8, 9));
|
2014-07-29 06:41:07 +00:00
|
|
|
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-08-29 09:14:08 +00:00
|
|
|
|
|
|
|
assert_eq!(*UTC.ymd(2014, 5, 6).and_hms(7, 8, 9).offset(), UTC);
|
|
|
|
assert_eq!(*EDT.ymd(2014, 5, 6).and_hms(7, 8, 9).offset(), EDT);
|
|
|
|
assert!(*EDT.ymd(2014, 5, 6).and_hms(7, 8, 9).offset() != EST);
|
2014-07-29 06:41:07 +00:00
|
|
|
}
|
2015-01-10 03:25:08 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_datetime_fmt_with_local() {
|
|
|
|
// if we are not around the year boundary, local and UTC date should have the same year
|
|
|
|
let dt = Local::now().with_month(5).unwrap();
|
|
|
|
assert_eq!(dt.format("%Y").to_string(), dt.with_offset(UTC).format("%Y").to_string());
|
|
|
|
}
|
2014-03-28 11:38:11 +00:00
|
|
|
}
|
|
|
|
|