#[allow(unused_imports)]
use crate::codegen_prelude::*;
#[derive(Debug, Clone, Copy)]
#[doc(hidden)]
pub struct TupleVariationHeaderMarker {
peak_tuple_byte_len: usize,
intermediate_start_tuple_byte_len: usize,
intermediate_end_tuple_byte_len: usize,
}
impl TupleVariationHeaderMarker {
fn variation_data_size_byte_range(&self) -> Range<usize> {
let start = 0;
start..start + u16::RAW_BYTE_LEN
}
fn tuple_index_byte_range(&self) -> Range<usize> {
let start = self.variation_data_size_byte_range().end;
start..start + TupleIndex::RAW_BYTE_LEN
}
fn peak_tuple_byte_range(&self) -> Range<usize> {
let start = self.tuple_index_byte_range().end;
start..start + self.peak_tuple_byte_len
}
fn intermediate_start_tuple_byte_range(&self) -> Range<usize> {
let start = self.peak_tuple_byte_range().end;
start..start + self.intermediate_start_tuple_byte_len
}
fn intermediate_end_tuple_byte_range(&self) -> Range<usize> {
let start = self.intermediate_start_tuple_byte_range().end;
start..start + self.intermediate_end_tuple_byte_len
}
}
impl ReadArgs for TupleVariationHeader<'_> {
type Args = u16;
}
impl<'a> FontReadWithArgs<'a> for TupleVariationHeader<'a> {
fn read_with_args(data: FontData<'a>, args: &u16) -> Result<Self, ReadError> {
let axis_count = *args;
let mut cursor = data.cursor();
cursor.advance::<u16>();
let tuple_index: TupleIndex = cursor.read()?;
let peak_tuple_byte_len = (TupleIndex::tuple_len(tuple_index, axis_count, 0_usize))
.checked_mul(F2Dot14::RAW_BYTE_LEN)
.ok_or(ReadError::OutOfBounds)?;
cursor.advance_by(peak_tuple_byte_len);
let intermediate_start_tuple_byte_len =
(TupleIndex::tuple_len(tuple_index, axis_count, 1_usize))
.checked_mul(F2Dot14::RAW_BYTE_LEN)
.ok_or(ReadError::OutOfBounds)?;
cursor.advance_by(intermediate_start_tuple_byte_len);
let intermediate_end_tuple_byte_len =
(TupleIndex::tuple_len(tuple_index, axis_count, 1_usize))
.checked_mul(F2Dot14::RAW_BYTE_LEN)
.ok_or(ReadError::OutOfBounds)?;
cursor.advance_by(intermediate_end_tuple_byte_len);
cursor.finish(TupleVariationHeaderMarker {
peak_tuple_byte_len,
intermediate_start_tuple_byte_len,
intermediate_end_tuple_byte_len,
})
}
}
impl<'a> TupleVariationHeader<'a> {
pub fn read(data: FontData<'a>, axis_count: u16) -> Result<Self, ReadError> {
let args = axis_count;
Self::read_with_args(data, &args)
}
}
pub type TupleVariationHeader<'a> = TableRef<'a, TupleVariationHeaderMarker>;
impl<'a> TupleVariationHeader<'a> {
pub fn variation_data_size(&self) -> u16 {
let range = self.shape.variation_data_size_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn tuple_index(&self) -> TupleIndex {
let range = self.shape.tuple_index_byte_range();
self.data.read_at(range.start).unwrap()
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> SomeTable<'a> for TupleVariationHeader<'a> {
fn type_name(&self) -> &str {
"TupleVariationHeader"
}
fn get_field(&self, idx: usize) -> Option<Field<'a>> {
match idx {
0usize => Some(Field::new(
"variation_data_size",
self.variation_data_size(),
)),
1usize => Some(Field::new("tuple_index", self.traverse_tuple_index())),
_ => None,
}
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> std::fmt::Debug for TupleVariationHeader<'a> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
(self as &dyn SomeTable<'a>).fmt(f)
}
}
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Tuple<'a> {
pub values: &'a [BigEndian<F2Dot14>],
}
impl<'a> Tuple<'a> {
pub fn values(&self) -> &'a [BigEndian<F2Dot14>] {
self.values
}
}
impl ReadArgs for Tuple<'_> {
type Args = u16;
}
impl ComputeSize for Tuple<'_> {
#[allow(clippy::needless_question_mark)]
fn compute_size(args: &u16) -> Result<usize, ReadError> {
let axis_count = *args;
Ok((axis_count as usize)
.checked_mul(F2Dot14::RAW_BYTE_LEN)
.ok_or(ReadError::OutOfBounds)?)
}
}
impl<'a> FontReadWithArgs<'a> for Tuple<'a> {
fn read_with_args(data: FontData<'a>, args: &u16) -> Result<Self, ReadError> {
let mut cursor = data.cursor();
let axis_count = *args;
Ok(Self {
values: cursor.read_array(axis_count as usize)?,
})
}
}
impl<'a> Tuple<'a> {
pub fn read(data: FontData<'a>, axis_count: u16) -> Result<Self, ReadError> {
let args = axis_count;
Self::read_with_args(data, &args)
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> SomeRecord<'a> for Tuple<'a> {
fn traverse(self, data: FontData<'a>) -> RecordResolver<'a> {
RecordResolver {
name: "Tuple",
get_field: Box::new(move |idx, _data| match idx {
0usize => Some(Field::new("values", self.values())),
_ => None,
}),
data,
}
}
}
impl Format<u8> for DeltaSetIndexMapFormat0Marker {
const FORMAT: u8 = 0;
}
#[derive(Debug, Clone, Copy)]
#[doc(hidden)]
pub struct DeltaSetIndexMapFormat0Marker {
map_data_byte_len: usize,
}
impl DeltaSetIndexMapFormat0Marker {
fn format_byte_range(&self) -> Range<usize> {
let start = 0;
start..start + u8::RAW_BYTE_LEN
}
fn entry_format_byte_range(&self) -> Range<usize> {
let start = self.format_byte_range().end;
start..start + EntryFormat::RAW_BYTE_LEN
}
fn map_count_byte_range(&self) -> Range<usize> {
let start = self.entry_format_byte_range().end;
start..start + u16::RAW_BYTE_LEN
}
fn map_data_byte_range(&self) -> Range<usize> {
let start = self.map_count_byte_range().end;
start..start + self.map_data_byte_len
}
}
impl<'a> FontRead<'a> for DeltaSetIndexMapFormat0<'a> {
fn read(data: FontData<'a>) -> Result<Self, ReadError> {
let mut cursor = data.cursor();
cursor.advance::<u8>();
let entry_format: EntryFormat = cursor.read()?;
let map_count: u16 = cursor.read()?;
let map_data_byte_len = (EntryFormat::map_size(entry_format, map_count))
.checked_mul(u8::RAW_BYTE_LEN)
.ok_or(ReadError::OutOfBounds)?;
cursor.advance_by(map_data_byte_len);
cursor.finish(DeltaSetIndexMapFormat0Marker { map_data_byte_len })
}
}
pub type DeltaSetIndexMapFormat0<'a> = TableRef<'a, DeltaSetIndexMapFormat0Marker>;
impl<'a> DeltaSetIndexMapFormat0<'a> {
pub fn format(&self) -> u8 {
let range = self.shape.format_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn entry_format(&self) -> EntryFormat {
let range = self.shape.entry_format_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn map_count(&self) -> u16 {
let range = self.shape.map_count_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn map_data(&self) -> &'a [u8] {
let range = self.shape.map_data_byte_range();
self.data.read_array(range).unwrap()
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> SomeTable<'a> for DeltaSetIndexMapFormat0<'a> {
fn type_name(&self) -> &str {
"DeltaSetIndexMapFormat0"
}
fn get_field(&self, idx: usize) -> Option<Field<'a>> {
match idx {
0usize => Some(Field::new("format", self.format())),
1usize => Some(Field::new("entry_format", self.entry_format())),
2usize => Some(Field::new("map_count", self.map_count())),
3usize => Some(Field::new("map_data", self.map_data())),
_ => None,
}
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> std::fmt::Debug for DeltaSetIndexMapFormat0<'a> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
(self as &dyn SomeTable<'a>).fmt(f)
}
}
impl Format<u8> for DeltaSetIndexMapFormat1Marker {
const FORMAT: u8 = 1;
}
#[derive(Debug, Clone, Copy)]
#[doc(hidden)]
pub struct DeltaSetIndexMapFormat1Marker {
map_data_byte_len: usize,
}
impl DeltaSetIndexMapFormat1Marker {
fn format_byte_range(&self) -> Range<usize> {
let start = 0;
start..start + u8::RAW_BYTE_LEN
}
fn entry_format_byte_range(&self) -> Range<usize> {
let start = self.format_byte_range().end;
start..start + EntryFormat::RAW_BYTE_LEN
}
fn map_count_byte_range(&self) -> Range<usize> {
let start = self.entry_format_byte_range().end;
start..start + u32::RAW_BYTE_LEN
}
fn map_data_byte_range(&self) -> Range<usize> {
let start = self.map_count_byte_range().end;
start..start + self.map_data_byte_len
}
}
impl<'a> FontRead<'a> for DeltaSetIndexMapFormat1<'a> {
fn read(data: FontData<'a>) -> Result<Self, ReadError> {
let mut cursor = data.cursor();
cursor.advance::<u8>();
let entry_format: EntryFormat = cursor.read()?;
let map_count: u32 = cursor.read()?;
let map_data_byte_len = (EntryFormat::map_size(entry_format, map_count))
.checked_mul(u8::RAW_BYTE_LEN)
.ok_or(ReadError::OutOfBounds)?;
cursor.advance_by(map_data_byte_len);
cursor.finish(DeltaSetIndexMapFormat1Marker { map_data_byte_len })
}
}
pub type DeltaSetIndexMapFormat1<'a> = TableRef<'a, DeltaSetIndexMapFormat1Marker>;
impl<'a> DeltaSetIndexMapFormat1<'a> {
pub fn format(&self) -> u8 {
let range = self.shape.format_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn entry_format(&self) -> EntryFormat {
let range = self.shape.entry_format_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn map_count(&self) -> u32 {
let range = self.shape.map_count_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn map_data(&self) -> &'a [u8] {
let range = self.shape.map_data_byte_range();
self.data.read_array(range).unwrap()
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> SomeTable<'a> for DeltaSetIndexMapFormat1<'a> {
fn type_name(&self) -> &str {
"DeltaSetIndexMapFormat1"
}
fn get_field(&self, idx: usize) -> Option<Field<'a>> {
match idx {
0usize => Some(Field::new("format", self.format())),
1usize => Some(Field::new("entry_format", self.entry_format())),
2usize => Some(Field::new("map_count", self.map_count())),
3usize => Some(Field::new("map_data", self.map_data())),
_ => None,
}
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> std::fmt::Debug for DeltaSetIndexMapFormat1<'a> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
(self as &dyn SomeTable<'a>).fmt(f)
}
}
#[derive(Clone)]
pub enum DeltaSetIndexMap<'a> {
Format0(DeltaSetIndexMapFormat0<'a>),
Format1(DeltaSetIndexMapFormat1<'a>),
}
impl<'a> DeltaSetIndexMap<'a> {
pub fn offset_data(&self) -> FontData<'a> {
match self {
Self::Format0(item) => item.offset_data(),
Self::Format1(item) => item.offset_data(),
}
}
pub fn format(&self) -> u8 {
match self {
Self::Format0(item) => item.format(),
Self::Format1(item) => item.format(),
}
}
pub fn entry_format(&self) -> EntryFormat {
match self {
Self::Format0(item) => item.entry_format(),
Self::Format1(item) => item.entry_format(),
}
}
pub fn map_data(&self) -> &'a [u8] {
match self {
Self::Format0(item) => item.map_data(),
Self::Format1(item) => item.map_data(),
}
}
}
impl<'a> FontRead<'a> for DeltaSetIndexMap<'a> {
fn read(data: FontData<'a>) -> Result<Self, ReadError> {
let format: u8 = data.read_at(0usize)?;
match format {
DeltaSetIndexMapFormat0Marker::FORMAT => Ok(Self::Format0(FontRead::read(data)?)),
DeltaSetIndexMapFormat1Marker::FORMAT => Ok(Self::Format1(FontRead::read(data)?)),
other => Err(ReadError::InvalidFormat(other.into())),
}
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> DeltaSetIndexMap<'a> {
fn dyn_inner<'b>(&'b self) -> &'b dyn SomeTable<'a> {
match self {
Self::Format0(table) => table,
Self::Format1(table) => table,
}
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> std::fmt::Debug for DeltaSetIndexMap<'a> {
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 DeltaSetIndexMap<'a> {
fn type_name(&self) -> &str {
self.dyn_inner().type_name()
}
fn get_field(&self, idx: usize) -> Option<Field<'a>> {
self.dyn_inner().get_field(idx)
}
}
#[derive(Clone, Copy, Default, PartialEq, Eq, PartialOrd, Ord, Hash, bytemuck :: AnyBitPattern)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[repr(transparent)]
pub struct EntryFormat {
bits: u8,
}
impl EntryFormat {
pub const INNER_INDEX_BIT_COUNT_MASK: Self = Self { bits: 0x0F };
pub const MAP_ENTRY_SIZE_MASK: Self = Self { bits: 0x30 };
}
impl EntryFormat {
#[inline]
pub const fn empty() -> Self {
Self { bits: 0 }
}
#[inline]
pub const fn all() -> Self {
Self {
bits: Self::INNER_INDEX_BIT_COUNT_MASK.bits | Self::MAP_ENTRY_SIZE_MASK.bits,
}
}
#[inline]
pub const fn bits(&self) -> u8 {
self.bits
}
#[inline]
pub const fn from_bits(bits: u8) -> Option<Self> {
if (bits & !Self::all().bits()) == 0 {
Some(Self { bits })
} else {
None
}
}
#[inline]
pub const fn from_bits_truncate(bits: u8) -> Self {
Self {
bits: bits & Self::all().bits,
}
}
#[inline]
pub const fn is_empty(&self) -> bool {
self.bits() == Self::empty().bits()
}
#[inline]
pub const fn intersects(&self, other: Self) -> bool {
!(Self {
bits: self.bits & other.bits,
})
.is_empty()
}
#[inline]
pub const fn contains(&self, other: Self) -> bool {
(self.bits & other.bits) == other.bits
}
#[inline]
pub fn insert(&mut self, other: Self) {
self.bits |= other.bits;
}
#[inline]
pub fn remove(&mut self, other: Self) {
self.bits &= !other.bits;
}
#[inline]
pub fn toggle(&mut self, other: Self) {
self.bits ^= other.bits;
}
#[inline]
#[must_use]
pub const fn intersection(self, other: Self) -> Self {
Self {
bits: self.bits & other.bits,
}
}
#[inline]
#[must_use]
pub const fn union(self, other: Self) -> Self {
Self {
bits: self.bits | other.bits,
}
}
#[inline]
#[must_use]
pub const fn difference(self, other: Self) -> Self {
Self {
bits: self.bits & !other.bits,
}
}
}
impl std::ops::BitOr for EntryFormat {
type Output = Self;
#[inline]
fn bitor(self, other: EntryFormat) -> Self {
Self {
bits: self.bits | other.bits,
}
}
}
impl std::ops::BitOrAssign for EntryFormat {
#[inline]
fn bitor_assign(&mut self, other: Self) {
self.bits |= other.bits;
}
}
impl std::ops::BitXor for EntryFormat {
type Output = Self;
#[inline]
fn bitxor(self, other: Self) -> Self {
Self {
bits: self.bits ^ other.bits,
}
}
}
impl std::ops::BitXorAssign for EntryFormat {
#[inline]
fn bitxor_assign(&mut self, other: Self) {
self.bits ^= other.bits;
}
}
impl std::ops::BitAnd for EntryFormat {
type Output = Self;
#[inline]
fn bitand(self, other: Self) -> Self {
Self {
bits: self.bits & other.bits,
}
}
}
impl std::ops::BitAndAssign for EntryFormat {
#[inline]
fn bitand_assign(&mut self, other: Self) {
self.bits &= other.bits;
}
}
impl std::ops::Sub for EntryFormat {
type Output = Self;
#[inline]
fn sub(self, other: Self) -> Self {
Self {
bits: self.bits & !other.bits,
}
}
}
impl std::ops::SubAssign for EntryFormat {
#[inline]
fn sub_assign(&mut self, other: Self) {
self.bits &= !other.bits;
}
}
impl std::ops::Not for EntryFormat {
type Output = Self;
#[inline]
fn not(self) -> Self {
Self { bits: !self.bits } & Self::all()
}
}
impl std::fmt::Debug for EntryFormat {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
let members: &[(&str, Self)] = &[
(
"INNER_INDEX_BIT_COUNT_MASK",
Self::INNER_INDEX_BIT_COUNT_MASK,
),
("MAP_ENTRY_SIZE_MASK", Self::MAP_ENTRY_SIZE_MASK),
];
let mut first = true;
for (name, value) in members {
if self.contains(*value) {
if !first {
f.write_str(" | ")?;
}
first = false;
f.write_str(name)?;
}
}
if first {
f.write_str("(empty)")?;
}
Ok(())
}
}
impl std::fmt::Binary for EntryFormat {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
std::fmt::Binary::fmt(&self.bits, f)
}
}
impl std::fmt::Octal for EntryFormat {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
std::fmt::Octal::fmt(&self.bits, f)
}
}
impl std::fmt::LowerHex for EntryFormat {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
std::fmt::LowerHex::fmt(&self.bits, f)
}
}
impl std::fmt::UpperHex for EntryFormat {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
std::fmt::UpperHex::fmt(&self.bits, f)
}
}
impl font_types::Scalar for EntryFormat {
type Raw = <u8 as font_types::Scalar>::Raw;
fn to_raw(self) -> Self::Raw {
self.bits().to_raw()
}
fn from_raw(raw: Self::Raw) -> Self {
let t = <u8>::from_raw(raw);
Self::from_bits_truncate(t)
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> From<EntryFormat> for FieldType<'a> {
fn from(src: EntryFormat) -> FieldType<'a> {
src.bits().into()
}
}
#[derive(Debug, Clone, Copy)]
#[doc(hidden)]
pub struct VariationRegionListMarker {
variation_regions_byte_len: usize,
}
impl VariationRegionListMarker {
fn axis_count_byte_range(&self) -> Range<usize> {
let start = 0;
start..start + u16::RAW_BYTE_LEN
}
fn region_count_byte_range(&self) -> Range<usize> {
let start = self.axis_count_byte_range().end;
start..start + u16::RAW_BYTE_LEN
}
fn variation_regions_byte_range(&self) -> Range<usize> {
let start = self.region_count_byte_range().end;
start..start + self.variation_regions_byte_len
}
}
impl<'a> FontRead<'a> for VariationRegionList<'a> {
fn read(data: FontData<'a>) -> Result<Self, ReadError> {
let mut cursor = data.cursor();
let axis_count: u16 = cursor.read()?;
let region_count: u16 = cursor.read()?;
let variation_regions_byte_len = (region_count as usize)
.checked_mul(<VariationRegion as ComputeSize>::compute_size(&axis_count)?)
.ok_or(ReadError::OutOfBounds)?;
cursor.advance_by(variation_regions_byte_len);
cursor.finish(VariationRegionListMarker {
variation_regions_byte_len,
})
}
}
pub type VariationRegionList<'a> = TableRef<'a, VariationRegionListMarker>;
impl<'a> VariationRegionList<'a> {
pub fn axis_count(&self) -> u16 {
let range = self.shape.axis_count_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn region_count(&self) -> u16 {
let range = self.shape.region_count_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn variation_regions(&self) -> ComputedArray<'a, VariationRegion<'a>> {
let range = self.shape.variation_regions_byte_range();
self.data.read_with_args(range, &self.axis_count()).unwrap()
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> SomeTable<'a> for VariationRegionList<'a> {
fn type_name(&self) -> &str {
"VariationRegionList"
}
fn get_field(&self, idx: usize) -> Option<Field<'a>> {
match idx {
0usize => Some(Field::new("axis_count", self.axis_count())),
1usize => Some(Field::new("region_count", self.region_count())),
2usize => Some(Field::new(
"variation_regions",
traversal::FieldType::computed_array(
"VariationRegion",
self.variation_regions(),
self.offset_data(),
),
)),
_ => None,
}
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> std::fmt::Debug for VariationRegionList<'a> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
(self as &dyn SomeTable<'a>).fmt(f)
}
}
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct VariationRegion<'a> {
pub region_axes: &'a [RegionAxisCoordinates],
}
impl<'a> VariationRegion<'a> {
pub fn region_axes(&self) -> &'a [RegionAxisCoordinates] {
self.region_axes
}
}
impl ReadArgs for VariationRegion<'_> {
type Args = u16;
}
impl ComputeSize for VariationRegion<'_> {
#[allow(clippy::needless_question_mark)]
fn compute_size(args: &u16) -> Result<usize, ReadError> {
let axis_count = *args;
Ok((axis_count as usize)
.checked_mul(RegionAxisCoordinates::RAW_BYTE_LEN)
.ok_or(ReadError::OutOfBounds)?)
}
}
impl<'a> FontReadWithArgs<'a> for VariationRegion<'a> {
fn read_with_args(data: FontData<'a>, args: &u16) -> Result<Self, ReadError> {
let mut cursor = data.cursor();
let axis_count = *args;
Ok(Self {
region_axes: cursor.read_array(axis_count as usize)?,
})
}
}
impl<'a> VariationRegion<'a> {
pub fn read(data: FontData<'a>, axis_count: u16) -> Result<Self, ReadError> {
let args = axis_count;
Self::read_with_args(data, &args)
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> SomeRecord<'a> for VariationRegion<'a> {
fn traverse(self, data: FontData<'a>) -> RecordResolver<'a> {
RecordResolver {
name: "VariationRegion",
get_field: Box::new(move |idx, _data| match idx {
0usize => Some(Field::new(
"region_axes",
traversal::FieldType::array_of_records(
stringify!(RegionAxisCoordinates),
self.region_axes(),
_data,
),
)),
_ => None,
}),
data,
}
}
}
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Copy, bytemuck :: AnyBitPattern)]
#[repr(C)]
#[repr(packed)]
pub struct RegionAxisCoordinates {
pub start_coord: BigEndian<F2Dot14>,
pub peak_coord: BigEndian<F2Dot14>,
pub end_coord: BigEndian<F2Dot14>,
}
impl RegionAxisCoordinates {
pub fn start_coord(&self) -> F2Dot14 {
self.start_coord.get()
}
pub fn peak_coord(&self) -> F2Dot14 {
self.peak_coord.get()
}
pub fn end_coord(&self) -> F2Dot14 {
self.end_coord.get()
}
}
impl FixedSize for RegionAxisCoordinates {
const RAW_BYTE_LEN: usize =
F2Dot14::RAW_BYTE_LEN + F2Dot14::RAW_BYTE_LEN + F2Dot14::RAW_BYTE_LEN;
}
#[cfg(feature = "experimental_traverse")]
impl<'a> SomeRecord<'a> for RegionAxisCoordinates {
fn traverse(self, data: FontData<'a>) -> RecordResolver<'a> {
RecordResolver {
name: "RegionAxisCoordinates",
get_field: Box::new(move |idx, _data| match idx {
0usize => Some(Field::new("start_coord", self.start_coord())),
1usize => Some(Field::new("peak_coord", self.peak_coord())),
2usize => Some(Field::new("end_coord", self.end_coord())),
_ => None,
}),
data,
}
}
}
#[derive(Debug, Clone, Copy)]
#[doc(hidden)]
pub struct ItemVariationStoreMarker {
item_variation_data_offsets_byte_len: usize,
}
impl ItemVariationStoreMarker {
fn format_byte_range(&self) -> Range<usize> {
let start = 0;
start..start + u16::RAW_BYTE_LEN
}
fn variation_region_list_offset_byte_range(&self) -> Range<usize> {
let start = self.format_byte_range().end;
start..start + Offset32::RAW_BYTE_LEN
}
fn item_variation_data_count_byte_range(&self) -> Range<usize> {
let start = self.variation_region_list_offset_byte_range().end;
start..start + u16::RAW_BYTE_LEN
}
fn item_variation_data_offsets_byte_range(&self) -> Range<usize> {
let start = self.item_variation_data_count_byte_range().end;
start..start + self.item_variation_data_offsets_byte_len
}
}
impl<'a> FontRead<'a> for ItemVariationStore<'a> {
fn read(data: FontData<'a>) -> Result<Self, ReadError> {
let mut cursor = data.cursor();
cursor.advance::<u16>();
cursor.advance::<Offset32>();
let item_variation_data_count: u16 = cursor.read()?;
let item_variation_data_offsets_byte_len = (item_variation_data_count as usize)
.checked_mul(Offset32::RAW_BYTE_LEN)
.ok_or(ReadError::OutOfBounds)?;
cursor.advance_by(item_variation_data_offsets_byte_len);
cursor.finish(ItemVariationStoreMarker {
item_variation_data_offsets_byte_len,
})
}
}
pub type ItemVariationStore<'a> = TableRef<'a, ItemVariationStoreMarker>;
impl<'a> ItemVariationStore<'a> {
pub fn format(&self) -> u16 {
let range = self.shape.format_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn variation_region_list_offset(&self) -> Offset32 {
let range = self.shape.variation_region_list_offset_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn variation_region_list(&self) -> Result<VariationRegionList<'a>, ReadError> {
let data = self.data;
self.variation_region_list_offset().resolve(data)
}
pub fn item_variation_data_count(&self) -> u16 {
let range = self.shape.item_variation_data_count_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn item_variation_data_offsets(&self) -> &'a [BigEndian<Nullable<Offset32>>] {
let range = self.shape.item_variation_data_offsets_byte_range();
self.data.read_array(range).unwrap()
}
pub fn item_variation_data(
&self,
) -> ArrayOfNullableOffsets<'a, ItemVariationData<'a>, Offset32> {
let data = self.data;
let offsets = self.item_variation_data_offsets();
ArrayOfNullableOffsets::new(offsets, data, ())
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> SomeTable<'a> for ItemVariationStore<'a> {
fn type_name(&self) -> &str {
"ItemVariationStore"
}
fn get_field(&self, idx: usize) -> Option<Field<'a>> {
match idx {
0usize => Some(Field::new("format", self.format())),
1usize => Some(Field::new(
"variation_region_list_offset",
FieldType::offset(
self.variation_region_list_offset(),
self.variation_region_list(),
),
)),
2usize => Some(Field::new(
"item_variation_data_count",
self.item_variation_data_count(),
)),
3usize => Some({
let data = self.data;
Field::new(
"item_variation_data_offsets",
FieldType::array_of_offsets(
better_type_name::<ItemVariationData>(),
self.item_variation_data_offsets(),
move |off| {
let target = off.get().resolve::<ItemVariationData>(data);
FieldType::offset(off.get(), target)
},
),
)
}),
_ => None,
}
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> std::fmt::Debug for ItemVariationStore<'a> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
(self as &dyn SomeTable<'a>).fmt(f)
}
}
#[derive(Debug, Clone, Copy)]
#[doc(hidden)]
pub struct ItemVariationDataMarker {
region_indexes_byte_len: usize,
delta_sets_byte_len: usize,
}
impl ItemVariationDataMarker {
fn item_count_byte_range(&self) -> Range<usize> {
let start = 0;
start..start + u16::RAW_BYTE_LEN
}
fn word_delta_count_byte_range(&self) -> Range<usize> {
let start = self.item_count_byte_range().end;
start..start + u16::RAW_BYTE_LEN
}
fn region_index_count_byte_range(&self) -> Range<usize> {
let start = self.word_delta_count_byte_range().end;
start..start + u16::RAW_BYTE_LEN
}
fn region_indexes_byte_range(&self) -> Range<usize> {
let start = self.region_index_count_byte_range().end;
start..start + self.region_indexes_byte_len
}
fn delta_sets_byte_range(&self) -> Range<usize> {
let start = self.region_indexes_byte_range().end;
start..start + self.delta_sets_byte_len
}
}
impl<'a> FontRead<'a> for ItemVariationData<'a> {
fn read(data: FontData<'a>) -> Result<Self, ReadError> {
let mut cursor = data.cursor();
let item_count: u16 = cursor.read()?;
let word_delta_count: u16 = cursor.read()?;
let region_index_count: u16 = cursor.read()?;
let region_indexes_byte_len = (region_index_count as usize)
.checked_mul(u16::RAW_BYTE_LEN)
.ok_or(ReadError::OutOfBounds)?;
cursor.advance_by(region_indexes_byte_len);
let delta_sets_byte_len =
(ItemVariationData::delta_sets_len(item_count, word_delta_count, region_index_count))
.checked_mul(u8::RAW_BYTE_LEN)
.ok_or(ReadError::OutOfBounds)?;
cursor.advance_by(delta_sets_byte_len);
cursor.finish(ItemVariationDataMarker {
region_indexes_byte_len,
delta_sets_byte_len,
})
}
}
pub type ItemVariationData<'a> = TableRef<'a, ItemVariationDataMarker>;
impl<'a> ItemVariationData<'a> {
pub fn item_count(&self) -> u16 {
let range = self.shape.item_count_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn word_delta_count(&self) -> u16 {
let range = self.shape.word_delta_count_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn region_index_count(&self) -> u16 {
let range = self.shape.region_index_count_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn region_indexes(&self) -> &'a [BigEndian<u16>] {
let range = self.shape.region_indexes_byte_range();
self.data.read_array(range).unwrap()
}
pub fn delta_sets(&self) -> &'a [u8] {
let range = self.shape.delta_sets_byte_range();
self.data.read_array(range).unwrap()
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> SomeTable<'a> for ItemVariationData<'a> {
fn type_name(&self) -> &str {
"ItemVariationData"
}
fn get_field(&self, idx: usize) -> Option<Field<'a>> {
match idx {
0usize => Some(Field::new("item_count", self.item_count())),
1usize => Some(Field::new("word_delta_count", self.word_delta_count())),
2usize => Some(Field::new("region_index_count", self.region_index_count())),
3usize => Some(Field::new("region_indexes", self.region_indexes())),
4usize => Some(Field::new("delta_sets", self.delta_sets())),
_ => None,
}
}
}
#[cfg(feature = "experimental_traverse")]
impl<'a> std::fmt::Debug for ItemVariationData<'a> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
(self as &dyn SomeTable<'a>).fmt(f)
}
}