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
#[allow(unused_imports)]
use crate::codegen_prelude::*;
#[derive(Clone, Debug, Default)]
pub struct Name {
pub name_record: BTreeSet<NameRecord>,
pub lang_tag_record: Option<Vec<LangTagRecord>>,
}
impl Name {
#[allow(clippy::useless_conversion)]
pub fn new(name_record: BTreeSet<NameRecord>) -> Self {
Self {
name_record: name_record.into_iter().map(Into::into).collect(),
..Default::default()
}
}
}
impl FontWrite for Name {
#[allow(clippy::unnecessary_cast)]
fn write_into(&self, writer: &mut TableWriter) {
let version = self.compute_version() as u16;
version.write_into(writer);
(array_len(&self.name_record).unwrap() as u16).write_into(writer);
(self.compute_storage_offset() as u16).write_into(writer);
writer.adjust_offsets(self.compute_storage_offset() as u32, |writer| {
self.name_record.write_into(writer);
});
version
.compatible(1)
.then(|| (array_len(&self.lang_tag_record).unwrap() as u16).write_into(writer));
writer.adjust_offsets(self.compute_storage_offset() as u32, |writer| {
version.compatible(1).then(|| {
self.lang_tag_record
.as_ref()
.expect("missing versioned field should have failed validation")
.write_into(writer)
});
});
}
}
impl Validate for Name {
fn validate_impl(&self, ctx: &mut ValidationCtx) {
ctx.in_table("Name", |ctx| {
let version: u16 = self.compute_version();
ctx.in_field("name_record", |ctx| {
if self.name_record.len() > (u16::MAX as usize) {
ctx.report("array exceeds max length");
}
self.name_record.validate_impl(ctx);
});
ctx.in_field("lang_tag_record", |ctx| {
if version.compatible(1) && self.lang_tag_record.is_none() {
ctx.report(format!("field must be present for version {version}"));
}
if self.lang_tag_record.is_some()
&& self.lang_tag_record.as_ref().unwrap().len() > (u16::MAX as usize)
{
ctx.report("array exceeds max length");
}
self.lang_tag_record.validate_impl(ctx);
});
})
}
}
impl TopLevelTable for Name {
const TAG: Tag = Tag::new(b"name");
}
impl<'a> FromObjRef<read_fonts::tables::name::Name<'a>> for Name {
fn from_obj_ref(obj: &read_fonts::tables::name::Name<'a>, _: FontData) -> Self {
let offset_data = obj.string_data();
Name {
name_record: obj.name_record().to_owned_obj(offset_data),
lang_tag_record: obj.lang_tag_record().to_owned_obj(offset_data),
}
}
}
impl<'a> FromTableRef<read_fonts::tables::name::Name<'a>> for Name {}
impl<'a> FontRead<'a> for Name {
fn read(data: FontData<'a>) -> Result<Self, ReadError> {
<read_fonts::tables::name::Name as FontRead>::read(data).map(|x| x.to_owned_table())
}
}
#[derive(Clone, Debug, Default)]
pub struct LangTagRecord {
pub lang_tag: OffsetMarker<String>,
}
impl LangTagRecord {
#[allow(clippy::useless_conversion)]
pub fn new(lang_tag: OffsetMarker<String>) -> Self {
Self {
lang_tag: lang_tag.into(),
}
}
}
impl FontWrite for LangTagRecord {
#[allow(clippy::unnecessary_cast)]
fn write_into(&self, writer: &mut TableWriter) {
(self.compile_name_string()).write_into(writer);
}
}
impl Validate for LangTagRecord {
fn validate_impl(&self, _ctx: &mut ValidationCtx) {}
}
impl FromObjRef<read_fonts::tables::name::LangTagRecord> for LangTagRecord {
fn from_obj_ref(obj: &read_fonts::tables::name::LangTagRecord, offset_data: FontData) -> Self {
LangTagRecord {
lang_tag: obj.lang_tag(offset_data).to_owned_table(),
}
}
}
#[derive(Clone, Debug, Default)]
pub struct NameRecord {
pub platform_id: u16,
pub encoding_id: u16,
pub language_id: u16,
pub name_id: NameId,
pub string: OffsetMarker<String>,
}
impl NameRecord {
#[allow(clippy::useless_conversion)]
pub fn new(
platform_id: u16,
encoding_id: u16,
language_id: u16,
name_id: NameId,
string: OffsetMarker<String>,
) -> Self {
Self {
platform_id,
encoding_id,
language_id,
name_id,
string: string.into(),
}
}
}
impl FontWrite for NameRecord {
#[allow(clippy::unnecessary_cast)]
fn write_into(&self, writer: &mut TableWriter) {
self.platform_id.write_into(writer);
self.encoding_id.write_into(writer);
self.language_id.write_into(writer);
self.name_id.write_into(writer);
(self.compile_name_string()).write_into(writer);
}
}
impl Validate for NameRecord {
fn validate_impl(&self, ctx: &mut ValidationCtx) {
ctx.in_table("NameRecord", |ctx| {
ctx.in_field("string", |ctx| {
self.validate_string_data(ctx);
});
})
}
}
impl FromObjRef<read_fonts::tables::name::NameRecord> for NameRecord {
fn from_obj_ref(obj: &read_fonts::tables::name::NameRecord, offset_data: FontData) -> Self {
NameRecord {
platform_id: obj.platform_id(),
encoding_id: obj.encoding_id(),
language_id: obj.language_id(),
name_id: obj.name_id(),
string: obj.string(offset_data).to_owned_table(),
}
}
}