2017-02-05 21:15:57 +00:00
|
|
|
// This is a part of Chrono.
|
2015-01-12 16:33:53 +00:00
|
|
|
// See README.md and LICENSE.txt for details.
|
|
|
|
|
2017-02-05 23:17:01 +00:00
|
|
|
//! The time zone which has a fixed offset from UTC.
|
2015-01-12 16:33:53 +00:00
|
|
|
|
|
|
|
use std::fmt;
|
2017-02-05 23:17:01 +00:00
|
|
|
use oldtime::Duration as OldDuration;
|
2015-01-12 16:33:53 +00:00
|
|
|
|
|
|
|
use div::div_mod_floor;
|
|
|
|
use naive::date::NaiveDate;
|
|
|
|
use naive::datetime::NaiveDateTime;
|
2015-01-12 17:03:12 +00:00
|
|
|
use super::{TimeZone, Offset, LocalResult};
|
2015-01-12 16:33:53 +00:00
|
|
|
|
2015-01-12 17:03:12 +00:00
|
|
|
/// The time zone with fixed offset, from UTC-23:59:59 to UTC+23:59:59.
|
2016-11-12 21:09:08 +00:00
|
|
|
///
|
|
|
|
/// Using the [`TimeZone`](../../../chrono/offset/trait.TimeZone.html) methods
|
|
|
|
/// on a `FixedOffset` struct is the preferred way to construct
|
|
|
|
/// `DateTime<FixedOffset>` instances. See the [`east`](#method.east) and
|
|
|
|
/// [`west`](#method.west) methods for examples.
|
2015-01-12 16:33:53 +00:00
|
|
|
#[derive(Copy, Clone, PartialEq, Eq)]
|
|
|
|
pub struct FixedOffset {
|
|
|
|
local_minus_utc: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FixedOffset {
|
|
|
|
/// Makes a new `FixedOffset` for the Eastern Hemisphere with given timezone difference.
|
|
|
|
/// The negative `secs` means the Western Hemisphere.
|
|
|
|
///
|
2015-09-11 17:41:38 +00:00
|
|
|
/// Panics on the out-of-bound `secs`.
|
2016-11-12 21:09:08 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ~~~~
|
|
|
|
/// use chrono::{FixedOffset, TimeZone};
|
|
|
|
/// let hour = 3600;
|
|
|
|
/// let datetime = FixedOffset::east(5 * hour).ymd(2016, 11, 08)
|
|
|
|
/// .and_hms(0, 0, 0);
|
|
|
|
/// assert_eq!(&datetime.to_rfc3339(), "2016-11-08T00:00:00+05:00")
|
|
|
|
/// ~~~~
|
2015-01-12 16:33:53 +00:00
|
|
|
pub fn east(secs: i32) -> FixedOffset {
|
|
|
|
FixedOffset::east_opt(secs).expect("FixedOffset::east out of bounds")
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Makes a new `FixedOffset` for the Eastern Hemisphere with given timezone difference.
|
|
|
|
/// The negative `secs` means the Western Hemisphere.
|
|
|
|
///
|
|
|
|
/// Returns `None` on the out-of-bound `secs`.
|
|
|
|
pub fn east_opt(secs: i32) -> Option<FixedOffset> {
|
|
|
|
if -86400 < secs && secs < 86400 {
|
|
|
|
Some(FixedOffset { local_minus_utc: secs })
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Makes a new `FixedOffset` for the Western Hemisphere with given timezone difference.
|
|
|
|
/// The negative `secs` means the Eastern Hemisphere.
|
|
|
|
///
|
2015-09-11 17:41:38 +00:00
|
|
|
/// Panics on the out-of-bound `secs`.
|
2016-11-12 21:09:08 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ~~~~
|
|
|
|
/// use chrono::{FixedOffset, TimeZone};
|
|
|
|
/// let hour = 3600;
|
|
|
|
/// let datetime = FixedOffset::west(5 * hour).ymd(2016, 11, 08)
|
|
|
|
/// .and_hms(0, 0, 0);
|
|
|
|
/// assert_eq!(&datetime.to_rfc3339(), "2016-11-08T00:00:00-05:00")
|
|
|
|
/// ~~~~
|
2015-01-12 16:33:53 +00:00
|
|
|
pub fn west(secs: i32) -> FixedOffset {
|
|
|
|
FixedOffset::west_opt(secs).expect("FixedOffset::west out of bounds")
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Makes a new `FixedOffset` for the Western Hemisphere with given timezone difference.
|
|
|
|
/// The negative `secs` means the Eastern Hemisphere.
|
|
|
|
///
|
|
|
|
/// Returns `None` on the out-of-bound `secs`.
|
|
|
|
pub fn west_opt(secs: i32) -> Option<FixedOffset> {
|
|
|
|
if -86400 < secs && secs < 86400 {
|
|
|
|
Some(FixedOffset { local_minus_utc: -secs })
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-12 17:03:12 +00:00
|
|
|
impl TimeZone for FixedOffset {
|
|
|
|
type Offset = FixedOffset;
|
2015-01-12 16:33:53 +00:00
|
|
|
|
2016-10-01 22:56:37 +00:00
|
|
|
fn from_offset(offset: &FixedOffset) -> FixedOffset { *offset }
|
2015-01-12 16:33:53 +00:00
|
|
|
|
2015-01-12 17:03:12 +00:00
|
|
|
fn offset_from_local_date(&self, _local: &NaiveDate) -> LocalResult<FixedOffset> {
|
2016-10-01 22:56:37 +00:00
|
|
|
LocalResult::Single(*self)
|
2015-01-12 16:33:53 +00:00
|
|
|
}
|
2015-01-12 17:03:12 +00:00
|
|
|
fn offset_from_local_datetime(&self, _local: &NaiveDateTime) -> LocalResult<FixedOffset> {
|
2016-10-01 22:56:37 +00:00
|
|
|
LocalResult::Single(*self)
|
2015-01-12 16:33:53 +00:00
|
|
|
}
|
|
|
|
|
2016-10-01 22:56:37 +00:00
|
|
|
fn offset_from_utc_date(&self, _utc: &NaiveDate) -> FixedOffset { *self }
|
|
|
|
fn offset_from_utc_datetime(&self, _utc: &NaiveDateTime) -> FixedOffset { *self }
|
2015-01-12 16:33:53 +00:00
|
|
|
}
|
|
|
|
|
2015-01-12 17:03:12 +00:00
|
|
|
impl Offset for FixedOffset {
|
2017-02-05 23:17:01 +00:00
|
|
|
fn local_minus_utc(&self) -> OldDuration { OldDuration::seconds(self.local_minus_utc as i64) }
|
2015-01-12 16:33:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Debug for FixedOffset {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
let offset = self.local_minus_utc;
|
|
|
|
let (sign, offset) = if offset < 0 {('-', -offset)} else {('+', offset)};
|
|
|
|
let (mins, sec) = div_mod_floor(offset, 60);
|
|
|
|
let (hour, min) = div_mod_floor(mins, 60);
|
|
|
|
if sec == 0 {
|
|
|
|
write!(f, "{}{:02}:{:02}", sign, hour, min)
|
|
|
|
} else {
|
|
|
|
write!(f, "{}{:02}:{:02}:{:02}", sign, hour, min, sec)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for FixedOffset {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fmt::Debug::fmt(self, f) }
|
|
|
|
}
|
|
|
|
|