use icu_casemap::titlecase::TitlecaseOptions;
#[diplomat::bridge]
#[diplomat::abi_rename = "icu4x_{0}_mv1"]
#[diplomat::attr(auto, namespace = "icu4x")]
pub mod ffi {
use alloc::boxed::Box;
use crate::{errors::ffi::DataError, locale_core::ffi::Locale, provider::ffi::DataProvider};
use diplomat_runtime::DiplomatOption;
use writeable::Writeable;
#[diplomat::enum_convert(icu_casemap::titlecase::LeadingAdjustment, needs_wildcard)]
#[diplomat::rust_link(icu::casemap::titlecase::LeadingAdjustment, Enum)]
pub enum LeadingAdjustment {
Auto,
None,
ToCased,
}
#[diplomat::enum_convert(icu_casemap::titlecase::TrailingCase, needs_wildcard)]
#[diplomat::rust_link(icu::casemap::titlecase::TrailingCase, Enum)]
pub enum TrailingCase {
Lower,
Unchanged,
}
#[diplomat::rust_link(icu::casemap::titlecase::TitlecaseOptions, Struct)]
#[diplomat::attr(supports = non_exhaustive_structs, rename = "TitlecaseOptions")]
pub struct TitlecaseOptionsV1 {
pub leading_adjustment: DiplomatOption<LeadingAdjustment>,
pub trailing_case: DiplomatOption<TrailingCase>,
}
impl TitlecaseOptionsV1 {
#[diplomat::rust_link(icu::casemap::titlecase::TitlecaseOptions::default, FnInStruct)]
#[diplomat::attr(auto, constructor)]
#[diplomat::attr(any(cpp, js), rename = "default_options")]
pub fn default() -> TitlecaseOptionsV1 {
Self {
leading_adjustment: None.into(),
trailing_case: None.into(),
}
}
}
#[diplomat::opaque]
#[diplomat::rust_link(icu::casemap::CaseMapper, Struct)]
pub struct CaseMapper(pub icu_casemap::CaseMapper);
impl CaseMapper {
#[diplomat::rust_link(icu::casemap::CaseMapper::new, FnInStruct)]
#[diplomat::attr(supports = fallible_constructors, constructor)]
pub fn create(provider: &DataProvider) -> Result<Box<CaseMapper>, DataError> {
Ok(Box::new(CaseMapper(call_constructor!(
icu_casemap::CaseMapper::new [r => Ok(r)],
icu_casemap::CaseMapper::try_new_with_any_provider,
icu_casemap::CaseMapper::try_new_with_buffer_provider,
provider,
)?)))
}
#[diplomat::rust_link(icu::casemap::CaseMapper::lowercase, FnInStruct)]
#[diplomat::rust_link(icu::casemap::CaseMapper::lowercase_to_string, FnInStruct, hidden)]
pub fn lowercase(&self, s: &str, locale: &Locale, write: &mut DiplomatWrite) {
let _infallible = self.0.lowercase(s, &locale.0.id).write_to(write);
}
#[diplomat::rust_link(icu::casemap::CaseMapper::uppercase, FnInStruct)]
#[diplomat::rust_link(icu::casemap::CaseMapper::uppercase_to_string, FnInStruct, hidden)]
pub fn uppercase(&self, s: &str, locale: &Locale, write: &mut DiplomatWrite) {
let _infallible = self.0.uppercase(s, &locale.0.id).write_to(write);
}
#[diplomat::rust_link(
icu::casemap::CaseMapper::titlecase_segment_with_only_case_data,
FnInStruct
)]
#[diplomat::rust_link(
icu::casemap::CaseMapper::titlecase_segment_with_only_case_data_to_string,
FnInStruct,
hidden
)]
#[diplomat::attr(supports = non_exhaustive_structs, rename = "titlecase_segment_with_only_case_data")]
pub fn titlecase_segment_with_only_case_data_v1(
&self,
s: &str,
locale: &Locale,
options: TitlecaseOptionsV1,
write: &mut DiplomatWrite,
) {
let _infallible = self
.0
.titlecase_segment_with_only_case_data(s, &locale.0.id, options.into())
.write_to(write);
}
#[diplomat::rust_link(icu::casemap::CaseMapper::fold, FnInStruct)]
#[diplomat::rust_link(icu::casemap::CaseMapper::fold_string, FnInStruct, hidden)]
pub fn fold(&self, s: &str, write: &mut DiplomatWrite) {
let _infallible = self.0.fold(s).write_to(write);
}
#[diplomat::rust_link(icu::casemap::CaseMapper::fold_turkic, FnInStruct)]
#[diplomat::rust_link(icu::casemap::CaseMapper::fold_turkic_string, FnInStruct, hidden)]
pub fn fold_turkic(&self, s: &str, write: &mut DiplomatWrite) {
let _infallible = self.0.fold_turkic(s).write_to(write);
}
#[cfg(feature = "properties")]
#[diplomat::rust_link(icu::casemap::CaseMapper::add_case_closure_to, FnInStruct)]
#[diplomat::rust_link(icu::casemap::ClosureSink, Trait, hidden)]
#[diplomat::rust_link(icu::casemap::ClosureSink::add_char, FnInTrait, hidden)]
#[diplomat::rust_link(icu::casemap::ClosureSink::add_string, FnInTrait, hidden)]
pub fn add_case_closure_to(
&self,
c: DiplomatChar,
builder: &mut crate::collections_sets::ffi::CodePointSetBuilder,
) {
if let Some(ch) = char::from_u32(c) {
self.0.add_case_closure_to(ch, &mut builder.0)
}
}
#[diplomat::rust_link(icu::casemap::CaseMapper::simple_lowercase, FnInStruct)]
pub fn simple_lowercase(&self, ch: DiplomatChar) -> DiplomatChar {
char::from_u32(ch)
.map(|ch| self.0.simple_lowercase(ch) as DiplomatChar)
.unwrap_or(ch)
}
#[diplomat::rust_link(icu::casemap::CaseMapper::simple_uppercase, FnInStruct)]
pub fn simple_uppercase(&self, ch: DiplomatChar) -> DiplomatChar {
char::from_u32(ch)
.map(|ch| self.0.simple_uppercase(ch) as DiplomatChar)
.unwrap_or(ch)
}
#[diplomat::rust_link(icu::casemap::CaseMapper::simple_titlecase, FnInStruct)]
pub fn simple_titlecase(&self, ch: DiplomatChar) -> DiplomatChar {
char::from_u32(ch)
.map(|ch| self.0.simple_titlecase(ch) as DiplomatChar)
.unwrap_or(ch)
}
#[diplomat::rust_link(icu::casemap::CaseMapper::simple_fold, FnInStruct)]
pub fn simple_fold(&self, ch: DiplomatChar) -> DiplomatChar {
char::from_u32(ch)
.map(|ch| self.0.simple_fold(ch) as DiplomatChar)
.unwrap_or(ch)
}
#[diplomat::rust_link(icu::casemap::CaseMapper::simple_fold_turkic, FnInStruct)]
pub fn simple_fold_turkic(&self, ch: DiplomatChar) -> DiplomatChar {
char::from_u32(ch)
.map(|ch| self.0.simple_fold_turkic(ch) as DiplomatChar)
.unwrap_or(ch)
}
}
#[diplomat::opaque]
#[diplomat::rust_link(icu::casemap::CaseMapCloser, Struct)]
pub struct CaseMapCloser(pub icu_casemap::CaseMapCloser<icu_casemap::CaseMapper>);
impl CaseMapCloser {
#[diplomat::rust_link(icu::casemap::CaseMapCloser::new, FnInStruct)]
#[diplomat::rust_link(icu::casemap::CaseMapCloser::new_with_mapper, FnInStruct, hidden)]
#[diplomat::attr(supports = fallible_constructors, constructor)]
pub fn create(provider: &DataProvider) -> Result<Box<CaseMapCloser>, DataError> {
Ok(Box::new(CaseMapCloser(call_constructor!(
icu_casemap::CaseMapCloser::new [r => Ok(r)],
icu_casemap::CaseMapCloser::try_new_with_any_provider,
icu_casemap::CaseMapCloser::try_new_with_buffer_provider,
provider,
)?)))
}
#[cfg(feature = "properties")]
#[diplomat::rust_link(icu::casemap::CaseMapCloser::add_case_closure_to, FnInStruct)]
pub fn add_case_closure_to(
&self,
c: DiplomatChar,
builder: &mut crate::collections_sets::ffi::CodePointSetBuilder,
) {
if let Some(ch) = char::from_u32(c) {
self.0.add_case_closure_to(ch, &mut builder.0)
}
}
#[cfg(feature = "properties")]
#[diplomat::rust_link(icu::casemap::CaseMapCloser::add_string_case_closure_to, FnInStruct)]
pub fn add_string_case_closure_to(
&self,
s: &DiplomatStr,
builder: &mut crate::collections_sets::ffi::CodePointSetBuilder,
) -> bool {
let s = core::str::from_utf8(s).unwrap_or("");
self.0.add_string_case_closure_to(s, &mut builder.0)
}
}
#[diplomat::opaque]
#[diplomat::rust_link(icu::casemap::TitlecaseMapper, Struct)]
pub struct TitlecaseMapper(pub icu_casemap::TitlecaseMapper<icu_casemap::CaseMapper>);
impl TitlecaseMapper {
#[diplomat::rust_link(icu::casemap::TitlecaseMapper::new, FnInStruct)]
#[diplomat::rust_link(icu::casemap::TitlecaseMapper::new_with_mapper, FnInStruct, hidden)]
#[diplomat::attr(supports = fallible_constructors, constructor)]
pub fn create(provider: &DataProvider) -> Result<Box<TitlecaseMapper>, DataError> {
Ok(Box::new(TitlecaseMapper(call_constructor!(
icu_casemap::TitlecaseMapper::new [r => Ok(r)],
icu_casemap::TitlecaseMapper::try_new_with_any_provider,
icu_casemap::TitlecaseMapper::try_new_with_buffer_provider,
provider,
)?)))
}
#[diplomat::rust_link(icu::casemap::TitlecaseMapper::titlecase_segment, FnInStruct)]
#[diplomat::rust_link(
icu::casemap::TitlecaseMapper::titlecase_segment_to_string,
FnInStruct,
hidden
)]
#[diplomat::attr(supports = non_exhaustive_structs, rename = "titlecase_segment")]
pub fn titlecase_segment_v1(
&self,
s: &str,
locale: &Locale,
options: TitlecaseOptionsV1,
write: &mut DiplomatWrite,
) {
let _infallible = self
.0
.titlecase_segment(s, &locale.0.id, options.into())
.write_to(write);
}
}
}
impl From<ffi::TitlecaseOptionsV1> for TitlecaseOptions {
fn from(other: ffi::TitlecaseOptionsV1) -> Self {
let mut ret = Self::default();
ret.leading_adjustment = other
.leading_adjustment
.into_converted_option()
.unwrap_or(ret.leading_adjustment);
ret.trailing_case = other
.trailing_case
.into_converted_option()
.unwrap_or(ret.trailing_case);
ret
}
}