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 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
// Copyright 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! Contains implementations of functions from ICU's `udat.h`.
//!
//! All functions that take `ustring::UChar` instead of a rust string reference do so for
//! efficiency. The encoding of `ustring::UChar` is uniform (in contrast to say UTF-8), so
//! repeated manipulation of that string does not waste CPU cycles.
//!
//! For detailed instructions for date and time formatting please refer to the [original Unicode
//! project documentation for date and time formatting](http://userguide.icu-project.org/formatparse/datetime)
use {
rust_icu_common as common, rust_icu_sys as sys, rust_icu_sys::versioned_function,
rust_icu_ucal as ucal, rust_icu_uloc as uloc, rust_icu_ustring as ustring,
};
use std::convert::{TryFrom, TryInto};
/// Implements `UDateTimePatternGenerator`. Since 0.5.1.
#[derive(Debug)]
pub struct UDatePatternGenerator {
rep: std::ptr::NonNull<sys::UDateTimePatternGenerator>,
}
impl std::clone::Clone for UDatePatternGenerator {
/// Implements `udatpg_clone`. Since 0.5.1.
fn clone(&self) -> Self {
let mut status = common::Error::OK_CODE;
let rep = unsafe {
let cloned = versioned_function!(udatpg_clone)(self.rep.as_ptr(), &mut status);
std::ptr::NonNull::new_unchecked(cloned)
};
UDatePatternGenerator{ rep }
}
}
// Implements `udatpg_close`.
common::simple_drop_impl!(UDatePatternGenerator, udatpg_close);
impl UDatePatternGenerator {
/// Implements `udatpg_open`. Since 0.5.1.
pub fn new(loc: &uloc::ULoc) -> Result<Self, common::Error> {
let mut status = common::Error::OK_CODE;
let asciiz = loc.as_c_str();
let rep = unsafe {
assert!(common::Error::is_ok(status));
let ptr = versioned_function!(udatpg_open)(
asciiz.as_ptr(),
&mut status,
);
std::ptr::NonNull::new_unchecked(ptr)
};
common::Error::ok_or_warning(status)?;
Ok(UDatePatternGenerator{ rep })
}
/// Implements `udatpg_getBestPattern`. Since 0.5.1.
pub fn get_best_pattern(&self, skeleton: &str) -> Result<String, common::Error> {
let skeleton = ustring::UChar::try_from(skeleton)?;
let result = self.get_best_pattern_ustring(&skeleton)?;
String::try_from(&result)
}
/// Implements `udatpg_getBestPattern`. Since 0.5.1.
pub fn get_best_pattern_ustring(&self, skeleton: &ustring::UChar) -> Result<ustring::UChar, common::Error> {
const BUFFER_CAPACITY: usize = 180;
ustring::buffered_uchar_method_with_retry!(
get_best_pattern_impl,
BUFFER_CAPACITY,
[f: *mut sys::UDateTimePatternGenerator, skel: *const sys::UChar, skel_len: i32,],
[]
);
get_best_pattern_impl(
versioned_function!(udatpg_getBestPattern),
self.rep.as_ptr(),
skeleton.as_c_ptr(), skeleton.len() as i32,
)
}
}
/// Implements `UDateFormat`
#[derive(Debug)]
pub struct UDateFormat {
// Internal C representation of UDateFormat. It is owned by this type and
// must be dropped by calling `udat_close`.
rep: *mut sys::UDateFormat,
}
impl Drop for UDateFormat {
/// Implements `udat_close`
fn drop(&mut self) {
unsafe {
versioned_function!(udat_close)(self.rep);
}
}
}
/// Parsed contains output of the call to `UDateFormat::parse_from_position`.
pub struct Parsed {
/// The point in time parsed out of the date-time string.
date: sys::UDate,
/// The position in the input string at which the parsing ended.
end_position: usize,
}
impl Parsed {
/// Returns the date resulting from a call to `UDateFormat::parse_from_position`.
pub fn date(&self) -> sys::UDate {
self.date
}
/// Returns the end position resulting from a call to `UDateFormat::parse_from_position`.
pub fn end_position(&self) -> usize {
self.end_position
}
}
impl UDateFormat {
/// Creates a new `UDateFormat` based on the provided styles.
///
/// Neither time_style nor date_style may be `UDAT_PATTERN`. If you need
/// formatting with a pattern, use instead `new_with_pattern`.
/// Implements `udat_open`
pub fn new_with_styles(
time_style: sys::UDateFormatStyle,
date_style: sys::UDateFormatStyle,
loc: &uloc::ULoc,
tz_id: &ustring::UChar,
) -> Result<Self, common::Error> {
assert_ne!(
time_style,
sys::UDateFormatStyle::UDAT_PATTERN,
"programmer error: time_style may not be UDAT_PATTERN"
);
assert_ne!(
date_style,
sys::UDateFormatStyle::UDAT_PATTERN,
"programmer error: date_style may not be UDAT_PATTERN"
);
// pattern is ignored if time_style or date_style aren't equal to pattern.
let pattern = ustring::UChar::try_from("").expect("pattern created");
Self::new_internal(time_style, date_style, loc, tz_id, &pattern)
}
/// Creates a new `UDateFormat` based on the provided pattern.
///
/// One example pattern is: "yyyy-MM-dd'T'HH:mm:ssXX".
///
/// Implements `udat_open`
pub fn new_with_pattern(
loc: &uloc::ULoc,
tz_id: &ustring::UChar,
pattern: &ustring::UChar,
) -> Result<Self, common::Error> {
Self::new_internal(
/*timestyle=*/ sys::UDateFormatStyle::UDAT_PATTERN,
/*datestyle=*/ sys::UDateFormatStyle::UDAT_PATTERN,
loc,
tz_id,
pattern,
)
}
// Generalized constructor based on `udat_open`. It is hidden from public eye because its
// input parameters are not orthogonal.
//
// Implements `udat_open`
fn new_internal(
time_style: sys::UDateFormatStyle,
date_style: sys::UDateFormatStyle,
loc: &uloc::ULoc,
tz_id: &ustring::UChar,
pattern: &ustring::UChar,
) -> Result<Self, common::Error> {
let mut status = common::Error::OK_CODE;
let asciiz = loc.as_c_str();
// If the timezone is empty, short-circuit it to default.
let (tz_id_ptr, tz_id_len): (*const rust_icu_sys::UChar, i32) = if tz_id.len() == 0 {
(std::ptr::null(), 0i32)
} else {
(tz_id.as_c_ptr(), tz_id.len() as i32)
};
// Requires that all pointers be valid. Should be guaranteed by all
// objects passed into this function.
let date_format = unsafe {
assert!(common::Error::is_ok(status));
versioned_function!(udat_open)(
time_style,
date_style,
asciiz.as_ptr(),
tz_id_ptr,
tz_id_len,
pattern.as_c_ptr(),
pattern.len() as i32,
&mut status,
)
};
common::Error::ok_or_warning(status)?;
Ok(UDateFormat { rep: date_format })
}
/// Implements `udat_setCalendar`
pub fn set_calendar(&mut self, calendar: &ucal::UCalendar) {
unsafe {
versioned_function!(udat_setCalendar)(self.rep, calendar.as_c_calendar());
};
}
/// Parses a date-time given as a string into a `sys::UDate` timestamp.
///
/// This version of date parsing does not allow reuse of the input parameters so it is less
/// useful for purposes that are not one-shot. See somewhat more detailed `parse_from_position`
/// instead.
///
/// Implements `udat_parse`
pub fn parse(&self, datetime: &str) -> Result<sys::UDate, common::Error> {
let datetime_uc = ustring::UChar::try_from(datetime)?;
self.parse_from_position(&datetime_uc, 0).map(|r| r.date)
}
/// Parses a date-time given as a string into a `sys::UDate` timestamp and a position
/// indicating the first index into `datetime` that was not consumed in parsing. The
/// `position` parameter indicates the index into `datetime` that parsing should start from.
///
/// Implements `udat_parse`
pub fn parse_from_position(
&self,
datetime: &ustring::UChar,
position: usize,
) -> Result<Parsed, common::Error> {
let mut status = common::Error::OK_CODE;
let mut _unused_pos: i32 = 0;
// We do not expect positions that exceed the range of i32.
let mut end_position: i32 = position as i32;
// Requires that self.rep, and datetime are valid values. Ensured by
// the guaranteses of UDateFormat and ustring::UChar.
let date = unsafe {
versioned_function!(udat_parse)(
self.rep,
datetime.as_c_ptr(),
datetime.len() as i32,
&mut end_position,
&mut status,
)
};
common::Error::ok_or_warning(status)?;
Ok(Parsed {
date,
end_position: end_position as usize,
})
}
/// Formats a date using this formatter.
///
/// Implements `udat_format`
pub fn format(&self, date_to_format: sys::UDate) -> Result<String, common::Error> {
// This approach follows the recommended practice for unicode conversions: adopt a
// resonably-sized buffer, then repeat the conversion if it fails the first time around.
const CAP: usize = 1024;
let mut status = common::Error::OK_CODE;
let mut result = ustring::UChar::new_with_capacity(CAP);
let mut field_position_unused = sys::UFieldPosition {
field: 0,
beginIndex: 0,
endIndex: 0,
};
// Requires that result is a buffer at least as long as CAP and that
// self.rep is a valid pointer to a `sys::UDateFormat` structure.
let total_size = unsafe {
assert!(common::Error::is_ok(status));
versioned_function!(udat_format)(
self.rep,
date_to_format,
result.as_mut_c_ptr(),
CAP as i32,
&mut field_position_unused,
&mut status,
)
} as usize;
common::Error::ok_or_warning(status)?;
result.resize(total_size as usize);
if total_size > CAP {
// Requires that result is a buffer that has length and capacity of
// exactly total_size, and that self.rep is a valid pointer to
// a `UDateFormat`.
unsafe {
assert!(common::Error::is_ok(status));
versioned_function!(udat_format)(
self.rep,
date_to_format,
result.as_mut_c_ptr(),
total_size as i32,
&mut field_position_unused,
&mut status,
);
};
common::Error::ok_or_warning(status)?;
}
String::try_from(&result)
}
}
#[cfg(test)]
mod tests {
use super::*;
/// Restores the timezone once its scope ends.
struct RestoreTimezone {
timezone_to_restore: String,
}
impl Drop for RestoreTimezone {
fn drop(&mut self) {
RestoreTimezone::set_default_time_zone(&self.timezone_to_restore).unwrap();
}
}
impl RestoreTimezone {
/// Set the timezone to the requested one, and restores to whatever the timezone
/// was before the set once the struct goes out of scope.
fn new(set_timezone: &str) -> Self {
let timezone_to_restore =
RestoreTimezone::get_default_time_zone().expect("could get old time zone");
RestoreTimezone::set_default_time_zone(set_timezone).expect("set timezone");
RestoreTimezone {
timezone_to_restore,
}
}
// The two methods below are lifted from `rust_icu_ucal` to not introduce
// a circular dependency.
fn set_default_time_zone(zone_id: &str) -> Result<(), common::Error> {
let mut status = common::Error::OK_CODE;
let mut zone_id_uchar = ustring::UChar::try_from(zone_id)?;
zone_id_uchar.make_z();
// Requires zone_id_uchar to be a valid pointer until the function returns.
unsafe {
assert!(common::Error::is_ok(status));
versioned_function!(ucal_setDefaultTimeZone)(zone_id_uchar.as_c_ptr(), &mut status);
};
common::Error::ok_or_warning(status)
}
fn get_default_time_zone() -> Result<String, common::Error> {
let mut status = common::Error::OK_CODE;
// Preflight the time zone first.
let time_zone_length = unsafe {
assert!(common::Error::is_ok(status));
versioned_function!(ucal_getDefaultTimeZone)(std::ptr::null_mut(), 0, &mut status)
} as usize;
common::Error::ok_preflight(status)?;
// Should this capacity include the terminating \u{0}?
let mut status = common::Error::OK_CODE;
let mut uchar = ustring::UChar::new_with_capacity(time_zone_length);
// Requires that uchar is a valid buffer. Should be guaranteed by the constructor above.
unsafe {
assert!(common::Error::is_ok(status));
versioned_function!(ucal_getDefaultTimeZone)(
uchar.as_mut_c_ptr(),
time_zone_length as i32,
&mut status,
)
};
common::Error::ok_or_warning(status)?;
String::try_from(&uchar)
}
}
#[test]
fn test_format_default_calendar() -> Result<(), common::Error> {
#[derive(Debug)]
struct Test {
_name: &'static str,
locale: &'static str,
timezone: &'static str,
date: sys::UDate,
expected: &'static str,
calendar: Option<ucal::UCalendar>,
}
let tests = vec![
Test {
_name: "French default",
locale: "fr-FR",
timezone: "America/Los_Angeles",
date: 100.0,
expected:
"mercredi 31 décembre 1969 à 16:00:00 heure normale du Pacifique nord-américain",
calendar: None,
},
Test {
_name: "French default, a few hours later",
locale: "fr-FR",
timezone: "America/Los_Angeles",
date: 100000.0,
expected:
"mercredi 31 décembre 1969 à 16:01:40 heure normale du Pacifique nord-américain",
calendar: None,
},
Test {
_name: "Serbian default",
locale: "sr-RS",
timezone: "America/Los_Angeles",
date: 100000.0,
expected:
"среда, 31. децембар 1969. 16:01:40 Северноамеричко пацифичко стандардно време",
calendar: None,
},
// TODO: The Dutch time zones regressed: https://unicode-org.atlassian.net/browse/CLDR-17389
//Test {
//_name: "Dutch default",
//locale: "nl-NL",
//timezone: "America/Los_Angeles",
//date: 100000.0,
//expected: "woensdag 31 december 1969 om 16:01:40 Pacific-standaardtijd",
//calendar: None,
//},
//Test {
//_name: "Dutch islamic overrides locale calendar and timezone",
//locale: "nl-NL-u-ca-gregorian",
//timezone: "America/Los_Angeles",
//date: 100000.0,
//expected: "woensdag 22 Sjawal 1389 om 16:01:40 Pacific-standaardtijd",
//calendar: Some(
//ucal::UCalendar::new(
//"America/Los_Angeles",
//"und-u-ca-islamic",
//sys::UCalendarType::UCAL_DEFAULT,
//)
//.expect("created calendar"),
//),
//},
//Test {
//_name: "Dutch islamic take from locale",
//locale: "nl-NL-u-ca-islamic",
//timezone: "America/Los_Angeles",
//date: 200000.0,
//expected: "woensdag 22 Sjawal 1389 AH om 16:03:20 Pacific-standaardtijd",
//calendar: None,
//},
//Test {
//_name: "Dutch islamic take from locale",
//locale: "nl-NL-u-ca-islamic",
//timezone: "America/Los_Angeles",
//date: 200000.0,
//expected: "woensdag 22 Sjawal 1389 AH om 16:03:20 Pacific-standaardtijd",
//calendar: None,
//},
];
let _restore_timezone = RestoreTimezone::new("UTC");
for t in tests {
let loc = uloc::ULoc::try_from(t.locale)?;
let tz_id = ustring::UChar::try_from(t.timezone)?;
let mut fmt = super::UDateFormat::new_with_styles(
sys::UDateFormatStyle::UDAT_FULL,
sys::UDateFormatStyle::UDAT_FULL,
&loc,
&tz_id,
)?;
if let Some(ref cal) = t.calendar {
fmt.set_calendar(&cal);
}
let fmt = fmt;
let actual = fmt.format(t.date)?;
assert_eq!(
actual, t.expected,
"(left==actual; right==expected)\n\ttest: {:?}",
t
);
}
Ok(())
}
#[test]
fn test_format_pattern() -> Result<(), common::Error> {
#[derive(Debug)]
struct Test {
date: sys::UDate,
pattern: &'static str,
expected: &'static str,
}
let tests = vec![
Test {
date: 100.0,
pattern: "yyyy-MM-dd'T'HH:mm:ssXX",
expected: "1969-12-31T19:00:00-0500",
},
Test {
date: 100000.0,
pattern: "yyyy-MM-dd'T'HH",
expected: "1969-12-31T19",
},
Test {
date: 100000.0,
pattern: "V",
expected: "usnyc",
},
];
let loc = uloc::ULoc::try_from("en-US")?;
let tz_id = ustring::UChar::try_from("America/New_York")?;
for t in tests {
let pattern = ustring::UChar::try_from(t.pattern)?;
let fmt = super::UDateFormat::new_with_pattern(&loc, &tz_id, &pattern)?;
let actual = fmt.format(t.date)?;
assert_eq!(
actual, t.expected,
"want: {:?}, got: {:?}",
t.expected, actual
);
}
Ok(())
}
#[test]
fn parse_utf8() -> Result<(), common::Error> {
#[derive(Debug)]
struct Test {
input: &'static str,
pattern: &'static str,
expected: sys::UDate,
}
let tests: Vec<Test> = vec![
Test {
input: "2018-10-30T15:30:00-07:00",
pattern: "yyyy-MM-dd'T'HH:mm:ssXX",
expected: 1540938600000.0 as sys::UDate,
},
Test {
input: "2018-10-30T15:30:00-07:00",
// The entire "time" portion of this string is not used.
pattern: "yyyy-MM-dd",
expected: 1540872000000.0 as sys::UDate,
},
];
let loc = uloc::ULoc::try_from("en-US")?;
let tz_id = ustring::UChar::try_from("America/New_York")?;
for test in tests {
let pattern = ustring::UChar::try_from(test.pattern)?;
let format = super::UDateFormat::new_with_pattern(&loc, &tz_id, &pattern)?;
let actual = format.parse(test.input)?;
assert_eq!(
actual, test.expected,
"want: {:?}, got: {:?}",
test.expected, actual
)
}
Ok(())
}
#[test]
fn best_pattern() -> Result<(), common::Error> {
#[derive(Debug)]
struct Test {
locale: &'static str,
skeleton: &'static str,
expected: &'static str,
}
let tests: Vec<Test> = vec![
Test {
locale: "sr-RS",
skeleton: "MMMMj",
expected: "LLLL HH",
},
Test {
locale: "en-US",
skeleton: "EEEE yyy LLL d H m s",
expected: "EEEE, MMM d, yyy, HH:mm:ss",
},
];
for test in tests {
let locale = uloc::ULoc::try_from(test.locale)?;
let gen = UDatePatternGenerator::new(&locale)?.clone();
let actual = gen.get_best_pattern(&test.skeleton)?;
assert_eq!(actual, test.expected, "for test: {:?}", &test);
}
Ok(())
}
}