// THIS FILE IS AUTOGENERATED. // Any changes to this file will be overwritten. // For more information about how codegen works, see font-codegen/README.md #[allow(unused_imports)] use crate::codegen_prelude::*; /// Lookup tables provide a way of looking up information about a glyph index. /// The different cmap subtable formats. #[derive(Clone)] pub enum Lookup<'a> { Format0(Lookup0<'a>), Format2(Lookup2<'a>), Format4(Lookup4<'a>), Format6(Lookup6<'a>), Format8(Lookup8<'a>), Format10(Lookup10<'a>), } impl Default for Lookup<'_> { fn default() -> Self { Self::Format0(Default::default()) } } impl<'a> Lookup<'a> { ///Return the `FontData` used to resolve offsets for this table. pub fn offset_data(&self) -> FontData<'a> { match self { Self::Format0(item) => item.offset_data(), Self::Format2(item) => item.offset_data(), Self::Format4(item) => item.offset_data(), Self::Format6(item) => item.offset_data(), Self::Format8(item) => item.offset_data(), Self::Format10(item) => item.offset_data(), } } /// Format number is set to 0. pub fn format(&self) -> u16 { match self { Self::Format0(item) => item.format(), Self::Format2(item) => item.format(), Self::Format4(item) => item.format(), Self::Format6(item) => item.format(), Self::Format8(item) => item.format(), Self::Format10(item) => item.format(), } } } impl<'a> FontRead<'a> for Lookup<'a> { fn read(data: FontData<'a>) -> Result { let format: u16 = data.read_at(0usize)?; match format { Lookup0::FORMAT => Ok(Self::Format0(FontRead::read(data)?)), Lookup2::FORMAT => Ok(Self::Format2(FontRead::read(data)?)), Lookup4::FORMAT => Ok(Self::Format4(FontRead::read(data)?)), Lookup6::FORMAT => Ok(Self::Format6(FontRead::read(data)?)), Lookup8::FORMAT => Ok(Self::Format8(FontRead::read(data)?)), Lookup10::FORMAT => Ok(Self::Format10(FontRead::read(data)?)), other => Err(ReadError::InvalidFormat(other.into())), } } } impl<'a> MinByteRange<'a> for Lookup<'a> { fn min_byte_range(&self) -> Range { match self { Self::Format0(item) => item.min_byte_range(), Self::Format2(item) => item.min_byte_range(), Self::Format4(item) => item.min_byte_range(), Self::Format6(item) => item.min_byte_range(), Self::Format8(item) => item.min_byte_range(), Self::Format10(item) => item.min_byte_range(), } } fn min_table_bytes(&self) -> &'a [u8] { match self { Self::Format0(item) => item.min_table_bytes(), Self::Format2(item) => item.min_table_bytes(), Self::Format4(item) => item.min_table_bytes(), Self::Format6(item) => item.min_table_bytes(), Self::Format8(item) => item.min_table_bytes(), Self::Format10(item) => item.min_table_bytes(), } } } #[cfg(feature = "experimental_traverse")] impl<'a> Lookup<'a> { fn dyn_inner<'b>(&'b self) -> &'b dyn SomeTable<'a> { match self { Self::Format0(table) => table, Self::Format2(table) => table, Self::Format4(table) => table, Self::Format6(table) => table, Self::Format8(table) => table, Self::Format10(table) => table, } } } #[cfg(feature = "experimental_traverse")] impl std::fmt::Debug for Lookup<'_> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { self.dyn_inner().fmt(f) } } #[cfg(feature = "experimental_traverse")] impl<'a> SomeTable<'a> for Lookup<'a> { fn type_name(&self) -> &str { self.dyn_inner().type_name() } fn get_field(&self, idx: usize) -> Option> { self.dyn_inner().get_field(idx) } } impl Format for Lookup0<'_> { const FORMAT: u16 = 0; } impl<'a> MinByteRange<'a> for Lookup0<'a> { fn min_byte_range(&self) -> Range { 0..self.values_data_byte_range().end } fn min_table_bytes(&self) -> &'a [u8] { let range = self.min_byte_range(); self.data.as_bytes().get(range).unwrap_or_default() } } impl<'a> FontRead<'a> for Lookup0<'a> { fn read(data: FontData<'a>) -> Result { #[allow(clippy::absurd_extreme_comparisons)] if data.len() < Self::MIN_SIZE { return Err(ReadError::OutOfBounds); } Ok(Self { data }) } } /// Simple array format. The lookup data is an array of lookup values, indexed /// by glyph index. #[derive(Clone)] pub struct Lookup0<'a> { data: FontData<'a>, } #[allow(clippy::needless_lifetimes)] impl<'a> Lookup0<'a> { pub const MIN_SIZE: usize = u16::RAW_BYTE_LEN; basic_table_impls!(impl_the_methods); /// Format number is set to 0. pub fn format(&self) -> u16 { let range = self.format_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Values, indexed by glyph index. pub fn values_data(&self) -> &'a [u8] { let range = self.values_data_byte_range(); self.data.read_array(range).ok().unwrap_or_default() } pub fn format_byte_range(&self) -> Range { let start = 0; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn values_data_byte_range(&self) -> Range { let start = self.format_byte_range().end; let end = start + self.data.len().saturating_sub(start) / u8::RAW_BYTE_LEN * u8::RAW_BYTE_LEN; start..end } } const _: () = assert!(FontData::default_data_long_enough(Lookup0::MIN_SIZE)); impl Default for Lookup0<'_> { fn default() -> Self { Self { data: FontData::default_table_data(), } } } #[cfg(feature = "experimental_traverse")] impl<'a> SomeTable<'a> for Lookup0<'a> { fn type_name(&self) -> &str { "Lookup0" } fn get_field(&self, idx: usize) -> Option> { match idx { 0usize => Some(Field::new("format", self.format())), 1usize => Some(Field::new("values_data", self.values_data())), _ => None, } } } #[cfg(feature = "experimental_traverse")] #[allow(clippy::needless_lifetimes)] impl<'a> std::fmt::Debug for Lookup0<'a> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { (self as &dyn SomeTable<'a>).fmt(f) } } impl Format for Lookup2<'_> { const FORMAT: u16 = 2; } impl<'a> MinByteRange<'a> for Lookup2<'a> { fn min_byte_range(&self) -> Range { 0..self.segments_data_byte_range().end } fn min_table_bytes(&self) -> &'a [u8] { let range = self.min_byte_range(); self.data.as_bytes().get(range).unwrap_or_default() } } impl<'a> FontRead<'a> for Lookup2<'a> { fn read(data: FontData<'a>) -> Result { #[allow(clippy::absurd_extreme_comparisons)] if data.len() < Self::MIN_SIZE { return Err(ReadError::OutOfBounds); } Ok(Self { data }) } } /// Segment single format. Each non-overlapping segment has a single lookup /// value that applies to all glyphs in the segment. A segment is defined as /// a contiguous range of glyph indexes. #[derive(Clone)] pub struct Lookup2<'a> { data: FontData<'a>, } #[allow(clippy::needless_lifetimes)] impl<'a> Lookup2<'a> { pub const MIN_SIZE: usize = (u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN); basic_table_impls!(impl_the_methods); /// Format number is set to 2. pub fn format(&self) -> u16 { let range = self.format_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Size of a lookup unit for this search in bytes. pub fn unit_size(&self) -> u16 { let range = self.unit_size_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Number of units of the preceding size to be searched. pub fn n_units(&self) -> u16 { let range = self.n_units_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// The value of unitSize times the largest power of 2 that is less than or equal to the value of nUnits. pub fn search_range(&self) -> u16 { let range = self.search_range_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// The log base 2 of the largest power of 2 less than or equal to the value of nUnits. pub fn entry_selector(&self) -> u16 { let range = self.entry_selector_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// The value of unitSize times the difference of the value of nUnits minus the largest power of 2 less than or equal to the value of nUnits. pub fn range_shift(&self) -> u16 { let range = self.range_shift_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Segments. pub fn segments_data(&self) -> &'a [u8] { let range = self.segments_data_byte_range(); self.data.read_array(range).ok().unwrap_or_default() } pub fn format_byte_range(&self) -> Range { let start = 0; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn unit_size_byte_range(&self) -> Range { let start = self.format_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn n_units_byte_range(&self) -> Range { let start = self.unit_size_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn search_range_byte_range(&self) -> Range { let start = self.n_units_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn entry_selector_byte_range(&self) -> Range { let start = self.search_range_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn range_shift_byte_range(&self) -> Range { let start = self.entry_selector_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn segments_data_byte_range(&self) -> Range { let unit_size = self.unit_size(); let n_units = self.n_units(); let start = self.range_shift_byte_range().end; let end = start + (transforms::add_multiply(unit_size, 0_usize, n_units)) .saturating_mul(u8::RAW_BYTE_LEN); start..end } } #[cfg(feature = "experimental_traverse")] impl<'a> SomeTable<'a> for Lookup2<'a> { fn type_name(&self) -> &str { "Lookup2" } fn get_field(&self, idx: usize) -> Option> { match idx { 0usize => Some(Field::new("format", self.format())), 1usize => Some(Field::new("unit_size", self.unit_size())), 2usize => Some(Field::new("n_units", self.n_units())), 3usize => Some(Field::new("search_range", self.search_range())), 4usize => Some(Field::new("entry_selector", self.entry_selector())), 5usize => Some(Field::new("range_shift", self.range_shift())), 6usize => Some(Field::new("segments_data", self.segments_data())), _ => None, } } } #[cfg(feature = "experimental_traverse")] #[allow(clippy::needless_lifetimes)] impl<'a> std::fmt::Debug for Lookup2<'a> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { (self as &dyn SomeTable<'a>).fmt(f) } } impl Format for Lookup4<'_> { const FORMAT: u16 = 4; } impl<'a> MinByteRange<'a> for Lookup4<'a> { fn min_byte_range(&self) -> Range { 0..self.segments_byte_range().end } fn min_table_bytes(&self) -> &'a [u8] { let range = self.min_byte_range(); self.data.as_bytes().get(range).unwrap_or_default() } } impl<'a> FontRead<'a> for Lookup4<'a> { fn read(data: FontData<'a>) -> Result { #[allow(clippy::absurd_extreme_comparisons)] if data.len() < Self::MIN_SIZE { return Err(ReadError::OutOfBounds); } Ok(Self { data }) } } /// Segment array format. A segment mapping is performed (as with Format 2), /// but instead of a single lookup value for all the glyphs in the segment, /// each glyph in the segment gets its own separate lookup value. #[derive(Clone)] pub struct Lookup4<'a> { data: FontData<'a>, } #[allow(clippy::needless_lifetimes)] impl<'a> Lookup4<'a> { pub const MIN_SIZE: usize = (u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN); basic_table_impls!(impl_the_methods); /// Format number is set to 4. pub fn format(&self) -> u16 { let range = self.format_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Size of a lookup unit for this search in bytes. pub fn unit_size(&self) -> u16 { let range = self.unit_size_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Number of units of the preceding size to be searched. pub fn n_units(&self) -> u16 { let range = self.n_units_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// The value of unitSize times the largest power of 2 that is less than or equal to the value of nUnits. pub fn search_range(&self) -> u16 { let range = self.search_range_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// The log base 2 of the largest power of 2 less than or equal to the value of nUnits. pub fn entry_selector(&self) -> u16 { let range = self.entry_selector_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// The value of unitSize times the difference of the value of nUnits minus the largest power of 2 less than or equal to the value of nUnits. pub fn range_shift(&self) -> u16 { let range = self.range_shift_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Segments. pub fn segments(&self) -> &'a [LookupSegment4] { let range = self.segments_byte_range(); self.data.read_array(range).ok().unwrap_or_default() } pub fn format_byte_range(&self) -> Range { let start = 0; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn unit_size_byte_range(&self) -> Range { let start = self.format_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn n_units_byte_range(&self) -> Range { let start = self.unit_size_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn search_range_byte_range(&self) -> Range { let start = self.n_units_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn entry_selector_byte_range(&self) -> Range { let start = self.search_range_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn range_shift_byte_range(&self) -> Range { let start = self.entry_selector_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn segments_byte_range(&self) -> Range { let n_units = self.n_units(); let start = self.range_shift_byte_range().end; let end = start + (transforms::to_usize(n_units)).saturating_mul(LookupSegment4::RAW_BYTE_LEN); start..end } } #[cfg(feature = "experimental_traverse")] impl<'a> SomeTable<'a> for Lookup4<'a> { fn type_name(&self) -> &str { "Lookup4" } fn get_field(&self, idx: usize) -> Option> { match idx { 0usize => Some(Field::new("format", self.format())), 1usize => Some(Field::new("unit_size", self.unit_size())), 2usize => Some(Field::new("n_units", self.n_units())), 3usize => Some(Field::new("search_range", self.search_range())), 4usize => Some(Field::new("entry_selector", self.entry_selector())), 5usize => Some(Field::new("range_shift", self.range_shift())), 6usize => Some(Field::new( "segments", traversal::FieldType::array_of_records( stringify!(LookupSegment4), self.segments(), self.offset_data(), ), )), _ => None, } } } #[cfg(feature = "experimental_traverse")] #[allow(clippy::needless_lifetimes)] impl<'a> std::fmt::Debug for Lookup4<'a> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { (self as &dyn SomeTable<'a>).fmt(f) } } /// Lookup segment for format 4. #[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Copy, bytemuck :: AnyBitPattern)] #[repr(C)] #[repr(packed)] pub struct LookupSegment4 { /// Last glyph index in this segment. pub last_glyph: BigEndian, /// First glyph index in this segment. pub first_glyph: BigEndian, /// A 16-bit offset from the start of the table to the data. pub value_offset: BigEndian, } impl LookupSegment4 { /// Last glyph index in this segment. pub fn last_glyph(&self) -> u16 { self.last_glyph.get() } /// First glyph index in this segment. pub fn first_glyph(&self) -> u16 { self.first_glyph.get() } /// A 16-bit offset from the start of the table to the data. pub fn value_offset(&self) -> u16 { self.value_offset.get() } } impl FixedSize for LookupSegment4 { const RAW_BYTE_LEN: usize = u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN; } #[cfg(feature = "experimental_traverse")] impl<'a> SomeRecord<'a> for LookupSegment4 { fn traverse(self, data: FontData<'a>) -> RecordResolver<'a> { RecordResolver { name: "LookupSegment4", get_field: Box::new(move |idx, _data| match idx { 0usize => Some(Field::new("last_glyph", self.last_glyph())), 1usize => Some(Field::new("first_glyph", self.first_glyph())), 2usize => Some(Field::new("value_offset", self.value_offset())), _ => None, }), data, } } } impl Format for Lookup6<'_> { const FORMAT: u16 = 6; } impl<'a> MinByteRange<'a> for Lookup6<'a> { fn min_byte_range(&self) -> Range { 0..self.entries_data_byte_range().end } fn min_table_bytes(&self) -> &'a [u8] { let range = self.min_byte_range(); self.data.as_bytes().get(range).unwrap_or_default() } } impl<'a> FontRead<'a> for Lookup6<'a> { fn read(data: FontData<'a>) -> Result { #[allow(clippy::absurd_extreme_comparisons)] if data.len() < Self::MIN_SIZE { return Err(ReadError::OutOfBounds); } Ok(Self { data }) } } /// Single table format. The lookup data is a sorted list of /// pairs. #[derive(Clone)] pub struct Lookup6<'a> { data: FontData<'a>, } #[allow(clippy::needless_lifetimes)] impl<'a> Lookup6<'a> { pub const MIN_SIZE: usize = (u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN); basic_table_impls!(impl_the_methods); /// Format number is set to 6. pub fn format(&self) -> u16 { let range = self.format_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Size of a lookup unit for this search in bytes. pub fn unit_size(&self) -> u16 { let range = self.unit_size_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Number of units of the preceding size to be searched. pub fn n_units(&self) -> u16 { let range = self.n_units_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// The value of unitSize times the largest power of 2 that is less than or equal to the value of nUnits. pub fn search_range(&self) -> u16 { let range = self.search_range_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// The log base 2 of the largest power of 2 less than or equal to the value of nUnits. pub fn entry_selector(&self) -> u16 { let range = self.entry_selector_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// The value of unitSize times the difference of the value of nUnits minus the largest power of 2 less than or equal to the value of nUnits. pub fn range_shift(&self) -> u16 { let range = self.range_shift_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Values, indexed by glyph index. pub fn entries_data(&self) -> &'a [u8] { let range = self.entries_data_byte_range(); self.data.read_array(range).ok().unwrap_or_default() } pub fn format_byte_range(&self) -> Range { let start = 0; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn unit_size_byte_range(&self) -> Range { let start = self.format_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn n_units_byte_range(&self) -> Range { let start = self.unit_size_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn search_range_byte_range(&self) -> Range { let start = self.n_units_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn entry_selector_byte_range(&self) -> Range { let start = self.search_range_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn range_shift_byte_range(&self) -> Range { let start = self.entry_selector_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn entries_data_byte_range(&self) -> Range { let unit_size = self.unit_size(); let n_units = self.n_units(); let start = self.range_shift_byte_range().end; let end = start + (transforms::add_multiply(unit_size, 0_usize, n_units)) .saturating_mul(u8::RAW_BYTE_LEN); start..end } } #[cfg(feature = "experimental_traverse")] impl<'a> SomeTable<'a> for Lookup6<'a> { fn type_name(&self) -> &str { "Lookup6" } fn get_field(&self, idx: usize) -> Option> { match idx { 0usize => Some(Field::new("format", self.format())), 1usize => Some(Field::new("unit_size", self.unit_size())), 2usize => Some(Field::new("n_units", self.n_units())), 3usize => Some(Field::new("search_range", self.search_range())), 4usize => Some(Field::new("entry_selector", self.entry_selector())), 5usize => Some(Field::new("range_shift", self.range_shift())), 6usize => Some(Field::new("entries_data", self.entries_data())), _ => None, } } } #[cfg(feature = "experimental_traverse")] #[allow(clippy::needless_lifetimes)] impl<'a> std::fmt::Debug for Lookup6<'a> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { (self as &dyn SomeTable<'a>).fmt(f) } } impl Format for Lookup8<'_> { const FORMAT: u16 = 8; } impl<'a> MinByteRange<'a> for Lookup8<'a> { fn min_byte_range(&self) -> Range { 0..self.value_array_byte_range().end } fn min_table_bytes(&self) -> &'a [u8] { let range = self.min_byte_range(); self.data.as_bytes().get(range).unwrap_or_default() } } impl<'a> FontRead<'a> for Lookup8<'a> { fn read(data: FontData<'a>) -> Result { #[allow(clippy::absurd_extreme_comparisons)] if data.len() < Self::MIN_SIZE { return Err(ReadError::OutOfBounds); } Ok(Self { data }) } } /// Trimmed array format. The lookup data is a simple trimmed array /// indexed by glyph index. #[derive(Clone)] pub struct Lookup8<'a> { data: FontData<'a>, } #[allow(clippy::needless_lifetimes)] impl<'a> Lookup8<'a> { pub const MIN_SIZE: usize = (u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN); basic_table_impls!(impl_the_methods); /// Format number is set to 8. pub fn format(&self) -> u16 { let range = self.format_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// First glyph index included in the trimmed array. pub fn first_glyph(&self) -> u16 { let range = self.first_glyph_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Total number of glyphs (equivalent to the last glyph minus the value /// of firstGlyph plus 1). pub fn glyph_count(&self) -> u16 { let range = self.glyph_count_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// The lookup values (indexed by the glyph index minus the value of /// firstGlyph). Entries in the value array must be two bytes. pub fn value_array(&self) -> &'a [BigEndian] { let range = self.value_array_byte_range(); self.data.read_array(range).ok().unwrap_or_default() } pub fn format_byte_range(&self) -> Range { let start = 0; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn first_glyph_byte_range(&self) -> Range { let start = self.format_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn glyph_count_byte_range(&self) -> Range { let start = self.first_glyph_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn value_array_byte_range(&self) -> Range { let glyph_count = self.glyph_count(); let start = self.glyph_count_byte_range().end; let end = start + (transforms::to_usize(glyph_count)).saturating_mul(u16::RAW_BYTE_LEN); start..end } } #[cfg(feature = "experimental_traverse")] impl<'a> SomeTable<'a> for Lookup8<'a> { fn type_name(&self) -> &str { "Lookup8" } fn get_field(&self, idx: usize) -> Option> { match idx { 0usize => Some(Field::new("format", self.format())), 1usize => Some(Field::new("first_glyph", self.first_glyph())), 2usize => Some(Field::new("glyph_count", self.glyph_count())), 3usize => Some(Field::new("value_array", self.value_array())), _ => None, } } } #[cfg(feature = "experimental_traverse")] #[allow(clippy::needless_lifetimes)] impl<'a> std::fmt::Debug for Lookup8<'a> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { (self as &dyn SomeTable<'a>).fmt(f) } } impl Format for Lookup10<'_> { const FORMAT: u16 = 10; } impl<'a> MinByteRange<'a> for Lookup10<'a> { fn min_byte_range(&self) -> Range { 0..self.values_data_byte_range().end } fn min_table_bytes(&self) -> &'a [u8] { let range = self.min_byte_range(); self.data.as_bytes().get(range).unwrap_or_default() } } impl<'a> FontRead<'a> for Lookup10<'a> { fn read(data: FontData<'a>) -> Result { #[allow(clippy::absurd_extreme_comparisons)] if data.len() < Self::MIN_SIZE { return Err(ReadError::OutOfBounds); } Ok(Self { data }) } } /// Trimmed array format. The lookup data is a simple trimmed array /// indexed by glyph index. #[derive(Clone)] pub struct Lookup10<'a> { data: FontData<'a>, } #[allow(clippy::needless_lifetimes)] impl<'a> Lookup10<'a> { pub const MIN_SIZE: usize = (u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN); basic_table_impls!(impl_the_methods); /// Format number is set to 10. pub fn format(&self) -> u16 { let range = self.format_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Size of a lookup unit for this lookup table in bytes. Allowed values /// are 1, 2, 4, and 8. pub fn unit_size(&self) -> u16 { let range = self.unit_size_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// First glyph index included in the trimmed array. pub fn first_glyph(&self) -> u16 { let range = self.first_glyph_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Total number of glyphs (equivalent to the last glyph minus the value /// of firstGlyph plus 1). pub fn glyph_count(&self) -> u16 { let range = self.glyph_count_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// The lookup values (indexed by the glyph index minus the value of /// firstGlyph). pub fn values_data(&self) -> &'a [u8] { let range = self.values_data_byte_range(); self.data.read_array(range).ok().unwrap_or_default() } pub fn format_byte_range(&self) -> Range { let start = 0; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn unit_size_byte_range(&self) -> Range { let start = self.format_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn first_glyph_byte_range(&self) -> Range { let start = self.unit_size_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn glyph_count_byte_range(&self) -> Range { let start = self.first_glyph_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn values_data_byte_range(&self) -> Range { let glyph_count = self.glyph_count(); let unit_size = self.unit_size(); let start = self.glyph_count_byte_range().end; let end = start + (transforms::add_multiply(glyph_count, 0_usize, unit_size)) .saturating_mul(u8::RAW_BYTE_LEN); start..end } } #[cfg(feature = "experimental_traverse")] impl<'a> SomeTable<'a> for Lookup10<'a> { fn type_name(&self) -> &str { "Lookup10" } fn get_field(&self, idx: usize) -> Option> { match idx { 0usize => Some(Field::new("format", self.format())), 1usize => Some(Field::new("unit_size", self.unit_size())), 2usize => Some(Field::new("first_glyph", self.first_glyph())), 3usize => Some(Field::new("glyph_count", self.glyph_count())), 4usize => Some(Field::new("values_data", self.values_data())), _ => None, } } } #[cfg(feature = "experimental_traverse")] #[allow(clippy::needless_lifetimes)] impl<'a> std::fmt::Debug for Lookup10<'a> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { (self as &dyn SomeTable<'a>).fmt(f) } } impl<'a> MinByteRange<'a> for StateHeader<'a> { fn min_byte_range(&self) -> Range { 0..self.entry_table_offset_byte_range().end } fn min_table_bytes(&self) -> &'a [u8] { let range = self.min_byte_range(); self.data.as_bytes().get(range).unwrap_or_default() } } impl<'a> FontRead<'a> for StateHeader<'a> { fn read(data: FontData<'a>) -> Result { #[allow(clippy::absurd_extreme_comparisons)] if data.len() < Self::MIN_SIZE { return Err(ReadError::OutOfBounds); } Ok(Self { data }) } } /// Header for a state table. #[derive(Clone)] pub struct StateHeader<'a> { data: FontData<'a>, } #[allow(clippy::needless_lifetimes)] impl<'a> StateHeader<'a> { pub const MIN_SIZE: usize = (u16::RAW_BYTE_LEN + Offset16::RAW_BYTE_LEN + Offset16::RAW_BYTE_LEN + Offset16::RAW_BYTE_LEN); basic_table_impls!(impl_the_methods); /// Size of a state, in bytes. The size is limited to 8 bits, although the /// field is 16 bits for alignment. pub fn state_size(&self) -> u16 { let range = self.state_size_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Byte offset from the beginning of the state table to the class subtable. pub fn class_table_offset(&self) -> Offset16 { let range = self.class_table_offset_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Attempt to resolve [`class_table_offset`][Self::class_table_offset]. pub fn class_table(&self) -> Result, ReadError> { let data = self.data; self.class_table_offset().resolve(data) } /// Byte offset from the beginning of the state table to the state array. pub fn state_array_offset(&self) -> Offset16 { let range = self.state_array_offset_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Attempt to resolve [`state_array_offset`][Self::state_array_offset]. pub fn state_array(&self) -> Result, ReadError> { let data = self.data; self.state_array_offset().resolve(data) } /// Byte offset from the beginning of the state table to the entry subtable. pub fn entry_table_offset(&self) -> Offset16 { let range = self.entry_table_offset_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Attempt to resolve [`entry_table_offset`][Self::entry_table_offset]. pub fn entry_table(&self) -> Result, ReadError> { let data = self.data; self.entry_table_offset().resolve(data) } pub fn state_size_byte_range(&self) -> Range { let start = 0; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn class_table_offset_byte_range(&self) -> Range { let start = self.state_size_byte_range().end; let end = start + Offset16::RAW_BYTE_LEN; start..end } pub fn state_array_offset_byte_range(&self) -> Range { let start = self.class_table_offset_byte_range().end; let end = start + Offset16::RAW_BYTE_LEN; start..end } pub fn entry_table_offset_byte_range(&self) -> Range { let start = self.state_array_offset_byte_range().end; let end = start + Offset16::RAW_BYTE_LEN; start..end } } const _: () = assert!(FontData::default_data_long_enough(StateHeader::MIN_SIZE)); impl Default for StateHeader<'_> { fn default() -> Self { Self { data: FontData::default_table_data(), } } } #[cfg(feature = "experimental_traverse")] impl<'a> SomeTable<'a> for StateHeader<'a> { fn type_name(&self) -> &str { "StateHeader" } fn get_field(&self, idx: usize) -> Option> { match idx { 0usize => Some(Field::new("state_size", self.state_size())), 1usize => Some(Field::new( "class_table_offset", FieldType::offset(self.class_table_offset(), self.class_table()), )), 2usize => Some(Field::new( "state_array_offset", FieldType::offset(self.state_array_offset(), self.state_array()), )), 3usize => Some(Field::new( "entry_table_offset", FieldType::offset(self.entry_table_offset(), self.entry_table()), )), _ => None, } } } #[cfg(feature = "experimental_traverse")] #[allow(clippy::needless_lifetimes)] impl<'a> std::fmt::Debug for StateHeader<'a> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { (self as &dyn SomeTable<'a>).fmt(f) } } impl<'a> MinByteRange<'a> for ClassSubtable<'a> { fn min_byte_range(&self) -> Range { 0..self.class_array_byte_range().end } fn min_table_bytes(&self) -> &'a [u8] { let range = self.min_byte_range(); self.data.as_bytes().get(range).unwrap_or_default() } } impl<'a> FontRead<'a> for ClassSubtable<'a> { fn read(data: FontData<'a>) -> Result { #[allow(clippy::absurd_extreme_comparisons)] if data.len() < Self::MIN_SIZE { return Err(ReadError::OutOfBounds); } Ok(Self { data }) } } /// Maps the glyph indexes of your font into classes. #[derive(Clone)] pub struct ClassSubtable<'a> { data: FontData<'a>, } #[allow(clippy::needless_lifetimes)] impl<'a> ClassSubtable<'a> { pub const MIN_SIZE: usize = (u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN); basic_table_impls!(impl_the_methods); /// Glyph index of the first glyph in the class table. pub fn first_glyph(&self) -> u16 { let range = self.first_glyph_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Number of glyphs in class table. pub fn n_glyphs(&self) -> u16 { let range = self.n_glyphs_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// The class codes (indexed by glyph index minus firstGlyph). Class codes /// range from 0 to the value of stateSize minus 1. pub fn class_array(&self) -> &'a [u8] { let range = self.class_array_byte_range(); self.data.read_array(range).ok().unwrap_or_default() } pub fn first_glyph_byte_range(&self) -> Range { let start = 0; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn n_glyphs_byte_range(&self) -> Range { let start = self.first_glyph_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn class_array_byte_range(&self) -> Range { let n_glyphs = self.n_glyphs(); let start = self.n_glyphs_byte_range().end; let end = start + (transforms::to_usize(n_glyphs)).saturating_mul(u8::RAW_BYTE_LEN); start..end } } const _: () = assert!(FontData::default_data_long_enough(ClassSubtable::MIN_SIZE)); impl Default for ClassSubtable<'_> { fn default() -> Self { Self { data: FontData::default_table_data(), } } } #[cfg(feature = "experimental_traverse")] impl<'a> SomeTable<'a> for ClassSubtable<'a> { fn type_name(&self) -> &str { "ClassSubtable" } fn get_field(&self, idx: usize) -> Option> { match idx { 0usize => Some(Field::new("first_glyph", self.first_glyph())), 1usize => Some(Field::new("n_glyphs", self.n_glyphs())), 2usize => Some(Field::new("class_array", self.class_array())), _ => None, } } } #[cfg(feature = "experimental_traverse")] #[allow(clippy::needless_lifetimes)] impl<'a> std::fmt::Debug for ClassSubtable<'a> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { (self as &dyn SomeTable<'a>).fmt(f) } } impl<'a> MinByteRange<'a> for RawBytes<'a> { fn min_byte_range(&self) -> Range { 0..self.data_byte_range().end } fn min_table_bytes(&self) -> &'a [u8] { let range = self.min_byte_range(); self.data.as_bytes().get(range).unwrap_or_default() } } impl<'a> FontRead<'a> for RawBytes<'a> { fn read(data: FontData<'a>) -> Result { #[allow(clippy::absurd_extreme_comparisons)] if data.len() < Self::MIN_SIZE { return Err(ReadError::OutOfBounds); } Ok(Self { data }) } } /// Used for the `state_array` and `entry_table` fields in [`StateHeader`]. #[derive(Clone)] pub struct RawBytes<'a> { data: FontData<'a>, } #[allow(clippy::needless_lifetimes)] impl<'a> RawBytes<'a> { pub const MIN_SIZE: usize = 0; basic_table_impls!(impl_the_methods); pub fn data(&self) -> &'a [u8] { let range = self.data_byte_range(); self.data.read_array(range).ok().unwrap_or_default() } pub fn data_byte_range(&self) -> Range { let start = 0; let end = start + self.data.len().saturating_sub(start) / u8::RAW_BYTE_LEN * u8::RAW_BYTE_LEN; start..end } } #[allow(clippy::absurd_extreme_comparisons)] const _: () = assert!(FontData::default_data_long_enough(RawBytes::MIN_SIZE)); impl Default for RawBytes<'_> { fn default() -> Self { Self { data: FontData::default_table_data(), } } } #[cfg(feature = "experimental_traverse")] impl<'a> SomeTable<'a> for RawBytes<'a> { fn type_name(&self) -> &str { "RawBytes" } fn get_field(&self, idx: usize) -> Option> { match idx { 0usize => Some(Field::new("data", self.data())), _ => None, } } } #[cfg(feature = "experimental_traverse")] #[allow(clippy::needless_lifetimes)] impl<'a> std::fmt::Debug for RawBytes<'a> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { (self as &dyn SomeTable<'a>).fmt(f) } } impl<'a> MinByteRange<'a> for StxHeader<'a> { fn min_byte_range(&self) -> Range { 0..self.entry_table_offset_byte_range().end } fn min_table_bytes(&self) -> &'a [u8] { let range = self.min_byte_range(); self.data.as_bytes().get(range).unwrap_or_default() } } impl<'a> FontRead<'a> for StxHeader<'a> { fn read(data: FontData<'a>) -> Result { #[allow(clippy::absurd_extreme_comparisons)] if data.len() < Self::MIN_SIZE { return Err(ReadError::OutOfBounds); } Ok(Self { data }) } } /// Header for an extended state table. #[derive(Clone)] pub struct StxHeader<'a> { data: FontData<'a>, } #[allow(clippy::needless_lifetimes)] impl<'a> StxHeader<'a> { pub const MIN_SIZE: usize = (u32::RAW_BYTE_LEN + Offset32::RAW_BYTE_LEN + Offset32::RAW_BYTE_LEN + Offset32::RAW_BYTE_LEN); basic_table_impls!(impl_the_methods); /// Number of classes, which is the number of 16-bit entry indices in a single line in the state array. pub fn n_classes(&self) -> u32 { let range = self.n_classes_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Byte offset from the beginning of the state table to the class subtable. pub fn class_table_offset(&self) -> Offset32 { let range = self.class_table_offset_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Attempt to resolve [`class_table_offset`][Self::class_table_offset]. pub fn class_table(&self) -> Result, ReadError> { let data = self.data; self.class_table_offset().resolve(data) } /// Byte offset from the beginning of the state table to the state array. pub fn state_array_offset(&self) -> Offset32 { let range = self.state_array_offset_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Attempt to resolve [`state_array_offset`][Self::state_array_offset]. pub fn state_array(&self) -> Result, ReadError> { let data = self.data; self.state_array_offset().resolve(data) } /// Byte offset from the beginning of the state table to the entry subtable. pub fn entry_table_offset(&self) -> Offset32 { let range = self.entry_table_offset_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Attempt to resolve [`entry_table_offset`][Self::entry_table_offset]. pub fn entry_table(&self) -> Result, ReadError> { let data = self.data; self.entry_table_offset().resolve(data) } pub fn n_classes_byte_range(&self) -> Range { let start = 0; let end = start + u32::RAW_BYTE_LEN; start..end } pub fn class_table_offset_byte_range(&self) -> Range { let start = self.n_classes_byte_range().end; let end = start + Offset32::RAW_BYTE_LEN; start..end } pub fn state_array_offset_byte_range(&self) -> Range { let start = self.class_table_offset_byte_range().end; let end = start + Offset32::RAW_BYTE_LEN; start..end } pub fn entry_table_offset_byte_range(&self) -> Range { let start = self.state_array_offset_byte_range().end; let end = start + Offset32::RAW_BYTE_LEN; start..end } } const _: () = assert!(FontData::default_data_long_enough(StxHeader::MIN_SIZE)); impl Default for StxHeader<'_> { fn default() -> Self { Self { data: FontData::default_table_data(), } } } #[cfg(feature = "experimental_traverse")] impl<'a> SomeTable<'a> for StxHeader<'a> { fn type_name(&self) -> &str { "StxHeader" } fn get_field(&self, idx: usize) -> Option> { match idx { 0usize => Some(Field::new("n_classes", self.n_classes())), 1usize => Some(Field::new( "class_table_offset", FieldType::offset(self.class_table_offset(), self.class_table()), )), 2usize => Some(Field::new( "state_array_offset", FieldType::offset(self.state_array_offset(), self.state_array()), )), 3usize => Some(Field::new( "entry_table_offset", FieldType::offset(self.entry_table_offset(), self.entry_table()), )), _ => None, } } } #[cfg(feature = "experimental_traverse")] #[allow(clippy::needless_lifetimes)] impl<'a> std::fmt::Debug for StxHeader<'a> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { (self as &dyn SomeTable<'a>).fmt(f) } } impl<'a> MinByteRange<'a> for RawWords<'a> { fn min_byte_range(&self) -> Range { 0..self.data_byte_range().end } fn min_table_bytes(&self) -> &'a [u8] { let range = self.min_byte_range(); self.data.as_bytes().get(range).unwrap_or_default() } } impl<'a> FontRead<'a> for RawWords<'a> { fn read(data: FontData<'a>) -> Result { #[allow(clippy::absurd_extreme_comparisons)] if data.len() < Self::MIN_SIZE { return Err(ReadError::OutOfBounds); } Ok(Self { data }) } } /// Used for the `state_array` in [`StxHeader`]. #[derive(Clone)] pub struct RawWords<'a> { data: FontData<'a>, } #[allow(clippy::needless_lifetimes)] impl<'a> RawWords<'a> { pub const MIN_SIZE: usize = 0; basic_table_impls!(impl_the_methods); pub fn data(&self) -> &'a [BigEndian] { let range = self.data_byte_range(); self.data.read_array(range).ok().unwrap_or_default() } pub fn data_byte_range(&self) -> Range { let start = 0; let end = start + self.data.len().saturating_sub(start) / u16::RAW_BYTE_LEN * u16::RAW_BYTE_LEN; start..end } } #[allow(clippy::absurd_extreme_comparisons)] const _: () = assert!(FontData::default_data_long_enough(RawWords::MIN_SIZE)); impl Default for RawWords<'_> { fn default() -> Self { Self { data: FontData::default_table_data(), } } } #[cfg(feature = "experimental_traverse")] impl<'a> SomeTable<'a> for RawWords<'a> { fn type_name(&self) -> &str { "RawWords" } fn get_field(&self, idx: usize) -> Option> { match idx { 0usize => Some(Field::new("data", self.data())), _ => None, } } } #[cfg(feature = "experimental_traverse")] #[allow(clippy::needless_lifetimes)] impl<'a> std::fmt::Debug for RawWords<'a> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { (self as &dyn SomeTable<'a>).fmt(f) } }