Skip to content

Commit 8ffd298

Browse files
committed
Perform UTF-8 <-> UTF-16 conversions in Rust google#8
1 parent f7ec875 commit 8ffd298

File tree

13 files changed

+165
-269
lines changed

13 files changed

+165
-269
lines changed

rust_icu_common/src/lib.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,12 @@ impl From<std::string::FromUtf8Error> for Error {
146146
}
147147
}
148148

149+
impl From<std::string::FromUtf16Error> for Error {
150+
fn from(e: std::string::FromUtf16Error) -> Self {
151+
Self::wrapper(e)
152+
}
153+
}
154+
149155
impl Into<std::fmt::Error> for Error {
150156
fn into(self) -> std::fmt::Error {
151157
// It is not possible to transfer any info into std::fmt::Error, so we log instead.
@@ -333,7 +339,7 @@ macro_rules! format_ustring_for_type{
333339
let result = paste::item! {
334340
self. [< $method_name _ustring>] (number)?
335341
};
336-
String::try_from(&result)
342+
String::try_from(&result).map_err(|e| e.into())
337343
}
338344

339345
// Should be able to use https://github.com/google/rust_icu/pull/144 to

rust_icu_intl/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
use rust_icu_uloc as uloc;
5656
use rust_icu_umsg::{self as umsg, message_format};
5757
use rust_icu_ustring as ustring;
58-
use std::convert::TryFrom;
5958

6059
/// Implements ECMA-402 `Intl.PluralRules` based on the ICU locale data.
6160
pub struct PluralRules {
@@ -75,7 +74,7 @@ other {other}}"#;
7574
impl PluralRules {
7675
/// Creates a new plural rules formatter.
7776
pub fn new(locale: &uloc::ULoc) -> PluralRules {
78-
let pattern = ustring::UChar::try_from(RESPONSES).expect("pattern should never fail");
77+
let pattern = ustring::UChar::from(RESPONSES);
7978
let formatter = umsg::UMessageFormat::try_from(&pattern, &locale)
8079
.expect("this formatter should never fail");
8180
PluralRules { formatter }
@@ -101,6 +100,7 @@ impl PluralRules {
101100
#[cfg(test)]
102101
mod tests {
103102
use super::*;
103+
use std::convert::TryFrom;
104104

105105
// Checks the rule and prints useful diagnostic messages in case of failure.
106106
fn check_rule(expected: &str, n: f64, rules: &PluralRules) {

rust_icu_ubrk/src/lib.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ impl UBreakIterator {
163163
locale: &str,
164164
text: &str,
165165
) -> Result<Self, common::Error> {
166-
let text = ustring::UChar::try_from(text)?;
166+
let text = ustring::UChar::from(text);
167167
let locale = uloc::ULoc::try_from(locale)?;
168168
Self::try_new_ustring(type_, &locale, &text)
169169
}
@@ -209,8 +209,8 @@ impl UBreakIterator {
209209
rules: &str,
210210
text: &str,
211211
) -> Result<Self, common::Error> {
212-
let rules = ustring::UChar::try_from(rules)?;
213-
let text = ustring::UChar::try_from(text)?;
212+
let rules = ustring::UChar::from(rules);
213+
let text = ustring::UChar::from(text);
214214
Self::try_new_rules_ustring(&rules, &text)
215215
}
216216

@@ -258,7 +258,7 @@ impl UBreakIterator {
258258
rules: &Vec<u8>,
259259
text: &str,
260260
) -> Result<Self, common::Error> {
261-
let text = ustring::UChar::try_from(text)?;
261+
let text = ustring::UChar::from(text);
262262
Self::try_new_binary_rules_ustring(rules, &text)
263263
}
264264

@@ -364,7 +364,7 @@ impl UBreakIterator {
364364
///
365365
/// Implements `ubrk_setText`.
366366
pub fn set_text(&mut self, text: &str) -> Result<(), common::Error> {
367-
let text = ustring::UChar::try_from(text)?;
367+
let text = ustring::UChar::from(text);
368368
self.set_text_ustring(&text)
369369
}
370370

rust_icu_ucal/src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ impl UCalendar {
8383
locale: &str,
8484
cal_type: sys::UCalendarType,
8585
) -> Result<UCalendar, common::Error> {
86-
let zone_id_uchar = ustring::UChar::try_from(zone_id)?;
86+
let zone_id_uchar = ustring::UChar::from(zone_id);
8787
Self::new_from_uchar(&zone_id_uchar, locale, cal_type)
8888
}
8989
/// Returns this UCalendar's internal C representation. Use only for interfacing with the C
@@ -206,7 +206,7 @@ impl UCalendar {
206206
/// Implements `ucal_setDefaultTimeZone`
207207
pub fn set_default_time_zone(zone_id: &str) -> Result<(), common::Error> {
208208
let mut status = common::Error::OK_CODE;
209-
let mut zone_id_uchar = ustring::UChar::try_from(zone_id)?;
209+
let mut zone_id_uchar = ustring::UChar::from(zone_id);
210210
zone_id_uchar.make_z();
211211
// Requires zone_id_uchar to be a valid pointer until the function returns.
212212
unsafe {
@@ -243,7 +243,7 @@ pub fn get_default_time_zone() -> Result<String, common::Error> {
243243
};
244244
common::Error::ok_or_warning(status)?;
245245
trace!("result: {:?}", uchar);
246-
String::try_from(&uchar)
246+
String::try_from(&uchar).map_err(|e| e.into())
247247
}
248248

249249
/// Implements `ucal_getTZDataVersion`

rust_icu_ucol/src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
//! let collator = ucol::UCollator::try_from("sr-Latn").expect("collator");
4545
//! let mut mixed_up = vec!["d", "dž", "đ", "a", "b", "c", "č", "ć"];
4646
//! mixed_up.sort_by(|a, b| {
47-
//! let first = ustring::UChar::try_from(*a).expect("first");
48-
//! let second = ustring::UChar::try_from(*b).expect("second");
47+
//! let first = ustring::UChar::from(*a);
48+
//! let second = ustring::UChar::from(*b);
4949
//! collator.strcoll(&first, &second)
5050
//! });
5151
//! let alphabet = vec!["a", "b", "c", "č", "ć", "d", "dž", "đ"];
@@ -254,8 +254,8 @@ mod tests {
254254
let collator = crate::UCollator::try_from("sr-Latn")?;
255255
let mut mixed_up = vec!["d", "dž", "đ", "a", "b", "c", "č", "ć"];
256256
mixed_up.sort_by(|a, b| {
257-
let first = ustring::UChar::try_from(*a).expect("first");
258-
let second = ustring::UChar::try_from(*b).expect("second");
257+
let first = ustring::UChar::from(*a);
258+
let second = ustring::UChar::from(*b);
259259
collator.strcoll(&first, &second)
260260
});
261261

rust_icu_udat/src/lib.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ impl UDateFormat {
8686
"programmer error: date_style may not be UDAT_PATTERN"
8787
);
8888
// pattern is ignored if time_style or date_style aren't equal to pattern.
89-
let pattern = ustring::UChar::try_from("").expect("pattern created");
89+
let pattern = ustring::UChar::from("");
9090

9191
Self::new_internal(time_style, date_style, loc, tz_id, &pattern)
9292
}
@@ -158,7 +158,7 @@ impl UDateFormat {
158158
///
159159
/// Implements `udat_parse`
160160
pub fn parse(&self, datetime: &str) -> Result<sys::UDate, common::Error> {
161-
let datetime_uc = ustring::UChar::try_from(datetime)?;
161+
let datetime_uc = ustring::UChar::from(datetime);
162162
self.parse_from_position(&datetime_uc, 0).map(|r| r.date)
163163
}
164164

@@ -243,7 +243,7 @@ impl UDateFormat {
243243
};
244244
common::Error::ok_or_warning(status)?;
245245
}
246-
String::try_from(&result)
246+
String::try_from(&result).map_err(|e| e.into())
247247
}
248248
}
249249

@@ -340,7 +340,7 @@ mod tests {
340340
];
341341
for t in tests {
342342
let loc = uloc::ULoc::try_from(t.locale)?;
343-
let tz_id = ustring::UChar::try_from(t.timezone)?;
343+
let tz_id = ustring::UChar::from(t.timezone);
344344

345345
let mut fmt = UDateFormat::new_with_styles(
346346
sys::UDateFormatStyle::UDAT_FULL,
@@ -385,9 +385,9 @@ mod tests {
385385
},
386386
];
387387
let loc = uloc::ULoc::try_from("en-US")?;
388-
let tz_id = ustring::UChar::try_from("America/New_York")?;
388+
let tz_id = ustring::UChar::from("America/New_York");
389389
for t in tests {
390-
let pattern = ustring::UChar::try_from(t.pattern)?;
390+
let pattern = ustring::UChar::from(t.pattern);
391391
let fmt = UDateFormat::new_with_pattern(&loc, &tz_id, &pattern)?;
392392
let actual = fmt.format(t.date)?;
393393
assert_eq!(
@@ -422,10 +422,10 @@ mod tests {
422422
];
423423

424424
let loc = uloc::ULoc::try_from("en-US")?;
425-
let tz_id = ustring::UChar::try_from("America/New_York")?;
425+
let tz_id = ustring::UChar::from("America/New_York");
426426

427427
for test in tests {
428-
let pattern = ustring::UChar::try_from(test.pattern)?;
428+
let pattern = ustring::UChar::from(test.pattern);
429429
let format = UDateFormat::new_with_pattern(&loc, &tz_id, &pattern)?;
430430
let actual = format.parse(test.input)?;
431431
assert_eq!(

rust_icu_uformattable/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ impl<'a> crate::UFormattable<'a> {
165165
/// Implements `ufmt_getUChars`
166166
pub fn get_str(&self) -> Result<String, common::Error> {
167167
let ustr = self.get_ustring()?;
168-
String::try_from(&ustr)
168+
String::try_from(&ustr).map_err(|e| e.into())
169169
}
170170

171171
/// Use [UFormattable::get_type] to ensure that this formattable is an array before using this

rust_icu_ulistformatter/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ impl UListFormatter {
9595
/// Implements `ulistfmt_format`.
9696
pub fn format(&self, list: &[&str]) -> Result<String, common::Error> {
9797
let result = self.format_uchar(list)?;
98-
String::try_from(&result)
98+
String::try_from(&result).map_err(|e| e.into())
9999
}
100100

101101
/// Implements `ulistfmt_format`.
@@ -179,7 +179,7 @@ where
179179
fn try_from(list: &[T]) -> Result<Self, Self::Error> {
180180
let mut elements: Vec<ustring::UChar> = Vec::with_capacity(list.len());
181181
for element in list {
182-
let uchar = ustring::UChar::try_from(element.as_ref())?;
182+
let uchar = ustring::UChar::from(element.as_ref());
183183
elements.push(uchar);
184184
}
185185
let pointers = elements.iter().map(|e| e.as_c_ptr()).collect();

0 commit comments

Comments
 (0)