1#![cfg_attr(any(not(unix), target_vendor = "apple", target_os = "android"), no_std)]
11extern crate alloc;
12use alloc::string::String;
13
14#[cfg(target_os = "android")]
15mod android;
16#[cfg(target_os = "android")]
17use android as provider;
18
19#[cfg(target_vendor = "apple")]
20mod apple;
21#[cfg(target_vendor = "apple")]
22use apple as provider;
23
24#[cfg(all(unix, not(any(target_vendor = "apple", target_os = "android"))))]
25mod unix;
26#[cfg(all(unix, not(any(target_vendor = "apple", target_os = "android"))))]
27use unix as provider;
28
29#[cfg(all(target_family = "wasm", feature = "js", not(unix)))]
30mod wasm;
31#[cfg(all(target_family = "wasm", feature = "js", not(unix)))]
32use wasm as provider;
33
34#[cfg(windows)]
35mod windows;
36#[cfg(windows)]
37use windows as provider;
38
39#[cfg(not(any(unix, all(target_family = "wasm", feature = "js", not(unix)), windows)))]
40mod provider {
41 pub fn get() -> impl Iterator<Item = alloc::string::String> {
42 core::iter::empty()
43 }
44}
45
46pub fn get_locale() -> Option<String> {
65 get_locales().next()
66}
67
68pub fn get_locales() -> impl Iterator<Item = String> {
86 provider::get()
87}
88
89#[cfg(test)]
90mod tests {
91 use super::{get_locale, get_locales};
92 extern crate std;
93
94 #[cfg(all(target_family = "wasm", feature = "js", not(unix)))]
95 use wasm_bindgen_test::wasm_bindgen_test as test;
96 #[cfg(all(target_family = "wasm", feature = "js", not(unix)))]
97 wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_browser);
98
99 #[test]
100 fn can_obtain_locale() {
101 assert!(get_locale().is_some(), "no locales were returned");
102 let locales = get_locales();
103 for (i, locale) in locales.enumerate() {
104 assert!(!locale.is_empty(), "locale string {} was empty", i);
105 assert!(
106 !locale.ends_with('\0'),
107 "locale {} contained trailing NUL",
108 i
109 );
110 }
111 }
112}