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
|
/*
* (C) 1999-2003 Lars Knoll (knoll@kde.org)
* Copyright (C) 2004-2023 Apple Inc. All rights reserved.
* Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#pragma once
#include "CSSPropertyNames.h"
#include "CSSUnits.h"
#include "CSSValue.h"
#include "CSSValueKeywords.h"
#include "ExceptionOr.h"
#include "LayoutUnit.h"
#include <utility>
#include <wtf/Forward.h>
#include <wtf/MathExtras.h>
namespace WebCore {
class CSSCalcValue;
class CSSToLengthConversionData;
class Color;
class FontCascadeDescription;
class FontMetrics;
class RenderStyle;
class RenderView;
struct Length;
// Max/min values for CSS, needs to slightly smaller/larger than the true max/min values to allow for rounding without overflowing.
// Subtract two (rather than one) to allow for values to be converted to float and back without exceeding the LayoutUnit::max.
const int maxValueForCssLength = intMaxForLayoutUnit - 2;
const int minValueForCssLength = intMinForLayoutUnit + 2;
// Dimension calculations are imprecise, often resulting in values of e.g.
// 44.99998. We need to round if we're really close to the next integer value.
template<typename T> inline T roundForImpreciseConversion(double value)
{
value += (value < 0) ? -0.01 : +0.01;
return ((value > std::numeric_limits<T>::max()) || (value < std::numeric_limits<T>::min())) ? 0 : static_cast<T>(value);
}
template<> inline float roundForImpreciseConversion(double value)
{
double ceiledValue = ceil(value);
double proximityToNextInt = ceiledValue - value;
if (proximityToNextInt <= 0.01 && value > 0)
return static_cast<float>(ceiledValue);
if (proximityToNextInt >= 0.99 && value < 0)
return static_cast<float>(floor(value));
return static_cast<float>(value);
}
class CSSPrimitiveValue final : public CSSValue {
public:
static constexpr bool isLength(CSSUnitType);
static double computeDegrees(CSSUnitType, double angle);
// FIXME: Some of these use primitiveUnitType() and some use primitiveType(). Many that use primitiveUnitType() are likely broken with calc().
bool isAngle() const { return unitCategory(primitiveType()) == CSSUnitCategory::Angle; }
bool isFontIndependentLength() const { return isFontIndependentLength(primitiveUnitType()); }
bool isFontRelativeLength() const { return isFontRelativeLength(primitiveUnitType()); }
bool isParentFontRelativeLength() const { return isPercentage() || (isFontRelativeLength() && primitiveType() != CSSUnitType::CSS_REMS && primitiveType() != CSSUnitType::CSS_RLHS); }
bool isQuirkyEms() const { return primitiveType() == CSSUnitType::CSS_QUIRKY_EMS; }
bool isLength() const { return isLength(static_cast<CSSUnitType>(primitiveType())); }
bool isNumber() const { return primitiveType() == CSSUnitType::CSS_NUMBER; }
bool isInteger() const { return primitiveType() == CSSUnitType::CSS_INTEGER; }
bool isNumberOrInteger() const { return isNumber() || isInteger(); }
bool isPercentage() const { return primitiveType() == CSSUnitType::CSS_PERCENTAGE; }
bool isPx() const { return primitiveType() == CSSUnitType::CSS_PX; }
bool isTime() const { return unitCategory(primitiveUnitType()) == CSSUnitCategory::Time; }
bool isFrequency() const { return unitCategory(primitiveType()) == CSSUnitCategory::Frequency; }
bool isCalculated() const { return primitiveUnitType() == CSSUnitType::CSS_CALC; }
bool isCalculatedPercentageWithNumber() const { return primitiveType() == CSSUnitType::CSS_CALC_PERCENTAGE_WITH_NUMBER; }
bool isCalculatedPercentageWithLength() const { return primitiveType() == CSSUnitType::CSS_CALC_PERCENTAGE_WITH_LENGTH; }
bool isDotsPerInch() const { return primitiveType() == CSSUnitType::CSS_DPI; }
bool isDotsPerPixel() const { return primitiveType() == CSSUnitType::CSS_DPPX; }
bool isDotsPerCentimeter() const { return primitiveType() == CSSUnitType::CSS_DPCM; }
bool isX() const { return primitiveType() == CSSUnitType::CSS_X; }
bool isResolution() const { return unitCategory(primitiveType()) == CSSUnitCategory::Resolution; }
bool isViewportPercentageLength() const { return isViewportPercentageLength(primitiveUnitType()); }
bool isFlex() const { return primitiveType() == CSSUnitType::CSS_FR; }
static Ref<CSSPrimitiveValue> create(double);
static Ref<CSSPrimitiveValue> create(double, CSSUnitType);
static Ref<CSSPrimitiveValue> createInteger(double);
static Ref<CSSPrimitiveValue> create(const Length&);
static Ref<CSSPrimitiveValue> create(const Length&, const RenderStyle&);
static Ref<CSSPrimitiveValue> create(Ref<CSSCalcValue>);
static inline Ref<CSSPrimitiveValue> create(CSSValueID);
bool isValueID() const { return primitiveUnitType() == CSSUnitType::CSS_VALUE_ID; }
CSSValueID valueID() const { return isValueID() ? m_value.valueID : CSSValueInvalid; }
static Ref<CSSPrimitiveValue> create(CSSPropertyID);
bool isPropertyID() const { return primitiveUnitType() == CSSUnitType::CSS_PROPERTY_ID; }
CSSPropertyID propertyID() const { return isPropertyID() ? m_value.propertyID : CSSPropertyInvalid; }
bool isString() const { return primitiveUnitType() == CSSUnitType::CSS_STRING; }
static Ref<CSSPrimitiveValue> create(String);
static Ref<CSSPrimitiveValue> create(CSSUnresolvedColor);
bool isUnresolvedColor() const { return primitiveUnitType() == CSSUnitType::CSS_UNRESOLVED_COLOR; }
const CSSUnresolvedColor& unresolvedColor() const { ASSERT(isUnresolvedColor()); return *m_value.unresolvedColor; }
static Ref<CSSPrimitiveValue> createAttr(String);
bool isAttr() const { return primitiveUnitType() == CSSUnitType::CSS_ATTR; }
bool isColor() const { return primitiveUnitType() == CSSUnitType::CSS_RGBCOLOR; }
const Color& color() const { ASSERT(isColor()); return *reinterpret_cast<const Color*>(&m_value.colorAsInteger); }
static Ref<CSSPrimitiveValue> createCounterName(String);
static Ref<CSSPrimitiveValue> createCustomIdent(String);
bool isCustomIdent() const { return primitiveUnitType() == CSSUnitType::CustomIdent; }
static Ref<CSSPrimitiveValue> createFontFamily(String);
bool isFontFamily() const { return primitiveUnitType() == CSSUnitType::CSS_FONT_FAMILY; }
static Ref<CSSPrimitiveValue> createURI(String);
bool isURI() const { return primitiveUnitType() == CSSUnitType::CSS_URI; }
static inline CSSPrimitiveValue& implicitInitialValue();
~CSSPrimitiveValue();
CSSUnitType primitiveType() const;
ExceptionOr<float> getFloatValue(CSSUnitType) const;
double computeDegrees() const;
enum TimeUnit { Seconds, Milliseconds };
template<typename T, TimeUnit timeUnit> T computeTime() const;
template<typename T> T computeLength(const CSSToLengthConversionData&) const;
template<int> Length convertToLength(const CSSToLengthConversionData&) const;
bool convertingToLengthRequiresNonNullStyle(int lengthConversion) const;
double doubleValue(CSSUnitType) const;
// It's usually wrong to call this; it can trigger type conversion in calc without sufficient context to resolve relative length units.
double doubleValue() const;
double doubleValueDividingBy100IfPercentage() const;
// These return nullopt for calc, for which range checking is not done at parse time: <https://www.w3.org/TR/css3-values/#calc-range>.
std::optional<bool> isZero() const;
std::optional<bool> isPositive() const;
std::optional<bool> isNegative() const;
template<typename T> inline T value(CSSUnitType type) const { return clampTo<T>(doubleValue(type)); }
template<typename T> inline T value() const { return clampTo<T>(doubleValue()); }
float floatValue(CSSUnitType type) const { return value<float>(type); }
float floatValue() const { return value<float>(); }
int intValue(CSSUnitType type) const { return value<int>(type); }
int intValue() const { return value<int>(); }
WEBCORE_EXPORT String stringValue() const;
const CSSCalcValue* cssCalcValue() const { return isCalculated() ? m_value.calc : nullptr; }
String customCSSText() const;
bool equals(const CSSPrimitiveValue&) const;
static std::optional<double> conversionToCanonicalUnitsScaleFactor(CSSUnitType);
static ASCIILiteral unitTypeString(CSSUnitType);
static double computeUnzoomedNonCalcLengthDouble(CSSUnitType, double value, CSSPropertyID, const FontMetrics* = nullptr, const FontCascadeDescription* = nullptr, const FontCascadeDescription* rootFontDescription = nullptr, const RenderView* = nullptr);
static double computeNonCalcLengthDouble(const CSSToLengthConversionData&, CSSUnitType, double value);
// True if computeNonCalcLengthDouble would produce identical results when resolved against both these styles.
static bool equalForLengthResolution(const RenderStyle&, const RenderStyle&);
void collectComputedStyleDependencies(ComputedStyleDependencies&) const;
private:
friend class CSSValuePool;
friend class StaticCSSValuePool;
friend LazyNeverDestroyed<CSSPrimitiveValue>;
explicit CSSPrimitiveValue(CSSPropertyID);
explicit CSSPrimitiveValue(Color);
explicit CSSPrimitiveValue(const Length&);
CSSPrimitiveValue(const Length&, const RenderStyle&);
CSSPrimitiveValue(const String&, CSSUnitType);
CSSPrimitiveValue(double, CSSUnitType);
explicit CSSPrimitiveValue(Ref<CSSCalcValue>);
explicit CSSPrimitiveValue(CSSUnresolvedColor);
CSSPrimitiveValue(StaticCSSValueTag, CSSValueID);
CSSPrimitiveValue(StaticCSSValueTag, Color);
CSSPrimitiveValue(StaticCSSValueTag, double, CSSUnitType);
enum ImplicitInitialValueTag { ImplicitInitialValue };
CSSPrimitiveValue(StaticCSSValueTag, ImplicitInitialValueTag);
CSSUnitType primitiveUnitType() const { return static_cast<CSSUnitType>(m_primitiveUnitType); }
void setPrimitiveUnitType(CSSUnitType type) { m_primitiveUnitType = static_cast<unsigned>(type); }
std::optional<double> doubleValueInternal(CSSUnitType targetUnitType) const;
double computeLengthDouble(const CSSToLengthConversionData&) const;
ALWAYS_INLINE String serializeInternal() const;
NEVER_INLINE String formatNumberValue(ASCIILiteral suffix) const;
NEVER_INLINE String formatIntegerValue(ASCIILiteral suffix) const;
static constexpr bool isFontIndependentLength(CSSUnitType);
static constexpr bool isFontRelativeLength(CSSUnitType);
static constexpr bool isViewportPercentageLength(CSSUnitType);
union {
CSSPropertyID propertyID;
CSSValueID valueID;
double number;
StringImpl* string;
uint64_t colorAsInteger;
const CSSUnresolvedColor* unresolvedColor;
const CSSCalcValue* calc;
} m_value;
};
template<typename TargetType> constexpr TargetType fromCSSValueID(CSSValueID);
constexpr bool CSSPrimitiveValue::isFontIndependentLength(CSSUnitType type)
{
return type == CSSUnitType::CSS_PX
|| type == CSSUnitType::CSS_CM
|| type == CSSUnitType::CSS_MM
|| type == CSSUnitType::CSS_IN
|| type == CSSUnitType::CSS_PT
|| type == CSSUnitType::CSS_PC;
}
constexpr bool CSSPrimitiveValue::isFontRelativeLength(CSSUnitType type)
{
return type == CSSUnitType::CSS_EMS
|| type == CSSUnitType::CSS_EXS
|| type == CSSUnitType::CSS_LHS
|| type == CSSUnitType::CSS_RLHS
|| type == CSSUnitType::CSS_REMS
|| type == CSSUnitType::CSS_CHS
|| type == CSSUnitType::CSS_IC
|| type == CSSUnitType::CSS_QUIRKY_EMS;
}
constexpr bool CSSPrimitiveValue::isLength(CSSUnitType type)
{
return type == CSSUnitType::CSS_EMS
|| type == CSSUnitType::CSS_EXS
|| type == CSSUnitType::CSS_PX
|| type == CSSUnitType::CSS_CM
|| type == CSSUnitType::CSS_MM
|| type == CSSUnitType::CSS_IN
|| type == CSSUnitType::CSS_PT
|| type == CSSUnitType::CSS_PC
|| type == CSSUnitType::CSS_REMS
|| type == CSSUnitType::CSS_CHS
|| type == CSSUnitType::CSS_IC
|| type == CSSUnitType::CSS_Q
|| type == CSSUnitType::CSS_LHS
|| type == CSSUnitType::CSS_RLHS
|| type == CSSUnitType::CSS_CQW
|| type == CSSUnitType::CSS_CQH
|| type == CSSUnitType::CSS_CQI
|| type == CSSUnitType::CSS_CQB
|| type == CSSUnitType::CSS_CQMIN
|| type == CSSUnitType::CSS_CQMAX
|| isViewportPercentageLength(type)
|| type == CSSUnitType::CSS_QUIRKY_EMS;
}
constexpr bool CSSPrimitiveValue::isViewportPercentageLength(CSSUnitType type)
{
return type >= CSSUnitType::FirstViewportCSSUnitType && type <= CSSUnitType::LastViewporCSSUnitType;
}
template<typename T, CSSPrimitiveValue::TimeUnit timeUnit> inline T CSSPrimitiveValue::computeTime() const
{
if (timeUnit == Seconds && primitiveType() == CSSUnitType::CSS_S)
return value<T>();
if (timeUnit == Seconds && primitiveType() == CSSUnitType::CSS_MS)
return value<T>() / 1000;
if (timeUnit == Milliseconds && primitiveType() == CSSUnitType::CSS_MS)
return value<T>();
if (timeUnit == Milliseconds && primitiveType() == CSSUnitType::CSS_S)
return value<T>() * 1000;
ASSERT_NOT_REACHED();
return 0;
}
inline double CSSPrimitiveValue::computeDegrees(CSSUnitType type, double angle)
{
switch (type) {
case CSSUnitType::CSS_DEG:
return angle;
case CSSUnitType::CSS_RAD:
return rad2deg(angle);
case CSSUnitType::CSS_GRAD:
return grad2deg(angle);
case CSSUnitType::CSS_TURN:
return turn2deg(angle);
default:
ASSERT_NOT_REACHED();
return 0;
}
}
inline CSSValueID valueID(const CSSPrimitiveValue& value)
{
return value.valueID();
}
inline CSSValueID valueID(const CSSPrimitiveValue* value)
{
return value ? valueID(*value) : CSSValueInvalid;
}
inline CSSValueID valueID(const CSSValue& value)
{
return value.isPrimitiveValue() ? valueID(downcast<CSSPrimitiveValue>(value)) : CSSValueInvalid;
}
inline CSSValueID valueID(const CSSValue* value)
{
return value ? valueID(*value) : CSSValueInvalid;
}
inline bool isValueID(const CSSPrimitiveValue& value, CSSValueID id)
{
return valueID(value) == id;
}
inline bool isValueID(const CSSPrimitiveValue* value, CSSValueID id)
{
return valueID(value) == id;
}
inline bool isValueID(const RefPtr<CSSPrimitiveValue>& value, CSSValueID id)
{
return valueID(value.get()) == id;
}
inline bool isValueID(const Ref<CSSPrimitiveValue>& value, CSSValueID id)
{
return valueID(value.get()) == id;
}
inline bool isValueID(const CSSValue& value, CSSValueID id)
{
return valueID(value) == id;
}
inline bool isValueID(const CSSValue* value, CSSValueID id)
{
return valueID(value) == id;
}
inline bool isValueID(const RefPtr<CSSValue>& value, CSSValueID id)
{
return isValueID(value.get(), id);
}
inline bool isValueID(const Ref<CSSValue>& value, CSSValueID id)
{
return isValueID(value.get(), id);
}
inline bool CSSValue::isValueID() const
{
auto* value = dynamicDowncast<CSSPrimitiveValue>(*this);
return value && value->isValueID();
}
inline CSSValueID CSSValue::valueID() const
{
auto* value = dynamicDowncast<CSSPrimitiveValue>(*this);
return value ? value->valueID() : CSSValueInvalid;
}
inline bool CSSValue::isColor() const
{
auto* value = dynamicDowncast<CSSPrimitiveValue>(*this);
return value && value->isColor();
}
inline const Color& CSSValue::color() const
{
return downcast<CSSPrimitiveValue>(*this).color();
}
inline bool CSSValue::isCustomIdent() const
{
auto* value = dynamicDowncast<CSSPrimitiveValue>(*this);
return value && value->isCustomIdent();
}
inline String CSSValue::customIdent() const
{
ASSERT(isCustomIdent());
return downcast<CSSPrimitiveValue>(*this).stringValue();
}
inline bool CSSValue::isInteger() const
{
auto* value = dynamicDowncast<CSSPrimitiveValue>(*this);
return value && value->isInteger();
}
inline int CSSValue::integer() const
{
ASSERT(isInteger());
return downcast<CSSPrimitiveValue>(*this).intValue();
}
} // namespace WebCore
SPECIALIZE_TYPE_TRAITS_CSS_VALUE(CSSPrimitiveValue, isPrimitiveValue())
|