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

static SECTION_DIVIDER: &str = "============================[";
static INDEX_DIVIDER: char = '|';

pub fn parse(s: &str, keep_sub_file_sizes: bool) -> Result<Vec<u8>, (String, usize)> {
    let mut section_to_bytes: HashMap<Section, (Vec<u8>, usize)> = Default::default();
    let mut current_buffer: Option<&mut Vec<u8>> = None;
    let mut current_section: Option<Section> = None;
    let mut bc_and_line_set: Option<(u8, usize)> = None;
    for (n, line) in s.lines().enumerate() {
        let line = line.trim();

        match (&mut current_buffer, line.starts_with(SECTION_DIVIDER)) {
            (None, false) => continue,
            (Some(buffer), false) => {
                if line.starts_with("//") || line.is_empty() {
                    continue;
                }
                let (prefix, data) = match line.rfind(INDEX_DIVIDER) {
                    None => ("", line),
                    Some(i) => (&line[0..i], &line[i + INDEX_DIVIDER.len_utf8()..]),
                };
                if bc_and_line_set.is_none() && current_section == Some(Section::CharInfos) {
                    bc_and_line_set = Some((parse_char(prefix), n))
                }

                let start = buffer.len();
                for byte in data.split_whitespace() {
                    let b = match byte.parse() {
                        Ok(b) => b,
                        Err(err) => {
                            return Err((
                                format!["failed to parse the word '{byte}' as a byte value: {err}"],
                                n,
                            ))
                        }
                    };
                    buffer.push(b);
                }
                if buffer.len() - start != 4 {
                    return Err((
                        format!(
                            "each line must contain exactly 4 bytes; found {} bytes",
                            buffer.len() - start
                        ),
                        n,
                    ));
                }
                continue;
            }
            (_, true) => {
                current_buffer = None;
                let i = match line.find("/raw") {
                    None => continue,
                    Some(i) => i,
                };
                let section: Section = match line[SECTION_DIVIDER.len()..i].try_into() {
                    Ok(section) => section,
                    Err(_) => continue,
                };
                use std::collections::hash_map::Entry::*;
                current_buffer = match section_to_bytes.entry(section) {
                    Occupied(_) => {
                        return Err((format!["section {} appears more than once", section], n))
                    }
                    Vacant(v) => {
                        let r = v.insert((vec![], n));
                        Some(&mut r.0)
                    }
                };
                current_section = Some(section);
            }
        }
    }

    // Clippy wants us to use the entry API here.
    // But we can't because calculating the value to insert requires accessing the map
    // and the entry API uses a mutable reference to the map.
    #[allow(clippy::map_entry)]
    if !keep_sub_file_sizes || !section_to_bytes.contains_key(&Section::SubFileSizes) {
        let num_words = |section| -> Result<i16, (String, usize)> {
            let (l, n) = section_to_bytes
                .get(&section)
                .map(|(s, n)| (s.len() / 4, *n))
                .unwrap_or((0, 0));
            l.try_into().map_err(|_| {
                (
                    format![
                        "section {section} contains {l} lines but the max is {}",
                        i16::MAX
                    ],
                    n,
                )
            })
        };
        let num_chars = num_words(Section::CharInfos)?;
        let (bc, ec): (u8, u8) = match (bc_and_line_set, num_chars.checked_sub(1)) {
            (Some((bc, line_set)), Some(ec_pre_shift)) => {
                let ec = ec_pre_shift.saturating_add(bc as i16);
                let ec: u8 = match ec.try_into() {
                    Ok(ec )=>ec,
                    Err(_) => {
                        return Err( (
                            format!("char_infos array starts with char 0x{bc:02x} and has length {num_chars}, so ec is {ec} which is too big"),
                            line_set,
                        ))
                    }
                };
                (bc, ec)
            }
            _ => (1, 0),
        };
        let mut s = SubFileSizes {
            lf: 0,
            lh: num_words(Section::Header)?,
            bc: bc as i16,
            ec: ec as i16,
            nw: num_words(Section::Widths)?,
            nh: num_words(Section::Heights)?,
            nd: num_words(Section::Depths)?,
            ni: num_words(Section::ItalicCorrections)?,
            nl: num_words(Section::LigKern)?,
            nk: num_words(Section::Kerns)?,
            ne: num_words(Section::ExtensibleRecipes)?,
            np: num_words(Section::Params)?,
        };
        s.lf = s.valid_lf();
        let b: [u8; 24] = s.clone().into();
        section_to_bytes.insert(Section::SubFileSizes, (b.into(), 0));
    };

    let mut buffer = vec![];
    for section in Section::ALL_SECTIONS {
        buffer.extend_from_slice(
            section_to_bytes
                .get(&section)
                .map(|v| v.0.as_slice())
                .unwrap_or_default(),
        );
    }
    Ok(buffer)
}

pub struct Debug<'a> {
    pub sub_file_sizes: SubFileSizes,
    pub path: Option<&'a str>,
    pub raw_file: Option<&'a RawFile<'a>>,
    pub tfm_file: Option<&'a File>,
    pub sections: Vec<Section>,
}

