stylo 0.19.0

The Stylo CSS engine
Documentation
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */

//! Specified angles.

use crate::derives::*;
use crate::parser::{Parse, ParserContext};
use crate::typed_om::{NumericValue, ToTyped, TypedValue, UnitValue};
use crate::values::computed::angle::Angle as ComputedAngle;
use crate::values::computed::{Context, ToComputedValue};
use crate::values::specified::calc::{CalcNode, CalcNumeric, Leaf};
use crate::values::tagged_numeric::{Extracted, NumericUnion, Unpacked};
use crate::values::CSSFloat;
use crate::Zero;
use cssparser::{match_ignore_ascii_case, Parser, Token};
use std::f32::consts::PI;
use std::fmt::{self, Write};
use std::ops::Neg;
use style_traits::{CssString, CssWriter, ParseError, SpecifiedValueInfo, ToCss};
use thin_vec::ThinVec;

/// Number of degrees per radian.
const DEG_PER_RAD: f32 = 180.0 / PI;
/// Number of degrees per turn.
const DEG_PER_TURN: f32 = 360.0;
/// Number of degrees per gradian.
const DEG_PER_GRAD: f32 = 180.0 / 200.0;

/// The unit of a `<angle>` value.
#[derive(Clone, Copy, Debug, MallocSizeOf, PartialEq, PartialOrd, ToShmem)]
#[repr(u8)]
pub enum AngleUnit {
    /// `deg`
    Deg,
    /// `grad`
    Grad,
    /// `rad`
    Rad,
    /// `turn`
    Turn,
}

impl AngleUnit {
    /// Returns the angle unit for the given string.
    #[inline]
    pub fn from_str(unit: &str) -> Result<Self, ()> {
        Ok(match_ignore_ascii_case! { unit,
            "deg" => AngleUnit::Deg,
            "grad" => AngleUnit::Grad,
            "turn" => AngleUnit::Turn,
            "rad" => AngleUnit::Rad,
             _ => return Err(())
        })
    }

    /// Returns this unit as a string.
    #[inline]
    pub fn as_str(self) -> &'static str {
        match self {
            Self::Deg => "deg",
            Self::Grad => "grad",
            Self::Rad => "rad",
            Self::Turn => "turn",
        }
    }
}

/// A non-calc `<angle>` value.
#[derive(Clone, Copy, Debug, MallocSizeOf, PartialEq, PartialOrd, ToShmem)]
#[repr(C)]
pub struct NoCalcAngle {
    unit: AngleUnit,
    value: CSSFloat,
}

impl Zero for NoCalcAngle {
    fn zero() -> Self {
        Self::from_degrees(0.)
    }

    fn is_zero(&self) -> bool {
        self.value == 0.0
    }
}

impl ToCss for NoCalcAngle {
    fn to_css<W>(&self, dest: &mut CssWriter<W>) -> fmt::Result
    where
        W: Write,
    {
        crate::values::serialize_specified_dimension(
            self.value,
            self.unit.as_str(),
            /* was_calc = */ false,
            dest,
        )
    }
}

impl ToTyped for NoCalcAngle {
    fn to_typed(&self, dest: &mut ThinVec<TypedValue>) -> Result<(), ()> {
        let value = self.unitless_value();
        let unit = CssString::from(self.unit());
        dest.push(TypedValue::Numeric(NumericValue::Unit(UnitValue {
            value,
            unit,
        })));
        Ok(())
    }
}

impl SpecifiedValueInfo for NoCalcAngle {}

impl NoCalcAngle {
    /// Creates an angle with the given unit and value.
    #[inline]
    pub fn new(unit: AngleUnit, value: CSSFloat) -> Self {
        Self { unit, value }
    }

    /// Creates an angle with the given value in degrees.
    #[inline]
    pub fn from_degrees(value: CSSFloat) -> Self {
        Self::new(AngleUnit::Deg, value)
    }

    /// Creates an angle with the given value in radians.
    #[inline]
    pub fn from_radians(value: CSSFloat) -> Self {
        Self::new(AngleUnit::Rad, value)
    }

    /// Return `0deg`.
    pub fn zero() -> Self {
        Self::from_degrees(0.0)
    }

    /// Returns the value of the angle in degrees.
    #[inline]
    pub fn degrees(&self) -> CSSFloat {
        match self.unit {
            AngleUnit::Deg => self.value,
            AngleUnit::Rad => self.value * DEG_PER_RAD,
            AngleUnit::Turn => self.value * DEG_PER_TURN,
            AngleUnit::Grad => self.value * DEG_PER_GRAD,
        }
    }

