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
use super::*;

pub fn serialize(file: &File) -> Vec<u8> {
    // We leave space at the start of the buffer for the sub file sizes section.
    // This will be populated at the end after we determine all the section lengths.
    let mut b = vec![0_u8; 24];
    let mut sub_file_sizes = SubFileSizes {
        lf: 0,
        lh: serialize_header(&file.header, &mut b),
        bc: match file.char_info_bounds() {
            None => 1,
            Some((Char(bc), _)) => bc as i16,
        },
        ec: match file.char_info_bounds() {
            None => 0,
            Some((bc, ec)) => {
                serialize_char_infos(file, bc, ec, &mut b);
                ec.0 as i16
            }
        },
        nw: serialize_section(&file.widths, &mut b, None),
        nh: serialize_section(&file.heights, &mut b, None),
        nd: serialize_section(&file.depths, &mut b, None),
        ni: serialize_section(&file.italic_corrections, &mut b, None),
        nl: serialize_section(
            &file.lig_kern_program.instructions,
            &mut b,
            file.lig_kern_program.right_boundary_char,
        ),
        nk: serialize_section(&file.kerns, &mut b, None),
        ne: serialize_section(&file.extensible_chars, &mut b, None),
        np: serialize_section(&file.params, &mut b, None),
    };
    sub_file_sizes.lf = sub_file_sizes.valid_lf();
    let sfs_b: [u8; 24] = sub_file_sizes.into();
    for (i, byte) in sfs_b.into_iter().enumerate() {
        b[i] = byte;
    }
    b
}

#[derive(Clone)]
enum SerializableCharTag {
    None,
    Valid(CharTag),
    Unset(u8),
}

fn serialize_char_infos(file: &File, bc: Char, ec: Char, b: &mut Vec<u8>) {
    let mut v: Vec<(Option<CharDimensions>, SerializableCharTag)> =
        vec![(None, SerializableCharTag::None); (ec.0 as usize) + 1 - (bc.0 as usize)];
    for (c, dimens) in &file.char_dimens {
        v[(c.0 - bc.0) as usize].0 = Some(dimens.clone());
    }
    for (c, tag) in &file.char_tags {
        if let Some(slot) = v.get_mut((c.0 - bc.0) as usize) {
            slot.1 = SerializableCharTag::Valid(tag.clone());
        }
    }
    for (c, tag) in &file.unset_char_tags {
        if let Some(slot) = v.get_mut((c.0 - bc.0) as usize) {
            slot.1 = SerializableCharTag::Unset(*tag);
        }
    }
    serialize_section(&v, b, None);
}

fn serialize_section<T: Serializable>(t: &[T], b: &mut Vec<u8>, c: Option<Char>) -> i16 {
    let start = b.len();
    for element in t {
        element.serialize(b, c);
    }
    ((b.len() - start) / 4).try_into().unwrap()
}

trait Serializable: Sized {
    fn serialize(&self, b: &mut Vec<u8>, _: Option<Char>);
}

impl Serializable for u32 {
    fn serialize(&self, b: &mut Vec<u8>, _: Option<Char>) {
        b.extend(self.to_be_bytes())
    }
}

impl Serializable for (Option<CharDimensions>, SerializableCharTag) {
    fn serialize(&self, b: &mut Vec<u8>, _: Option<Char>) {
        let italic = match &self.0 {
            None => {
                b.extend([0; 2]);
                0
            }
            Some(char_dimens) => {
                b.push(char_dimens.width_index.get());
                b.push(
                    char_dimens
                        .height_index
                        .wrapping_mul(16)
                        .wrapping_add(char_dimens.depth_index),
                );
                char_dimens.italic_index
            }
        };
        let (discriminant, payload) = match &self.1 {
            SerializableCharTag::None => (0_u8, 0_u8),
            SerializableCharTag::Valid(char_tag) => match char_tag {
                CharTag::Ligature(p) => (1, *p),
                CharTag::List(p) => (2, p.0),
                CharTag::Extension(p) => (3, *p),
            },
            SerializableCharTag::Unset(u) => (0, *u),
        };
        b.push(italic.wrapping_mul(4).wrapping_add(discriminant));
        b.push(payload);
    }
}

