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 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
|
/*
* Copyright (C) 2024-2025 Samuel Weinig <sam@webkit.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "CSSCalcTree+Serialization.h"
#include "AnchorPositionEvaluator.h"
#include "CSSCalcSymbolTable.h"
#include "CSSCalcTree+Traversal.h"
#include "CSSCalcTree.h"
#include "CSSMarkup.h"
#include "CSSPrimitiveNumericTypes+Serialization.h"
#include "CSSPrimitiveValue.h"
#include "CSSUnits.h"
#include "ContainerQueryFeatures.h"
#include "MediaQueryFeatures.h"
#include <wtf/text/StringBuilder.h>
namespace WebCore {
namespace CSSCalc {
struct SerializationState {
enum class GroupingParenthesis {
Omit,
Include
};
ASCIILiteral openGroup() const { return groupingParenthesis == GroupingParenthesis::Omit ? ""_s : "("_s; }
ASCIILiteral closeGroup() const { return groupingParenthesis == GroupingParenthesis::Omit ? ""_s : ")"_s; }
GroupingParenthesis groupingParenthesis = GroupingParenthesis::Include;
Stage stage = Stage::Specified;
CSS::Range range = CSS::All;
const CSS::SerializationContext& serializationContext;
};
struct ParenthesisSaver {
ParenthesisSaver(SerializationState& state)
: state { state }
, savedGroupingParenthesis { state.groupingParenthesis }
{
}
~ParenthesisSaver()
{
state.groupingParenthesis = savedGroupingParenthesis;
}
SerializationState& state;
SerializationState::GroupingParenthesis savedGroupingParenthesis;
};
// https://drafts.csswg.org/css-values-4/#serialize-a-math-function
static void serializeMathFunction(StringBuilder&, const Child&, SerializationState&);
static void serializeMathFunction(StringBuilder&, const Symbol&, SerializationState&);
template<Numeric Op> static void serializeMathFunction(StringBuilder&, const Op&, SerializationState&);
template<typename Op> static void serializeMathFunction(StringBuilder&, const IndirectNode<Op>&, SerializationState&);
static void serializeMathFunctionPrefix(StringBuilder&, const IndirectNode<Sum>&, SerializationState&);
static void serializeMathFunctionPrefix(StringBuilder&, const IndirectNode<Product>&, SerializationState&);
static void serializeMathFunctionPrefix(StringBuilder&, const IndirectNode<Negate>&, SerializationState&);
static void serializeMathFunctionPrefix(StringBuilder&, const IndirectNode<Invert>&, SerializationState&);
static void serializeMathFunctionPrefix(StringBuilder&, const IndirectNode<RoundNearest>&, SerializationState&);
static void serializeMathFunctionPrefix(StringBuilder&, const IndirectNode<RoundUp>&, SerializationState&);
static void serializeMathFunctionPrefix(StringBuilder&, const IndirectNode<RoundDown>&, SerializationState&);
static void serializeMathFunctionPrefix(StringBuilder&, const IndirectNode<RoundToZero>&, SerializationState&);
template<typename Op> static void serializeMathFunctionPrefix(StringBuilder&, const IndirectNode<Op>&, SerializationState&);
static void serializeMathFunctionArguments(StringBuilder&, const IndirectNode<Sum>&, SerializationState&);
static void serializeMathFunctionArguments(StringBuilder&, const IndirectNode<Product>&, SerializationState&);
static void serializeMathFunctionArguments(StringBuilder&, const IndirectNode<Random>&, SerializationState&);
static void serializeMathFunctionArguments(StringBuilder&, const IndirectNode<ContainerProgress>&, SerializationState&);
static void serializeMathFunctionArguments(StringBuilder&, const IndirectNode<Anchor>&, SerializationState&);
static void serializeMathFunctionArguments(StringBuilder&, const IndirectNode<AnchorSize>&, SerializationState&);
template<typename Op> static void serializeMathFunctionArguments(StringBuilder&, const IndirectNode<Op>&, SerializationState&);
void serializeWithoutOmittingPrefix(StringBuilder&, const Child&, SerializationState&);
// https://drafts.csswg.org/css-values-4/#serialize-a-calculation-tree
static void serializeCalculationTree(StringBuilder&, const Child&, SerializationState&);
static void serializeCalculationTree(StringBuilder&, const ChildOrNone&, SerializationState&);
static void serializeCalculationTree(StringBuilder&, const CSS::Keyword::None&, SerializationState&);
static void serializeCalculationTree(StringBuilder&, const Symbol&, SerializationState&);
static void serializeCalculationTree(StringBuilder&, const IndirectNode<Sum>&, SerializationState&);
static void serializeCalculationTree(StringBuilder&, const IndirectNode<Product>&, SerializationState&);
static void serializeCalculationTree(StringBuilder&, const IndirectNode<Negate>&, SerializationState&);
static void serializeCalculationTree(StringBuilder&, const IndirectNode<Invert>&, SerializationState&);
template<Numeric Op> void serializeCalculationTree(StringBuilder&, const Op&, SerializationState&);
template<typename Op> static void serializeCalculationTree(StringBuilder&, const IndirectNode<Op>&, SerializationState&);
// MARK: Sorting
static unsigned sortPriority(CSSUnitType unit)
{
// Sort order: number, percentage, dimension (by unit, ordered ASCII case-insensitively), other.
switch (unit) {
// number
case CSSUnitType::CSS_NUMBER:
case CSSUnitType::CSS_INTEGER: return 0;
// percentage
case CSSUnitType::CSS_PERCENTAGE: return 1;
// dimension (by unit, ordered ASCII case-insensitively)
case CSSUnitType::CSS_CAP: return 2;
case CSSUnitType::CSS_CH: return 3;
case CSSUnitType::CSS_CM: return 4;
case CSSUnitType::CSS_CQB: return 5;
case CSSUnitType::CSS_CQH: return 6;
case CSSUnitType::CSS_CQI: return 7;
case CSSUnitType::CSS_CQMAX: return 8;
case CSSUnitType::CSS_CQMIN: return 9;
case CSSUnitType::CSS_CQW: return 10;
case CSSUnitType::CSS_DEG: return 11;
case CSSUnitType::CSS_DPCM: return 12;
case CSSUnitType::CSS_DPI: return 13;
case CSSUnitType::CSS_DPPX: return 14;
case CSSUnitType::CSS_DVB: return 15;
case CSSUnitType::CSS_DVH: return 16;
case CSSUnitType::CSS_DVI: return 17;
case CSSUnitType::CSS_DVMAX: return 18;
case CSSUnitType::CSS_DVMIN: return 19;
case CSSUnitType::CSS_DVW: return 20;
case CSSUnitType::CSS_EM: return 21;
case CSSUnitType::CSS_EX: return 22;
case CSSUnitType::CSS_FR: return 23;
case CSSUnitType::CSS_GRAD: return 24;
case CSSUnitType::CSS_HZ: return 25;
case CSSUnitType::CSS_IC: return 26;
case CSSUnitType::CSS_IN: return 27;
case CSSUnitType::CSS_KHZ: return 28;
case CSSUnitType::CSS_LH: return 29;
case CSSUnitType::CSS_LVB: return 30;
case CSSUnitType::CSS_LVH: return 31;
case CSSUnitType::CSS_LVI: return 32;
case CSSUnitType::CSS_LVMAX: return 33;
case CSSUnitType::CSS_LVMIN: return 34;
case CSSUnitType::CSS_LVW: return 35;
case CSSUnitType::CSS_MM: return 36;
case CSSUnitType::CSS_MS: return 37;
case CSSUnitType::CSS_PC: return 38;
case CSSUnitType::CSS_PT: return 39;
case CSSUnitType::CSS_PX: return 40;
case CSSUnitType::CSS_Q: return 41;
case CSSUnitType::CSS_RAD: return 42;
case CSSUnitType::CSS_RCAP: return 43;
case CSSUnitType::CSS_RCH: return 44;
case CSSUnitType::CSS_REM: return 45;
case CSSUnitType::CSS_REX: return 46;
case CSSUnitType::CSS_RIC: return 47;
case CSSUnitType::CSS_RLH: return 48;
case CSSUnitType::CSS_S: return 49;
case CSSUnitType::CSS_SVB: return 50;
case CSSUnitType::CSS_SVH: return 51;
case CSSUnitType::CSS_SVI: return 52;
case CSSUnitType::CSS_SVMAX: return 53;
case CSSUnitType::CSS_SVMIN: return 54;
case CSSUnitType::CSS_SVW: return 55;
case CSSUnitType::CSS_TURN: return 56;
case CSSUnitType::CSS_VB: return 57;
case CSSUnitType::CSS_VH: return 58;
case CSSUnitType::CSS_VI: return 59;
case CSSUnitType::CSS_VMAX: return 50;
case CSSUnitType::CSS_VMIN: return 61;
case CSSUnitType::CSS_VW: return 62;
case CSSUnitType::CSS_X: return 63;
// Non-numeric types are not supported.
case CSSUnitType::CSS_ATTR:
case CSSUnitType::CSS_CALC:
case CSSUnitType::CSS_CALC_PERCENTAGE_WITH_ANGLE:
case CSSUnitType::CSS_CALC_PERCENTAGE_WITH_LENGTH:
case CSSUnitType::CSS_DIMENSION:
case CSSUnitType::CSS_FONT_FAMILY:
case CSSUnitType::CSS_IDENT:
case CSSUnitType::CSS_PROPERTY_ID:
case CSSUnitType::CSS_QUIRKY_EM:
case CSSUnitType::CSS_STRING:
case CSSUnitType::CSS_UNKNOWN:
case CSSUnitType::CSS_URI:
case CSSUnitType::CSS_VALUE_ID:
case CSSUnitType::CustomIdent:
break;
}
ASSERT_NOT_REACHED();
return 64;
}
static unsigned sortPriority(const Child& child)
{
// https://drafts.csswg.org/css-values-4/#sort-a-calculations-children
return WTF::switchOn(child,
[]<Numeric T>(const T& root) -> unsigned {
return sortPriority(toCSSUnit(root));
},
[](const auto&) -> unsigned {
return 65; // NOTE: 65 is greater than any numeric unit type, even the error case.
}
);
}
struct ChildRepresentation {
// Offset in the operations `children` vector.
size_t index;
// Value used to order children during sort, based on unit.
unsigned sortPriority;
};
static Vector<ChildRepresentation, 16> generateSortedChildrenMap(const Children& children)
{
Vector<ChildRepresentation, 16> sortedChildrenMap;
sortedChildrenMap.reserveInitialCapacity(children.size());
for (size_t i = 0; i < children.size(); ++i)
sortedChildrenMap.append(ChildRepresentation { .index = i, .sortPriority = sortPriority(children[i]) });
std::stable_sort(sortedChildrenMap.begin(), sortedChildrenMap.end(), [](const auto& first, const auto& second) -> bool {
return first.sortPriority < second.sortPriority;
});
return sortedChildrenMap;
}
// MARK: Math Function
// https://drafts.csswg.org/css-values-4/#serialize-a-math-function
static double clampValue(double value, CSS::Range range)
{
value = std::isnan(value) ? 0 : value;
return std::clamp(value, range.min, range.max);
}
void serializeMathFunction(StringBuilder& builder, const Child& fn, SerializationState& state)
{
WTF::switchOn(fn, [&builder, &state](const auto& root) { serializeMathFunction(builder, root, state); });
}
template<Numeric Op> void serializeMathFunction(StringBuilder& builder, const Op& fn, SerializationState& state)
{
// 1. If the root of the calculation tree fn represents is a numeric value (number, percentage, or dimension), and the serialization being produced is of a computed value or later, then clamp the value to the range allowed for its context (if necessary), then serialize the value as normal and return the result.
if (state.stage == Stage::Computed) {
auto clampedFn = makeChildWithValueBasedOn(clampValue(fn.value, state.range), fn);
serializeCalculationTree(builder, clampedFn, state);
return;
}
// `CSS::SerializableNumber` serialization implements the appropriate logic for steps 2 & steps 3-5 for Numeric expressions.
// 2. If fn represents an infinite or NaN value: let s be the string "calc(".
// 2.1. Let s be the string "calc(".
// 2.2. Serialize the keyword infinity, -infinity, or NaN, as appropriate to represent the value, and append it to s.
// 2.3. If fn’s type is anything other than «[ ]» (empty, representing a <number>), append " * " to s. Create a numeric value in the canonical unit for fn’s type (such as px for <length>), with a value of 1. Serialize this numeric value and append it to s.
// [...]
// 3. If the calculation tree’s root node is a numeric value, or a calc-operator node, let s be a string initially containing "calc(".
// 4. For each child of the root node, serialize the calculation tree. [...]
// 5. Append ")" (close parenthesis) to s.
builder.append("calc("_s);
serializeCalculationTree(builder, fn, state);
builder.append(')');
}
void serializeMathFunction(StringBuilder& builder, const Symbol& fn, SerializationState& state)
{
builder.append("calc("_s);
serializeCalculationTree(builder, fn, state);
builder.append(')');
}
template<typename Op> void serializeMathFunction(StringBuilder& builder, const IndirectNode<Op>& fn, SerializationState& state)
{
// 3. If the calculation tree’s root node is a numeric value, or a calc-operator node, let s be a string initially containing "calc(".
//
// Otherwise, let s be a string initially containing the name of the root node, lowercased (such as "sin" or "max"), followed by a "(" (open parenthesis).
// Both clauses of step 3 are handle via the appropriate overloaded function.
serializeMathFunctionPrefix(builder, fn, state);
// 4. For each child of the root node, serialize the calculation tree. If a result of this serialization starts with a "(" (open parenthesis) and ends with a ")" (close parenthesis), remove those characters from the result. Concatenate all of the results using ", " (comma followed by space), then append the result to s.
{
ParenthesisSaver saver { state };
state.groupingParenthesis = SerializationState::GroupingParenthesis::Omit;
serializeMathFunctionArguments(builder, fn, state);
}
// 5. Append ")" (close parenthesis) to s.
builder.append(')');
}
void serializeMathFunctionPrefix(StringBuilder& builder, const IndirectNode<Sum>&, SerializationState&)
{
builder.append("calc("_s);
}
void serializeMathFunctionPrefix(StringBuilder& builder, const IndirectNode<Product>&, SerializationState&)
{
builder.append("calc("_s);
}
void serializeMathFunctionPrefix(StringBuilder& builder, const IndirectNode<Negate>&, SerializationState&)
{
builder.append("calc("_s);
}
void serializeMathFunctionPrefix(StringBuilder& builder, const IndirectNode<Invert>&, SerializationState&)
{
builder.append("calc("_s);
}
void serializeMathFunctionPrefix(StringBuilder& builder, const IndirectNode<RoundNearest>&, SerializationState&)
{
builder.append(nameLiteralForSerialization(CSSValueRound), '(', nameLiteralForSerialization(RoundNearest::id), ", "_s);
}
void serializeMathFunctionPrefix(StringBuilder& builder, const IndirectNode<RoundUp>&, SerializationState&)
{
builder.append(nameLiteralForSerialization(CSSValueRound), '(', nameLiteralForSerialization(RoundUp::id), ", "_s);
}
void serializeMathFunctionPrefix(StringBuilder& builder, const IndirectNode<RoundDown>&, SerializationState&)
{
builder.append(nameLiteralForSerialization(CSSValueRound), '(', nameLiteralForSerialization(RoundDown::id), ", "_s);
}
void serializeMathFunctionPrefix(StringBuilder& builder, const IndirectNode<RoundToZero>&, SerializationState&)
{
builder.append(nameLiteralForSerialization(CSSValueRound), '(', nameLiteralForSerialization(RoundToZero::id), ", "_s);
}
template<typename Op> void serializeMathFunctionPrefix(StringBuilder& builder, const IndirectNode<Op>&, SerializationState&)
{
builder.append(nameLiteralForSerialization(Op::id), '(');
}
void serializeMathFunctionArguments(StringBuilder& builder, const IndirectNode<Sum>& fn, SerializationState& state)
{
serializeCalculationTree(builder, fn, state);
}
void serializeMathFunctionArguments(StringBuilder& builder, const IndirectNode<Product>& fn, SerializationState& state)
{
serializeCalculationTree(builder, fn, state);
}
void serializeMathFunctionArguments(StringBuilder& builder, const IndirectNode<Random>& fn, SerializationState& state)
{
if (!fn->cachingOptions.identifier.isNull() && fn->cachingOptions.perElement)
builder.append(fn->cachingOptions.identifier, ' ', nameLiteralForSerialization(CSSValuePerElement), ", "_s);
else if (!fn->cachingOptions.identifier.isNull())
builder.append(fn->cachingOptions.identifier, ", "_s);
else if (fn->cachingOptions.perElement)
builder.append(nameLiteralForSerialization(CSSValuePerElement), ", "_s);
serializeCalculationTree(builder, fn->min, state);
builder.append(", "_s);
serializeCalculationTree(builder, fn->max, state);
if (fn->step) {
builder.append(", "_s, nameLiteralForSerialization(CSSValueBy), ' ');
serializeCalculationTree(builder, *fn->step, state);
}
}
void serializeMathFunctionArguments(StringBuilder& builder, const IndirectNode<ContainerProgress>& fn, SerializationState& state)
{
serializeIdentifier(fn->feature->name(), builder);
if (!fn->container.isNull()) {
builder.append(' ', nameLiteralForSerialization(CSSValueOf), ' ');
serializeIdentifier(fn->container, builder);
}
builder.append(", "_s);
serializeCalculationTree(builder, fn->start, state);
builder.append(", "_s);
serializeCalculationTree(builder, fn->end, state);
}
void serializeMathFunctionArguments(StringBuilder& builder, const IndirectNode<Anchor>& anchor, SerializationState& state)
{
if (!anchor->elementName.isNull()) {
serializeIdentifier(anchor->elementName, builder);
builder.append(' ');
}
WTF::switchOn(anchor->side,
[&](CSSValueID valueID) {
builder.append(nameLiteralForSerialization(valueID));
},
[&](const Child& percentage) {
// As anchor() is not actually a "math function", calc() can't be omitted in arguments.
serializeWithoutOmittingPrefix(builder, percentage, state);
}
);
if (anchor->fallback) {
builder.append(", "_s);
serializeWithoutOmittingPrefix(builder, *anchor->fallback, state);
}
}
static void serializeAnchorSizeDimension(StringBuilder& builder, Style::AnchorSizeDimension dimension)
{
switch (dimension) {
case Style::AnchorSizeDimension::Width:
builder.append("width"_s);
break;
case Style::AnchorSizeDimension::Height:
builder.append("height"_s);
break;
case Style::AnchorSizeDimension::Block:
builder.append("block"_s);
break;
case Style::AnchorSizeDimension::Inline:
builder.append("inline"_s);
break;
case Style::AnchorSizeDimension::SelfBlock:
builder.append("self-block"_s);
break;
case Style::AnchorSizeDimension::SelfInline:
builder.append("self-inline"_s);
break;
}
}
void serializeMathFunctionArguments(StringBuilder& builder, const IndirectNode<AnchorSize>& anchorSize, SerializationState& state)
{
bool hasElementName = !anchorSize->elementName.isNull();
if (hasElementName)
serializeIdentifier(anchorSize->elementName, builder);
if (anchorSize->dimension) {
if (hasElementName)
builder.append(' ');
serializeAnchorSizeDimension(builder, *anchorSize->dimension);
}
if (anchorSize->fallback) {
if (hasElementName || anchorSize->dimension)
builder.append(", "_s);
serializeWithoutOmittingPrefix(builder, *anchorSize->fallback, state);
}
}
template<typename Op> void serializeMathFunctionArguments(StringBuilder& builder, const IndirectNode<Op>& fn, SerializationState& state)
{
auto separator = ""_s;
forAllChildren(*fn, WTF::makeVisitor(
[&](const std::optional<Child>& root) {
if (root) {
builder.append(std::exchange(separator, ", "_s));
serializeCalculationTree(builder, *root, state);
}
},
[&](const AtomString& root) {
if (!root.isNull()) {
builder.append(std::exchange(separator, ", "_s));
serializeIdentifier(root, builder);
}
},
[&](const MQ::MediaProgressProviding* root) {
builder.append(std::exchange(separator, ", "_s));
serializeIdentifier(root->name(), builder);
},
[&](const CQ::ContainerProgressProviding* root) {
builder.append(std::exchange(separator, ", "_s));
serializeIdentifier(root->name(), builder);
},
[&](const auto& root) {
builder.append(std::exchange(separator, ", "_s));
serializeCalculationTree(builder, root, state);
}
));
}
void serializeWithoutOmittingPrefix(StringBuilder& builder, const Child& child, SerializationState& state)
{
WTF::switchOn(child,
[&](Leaf auto& op) {
serializeCalculationTree(builder, op, state);
}, [&](auto& op) {
serializeMathFunction(builder, op, state);
}
);
}
// MARK: Calculation Tree
// https://drafts.csswg.org/css-values-4/#serialize-a-calculation-tree
void serializeCalculationTree(StringBuilder& builder, const Child& root, SerializationState& state)
{
WTF::switchOn(root, [&builder, &state](const auto& root) { serializeCalculationTree(builder, root, state); });
}
void serializeCalculationTree(StringBuilder& builder, const ChildOrNone& root, SerializationState& state)
{
WTF::switchOn(root, [&builder, &state](const auto& root) { serializeCalculationTree(builder, root, state); });
}
void serializeCalculationTree(StringBuilder& builder, const CSS::Keyword::None& root, SerializationState& state)
{
CSS::serializationForCSS(builder, state.serializationContext, root);
}
template<Numeric Op> void serializeCalculationTree(StringBuilder& builder, const Op& root, SerializationState& state)
{
// 2. If root is a numeric value, or a non-math function, serialize root per the normal rules for it and return the result.
CSS::serializationForCSS(builder, state.serializationContext, CSS::SerializableNumber { root.value, CSSPrimitiveValue::unitTypeString(toCSSUnit(root)) });
}
void serializeCalculationTree(StringBuilder& builder, const Symbol& root, SerializationState&)
{
// 2. If root is a numeric value, or a non-math function, serialize root per the normal rules for it and return the result.
builder.append(nameLiteralForSerialization(root.id));
}
void serializeCalculationTree(StringBuilder& builder, const IndirectNode<Sum>& root, SerializationState& state)
{
ASSERT(!root->children.isEmpty());
// 6. If root is a Sum node,
// - let s be a string initially containing "(".
builder.append(state.openGroup());
// - Sort root’s children.
// NOTE: Rather than actually sorting the children, which we can't because they are immutable, we generate
// a map of offsets to sorted offsets we can use while iterating.
auto sortedChildrenMap = generateSortedChildrenMap(root->children);
{
ParenthesisSaver saver { state };
state.groupingParenthesis = SerializationState::GroupingParenthesis::Include;
// - Serialize root’s first child, and append it to s.
serializeCalculationTree(builder, root->children[sortedChildrenMap[0].index], state);
// - For each child of root beyond the first:
for (size_t i = 1; i < root->children.size(); ++i) {
WTF::switchOn(root->children[sortedChildrenMap[i].index],
[&builder, &state](const IndirectNode<Negate>& child) {
// 1. If child is a Negate node, append " - " to s, then serialize the Negate’s child and append the result to s.
builder.append(" - "_s);
serializeCalculationTree(builder, child->a, state);
},
[&builder, &state]<Numeric T>(const T& child) {
// 2. If child is a negative numeric value, append " - " to s, then serialize the negation of child as normal and append the result to s.
if (child.value < 0) {
builder.append(" - "_s);
serializeCalculationTree(builder, makeChildWithValueBasedOn(-child.value, child), state);
return;
}
// 3. Otherwise, append " + " to s, then serialize child and append the result to s.
builder.append(" + "_s);
serializeCalculationTree(builder, child, state);
},
[&builder, &state](const auto& child) {
// 3. Otherwise, append " + " to s, then serialize child and append the result to s.
builder.append(" + "_s);
serializeCalculationTree(builder, child, state);
}
);
}
}
// - Finally, append ")" to s and return it.
builder.append(state.closeGroup());
}
void serializeCalculationTree(StringBuilder& builder, const IndirectNode<Product>& root, SerializationState& state)
{
ASSERT(!root->children.isEmpty());
// 7. If root is a Product node,
// - let s be a string initially containing "(".
builder.append(state.openGroup());
// - Sort root’s children.
// NOTE: Rather than actually sorting the children, which we can't because they are immutable, we generate
// a map of offsets to sorted offsets we can use while iterating.
auto sortedChildrenMap = generateSortedChildrenMap(root->children);
{
ParenthesisSaver saver { state };
state.groupingParenthesis = SerializationState::GroupingParenthesis::Include;
// - Serialize root’s first child, and append it to s.
serializeCalculationTree(builder, root->children[sortedChildrenMap[0].index], state);
// - For each child of root beyond the first:
for (size_t i = 1; i < root->children.size(); ++i) {
WTF::switchOn(root->children[sortedChildrenMap[i].index],
[&builder, &state](const IndirectNode<Invert>& child) {
// 1. If child is an Invert node, append " / " to s, then serialize the Invert’s child and append the result to s.
builder.append(" / "_s);
serializeCalculationTree(builder, child->a, state);
},
[&builder, &state](const auto& child) {
// 2. Otherwise, append " * " to s, then serialize child and append the result to s.
builder.append(" * "_s);
serializeCalculationTree(builder, child, state);
}
);
}
}
// - Finally, append ")" to s and return it.
builder.append(state.closeGroup());
}
void serializeCalculationTree(StringBuilder& builder, const IndirectNode<Negate>& root, SerializationState& state)
{
// 4. If root is a Negate node,
// - let s be a string initially containing "(-1 * ".
builder.append(state.openGroup(), "-1 * "_s);
{
ParenthesisSaver saver { state };
state.groupingParenthesis = SerializationState::GroupingParenthesis::Include;
// - Serialize root’s child, and append it to s.
serializeCalculationTree(builder, root->a, state);
}
// - Append ")" to s, then return it.
builder.append(state.closeGroup());
}
void serializeCalculationTree(StringBuilder& builder, const IndirectNode<Invert>& root, SerializationState& state)
{
// 5. If root is an Invert node,
// - let s be a string initially containing "(1 / ".
builder.append(state.openGroup(), "1 / "_s);
{
ParenthesisSaver saver { state };
state.groupingParenthesis = SerializationState::GroupingParenthesis::Include;
// - Serialize root’s child, and append it to s.
serializeCalculationTree(builder, root->a, state);
}
// - Append ")" to s, then return it.
builder.append(state.closeGroup());
}
template<typename Op> void serializeCalculationTree(StringBuilder& builder, const IndirectNode<Op>& root, SerializationState& state)
{
// 3. If root is anything but a Sum, Negate, Product, or Invert node, serialize a math function for the function corresponding to the node type, treating the node’s children as the function’s comma-separated calculation arguments, and return the result.
serializeMathFunction(builder, root, state);
}
// MARK: Exposed interface
void serializationForCSS(StringBuilder& builder, const Tree& tree, const SerializationOptions& options)
{
SerializationState state {
.stage = tree.stage,
.range = options.range,
.serializationContext = options.serializationContext,
};
serializeMathFunction(builder, tree.root, state);
}
String serializationForCSS(const Tree& tree, const SerializationOptions& options)
{
StringBuilder builder;
serializationForCSS(builder, tree, options);
return builder.toString();
}
void serializationForCSS(StringBuilder& builder, const Child& child, const SerializationOptions& options)
{
SerializationState state {
.range = options.range,
.serializationContext = options.serializationContext,
};
serializeCalculationTree(builder, child, state);
}
String serializationForCSS(const Child& child, const SerializationOptions& options)
{
StringBuilder builder;
serializationForCSS(builder, child, options);
return builder.toString();
}
} // namespace CSSCalc
} // namespace WebCore
|