1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#[allow(unused_imports)]
use crate::codegen_prelude::*;
#[derive(Debug, Clone, Copy)]
#[doc(hidden)]
pub struct AvarMarker {
axis_segment_maps_byte_len: usize,
}
impl AvarMarker {
fn version_byte_range(&self) -> Range<usize> {
let start = 0;
start..start + MajorMinor::RAW_BYTE_LEN
}
fn _reserved_byte_range(&self) -> Range<usize> {
let start = self.version_byte_range().end;
start..start + u16::RAW_BYTE_LEN
}
fn axis_count_byte_range(&self) -> Range<usize> {
let start = self._reserved_byte_range().end;
start..start + u16::RAW_BYTE_LEN
}
fn axis_segment_maps_byte_range(&self) -> Range<usize> {
let start = self.axis_count_byte_range().end;
start..start + self.axis_segment_maps_byte_len
}
}
impl TopLevelTable for Avar<'_> {
const TAG: Tag = Tag::new(b"avar");
}
impl<'a> FontRead<'a> for Avar<'a> {
fn read(data: FontData<'a>) -> Result<Self, ReadError> {
let mut cursor = data.cursor();
cursor.advance::<MajorMinor>();
cursor.advance::<u16>();
cursor.advance::<u16>();
let axis_segment_maps_byte_len = cursor.remaining_bytes();
cursor.advance_by(axis_segment_maps_byte_len);
cursor.finish(AvarMarker {
axis_segment_maps_byte_len,
})
}
}
pub type Avar<'a> = TableRef<'a, AvarMarker>;
impl<'a> Avar<'a> {
pub fn version(&self) -> MajorMinor {
let range = self.shape.version_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn axis_count(&self) -> u16 {
let range = self.shape.axis_count_byte_range();
self.data.read_at(range.start).unwrap()
}
pub fn axis_segment_maps(&self) -> VarLenArray<'a, SegmentMaps<'a>> {
let range = self.shape.axis_segment_maps_byte_range();
VarLenArray::read(self.data.split_off(range.start).unwrap()).unwrap()
}
}
#[cfg(feature = "traversal")]
impl<'a> SomeTable<'a> for Avar<'a> {
fn type_name(&self) -> &str {
"Avar"
}
fn get_field(&self, idx: usize) -> Option<Field<'a>> {
match idx {
0usize => Some(Field::new("version", self.version())),
1usize => Some(Field::new("axis_count", self.axis_count())),
2usize => Some(Field::new(
"axis_segment_maps",
traversal::FieldType::var_array(
"SegmentMaps",
self.axis_segment_maps(),
self.offset_data(),
),
)),
_ => None,
}
}
}
#[cfg(feature = "traversal")]
impl<'a> std::fmt::Debug for Avar<'a> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
(self as &dyn SomeTable<'a>).fmt(f)
}
}
#[derive(Clone, Debug)]
pub struct SegmentMaps<'a> {
pub position_map_count: BigEndian<u16>,
pub axis_value_maps: &'a [AxisValueMap],
}
impl<'a> SegmentMaps<'a> {
pub fn position_map_count(&self) -> u16 {
self.position_map_count.get()
}
pub fn axis_value_maps(&self) -> &'a [AxisValueMap] {
self.axis_value_maps
}
}
#[cfg(feature = "traversal")]
impl<'a> SomeRecord<'a> for SegmentMaps<'a> {
fn traverse(self, data: FontData<'a>) -> RecordResolver<'a> {
RecordResolver {
name: "SegmentMaps",
get_field: Box::new(move |idx, _data| match idx {
0usize => Some(Field::new("position_map_count", self.position_map_count())),
1usize => Some(Field::new(
"axis_value_maps",
traversal::FieldType::array_of_records(
stringify!(AxisValueMap),
self.axis_value_maps(),
_data,
),
)),
_ => None,
}),
data,
}
}
}
#[derive(Clone, Debug)]
#[repr(C)]
#[repr(packed)]
pub struct AxisValueMap {
pub from_coordinate: BigEndian<F2Dot14>,
pub to_coordinate: BigEndian<F2Dot14>,
}
impl AxisValueMap {
pub fn from_coordinate(&self) -> F2Dot14 {
self.from_coordinate.get()
}
pub fn to_coordinate(&self) -> F2Dot14 {
self.to_coordinate.get()
}
}
impl FixedSize for AxisValueMap {
const RAW_BYTE_LEN: usize = F2Dot14::RAW_BYTE_LEN + F2Dot14::RAW_BYTE_LEN;
}
#[cfg(feature = "traversal")]
impl<'a> SomeRecord<'a> for AxisValueMap {
fn traverse(self, data: FontData<'a>) -> RecordResolver<'a> {
RecordResolver {
name: "AxisValueMap",
get_field: Box::new(move |idx, _data| match idx {
0usize => Some(Field::new("from_coordinate", self.from_coordinate())),
1usize => Some(Field::new("to_coordinate", self.to_coordinate())),
_ => None,
}),
data,
}
}
}