impl Serializable for FixWord {
    fn serialize(&self, b: &mut Vec<u8>, _: Option<Char>) {
        (self.0 as u32).serialize(b, None)
    }
}

impl Serializable for ligkern::lang::Instruction {
    fn serialize(&self, b: &mut Vec<u8>, boundary_char: Option<Char>) {
        // PLtoTF.2014.142
        let first = [self.next_instruction.unwrap_or(128), self.right_char.0];
        match self.operation {
            ligkern::lang::Operation::Kern(_) => {
                panic!("tfm::format::File lig/kern programs cannot contain `Kern` operations. Use `KernAtIndex` operations instead and provide an appropriate kerns array.");
            }
            ligkern::lang::Operation::KernAtIndex(index) => {
                let [hi, lo] = index.to_be_bytes();
                b.extend(first);
                b.push(hi + 128);
                b.push(lo);
            }
            ligkern::lang::Operation::Ligature {
                char_to_insert,
                post_lig_operation,
                post_lig_tag_invalid: _,
            } => {
                use ligkern::lang::PostLigOperation::*;
                b.extend(first);
                b.push(match post_lig_operation {
                    RetainBothMoveNowhere => 3,
                    RetainBothMoveToInserted => 3 + 4,
                    RetainBothMoveToRight => 3 + 8,
                    RetainRightMoveToInserted => 1,
                    RetainRightMoveToRight => 1 + 4,
                    RetainLeftMoveNowhere => 2,
                    RetainLeftMoveToInserted => 2 + 4,
                    RetainNeitherMoveToInserted => 0,
                });
                b.push(char_to_insert.0);
            }
            ligkern::lang::Operation::EntrypointRedirect(index, char) => {
                b.extend(match char {
                    false => [255, 0],
                    true => match boundary_char {
                        None => [254, 0],
                        Some(c) => [255, c.0],
                    },
                });
                b.extend(index.to_be_bytes());
            }
        }
    }
}

impl Serializable for ExtensibleRecipe {
    fn serialize(&self, b: &mut Vec<u8>, _: Option<Char>) {
        b.push(self.top.unwrap_or(Char(0)).0);
        b.push(self.middle.unwrap_or(Char(0)).0);
        b.push(self.bottom.unwrap_or(Char(0)).0);
        b.push(self.rep.0);
    }
}

fn serialize_string(s: &Option<String>, size: u8, b: &mut Vec<u8>) {
    // TODO: issue a warning as in PLtoTF.2014.87 if the string doesn't fit
    let s = match s {
        None => "",
        Some(s) => s,
    };
    let len_padding_or = match s.len().try_into() {
        Ok(len) => size.checked_sub(len).map(|padding| (len, padding)),
        Err(_) => None,
    };
    match len_padding_or {
        None => {
            b.push(size);
            b.extend(s[0..size as usize].as_bytes())
        }
        Some((len, padding)) => {
            b.push(len);
            b.extend(s.as_bytes());
            b.extend(vec![0; padding as usize]);
        }
    }
}

fn serialize_header(header: &Header, b: &mut Vec<u8>) -> i16 {
    header.checksum.unwrap_or_default().serialize(b, None);
    header.design_size.serialize(b, None);
    serialize_string(&header.character_coding_scheme, 39, b);
    serialize_string(&header.font_family, 19, b);
    if header.seven_bit_safe == Some(true) {
        // Any value >=128 is interpreted as true, but PLtoTF.2014.133 uses 128 exactly...
        b.push(128);
    } else {
        // ...and 0 for false.
        b.push(0);
    }
    b.push(0);
    b.push(0);
    b.push(header.face.unwrap_or(0_u8.into()).into());
    serialize_section(&header.additional_data, b, None);
    (18 + header.additional_data.len())
        .try_into()
        .expect("header.len()=18+header.additional_data.len()<= i16::MAX")
}