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
// THIS FILE IS AUTOGENERATED.
// Any changes to this file will be overwritten.
// For more information about how codegen works, see font-codegen/README.md

#[allow(unused_imports)]
use crate::codegen_prelude::*;

/// The [vmtx (Vertical Metrics)](https://docs.microsoft.com/en-us/typography/opentype/spec/vmtx) table
#[derive(Debug, Clone, Copy)]
#[doc(hidden)]
pub struct VmtxMarker {
    v_metrics_byte_len: usize,
    top_side_bearings_byte_len: usize,
}

impl VmtxMarker {
    fn v_metrics_byte_range(&self) -> Range<usize> {
        let start = 0;
        start..start + self.v_metrics_byte_len
    }
    fn top_side_bearings_byte_range(&self) -> Range<usize> {
        let start = self.v_metrics_byte_range().end;
        start..start + self.top_side_bearings_byte_len
    }
}

impl TopLevelTable for Vmtx<'_> {
    /// `vmtx`
    const TAG: Tag = Tag::new(b"vmtx");
}

impl ReadArgs for Vmtx<'_> {
    type Args = (u16, u16);
}

impl<'a> FontReadWithArgs<'a> for Vmtx<'a> {
    fn read_with_args(data: FontData<'a>, args: &(u16, u16)) -> Result<Self, ReadError> {
        let (number_of_long_ver_metrics, num_glyphs) = *args;
        let mut cursor = data.cursor();
        let v_metrics_byte_len = (number_of_long_ver_metrics as usize)
            .checked_mul(LongMetric::RAW_BYTE_LEN)
            .ok_or(ReadError::OutOfBounds)?;
        cursor.advance_by(v_metrics_byte_len);
        let top_side_bearings_byte_len =
            (transforms::subtract(num_glyphs, number_of_long_ver_metrics))
                .checked_mul(i16::RAW_BYTE_LEN)
                .ok_or(ReadError::OutOfBounds)?;
        cursor.advance_by(top_side_bearings_byte_len);
        cursor.finish(VmtxMarker {
            v_metrics_byte_len,
            top_side_bearings_byte_len,
        })
    }
}

impl<'a> Vmtx<'a> {
    /// A constructor that requires additional arguments.
    ///
    /// This type requires some external state in order to be
    /// parsed.
    pub fn read(
        data: FontData<'a>,
        number_of_long_ver_metrics: u16,
        num_glyphs: u16,
    ) -> Result<Self, ReadError> {
        let args = (number_of_long_ver_metrics, num_glyphs);
        Self::read_with_args(data, &args)
    }
}

/// The [vmtx (Vertical Metrics)](https://docs.microsoft.com/en-us/typography/opentype/spec/vmtx) table
pub type Vmtx<'a> = TableRef<'a, VmtxMarker>;

impl<'a> Vmtx<'a> {
    /// Paired advance height and top side bearing values for each
    /// glyph. Records are indexed by glyph ID.
    pub fn v_metrics(&self) -> &'a [LongMetric] {
        let range = self.shape.v_metrics_byte_range();
        self.data.read_array(range).unwrap()
    }

    /// Top side bearings for glyph IDs greater than or equal to numberOfLongMetrics.
    pub fn top_side_bearings(&self) -> &'a [BigEndian<i16>] {
        let range = self.shape.top_side_bearings_byte_range();
        self.data.read_array(range).unwrap()
    }
}

#[cfg(feature = "experimental_traverse")]
impl<'a> SomeTable<'a> for Vmtx<'a> {
    fn type_name(&self) -> &str {
        "Vmtx"
    }
    fn get_field(&self, idx: usize) -> Option<Field<'a>> {
        match idx {
            0usize => Some(Field::new(
                "v_metrics",
                traversal::FieldType::array_of_records(
                    stringify!(LongMetric),
                    self.v_metrics(),
                    self.offset_data(),
                ),
            )),
            1usize => Some(Field::new("top_side_bearings", self.top_side_bearings())),
            _ => None,
        }
    }
}

#[cfg(feature = "experimental_traverse")]
impl<'a> std::fmt::Debug for Vmtx<'a> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        (self as &dyn SomeTable<'a>).fmt(f)
    }
}