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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
#[allow(unused_imports)]
use crate::codegen_prelude::*;
#[derive(Clone, Debug)]
pub struct Os2 {
pub x_avg_char_width: i16,
pub us_weight_class: u16,
pub us_width_class: u16,
pub fs_type: u16,
pub y_subscript_x_size: i16,
pub y_subscript_y_size: i16,
pub y_subscript_x_offset: i16,
pub y_subscript_y_offset: i16,
pub y_superscript_x_size: i16,
pub y_superscript_y_size: i16,
pub y_superscript_x_offset: i16,
pub y_superscript_y_offset: i16,
pub y_strikeout_size: i16,
pub y_strikeout_position: i16,
pub s_family_class: i16,
pub panose_10: [u8; 10],
pub ul_unicode_range_1: u32,
pub ul_unicode_range_2: u32,
pub ul_unicode_range_3: u32,
pub ul_unicode_range_4: u32,
pub ach_vend_id: Tag,
pub fs_selection: u16,
pub us_first_char_index: u16,
pub us_last_char_index: u16,
pub s_typo_ascender: i16,
pub s_typo_descender: i16,
pub s_typo_line_gap: i16,
pub us_win_ascent: u16,
pub us_win_descent: u16,
pub ul_code_page_range_1: Option<u32>,
pub ul_code_page_range_2: Option<u32>,
pub sx_height: Option<i16>,
pub s_cap_height: Option<i16>,
pub us_default_char: Option<u16>,
pub us_break_char: Option<u16>,
pub us_max_context: Option<u16>,
pub us_lower_optical_point_size: Option<u16>,
pub us_upper_optical_point_size: Option<u16>,
}
impl Default for Os2 {
fn default() -> Self {
Self {
x_avg_char_width: Default::default(),
us_weight_class: 400,
us_width_class: 5,
fs_type: Default::default(),
y_subscript_x_size: Default::default(),
y_subscript_y_size: Default::default(),
y_subscript_x_offset: Default::default(),
y_subscript_y_offset: Default::default(),
y_superscript_x_size: Default::default(),
y_superscript_y_size: Default::default(),
y_superscript_x_offset: Default::default(),
y_superscript_y_offset: Default::default(),
y_strikeout_size: Default::default(),
y_strikeout_position: Default::default(),
s_family_class: Default::default(),
panose_10: Default::default(),
ul_unicode_range_1: Default::default(),
ul_unicode_range_2: Default::default(),
ul_unicode_range_3: Default::default(),
ul_unicode_range_4: Default::default(),
ach_vend_id: Default::default(),
fs_selection: Default::default(),
us_first_char_index: Default::default(),
us_last_char_index: Default::default(),
s_typo_ascender: Default::default(),
s_typo_descender: Default::default(),
s_typo_line_gap: Default::default(),
us_win_ascent: Default::default(),
us_win_descent: Default::default(),
ul_code_page_range_1: Default::default(),
ul_code_page_range_2: Default::default(),
sx_height: Default::default(),
s_cap_height: Default::default(),
us_default_char: Default::default(),
us_break_char: Default::default(),
us_max_context: Default::default(),
us_lower_optical_point_size: Default::default(),
us_upper_optical_point_size: Default::default(),
}
}
}
impl FontWrite for Os2 {
#[allow(clippy::unnecessary_cast)]
fn write_into(&self, writer: &mut TableWriter) {
let version = self.compute_version() as u16;
version.write_into(writer);
self.x_avg_char_width.write_into(writer);
self.us_weight_class.write_into(writer);
self.us_width_class.write_into(writer);
self.fs_type.write_into(writer);
self.y_subscript_x_size.write_into(writer);
self.y_subscript_y_size.write_into(writer);
self.y_subscript_x_offset.write_into(writer);
self.y_subscript_y_offset.write_into(writer);
self.y_superscript_x_size.write_into(writer);
self.y_superscript_y_size.write_into(writer);
self.y_superscript_x_offset.write_into(writer);
self.y_superscript_y_offset.write_into(writer);
self.y_strikeout_size.write_into(writer);
self.y_strikeout_position.write_into(writer);
self.s_family_class.write_into(writer);
self.panose_10.write_into(writer);
self.ul_unicode_range_1.write_into(writer);
self.ul_unicode_range_2.write_into(writer);
self.ul_unicode_range_3.write_into(writer);
self.ul_unicode_range_4.write_into(writer);
self.ach_vend_id.write_into(writer);
self.fs_selection.write_into(writer);
self.us_first_char_index.write_into(writer);
self.us_last_char_index.write_into(writer);
self.s_typo_ascender.write_into(writer);
self.s_typo_descender.write_into(writer);
self.s_typo_line_gap.write_into(writer);
self.us_win_ascent.write_into(writer);
self.us_win_descent.write_into(writer);
version.compatible(1).then(|| {
self.ul_code_page_range_1
.as_ref()
.expect("missing versioned field should have failed validation")
.write_into(writer)
});
version.compatible(1).then(|| {
self.ul_code_page_range_2
.as_ref()
.expect("missing versioned field should have failed validation")
.write_into(writer)
});
version.compatible(2).then(|| {
self.sx_height
.as_ref()
.expect("missing versioned field should have failed validation")
.write_into(writer)
});
version.compatible(2).then(|| {
self.s_cap_height
.as_ref()
.expect("missing versioned field should have failed validation")
.write_into(writer)
});
version.compatible(2).then(|| {
self.us_default_char
.as_ref()
.expect("missing versioned field should have failed validation")
.write_into(writer)
});
version.compatible(2).then(|| {
self.us_break_char
.as_ref()
.expect("missing versioned field should have failed validation")
.write_into(writer)
});
version.compatible(2).then(|| {
self.us_max_context
.as_ref()
.expect("missing versioned field should have failed validation")
.write_into(writer)
});
version.compatible(5).then(|| {
self.us_lower_optical_point_size
.as_ref()
.expect("missing versioned field should have failed validation")
.write_into(writer)
});
version.compatible(5).then(|| {
self.us_upper_optical_point_size
.as_ref()
.expect("missing versioned field should have failed validation")
.write_into(writer)
});
}
}
impl Validate for Os2 {
fn validate_impl(&self, ctx: &mut ValidationCtx) {
ctx.in_table("Os2", |ctx| {
let version: u16 = self.compute_version();
ctx.in_field("ul_code_page_range_1", |ctx| {
if version.compatible(1) && self.ul_code_page_range_1.is_none() {
ctx.report(format!("field must be present for version {version}"));
}
});
ctx.in_field("ul_code_page_range_2", |ctx| {
if version.compatible(1) && self.ul_code_page_range_2.is_none() {
ctx.report(format!("field must be present for version {version}"));
}
});
ctx.in_field("sx_height", |ctx| {
if version.compatible(2) && self.sx_height.is_none() {
ctx.report(format!("field must be present for version {version}"));
}
});
ctx.in_field("s_cap_height", |ctx| {
if version.compatible(2) && self.s_cap_height.is_none() {
ctx.report(format!("field must be present for version {version}"));
}
});
ctx.in_field("us_default_char", |ctx| {
if version.compatible(2) && self.us_default_char.is_none() {
ctx.report(format!("field must be present for version {version}"));
}
});
ctx.in_field("us_break_char", |ctx| {
if version.compatible(2) && self.us_break_char.is_none() {
ctx.report(format!("field must be present for version {version}"));
}
});
ctx.in_field("us_max_context", |ctx| {
if version.compatible(2) && self.us_max_context.is_none() {
ctx.report(format!("field must be present for version {version}"));
}
});
ctx.in_field("us_lower_optical_point_size", |ctx| {
if version.compatible(5) && self.us_lower_optical_point_size.is_none() {
ctx.report(format!("field must be present for version {version}"));
}
});
ctx.in_field("us_upper_optical_point_size", |ctx| {
if version.compatible(5) && self.us_upper_optical_point_size.is_none() {
ctx.report(format!("field must be present for version {version}"));
}
});
})
}
}
impl TopLevelTable for Os2 {
const TAG: Tag = Tag::new(b"OS/2");
}
impl<'a> FromObjRef<read_fonts::tables::os2::Os2<'a>> for Os2 {
fn from_obj_ref(obj: &read_fonts::tables::os2::Os2<'a>, _: FontData) -> Self {
Os2 {
x_avg_char_width: obj.x_avg_char_width(),
us_weight_class: obj.us_weight_class(),
us_width_class: obj.us_width_class(),
fs_type: obj.fs_type(),
y_subscript_x_size: obj.y_subscript_x_size(),
y_subscript_y_size: obj.y_subscript_y_size(),
y_subscript_x_offset: obj.y_subscript_x_offset(),
y_subscript_y_offset: obj.y_subscript_y_offset(),
y_superscript_x_size: obj.y_superscript_x_size(),
y_superscript_y_size: obj.y_superscript_y_size(),
y_superscript_x_offset: obj.y_superscript_x_offset(),
y_superscript_y_offset: obj.y_superscript_y_offset(),
y_strikeout_size: obj.y_strikeout_size(),
y_strikeout_position: obj.y_strikeout_position(),
s_family_class: obj.s_family_class(),
panose_10: convert_panose(obj.panose_10()),
ul_unicode_range_1: obj.ul_unicode_range_1(),
ul_unicode_range_2: obj.ul_unicode_range_2(),
ul_unicode_range_3: obj.ul_unicode_range_3(),
ul_unicode_range_4: obj.ul_unicode_range_4(),
ach_vend_id: obj.ach_vend_id(),
fs_selection: obj.fs_selection(),
us_first_char_index: obj.us_first_char_index(),
us_last_char_index: obj.us_last_char_index(),
s_typo_ascender: obj.s_typo_ascender(),
s_typo_descender: obj.s_typo_descender(),
s_typo_line_gap: obj.s_typo_line_gap(),
us_win_ascent: obj.us_win_ascent(),
us_win_descent: obj.us_win_descent(),
ul_code_page_range_1: obj.ul_code_page_range_1(),
ul_code_page_range_2: obj.ul_code_page_range_2(),
sx_height: obj.sx_height(),
s_cap_height: obj.s_cap_height(),
us_default_char: obj.us_default_char(),
us_break_char: obj.us_break_char(),
us_max_context: obj.us_max_context(),
us_lower_optical_point_size: obj.us_lower_optical_point_size(),
us_upper_optical_point_size: obj.us_upper_optical_point_size(),
}
}
}
impl<'a> FromTableRef<read_fonts::tables::os2::Os2<'a>> for Os2 {}
impl<'a> FontRead<'a> for Os2 {
fn read(data: FontData<'a>) -> Result<Self, ReadError> {
<read_fonts::tables::os2::Os2 as FontRead>::read(data).map(|x| x.to_owned_table())
}
}