impl<'a> std::fmt::Display for Debug<'a> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        writeln!(f, "tfmtools debug")?;
        if let Some(path) = self.path {
            writeln!(f, ".tfm file: {}", path)?;
        }
        writeln!(f, "outputting sections: {:#?}", self.sections)?;
        for section in self.sections.iter().copied() {
            if let Some(raw_file) = self.raw_file {
                writeln!(f, "{}{}/raw]", SECTION_DIVIDER, section)?;
                let raw_data = match section {
                    Section::SubFileSizes => raw_file.raw_sub_file_sizes,
                    Section::Header => raw_file.header,
                    Section::CharInfos => raw_file.char_infos,
                    Section::Widths => raw_file.widths,
                    Section::Heights => raw_file.heights,
                    Section::Depths => raw_file.depths,
                    Section::ItalicCorrections => raw_file.italic_corrections,
                    Section::LigKern => raw_file.lig_kern_instructions,
                    Section::Kerns => raw_file.kerns,
                    Section::ExtensibleRecipes => raw_file.extensible_recipes,
                    Section::Params => raw_file.params,
                };
                if raw_data.is_empty() {
                    writeln!(f, "// empty")?;
                }
                for (j, word) in WordIter(raw_data).enumerate() {
                    writeln!(
                        f,
                        "{} {} {:4}{:4}{:4}{:4}",
                        index(self.sub_file_sizes.bc, section, j),
                        INDEX_DIVIDER,
                        word[0],
                        word[1],
                        word[2],
                        word[3]
                    )?;
                }
            }
            if let Some(tfm_file) = self.tfm_file {
                writeln!(f, "{}{}/parsed]", SECTION_DIVIDER, section)?;
                match section {
                    Section::SubFileSizes => writeln!(f, "{:#?}", self.sub_file_sizes),
                    Section::Header => writeln!(f, "{:#?}", tfm_file.header),
                    Section::CharInfos => {
                        for u in 0_u8..=255 {
                            if (u as i16) < self.sub_file_sizes.bc {
                                continue;
                            }
                            if (u as i16) > self.sub_file_sizes.ec {
                                continue;
                            }
                            writeln!(f, "{}:", format_char(Char(u)))?;
                            if let Some(dimens) = tfm_file.char_dimens.get(&Char(u)) {
                                writeln![f, "      dimens={:?}", dimens]?;
                            }
                            if let Some(tag) = tfm_file.char_tags.get(&Char(u)) {
                                writeln![f, "      tag={:?}", tag]?;
                            }
                        }
                        Ok(())
                    }
                    Section::Widths => writeln!(f, "{:#?}", tfm_file.widths),
                    Section::Heights => writeln!(f, "{:#?}", tfm_file.heights),
                    Section::Depths => writeln!(f, "{:#?}", tfm_file.depths),
                    Section::ItalicCorrections => writeln!(f, "{:#?}", tfm_file.italic_corrections),
                    Section::LigKern => writeln!(f, "{:#?}", tfm_file.lig_kern_program),
                    Section::Kerns => writeln!(f, "{:#?}", tfm_file.kerns),
                    Section::ExtensibleRecipes => writeln!(f, "{:#?}", tfm_file.extensible_chars),
                    Section::Params => writeln!(f, "{:#?}", tfm_file.params),
                }?;
            }
        }
        Ok(())
    }
}

struct WordIter<'a>(&'a [u8]);

impl<'a> Iterator for WordIter<'a> {
    type Item = [u8; 4];

    fn next(&mut self) -> Option<Self::Item> {
        match self.0.get(..4) {
            None => None,
            Some(head) => {
                self.0 = &self.0[4..];
                Some([head[0], head[1], head[2], head[3]])
            }
        }
    }
}

fn index(bc: i16, section: Section, j: usize) -> String {
    let default = format!("{:5}", j);
    if section != Section::CharInfos {
        return default;
    }
    let j = j + bc as usize;
    let raw: u8 = match j.try_into() {
        Ok(raw) => raw,
        Err(_) => return default,
    };
    format_char(Char(raw))
}

fn format_char(c: Char) -> String {
    let ch = c.0 as char;
    if ch.is_ascii_alphanumeric() || ch.is_ascii_graphic() {
        format!("   {}", ch)
    } else {
        format!("0x{:02x}", c.0)
    }
}

/// Inverse of [format_char].
fn parse_char(prefix: &str) -> u8 {
    let first_word = prefix.split_whitespace().next().unwrap_or_default();
    if first_word.len() == 1 {
        if let Some(ch) = first_word.chars().next() {
            if ch.is_ascii_alphanumeric() || ch.is_ascii_graphic() {
                ch.try_into().expect("ASCII char can be cast to u8")
            } else {
                0
            }
        } else {
            0
        }
    } else if let Some(data) = first_word.strip_prefix("0x") {
        u8::from_str_radix(data, 16).unwrap_or(0)
    } else {
        0
    }
}