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
use core::{Glue, Scaled};

use super::keyword::parse_keyword;
use crate::prelude as txl;
use crate::token::Value;
use crate::traits::*;
use crate::*;

impl Parsable for Glue {
    // TeX.2021.461
    fn parse_impl<S: TexlangState>(input: &mut vm::ExpandedStream<S>) -> txl::Result<Self> {
        let negative = match super::integer::parse_optional_signs(input)? {
            None => 1,
            Some(_) => -1,
        };
        let first_token = input.next_or_err(GlueEndOfInputError {})?;
        let width = match first_token.value() {
            Value::CommandRef(command_ref) => {
                use super::integer::InternalNumber;
                match super::integer::parse_internal_number(input, first_token, command_ref)? {
                    InternalNumber::Integer(i) => {
                        super::dimen::scan_and_apply_units(
                            input,
                            first_token,
                            i.abs(),
                            Scaled::ZERO,
                            None,
                        )? * negative
                            * i.signum()
                    }
                    InternalNumber::Dimen(d) => d * negative,
                    InternalNumber::Glue(g) => {
                        return Ok(g * negative);
                    }
                }
            }
            _ => {
                input.back(first_token);
                core::Scaled::parse(input)? * negative
            }
        };

        let mut g = Glue {
            width,
            ..Default::default()
        };
        if parse_keyword(input, "plus")? {
            g.stretch = super::dimen::scan_dimen(input, Some(&mut g.stretch_order))?
        }
        if parse_keyword(input, "minus")? {
            g.shrink = super::dimen::scan_dimen(input, Some(&mut g.shrink_order))?
        };
        Ok(g)
    }
}

#[derive(Debug)]
struct GlueEndOfInputError;

impl error::EndOfInputError for GlueEndOfInputError {
    fn doing(&self) -> String {
        "parsing a glue".into()
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::parse::testing::*;
    use core::GlueOrder;

    #[derive(Default)]
    struct State;

    impl TexlangState for State {}

    parse_success_tests![
        (
            width_1,
            "0pt",
            Glue {
                ..Default::default()
            }
        ),
        (
            width_2,
            "1pt",
            Glue {
                width: Scaled::ONE,
                ..Default::default()
            }
        ),
        (
            width_3,
            "-1pt",
            Glue {
                width: -Scaled::ONE,
                ..Default::default()
            }
        ),
        (
            stretch_1,
            "1pt plus 1pt",
            Glue {
                width: Scaled::ONE,
                stretch: Scaled::ONE,
                ..Default::default()
            }
        ),
        (
            stretch_fil,
            "1pt plus 1fil",
            Glue {
                width: Scaled::ONE,
                stretch: Scaled::ONE,
                stretch_order: GlueOrder::Fil,
                ..Default::default()
            }
        ),
        (
            stretch_fill,
            "1pt plus 1fill",
            Glue {
                width: Scaled::ONE,
                stretch: Scaled::ONE,
                stretch_order: GlueOrder::Fill,
                ..Default::default()
            }
        ),
        (
            stretch_filll,
            "1pt plus 1filll",
            Glue {
                width: Scaled::ONE,
                stretch: Scaled::ONE,
                stretch_order: GlueOrder::Filll,
                ..Default::default()
            }
        ),
    ];

    parse_failure_tests!(
        Glue,
        State,
        (
            stretch_overflow_1,
            "1pt plus 30000000fil",
            Glue {
                width: Scaled::ONE,
                stretch: Scaled::MAX_DIMEN,
                stretch_order: GlueOrder::Fil,
                ..Default::default()
            }
        ),
        (
            stretch_overflow_2,
            "1pt plus -30000000fil",
            Glue {
                width: Scaled::ONE,
                stretch: -Scaled::MAX_DIMEN,
                stretch_order: GlueOrder::Fil,
                ..Default::default()
            }
        ),
        (
            stretch_fillll,
            "1pt plus 2fillll",
            Glue {
                width: Scaled::ONE,
                stretch: Scaled::ONE * 2,
                stretch_order: GlueOrder::Filll,
                ..Default::default()
            }
        ),
    );
}