use std::collections::HashMap;
use std::sync::LazyLock;
use bumpalo::Bump;
use comemo::Tracked;
use icu_properties::CodePointMapDataBorrowed;
use icu_properties::props::CanonicalCombiningClass;
use crate::engine::Engine;
use crate::foundations::{
Args, CastInfo, Content, Context, Func, IntoValue, NativeElement, NativeFuncData,
NativeFuncPtr, NativeParamInfo, Reflect, Scope, Str, SymbolElem, Type, cast, elem,
};
use crate::layout::{Em, Length, Rel};
use crate::math::Mathy;
pub const ACCENT_SHORT_FALL: Em = Em::new(0.5);
#[elem(Mathy)]
pub struct AccentElem {
#[required]
pub base: Content,
#[required]
pub accent: Accent,
#[default(Rel::one())]
pub size: Rel<Length>,
#[default(true)]
pub dotless: bool,
}
#[derive(Debug, Default, Copy, Clone, Eq, PartialEq, Hash)]
pub struct Accent(pub char);
impl Accent {
pub fn normalize(s: &str) -> Option<Self> {
Self::combining(s).or_else(|| s.parse::<char>().ok().map(Self))
}
pub fn combining(value: &str) -> Option<Self> {
let c = value.parse::<char>().ok();
ACCENTS
.iter()
.copied()
.find(|&(accent, names)| Some(accent) == c || names.contains(&value))
.map(|(accent, _)| Self(accent))
}
pub fn is_bottom(&self) -> bool {
if matches!(self.0, '⏟' | '⎵' | '⏝' | '⏡') {
return true;
}
const COMBINING_CLASS_DATA: CodePointMapDataBorrowed<CanonicalCombiningClass> =
CodePointMapDataBorrowed::new();
matches!(COMBINING_CLASS_DATA.get(self.0), CanonicalCombiningClass::Below)
}
}
pub fn get_accent_func(value: &str) -> Option<Func> {
Accent::combining(value).map(|accent| (&FUNCS[&accent]).into())
}
const ACCENTS: &[(char, &[&str])] = &[
('\u{0300}', &["`"]),
('\u{0301}', &["´"]),
('\u{0302}', &["^", "ˆ"]),
('\u{0303}', &["~", "∼", "˜"]),
('\u{0304}', &["¯"]),
('\u{0305}', &["-", "–", "‾", "−"]),
('\u{0306}', &["˘"]),
('\u{0307}', &[".", "˙", "⋅"]),
('\u{0308}', &["¨"]),
('\u{20db}', &[]),
('\u{20dc}', &[]),
('\u{030a}', &["∘", "○"]),
('\u{030b}', &["˝"]),
('\u{030c}', &["ˇ"]),
('\u{20d6}', &["←"]),
('\u{20d7}', &["→", "⟶"]),
('\u{20e1}', &["↔", "↔\u{fe0e}", "⟷"]),
('\u{20d0}', &["↼"]),
('\u{20d1}', &["⇀"]),
];
static FUNCS: LazyLock<HashMap<Accent, NativeFuncData>> = LazyLock::new(|| {
let bump = Box::leak(Box::new(Bump::new()));
ACCENTS
.iter()
.copied()
.map(|(accent, _)| (Accent(accent), create_accent_func_data(accent, bump)))
.collect()
});
fn create_accent_func_data(accent: char, bump: &'static Bump) -> NativeFuncData {
let title = bumpalo::format!(in bump, "Accent ({})", accent).into_bump_str();
let docs = bumpalo::format!(in bump, "Adds the accent {} on an expression.", accent)
.into_bump_str();
NativeFuncData {
function: NativeFuncPtr(bump.alloc(
move |_: &mut Engine, _: Tracked<Context>, args: &mut Args| {
let base = args.expect("base")?;
let size = args.named("size")?;
let dotless = args.named("dotless")?;
let mut elem = AccentElem::new(base, Accent(accent));
if let Some(size) = size {
elem = elem.with_size(size);
}
if let Some(dotless) = dotless {
elem = elem.with_dotless(dotless);
}
Ok(elem.pack().into_value())
},
)),
name: "(..) => ..",
title,
docs,
def_site: None,
keywords: &[],
contextual: false,
scope: LazyLock::new(&|| Scope::new()),
params: LazyLock::new(&|| create_accent_param_info()),
returns: LazyLock::new(&|| CastInfo::Type(Type::of::<Content>())),
}
}
fn create_accent_param_info() -> Vec<NativeParamInfo> {
vec![
NativeParamInfo {
name: "base",
docs: "The base to which the accent is applied.",
def_site: None,
input: Content::input(),
default: None,
positional: true,
named: false,
variadic: false,
required: true,
settable: false,
},
NativeParamInfo {
name: "size",
docs: "The size of the accent, relative to the width of the base.",
def_site: None,
input: Rel::<Length>::input(),
default: None,
positional: false,
named: true,
variadic: false,
required: false,
settable: false,
},
NativeParamInfo {
name: "dotless",
docs: "Whether to remove the dot on top of lowercase i and j when adding a top accent.",
def_site: None,
input: bool::input(),
default: None,
positional: false,
named: true,
variadic: false,
required: false,
settable: false,
},
]
}
cast! {
Accent,
self => self.0.into_value(),
v: Str => Self::normalize(&v).ok_or("expected exactly one character")?,
v: Content => v.to_packed::<SymbolElem>()
.and_then(|elem| Accent::normalize(&elem.text))
.ok_or("expected a single-codepoint symbol")?,
}