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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
//! A tagged-pointer abstraction that allows size styles in Taffy to be represented
//! in just 64 bits. Wrapped by types in the `super::dimension` and `super::grid` modules.
use super::LengthPercentage;
use crate::style_helpers::{
FromFr, FromLength, FromPercent, TaffyAuto, TaffyFitContent, TaffyMaxContent, TaffyMinContent, TaffyZero,
};
/// Note: these two functions are copied directly from the std (core) library. But by duplicating them
/// here we can reduce MSRV from 1.84 all the way down to 1.65 while retaining const constructors and
/// strict pointer provenance
mod compat {
#![allow(unsafe_code)]
#![allow(unknown_lints)]
#![allow(unnecessary_transmutes)]
/// Raw transmutation from `f32` to `u32`.
pub const fn f32_to_bits(val: f32) -> u32 {
// SAFETY: `u32` is a plain old datatype so we can always transmute to it.
unsafe { core::mem::transmute(val) }
}
/// Raw transmutation from `u32` to `f32`.
pub const fn f32_from_bits(v: u32) -> f32 {
// SAFETY: `u32` is a plain old datatype so we can always transmute from it.
unsafe { core::mem::transmute(v) }
}
/// Tag a pointer preserving provenance (requires Rust 1.84)
#[inline(always)]
#[cfg(all(target_pointer_width = "64", feature = "strict_provenance"))]
pub fn tag_ptr(ptr: *const (), tag: usize) -> *const () {
ptr.map_addr(|a| a | tag)
}
/// Tag a pointer exposing provenance (works back to Rust 1.0)
#[inline(always)]
#[cfg(all(target_pointer_width = "64", not(feature = "strict_provenance")))]
pub fn tag_ptr(ptr: *const (), tag: usize) -> *const () {
(ptr as usize | tag) as *const ()
}
}
#[cfg(not(any(target_pointer_width = "32", target_pointer_width = "64")))]
std::compile_error!("Taffy only supports targets with a pointer width of 32 or 64 bits");
/// CompactLengthInner implementation for 64 bit platforms
#[cfg(target_pointer_width = "64")]
mod inner {
use super::compat::{f32_from_bits, f32_to_bits, tag_ptr};
/// The low byte (8 bits)
const TAG_MASK: usize = 0b11111111;
/// The low 3 bits
const CALC_TAG_MASK: usize = 0b111;
// The high 63 bits
// const CALC_PTR_MASK: usize = usize::MAX ^ 0b111;
/// On 64 bit platforms the tag, value and pointer are packed into a single 64 bit pointer
///
/// The tagged pointer always has a tag and may contain an f32 value or a pointer
/// (or neither) depending on the variant indicated by the tag.
#[derive(Copy, Clone, Debug, PartialEq)]
pub(super) struct CompactLengthInner {
/// The tagged pointer
tagged_ptr: *const (),
}
impl CompactLengthInner {
/// Construct a `CompactLengthInner` from a tag and pointer
#[inline(always)]
pub(super) fn from_ptr(ptr: *const (), tag: usize) -> Self {
let tagged_ptr = tag_ptr(ptr, tag);
Self { tagged_ptr }
}
/// Construct a `CompactLengthInner` from a tag and numeric value
#[inline(always)]
pub(super) const fn from_val(val: f32, tag: usize) -> Self {
let tagged_ptr = (((f32_to_bits(val) as usize) << 32) | tag) as *const ();
Self { tagged_ptr }
}
/// Construct a `CompactLengthInner` from only a tag
#[inline(always)]
pub(super) const fn from_tag(tag: usize) -> Self {
let tagged_ptr = tag as *const ();
Self { tagged_ptr }
}
/// Get the calc tag (low 3 bits)
#[inline(always)]
#[cfg(feature = "calc")]
pub(super) fn calc_tag(self) -> usize {
(self.tagged_ptr as usize) & CALC_TAG_MASK
}
/// Get the general tag (low 8 bits)
#[inline(always)]
pub(super) fn tag(self) -> usize {
(self.tagged_ptr as usize) & TAG_MASK
}
/// Get the pointer value
#[inline(always)]
pub(super) fn ptr(self) -> *const () {
self.tagged_ptr
}
/// Get the numeric value
#[inline(always)]
pub(super) fn value(self) -> f32 {
f32_from_bits((self.tagged_ptr as usize >> 32) as u32)
}
/// Get the serialized value.
#[inline(always)]
#[cfg(feature = "serde")]
pub(super) fn serialized(self) -> u64 {
(self.tagged_ptr as usize as u64).rotate_left(32)
}
/// Derialized from a value.
#[inline(always)]
#[cfg(feature = "serde")]
pub(super) fn from_serialized(value: u64) -> Self {
Self { tagged_ptr: value.rotate_right(32) as usize as *const () }
}
}
}
/// CompactLengthInner implementation for 32 bit platforms
#[cfg(target_pointer_width = "32")]
mod inner {
use super::compat::{f32_from_bits, f32_to_bits};
/// On 32 bit platforms the tag is stored separately.
/// Either an f32 value or a pointer (or neither) are packed into the ptr field
/// depending on the variant indicated by the tag
#[derive(Copy, Clone, Debug, PartialEq)]
pub(super) struct CompactLengthInner {
/// The tag indicating what kind of value we are storing
tag: usize,
/// The pointer of numeric value
ptr: *const (),
}
impl CompactLengthInner {
/// Construct a `CompactLengthInner` from a tag and pointer
#[inline(always)]
pub(super) fn from_ptr(ptr: *const (), tag: usize) -> Self {
Self { ptr, tag }
}
/// Construct a `CompactLengthInner` from a tag and numeric value
#[inline(always)]
pub(super) const fn from_val(val: f32, tag: usize) -> Self {
Self { ptr: f32_to_bits(val) as usize as *const (), tag }
}
/// Construct a `CompactLengthInner` from only a tag
#[inline(always)]
pub(super) const fn from_tag(tag: usize) -> Self {
Self { ptr: 0 as *const (), tag }
}
/// Get the calc tag (low 3 bits)
#[inline(always)]
#[cfg(feature = "calc")]
pub(super) fn calc_tag(self) -> usize {
self.tag
}
/// Get the general tag (low 8 bits)
#[inline(always)]
pub(super) fn tag(self) -> usize {
self.tag
}
/// Get the pointer value
#[inline(always)]
pub(super) fn ptr(self) -> *const () {
self.ptr
}
/// Get the numeric value
#[inline(always)]
pub(super) fn value(self) -> f32 {
f32_from_bits(self.ptr as u32)
}
/// Get the serialized value.
#[inline(always)]
#[cfg(feature = "serde")]
pub(super) fn serialized(self) -> u64 {
(self.tag as u64) << 32 | (self.ptr as u64)
}
/// Derialized from a value.
#[inline(always)]
#[cfg(feature = "serde")]
pub(super) fn from_serialized(value: u64) -> Self {
Self { tag: (value >> 32) as usize, ptr: (value & 0xFFFFFFFF) as usize as *const () }
}
}
}
use inner::CompactLengthInner;
/// A representation of a length as a compact 64-bit tagged pointer
#[derive(Copy, Clone, PartialEq, Debug)]
#[repr(transparent)]
pub struct CompactLength(CompactLengthInner);
impl CompactLength {
/// The tag indicating a calc() value
#[cfg(feature = "calc")]
pub const CALC_TAG: usize = 0b000;
/// The tag indicating a length value
pub const LENGTH_TAG: usize = 0b0000_0001;
/// The tag indicating a percentage value
pub const PERCENT_TAG: usize = 0b0000_0010;
/// The tag indicating an auto value
pub const AUTO_TAG: usize = 0b0000_0011;
/// The tag indicating an fr value
pub const FR_TAG: usize = 0b0000_0100;
/// The tag indicating a min-content value
pub const MIN_CONTENT_TAG: usize = 0b00000111;
/// The tag indicating a max-content value
pub const MAX_CONTENT_TAG: usize = 0b00001111;
/// The tag indicating a fit-content value with px limit
pub const FIT_CONTENT_PX_TAG: usize = 0b00010111;
/// The tag indicating a fit-content value with percent limit
pub const FIT_CONTENT_PERCENT_TAG: usize = 0b00011111;
}
impl CompactLength {
/// An absolute length in some abstract units. Users of Taffy may define what they correspond
/// to in their application (pixels, logical pixels, mm, etc) as they see fit.
#[inline(always)]
pub const fn length(val: f32) -> Self {
Self(CompactLengthInner::from_val(val, Self::LENGTH_TAG))
}
/// A percentage length relative to the size of the containing block.
///
/// **NOTE: percentages are represented as a f32 value in the range [0.0, 1.0] NOT the range [0.0, 100.0]**
#[inline(always)]
pub const fn percent(val: f32) -> Self {
Self(CompactLengthInner::from_val(val, Self::PERCENT_TAG))
}
/// A `calc()` value. The value passed here is treated as an opaque handle to
/// the actual calc representation and may be a pointer, index, etc.
///
/// The low 3 bits are used as a tag value and will be returned as 0.
#[inline]
#[cfg(feature = "calc")]
pub fn calc(ptr: *const ()) -> Self {
assert_ne!(ptr as u64, 0);
assert_eq!(ptr as u64 & 0b111, 0);
Self(CompactLengthInner::from_ptr(ptr, Self::CALC_TAG))
}
/// The dimension should be automatically computed according to algorithm-specific rules
/// regarding the default size of boxes.
#[inline(always)]
pub const fn auto() -> Self {
Self(CompactLengthInner::from_tag(Self::AUTO_TAG))
}
/// The dimension as a fraction of the total available grid space (`fr` units in CSS)
/// Specified value is the numerator of the fraction. Denominator is the sum of all fraction specified in that grid dimension
/// Spec: <https://www.w3.org/TR/css3-grid-layout/#fr-unit>
#[inline(always)]
pub const fn fr(val: f32) -> Self {
Self(CompactLengthInner::from_val(val, Self::FR_TAG))
}
/// The size should be the "min-content" size.
/// This is the smallest size that can fit the item's contents with ALL soft line-wrapping opportunities taken
#[inline(always)]
pub const fn min_content() -> Self {
Self(CompactLengthInner::from_tag(Self::MIN_CONTENT_TAG))
}
/// The size should be the "max-content" size.
/// This is the smallest size that can fit the item's contents with NO soft line-wrapping opportunities taken
#[inline(always)]
pub const fn max_content() -> Self {
Self(CompactLengthInner::from_tag(Self::MAX_CONTENT_TAG))
}
/// The size should be computed according to the "fit content" formula:
/// `max(min_content, min(max_content, limit))`
/// where:
/// - `min_content` is the [min-content](Self::min_content) size
/// - `max_content` is the [max-content](Self::max_content) size
/// - `limit` is a LENGTH value passed to this function
///
/// The effect of this is that the item takes the size of `limit` clamped
/// by the min-content and max-content sizes.
#[inline(always)]
pub const fn fit_content_px(limit: f32) -> Self {
Self(CompactLengthInner::from_val(limit, Self::FIT_CONTENT_PX_TAG))
}
/// The size should be computed according to the "fit content" formula:
/// `max(min_content, min(max_content, limit))`
/// where:
/// - `min_content` is the [min-content](Self::min_content) size
/// - `max_content` is the [max-content](Self::max_content) size
/// - `limit` is a PERCENTAGE value passed to this function
///
/// The effect of this is that the item takes the size of `limit` clamped
/// by the min-content and max-content sizes.
#[inline(always)]
pub const fn fit_content_percent(limit: f32) -> Self {
Self(CompactLengthInner::from_val(limit, Self::FIT_CONTENT_PERCENT_TAG))
}
/// Get the primary tag
#[inline(always)]
pub fn tag(self) -> usize {
self.0.tag()
}
/// Get the numeric value associated with the `CompactLength`
/// (e.g. the pixel value for a LENGTH variant)
#[inline(always)]
pub fn value(self) -> f32 {
self.0.value()
}
/// Get the calc pointer of the `CompactLength`
#[inline(always)]
#[cfg(feature = "calc")]
pub fn calc_value(self) -> *const () {
self.0.ptr()
}
/// Returns true if the value is 0 px
#[inline(always)]
#[cfg(feature = "calc")]
pub fn is_calc(self) -> bool {
self.0.calc_tag() == 0
}
/// Returns true if the value is 0 px
#[inline(always)]
pub fn is_zero(self) -> bool {
self.0 == Self::ZERO.0
}
/// Returns true if the value is a length or percentage value
#[inline(always)]
pub fn is_length_or_percentage(self) -> bool {
matches!(self.tag(), Self::LENGTH_TAG | Self::PERCENT_TAG)
}
/// Returns true if the value is auto
#[inline(always)]
pub fn is_auto(self) -> bool {
self.tag() == Self::AUTO_TAG
}
/// Returns true if the value is min-content
#[inline(always)]
pub fn is_min_content(self) -> bool {
matches!(self.tag(), Self::MIN_CONTENT_TAG)
}
/// Returns true if the value is max-content
#[inline(always)]
pub fn is_max_content(self) -> bool {
matches!(self.tag(), Self::MAX_CONTENT_TAG)
}
/// Returns true if the value is a fit-content(...) value
#[inline(always)]
pub fn is_fit_content(self) -> bool {
matches!(self.tag(), Self::FIT_CONTENT_PX_TAG | Self::FIT_CONTENT_PERCENT_TAG)
}
/// Returns true if the value is max-content or a fit-content(...) value
#[inline(always)]
pub fn is_max_or_fit_content(self) -> bool {
matches!(self.tag(), Self::MAX_CONTENT_TAG | Self::FIT_CONTENT_PX_TAG | Self::FIT_CONTENT_PERCENT_TAG)
}
/// Returns true if the max track sizing function is `MaxContent`, `FitContent` or `Auto` else false.
/// "In all cases, treat auto and fit-content() as max-content, except where specified otherwise for fit-content()."
/// See: <https://www.w3.org/TR/css-grid-1/#algo-terms>
#[inline(always)]
pub fn is_max_content_alike(&self) -> bool {
matches!(
self.tag(),
CompactLength::AUTO_TAG
| CompactLength::MAX_CONTENT_TAG
| CompactLength::FIT_CONTENT_PX_TAG
| CompactLength::FIT_CONTENT_PERCENT_TAG
)
}
/// Returns true if the min track sizing function is `MinContent` or `MaxContent`, else false.
#[inline(always)]
pub fn is_min_or_max_content(&self) -> bool {
matches!(self.tag(), Self::MIN_CONTENT_TAG | Self::MAX_CONTENT_TAG)
}
/// Returns true if the value is auto, min-content, max-content, or fit-content(...)
#[inline(always)]
pub fn is_intrinsic(self) -> bool {
matches!(
self.tag(),
Self::AUTO_TAG
| Self::MIN_CONTENT_TAG
| Self::MAX_CONTENT_TAG
| Self::FIT_CONTENT_PX_TAG
| Self::FIT_CONTENT_PERCENT_TAG
)
}
/// Returns true if the value is and fr value
#[inline(always)]
pub fn is_fr(self) -> bool {
self.tag() == Self::FR_TAG
}
/// Whether the track sizing functions depends on the size of the parent node
#[inline(always)]
pub fn uses_percentage(self) -> bool {
#[cfg(feature = "calc")]
{
matches!(self.tag(), CompactLength::PERCENT_TAG | CompactLength::FIT_CONTENT_PERCENT_TAG) || self.is_calc()
}
#[cfg(not(feature = "calc"))]
{
matches!(self.tag(), CompactLength::PERCENT_TAG | CompactLength::FIT_CONTENT_PERCENT_TAG)
}
}
/// Resolve percentage values against the passed parent_size, returning Some(value)
/// Non-percentage values always return None.
#[inline(always)]
pub fn resolved_percentage_size(
self,
parent_size: f32,
calc_resolver: impl Fn(*const (), f32) -> f32,
) -> Option<f32> {
match self.tag() {
CompactLength::PERCENT_TAG => Some(self.value() * parent_size),
#[cfg(feature = "calc")]
_ if self.is_calc() => Some(calc_resolver(self.0.ptr(), parent_size)),
_ => None,
}
}
}
impl TaffyZero for CompactLength {
const ZERO: Self = Self::length(0.0);
}
impl TaffyAuto for CompactLength {
const AUTO: Self = Self::auto();
}
impl TaffyMinContent for CompactLength {
const MIN_CONTENT: Self = Self::min_content();
}
impl TaffyMaxContent for CompactLength {
const MAX_CONTENT: Self = Self::max_content();
}
impl FromLength for CompactLength {
fn from_length<Input: Into<f32> + Copy>(value: Input) -> Self {
Self::length(value.into())
}
}
impl FromPercent for CompactLength {
fn from_percent<Input: Into<f32> + Copy>(value: Input) -> Self {
Self::percent(value.into())
}
}
impl FromFr for CompactLength {
fn from_fr<Input: Into<f32> + Copy>(value: Input) -> Self {
Self::fr(value.into())
}
}
impl TaffyFitContent for CompactLength {
fn fit_content(lp: LengthPercentage) -> Self {
let value = lp.0.value();
match lp.0.tag() {
Self::LENGTH_TAG => Self::fit_content_px(value),
Self::PERCENT_TAG => Self::fit_content_percent(value),
_ => unreachable!(),
}
}
}
#[cfg(feature = "serde")]
impl serde::Serialize for CompactLength {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
#[cfg(feature = "calc")]
{
if self.tag() == Self::CALC_TAG {
Err(serde::ser::Error::custom("Cannot serialize Calc value"))
} else {
serializer.serialize_u64(self.0.serialized())
}
}
#[cfg(not(feature = "calc"))]
serializer.serialize_u64(self.0.serialized())
}
}
#[cfg(feature = "serde")]
impl<'de> serde::Deserialize<'de> for CompactLength {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let bits: u64 = u64::deserialize(deserializer)?;
let value = Self(CompactLengthInner::from_serialized(bits));
// Note: validation intentionally excludes the CALC_TAG as deserializing calc() values is not supported
if matches!(
value.tag(),
CompactLength::LENGTH_TAG
| CompactLength::PERCENT_TAG
| CompactLength::AUTO_TAG
| CompactLength::MIN_CONTENT_TAG
| CompactLength::MAX_CONTENT_TAG
| CompactLength::FIT_CONTENT_PX_TAG
| CompactLength::FIT_CONTENT_PERCENT_TAG
| CompactLength::FR_TAG
) {
Ok(value)
} else {
Err(serde::de::Error::custom("Cannot deserialize Calc value"))
}
}
}