* FIX: Remove the serde_json depndendency * UPDATE: Use binary representation also for languages and locales
76 lines
2.0 KiB
Rust
76 lines
2.0 KiB
Rust
use bitcode::{Decode, Encode};
|
|
use once_cell::sync::Lazy;
|
|
|
|
use std::collections::HashMap;
|
|
|
|
#[derive(Encode, Decode, Clone)]
|
|
pub struct Locale {
|
|
pub dates: Dates,
|
|
pub numbers: NumbersProperties,
|
|
pub currency: Currency,
|
|
}
|
|
|
|
#[derive(Encode, Decode, Clone)]
|
|
pub struct Currency {
|
|
pub iso: String,
|
|
pub symbol: String,
|
|
}
|
|
|
|
#[derive(Encode, Decode, Clone)]
|
|
pub struct NumbersProperties {
|
|
pub symbols: NumbersSymbols,
|
|
pub decimal_formats: DecimalFormats,
|
|
pub currency_formats: CurrencyFormats,
|
|
}
|
|
|
|
#[derive(Encode, Decode, Clone)]
|
|
pub struct Dates {
|
|
pub day_names: Vec<String>,
|
|
pub day_names_short: Vec<String>,
|
|
pub months: Vec<String>,
|
|
pub months_short: Vec<String>,
|
|
pub months_letter: Vec<String>,
|
|
}
|
|
|
|
#[derive(Encode, Decode, Clone)]
|
|
pub struct NumbersSymbols {
|
|
pub decimal: String,
|
|
pub group: String,
|
|
pub list: String,
|
|
pub percent_sign: String,
|
|
pub plus_sign: String,
|
|
pub minus_sign: String,
|
|
pub approximately_sign: String,
|
|
pub exponential: String,
|
|
pub superscripting_exponent: String,
|
|
pub per_mille: String,
|
|
pub infinity: String,
|
|
pub nan: String,
|
|
pub time_separator: String,
|
|
}
|
|
|
|
// See: https://cldr.unicode.org/translation/number-currency-formats/number-and-currency-patterns
|
|
#[derive(Encode, Decode, Clone)]
|
|
pub struct CurrencyFormats {
|
|
pub standard: String,
|
|
pub standard_alpha_next_to_number: Option<String>,
|
|
pub standard_no_currency: String,
|
|
pub accounting: String,
|
|
pub accounting_alpha_next_to_number: Option<String>,
|
|
pub accounting_no_currency: String,
|
|
}
|
|
|
|
#[derive(Encode, Decode, Clone)]
|
|
pub struct DecimalFormats {
|
|
pub standard: String,
|
|
}
|
|
|
|
static LOCALES: Lazy<HashMap<String, Locale>> =
|
|
Lazy::new(|| bitcode::decode(include_bytes!("locales.bin")).expect("Failed parsing locale"));
|
|
|
|
pub fn get_locale(id: &str) -> Result<&Locale, String> {
|
|
// TODO: pass the locale once we implement locales in Rust
|
|
let locale = LOCALES.get(id).ok_or("Invalid locale")?;
|
|
Ok(locale)
|
|
}
|