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
use {
rust_icu_common as common, rust_icu_sys as sys,
rust_icu_sys::*,
std::{convert::TryFrom, ffi, str},
};
#[derive(Debug)]
pub struct Enumeration {
raw: Option<common::CStringVec>,
rep: *mut sys::UEnumeration,
}
impl Enumeration {
pub fn repr(&mut self) -> *mut sys::UEnumeration {
self.rep
}
pub fn empty() -> Self {
Enumeration::try_from(&vec![][..]).unwrap()
}
}
impl Default for Enumeration {
fn default() -> Self {
Self::empty()
}
}
impl TryFrom<&[&str]> for Enumeration {
type Error = common::Error;
fn try_from(v: &[&str]) -> Result<Enumeration, common::Error> {
let raw = common::CStringVec::new(v)?;
let mut status = common::Error::OK_CODE;
let rep: *mut sys::UEnumeration = unsafe {
versioned_function!(uenum_openCharStringsEnumeration)(
raw.as_c_array(),
raw.len() as i32,
&mut status,
)
};
common::Error::ok_or_warning(status)?;
assert!(!rep.is_null());
Ok(Enumeration {
rep: rep,
raw: Some(raw),
})
}
}
impl Drop for Enumeration {
fn drop(&mut self) {
unsafe { versioned_function!(uenum_close)(self.rep) };
}
}
impl Iterator for Enumeration {
type Item = Result<String, common::Error>;
fn next(&mut self) -> Option<Self::Item> {
let mut len: i32 = 0;
let mut status = common::Error::OK_CODE;
assert!(!self.rep.is_null());
let raw = unsafe { versioned_function!(uenum_next)(self.rep, &mut len, &mut status) };
if raw.is_null() {
return None;
}
let result = common::Error::ok_or_warning(status);
match result {
Ok(()) => {
assert!(!raw.is_null());
let cstring = unsafe { ffi::CStr::from_ptr(raw) };
Some(Ok(cstring
.to_str()
.expect("could not convert to string")
.to_string()))
}
Err(e) => Some(Err(e)),
}
}
}
impl Enumeration {
#[doc(hidden)]
pub unsafe fn from_raw_parts(
raw: Option<common::CStringVec>,
rep: *mut sys::UEnumeration,
) -> Enumeration {
Enumeration { raw, rep }
}
}
#[doc(hidden)]
pub fn ucal_open_country_time_zones(country: &str) -> Result<Enumeration, common::Error> {
let mut status = common::Error::OK_CODE;
let asciiz_country = ffi::CString::new(country)?;
let raw_enum = unsafe {
assert!(common::Error::is_ok(status));
versioned_function!(ucal_openCountryTimeZones)(asciiz_country.as_ptr(), &mut status)
};
common::Error::ok_or_warning(status)?;
Ok(Enumeration {
raw: None,
rep: raw_enum,
})
}
#[doc(hidden)]
pub fn ucal_open_time_zone_id_enumeration(
zone_type: sys::USystemTimeZoneType,
region: Option<&str>,
raw_offset: Option<i32>,
) -> Result<Enumeration, common::Error> {
let mut status = common::Error::OK_CODE;
let asciiz_region = match region {
None => None,
Some(region) => Some(ffi::CString::new(region)?),
};
let mut repr_raw_offset: i32 = raw_offset.unwrap_or_default();
let raw_enum = unsafe {
assert!(common::Error::is_ok(status));
versioned_function!(ucal_openTimeZoneIDEnumeration)(
zone_type,
match &asciiz_region {
Some(asciiz_region) => asciiz_region.as_ptr(),
None => std::ptr::null(),
},
match raw_offset {
Some(_) => &mut repr_raw_offset,
None => std::ptr::null_mut(),
},
&mut status,
)
};
common::Error::ok_or_warning(status)?;
Ok(Enumeration {
raw: None,
rep: raw_enum,
})
}
#[doc(hidden)]
pub fn open_time_zones() -> Result<Enumeration, common::Error> {
let mut status = common::Error::OK_CODE;
let raw_enum = unsafe {
assert!(common::Error::is_ok(status));
versioned_function!(ucal_openTimeZones)(&mut status)
};
common::Error::ok_or_warning(status)?;
Ok(Enumeration {
raw: None,
rep: raw_enum,
})
}
#[doc(hidden)]
pub fn uloc_open_keywords(locale: &str) -> Result<Enumeration, common::Error> {
let mut status = common::Error::OK_CODE;
let asciiz_locale = ffi::CString::new(locale)?;
let raw_enum = unsafe {
assert!(common::Error::is_ok(status));
versioned_function!(uloc_openKeywords)(asciiz_locale.as_ptr(), &mut status)
};
common::Error::ok_or_warning(status)?;
if raw_enum.is_null() {
Ok(Enumeration::empty())
} else {
Ok(Enumeration {
raw: None,
rep: raw_enum,
})
}
}
#[cfg(test)]
mod tests {
use {super::*, std::convert::TryFrom};
#[test]
fn iter() {
let e = Enumeration::try_from(&vec!["hello", "world", "💖"][..]).expect("enumeration?");
let mut count = 0;
let mut results = vec![];
for result in e {
let elem = result.expect("no error");
count = count + 1;
results.push(elem);
}
assert_eq!(count, 3, "results: {:?}", results);
assert_eq!(
results,
vec!["hello", "world", "💖"],
"results: {:?}",
results
);
}
#[test]
fn error() {
let destroyed_sparkle_heart = vec![0, 159, 164, 150];
let invalid_utf8 = unsafe { str::from_utf8_unchecked(&destroyed_sparkle_heart) };
let e = Enumeration::try_from(&vec!["hello", "world", "💖", invalid_utf8][..]);
assert!(e.is_err(), "was: {:?}", e);
}
}