    /// Returns the value of the angle in radians.
    #[inline]
    pub fn radians(&self) -> CSSFloat {
        const RAD_PER_DEG: f32 = PI / 180.0;
        self.degrees() * RAD_PER_DEG
    }

    /// Returns the unit of the angle.
    #[inline]
    pub fn angle_unit(&self) -> AngleUnit {
        self.unit
    }

    /// Returns the unitless, raw value.
    #[inline]
    pub fn unitless_value(&self) -> CSSFloat {
        self.value
    }

    /// Returns the unit of the angle as a string.
    #[inline]
    pub fn unit(&self) -> &'static str {
        self.unit.as_str()
    }

    /// Return the canonical unit for this value.
    pub fn canonical_unit(&self) -> Option<&'static str> {
        Some("deg")
    }

    /// Convert this value to the specified unit, if possible.
    pub fn to(&self, unit: &str) -> Result<Self, ()> {
        let degrees = self.degrees();
        let unit = AngleUnit::from_str(unit)?;
        let divisor = match unit {
            AngleUnit::Deg => 1.0,
            AngleUnit::Grad => DEG_PER_GRAD,
            AngleUnit::Turn => DEG_PER_TURN,
            AngleUnit::Rad => DEG_PER_RAD,
        };
        Ok(Self::new(unit, degrees / divisor))
    }

    /// Parse an `<angle>` value given a value and a unit.
    pub fn parse_dimension(value: CSSFloat, unit: &str) -> Result<Self, ()> {
        let unit = AngleUnit::from_str(unit)?;
        Ok(Self::new(unit, value))
    }
}

impl Neg for NoCalcAngle {
    type Output = NoCalcAngle;

    #[inline]
    fn neg(self) -> NoCalcAngle {
        Self::new(self.unit, -self.value)
    }
}

/// A specified `<angle>` value, either a plain value or a `calc()` expression.
///
/// https://drafts.csswg.org/css-values/#angle-value
#[derive(Clone, Debug, MallocSizeOf, PartialEq, ToShmem)]
pub struct Angle(NumericUnion<AngleUnit, f32, CalcNumeric>);

impl ToCss for Angle {
    fn to_css<W>(&self, dest: &mut CssWriter<W>) -> fmt::Result
    where
        W: Write,
    {
        match self.0.unpack() {
            Unpacked::Inline(unit, value) => NoCalcAngle::new(unit, value).to_css(dest),
            Unpacked::Boxed(calc) => calc.to_css(dest),
        }
    }
}

impl ToTyped for Angle {
    fn to_typed(&self, dest: &mut ThinVec<TypedValue>) -> Result<(), ()> {
        match self.0.unpack() {
            Unpacked::Inline(unit, value) => NoCalcAngle::new(unit, value).to_typed(dest),
            Unpacked::Boxed(calc) => calc.to_typed(dest),
        }
    }
}

impl SpecifiedValueInfo for Angle {}

/// Whether to allow parsing an unitless zero as a valid angle.
///
/// This should always be `No`, except for exceptions like:
///
///   https://github.com/w3c/fxtf-drafts/issues/228
///
/// See also: https://github.com/w3c/csswg-drafts/issues/1162.
#[allow(missing_docs)]
pub enum AllowUnitlessZeroAngle {
    Yes,
    No,
}

impl Parse for Angle {
    /// Parses an angle according to CSS-VALUES § 6.1.
    fn parse<'i, 't>(
        context: &ParserContext,
        input: &mut Parser<'i, 't>,
    ) -> Result<Self, ParseError<'i>> {
        Self::parse_internal(context, input, AllowUnitlessZeroAngle::No)
    }
}

impl Zero for Angle {
    fn zero() -> Self {
        Self::new(NoCalcAngle::zero())
    }

    fn is_zero(&self) -> bool {
        match self.0.unpack() {
            Unpacked::Inline(_, v) => v == 0.0,
            Unpacked::Boxed(_) => false,
        }
    }
}

impl ToComputedValue for Angle {
    type ComputedValue = ComputedAngle;

