use alloc::boxed::Box;
use alloc::vec::Vec;
use core::any::Any;
use super::ot_map::*;
use super::ot_shape::*;
use super::ot_shape_complex::*;
use super::{aat_map, hb_font_t, hb_mask_t, Direction, Feature, Language, Script};
pub struct hb_ot_shape_plan_t {
pub(crate) direction: Direction,
pub(crate) script: Option<Script>,
pub(crate) shaper: &'static hb_ot_complex_shaper_t,
pub(crate) ot_map: hb_ot_map_t,
pub(crate) aat_map: aat_map::hb_aat_map_t,
pub(crate) data: Option<Box<dyn Any + Send + Sync>>,
pub(crate) frac_mask: hb_mask_t,
pub(crate) numr_mask: hb_mask_t,
pub(crate) dnom_mask: hb_mask_t,
pub(crate) rtlm_mask: hb_mask_t,
pub(crate) kern_mask: hb_mask_t,
pub(crate) trak_mask: hb_mask_t,
pub(crate) requested_kerning: bool,
pub(crate) has_frac: bool,
pub(crate) has_vert: bool,
pub(crate) has_gpos_mark: bool,
pub(crate) zero_marks: bool,
pub(crate) fallback_glyph_classes: bool,
pub(crate) fallback_mark_positioning: bool,
pub(crate) adjust_mark_positioning_when_zeroing: bool,
pub(crate) apply_gpos: bool,
pub(crate) apply_fallback_kern: bool,
pub(crate) apply_kern: bool,
pub(crate) apply_kerx: bool,
pub(crate) apply_morx: bool,
pub(crate) apply_trak: bool,
pub(crate) user_features: Vec<Feature>,
}
impl hb_ot_shape_plan_t {
pub fn new(
face: &hb_font_t,
direction: Direction,
script: Option<Script>,
language: Option<&Language>,
user_features: &[Feature],
) -> Self {
assert_ne!(direction, Direction::Invalid);
let mut planner = hb_ot_shape_planner_t::new(face, direction, script, language);
planner.collect_features(user_features);
planner.compile(user_features)
}
pub(crate) fn data<T: 'static>(&self) -> &T {
self.data.as_ref().unwrap().downcast_ref().unwrap()
}
}
#[cfg(test)]
mod tests {
use super::hb_ot_shape_plan_t;
#[test]
fn test_shape_plan_is_send_and_sync() {
fn ensure_send_and_sync<T: Send + Sync>() {}
ensure_send_and_sync::<hb_ot_shape_plan_t>();
}
}