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
//! # Chrono-TZ 0.4.1 //! //! `Chrono-TZ` is a library that provides implementors of the //! [`TimeZone`][timezone] trait for [`rust-chrono`][chrono]. The //! impls are generated by a build script using the [`IANA database`][iana] //! and [`zoneinfo_parse`][zoneinfo_parse]. //! //! [chrono]: https://github.com/lifthrasiir/rust-chrono //! [timezone]: https://lifthrasiir.github.io/rust-chrono/chrono/offset/trait.TimeZone.html //! [iana]: http://www.iana.org/time-zones //! [zoneinfo_parse]: https://github.com/rust-datetime/zoneinfo-parse //! //! ## Usage //! //! Put this in your `Cargo.toml`: //! //! ```toml //! [dependencies] //! chrono = "0.4" //! chrono-tz = "0.4" //! ``` //! //! If you want Serde support, specify it like this: //! //! ```toml //! chrono-tz = { version = "0.4", features = ["serde"] } //! ``` //! //! Then you will need to write (in your crate root): //! //! ``` //! extern crate chrono; //! extern crate chrono_tz; //! ``` //! //! ## Examples //! //! Create a time in one timezone and convert it to UTC //! //! ``` //! # extern crate chrono; //! # extern crate chrono_tz; //! use chrono::{TimeZone, Utc}; //! use chrono_tz::US::Pacific; //! //! # fn main() { //! let pacific_time = Pacific.ymd(1990, 5, 6).and_hms(12, 30, 45); //! let utc_time = pacific_time.with_timezone(&Utc); //! assert_eq!(utc_time, Utc.ymd(1990, 5, 6).and_hms(19, 30, 45)); //! # } //! ``` //! //! Create a naive datetime and convert it to a timezone-aware datetime //! //! ``` //! # extern crate chrono; //! # extern crate chrono_tz; //! use chrono::{TimeZone, NaiveDate}; //! use chrono_tz::Africa::Johannesburg; //! //! # fn main() { //! let naive_dt = NaiveDate::from_ymd(2038, 1, 19).and_hms(3, 14, 08); //! let tz_aware = Johannesburg.from_local_datetime(&naive_dt).unwrap(); //! assert_eq!(tz_aware.to_string(), "2038-01-19 03:14:08 SAST"); //! # } //! ``` //! //! London and New York change their clocks on different days in March //! so only have a 4-hour difference on certain days. //! //! ``` //! # extern crate chrono; //! # extern crate chrono_tz; //! use chrono::TimeZone; //! use chrono_tz::Europe::London; //! use chrono_tz::America::New_York; //! //! # fn main() { //! let london_time = London.ymd(2016, 3, 18).and_hms(3, 0, 0); //! let ny_time = london_time.with_timezone(&New_York); //! assert_eq!(ny_time, New_York.ymd(2016, 3, 17).and_hms(23, 0, 0)); //! # } //! ``` //! //! Adding 24 hours across a daylight savings change causes a change //! in local time //! //! ``` //! # extern crate chrono; //! # extern crate chrono_tz; //! use chrono::{TimeZone, Duration}; //! use chrono_tz::Europe::London; //! //! # fn main() { //! let dt = London.ymd(2016, 10, 29).and_hms(12, 0, 0); //! let later = dt + Duration::hours(24); //! assert_eq!(later, London.ymd(2016, 10, 30).and_hms(11, 0, 0)); //! # } //! ``` //! //! And of course you can always convert a local time to a unix timestamp //! //! ``` //! # extern crate chrono; //! # extern crate chrono_tz; //! use chrono::TimeZone; //! use chrono_tz::Asia::Kolkata; //! //! # fn main() { //! let dt = Kolkata.ymd(2000, 1, 1).and_hms(0, 0, 0); //! let timestamp = dt.timestamp(); //! assert_eq!(timestamp, 946665000); //! # } //! ``` //! //! Pretty-printing a string will use the correct abbreviation for the timezone //! //! ``` //! # extern crate chrono; //! # extern crate chrono_tz; //! use chrono::TimeZone; //! use chrono_tz::Europe::London; //! //! # fn main() { //! let dt = London.ymd(2016, 5, 10).and_hms(12, 0, 0); //! assert_eq!(dt.to_string(), "2016-05-10 12:00:00 BST"); //! assert_eq!(dt.to_rfc3339(), "2016-05-10T12:00:00+01:00"); //! # } //! ``` //! //! You can convert a timezone string to a timezone using the FromStr trait //! //! ``` //! # extern crate chrono; //! # extern crate chrono_tz; //! use chrono::TimeZone; //! use chrono_tz::Tz; //! use chrono_tz::UTC; //! //! # fn main() { //! let tz: Tz = "Antarctica/South_Pole".parse().unwrap(); //! let dt = tz.ymd(2016, 10, 22).and_hms(12, 0, 0); //! let utc = dt.with_timezone(&UTC); //! assert_eq!(utc.to_string(), "2016-10-21 23:00:00 UTC"); //! # } //! ``` extern crate chrono; #[cfg(feature = "serde")] mod serde; mod timezone_impl; mod binary_search; mod timezones; mod directory; pub use directory::*; pub use timezones::Tz; #[cfg(test)] mod tests { use super::America::Danmarkshavn; use super::Asia::Dhaka; use super::Australia::Adelaide; use super::UTC; use super::Europe::Amsterdam; use super::Europe::Berlin; use super::Europe::London; use super::Europe::Moscow; use super::Europe::Vilnius; use super::Europe::Warsaw; use super::Pacific::Apia; use super::Pacific::Noumea; use super::Pacific::Tahiti; use super::US::Eastern; use super::Tz; use chrono::{TimeZone, Duration}; #[test] fn london_to_berlin() { let dt = London.ymd(2016, 10, 8).and_hms(17, 0, 0); let converted = dt.with_timezone(&Berlin); let expected = Berlin.ymd(2016, 10, 8).and_hms(18, 0, 0); assert_eq!(converted, expected); } #[test] fn us_eastern_dst_commutativity() { let dt = UTC.ymd(2002, 4, 7).and_hms(7, 0, 0); for days in -420..720 { let dt1 = (dt + Duration::days(days)).with_timezone(&Eastern); let dt2 = dt.with_timezone(&Eastern) + Duration::days(days); assert_eq!(dt1, dt2); } } #[test] fn warsaw_tz_name() { let dt = UTC.ymd(1915, 8, 4).and_hms(22, 35, 59); assert_eq!(dt.with_timezone(&Warsaw).format("%Z").to_string(), "WMT"); let dt = dt + Duration::seconds(1); assert_eq!(dt.with_timezone(&Warsaw).format("%Z").to_string(), "CET"); } #[test] fn vilnius_utc_offset() { let dt = UTC.ymd(1916, 12, 31).and_hms(22, 35, 59).with_timezone(&Vilnius); assert_eq!(dt, Vilnius.ymd(1916, 12, 31).and_hms(23, 59, 59)); let dt = dt + Duration::seconds(1); assert_eq!(dt, Vilnius.ymd(1917, 1, 1).and_hms(0, 11, 36)); } #[test] fn victorian_times() { let dt = UTC.ymd(1847, 12, 1).and_hms(0, 1, 14).with_timezone(&London); assert_eq!(dt, London.ymd(1847, 11, 30).and_hms(23, 59, 59)); let dt = dt + Duration::seconds(1); assert_eq!(dt, London.ymd(1847, 12, 1).and_hms(0, 1, 15)); } #[test] fn london_dst() { let dt = London.ymd(2016, 3, 10).and_hms(5, 0, 0); let later = dt + Duration::days(180); let expected = London.ymd(2016, 9, 6).and_hms(6, 0, 0); assert_eq!(later, expected); } #[test] fn international_date_line_change() { let dt = UTC.ymd(2011, 12, 30).and_hms(9, 59, 59).with_timezone(&Apia); assert_eq!(dt, Apia.ymd(2011, 12, 29).and_hms(23, 59, 59)); let dt = dt + Duration::seconds(1); assert_eq!(dt, Apia.ymd(2011, 12, 31).and_hms(0, 0, 0)); } #[test] fn negative_offset_with_minutes_and_seconds() { let dt = UTC.ymd(1900, 1, 1).and_hms(12, 0, 0).with_timezone(&Danmarkshavn); assert_eq!(dt, Danmarkshavn.ymd(1900, 1, 1).and_hms(10, 45, 20)); } #[test] fn monotonicity() { let mut dt = Noumea.ymd(1800, 1, 1).and_hms(12, 0, 0); for _ in 0..24 * 356 * 400 { let new = dt + Duration::hours(1); assert!(new > dt); assert!(new.with_timezone(&UTC) > dt.with_timezone(&UTC)); dt = new; } } fn test_inverse<T: TimeZone>(tz: T, begin: i32, end: i32) { for y in begin..end { for d in 1..366 { for h in 0..24 { for m in 0..60 { let dt = UTC.yo(y, d).and_hms(h, m, 0); let with_tz = dt.with_timezone(&tz); let utc = with_tz.with_timezone(&UTC); assert_eq!(dt, utc); } } } } } #[test] fn inverse_london() { test_inverse(London, 1989, 1994); } #[test] fn inverse_dhaka() { test_inverse(Dhaka, 1995, 2000); } #[test] fn inverse_apia() { test_inverse(Apia, 2011, 2012); } #[test] fn inverse_tahiti() { test_inverse(Tahiti, 1911, 1914); } #[test] fn string_representation() { let dt = UTC.ymd(2000, 9, 1).and_hms(12, 30, 15).with_timezone(&Adelaide); assert_eq!(dt.to_string(), "2000-09-01 22:00:15 ACST"); assert_eq!(format!("{:?}", dt), "2000-09-01T22:00:15ACST"); assert_eq!(dt.to_rfc3339(), "2000-09-01T22:00:15+09:30"); assert_eq!(format!("{}", dt), "2000-09-01 22:00:15 ACST"); } #[test] fn tahiti() { let dt = UTC.ymd(1912, 10, 1).and_hms(9, 58, 16).with_timezone(&Tahiti); let before = dt - Duration::hours(1); assert_eq!(before, Tahiti.ymd(1912, 9, 30).and_hms(23, 0, 0)); let after = dt + Duration::hours(1); assert_eq!(after, Tahiti.ymd(1912, 10, 1).and_hms(0, 58, 16)); } #[test] fn second_offsets() { let dt = UTC.ymd(1914, 1, 1).and_hms(13, 40, 28).with_timezone(&Amsterdam); assert_eq!(dt.to_string(), "1914-01-01 14:00:00 AMT"); // NOTE: pytz will give a different result here. The actual offset is +00:19:32. // The implementation of RFC3339 formatting in chrono rounds down the // number of minutes, whereas pytz rounds to nearest in cases such as this. // RFC3339 specifies that precision is not required in this case, and that // to retain precision, the time should be converted to a representable // format. // In any case, the actual datetime objects themselves always retain full // precision in this implementation (unlike pytz). It is only (some) string // representations that lack precision. assert_eq!(dt.to_rfc3339(), "1914-01-01T14:00:00+00:19"); } #[test] #[should_panic] fn nonexistent_time() { let _ = London.ymd(2016, 3, 27).and_hms(1, 30, 0); } #[test] #[should_panic] fn nonexistent_time_2() { let _ = London.ymd(2016, 3, 27).and_hms(1, 0, 0); } #[test] fn time_exists() { let _ = London.ymd(2016, 3, 27).and_hms(2, 0, 0); } #[test] #[should_panic] fn ambiguous_time() { let _ = London.ymd(2016, 10, 30).and_hms(1, 0, 0); } #[test] #[should_panic] fn ambiguous_time_2() { let _ = London.ymd(2016, 10, 30).and_hms(1, 30, 0); } #[test] #[should_panic] fn ambiguous_time_3() { let _ = Moscow.ymd(2014, 10, 26).and_hms(1, 30, 0); } #[test] #[should_panic] fn ambiguous_time_4() { let _ = Moscow.ymd(2014, 10, 26).and_hms(1, 0, 0); } #[test] fn unambiguous_time() { let _ = London.ymd(2016, 10, 30).and_hms(2, 0, 0); } #[test] fn unambiguous_time_2() { let _ = Moscow.ymd(2014, 10, 26).and_hms(2, 0, 0); } #[test] fn test_get_name() { assert_eq!(London.name(), "Europe/London"); assert_eq!(Tz::Africa__Abidjan.name(), "Africa/Abidjan"); assert_eq!(Tz::UTC.name(), "UTC"); assert_eq!(Tz::Zulu.name(), "Zulu"); } #[test] fn test_impl_hash() { #[allow(dead_code)] #[derive(Hash)] struct Foo(Tz); } }