    #[inline]
    fn to_computed_value(&self, context: &Context) -> Self::ComputedValue {
        let degrees = match self.0.unpack() {
            Unpacked::Inline(unit, value) => NoCalcAngle::new(unit, value).degrees(),
            Unpacked::Boxed(ref calc) => calc.resolve(context, |result| match result {
                Ok(Leaf::Angle(a)) => a.degrees(),
                _ => {
                    debug_assert!(false, "Unexpected Angle::Calc without resolved angle");
                    f32::NAN
                },
            }),
        };

        // NaN and +-infinity should degenerate to 0: https://github.com/w3c/csswg-drafts/issues/6105
        ComputedAngle::from_degrees(if degrees.is_finite() { degrees } else { 0.0 })
    }

    #[inline]
    fn from_computed_value(computed: &Self::ComputedValue) -> Self {
        Self::new(NoCalcAngle::from_degrees(computed.degrees()))
    }
}

impl Angle {
    /// Creates an angle from a non-calc `NoCalcAngle`.
    #[inline]
    pub fn new(angle: NoCalcAngle) -> Self {
        Self(NumericUnion::inline(angle.unit, angle.value))
    }

    /// Creates an angle from a calc() expression.
    #[inline]
    pub fn new_calc(calc: Box<CalcNumeric>) -> Self {
        Self(NumericUnion::boxed(calc))
    }

    /// Creates an angle with the given value in degrees.
    #[inline]
    pub fn from_degrees(value: CSSFloat) -> Self {
        Self::new(NoCalcAngle::from_degrees(value))
    }

    /// Return `0deg`.
    pub fn zero() -> Self {
        Self::new(NoCalcAngle::zero())
    }

    /// Returns true if this is a `calc()` expression.
    #[inline]
    pub fn is_calc(&self) -> bool {
        self.0.is_boxed()
    }

    /// Returns the inner non-calc angle, if this isn't a calc expression.
    #[inline]
    pub fn as_no_calc(&self) -> Option<NoCalcAngle> {
        match self.0.unpack() {
            Unpacked::Inline(unit, value) => Some(NoCalcAngle::new(unit, value)),
            Unpacked::Boxed(_) => None,
        }
    }

    /// Returns the angle in degrees if it can be resolved at parse time, or None for calc
    /// expressions that require computed context. Prefer `to_computed_value(context).degrees()`
    /// when an element context is available.
    #[inline]
    pub fn degrees(&self) -> Option<CSSFloat> {
        match self.0.unpack() {
            Unpacked::Inline(unit, value) => Some(NoCalcAngle::new(unit, value).degrees()),
            Unpacked::Boxed(ref calc) => calc
                .as_angle()
                .map(|a| calc.clamping_mode.clamp(a.degrees())),
        }
    }

    /// Parse an `<angle>` allowing unitless zero to represent a zero angle.
    ///
    /// See the comment in `AllowUnitlessZeroAngle` for why.
    #[inline]
    pub fn parse_with_unitless<'i, 't>(
        context: &ParserContext,
        input: &mut Parser<'i, 't>,
    ) -> Result<Self, ParseError<'i>> {
        Self::parse_internal(context, input, AllowUnitlessZeroAngle::Yes)
    }

    pub(super) fn parse_internal<'i, 't>(
        context: &ParserContext,
        input: &mut Parser<'i, 't>,
        allow_unitless_zero: AllowUnitlessZeroAngle,
    ) -> Result<Self, ParseError<'i>> {
        let location = input.current_source_location();
        let t = input.next()?;
        let allow_unitless_zero = matches!(allow_unitless_zero, AllowUnitlessZeroAngle::Yes);
        match *t {
            Token::Dimension {
                value, ref unit, ..
            } => match NoCalcAngle::parse_dimension(value, unit) {
                Ok(angle) => Ok(Self::new(angle)),
                Err(()) => {
                    let t = t.clone();
                    Err(input.new_unexpected_token_error(t))
                },
            },
            Token::Function(ref name) => {
                let function = CalcNode::math_function(context, name, location)?;
                CalcNode::parse_angle(context, input, function)
                    .map(Box::new)
                    .map(Self::new_calc)
            },
            Token::Number { value, .. } if value == 0. && allow_unitless_zero => Ok(Angle::zero()),
            ref t => {
                let t = t.clone();
                Err(input.new_unexpected_token_error(t))
            },
        }
    }
}

impl Neg for Angle {
    type Output = Angle;

    #[inline]
    fn neg(self) -> Angle {
        match self.0.extract() {
            Extracted::Inline(unit, value) => Self::new(NoCalcAngle::new(unit, -value)),
            Extracted::Boxed(mut c) => {
                c.node.negate();
                Self::new_calc(c)
            },
        }
    }
}