/* * (C) 1999-2003 Lars Knoll (knoll@kde.org) * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. * Copyright (C) 2007 Alexey Proskuryakov * * 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. */ #ifndef CSSPrimitiveValue_h #define CSSPrimitiveValue_h #include "CSSPropertyNames.h" #include "CSSValue.h" #include "CSSValueKeywords.h" #include "Color.h" #include "LayoutUnit.h" #include #include #include #include namespace WebCore { class CSSCalcValue; class CSSToLengthConversionData; class Counter; class DashboardRegion; class Pair; class Quad; class RGBColor; class Rect; class RenderStyle; class CSSBasicShape; struct CSSParserValue; #if ENABLE(CSS_SCROLL_SNAP) class LengthRepeat; #endif struct CSSFontFamily; struct Length; struct LengthSize; // 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 inline T roundForImpreciseConversion(double value) { value += (value < 0) ? -0.01 : +0.01; return ((value > std::numeric_limits::max()) || (value < std::numeric_limits::min())) ? 0 : static_cast(value); } template<> inline float roundForImpreciseConversion(double value) { double ceiledValue = ceil(value); double proximityToNextInt = ceiledValue - value; if (proximityToNextInt <= 0.01 && value > 0) return static_cast(ceiledValue); if (proximityToNextInt >= 0.99 && value < 0) return static_cast(floor(value)); return static_cast(value); } class CSSPrimitiveValue : public CSSValue { public: enum UnitTypes { CSS_UNKNOWN = 0, CSS_NUMBER = 1, CSS_PERCENTAGE = 2, CSS_EMS = 3, CSS_EXS = 4, CSS_PX = 5, CSS_CM = 6, CSS_MM = 7, CSS_IN = 8, CSS_PT = 9, CSS_PC = 10, CSS_DEG = 11, CSS_RAD = 12, CSS_GRAD = 13, CSS_MS = 14, CSS_S = 15, CSS_HZ = 16, CSS_KHZ = 17, CSS_DIMENSION = 18, CSS_STRING = 19, CSS_URI = 20, CSS_IDENT = 21, CSS_ATTR = 22, CSS_COUNTER = 23, CSS_RECT = 24, CSS_RGBCOLOR = 25, // From CSS Values and Units. Viewport-percentage Lengths (vw/vh/vmin/vmax). CSS_VW = 26, CSS_VH = 27, CSS_VMIN = 28, CSS_VMAX = 29, CSS_DPPX = 30, CSS_DPI = 31, CSS_DPCM = 32, CSS_FR = 33, #if ENABLE(CSS_SCROLL_SNAP) CSS_LENGTH_REPEAT = 34, #endif CSS_PAIR = 100, // We envision this being exposed as a means of getting computed style values for pairs (border-spacing/radius, background-position, etc.) #if ENABLE(DASHBOARD_SUPPORT) CSS_DASHBOARD_REGION = 101, // FIXME: Dashboard region should not be a primitive value. #endif CSS_UNICODE_RANGE = 102, // These next types are just used internally to allow us to translate back and forth from CSSPrimitiveValues to CSSParserValues. CSS_PARSER_OPERATOR = 103, CSS_PARSER_INTEGER = 104, CSS_PARSER_HEXCOLOR = 105, // This is used internally for unknown identifiers CSS_PARSER_IDENTIFIER = 106, // These are from CSS3 Values and Units, but that isn't a finished standard yet CSS_TURN = 107, CSS_REMS = 108, CSS_CHS = 109, // This is used internally for counter names (as opposed to counter values) CSS_COUNTER_NAME = 110, // This is used by the CSS Shapes draft CSS_SHAPE = 111, // Used by border images. CSS_QUAD = 112, CSS_CALC = 113, CSS_CALC_PERCENTAGE_WITH_NUMBER = 114, CSS_CALC_PERCENTAGE_WITH_LENGTH = 115, CSS_FONT_FAMILY = 116, CSS_PROPERTY_ID = 117, CSS_VALUE_ID = 118, // More internal parse stuff for CSS variables CSS_PARSER_WHITESPACE = 119 }; // This enum follows the CSSParser::Units enum augmented with UNIT_FREQUENCY for frequencies. enum UnitCategory { UNumber, UPercent, ULength, UAngle, UTime, UFrequency, #if ENABLE(CSS_IMAGE_RESOLUTION) || ENABLE(RESOLUTION_MEDIA_QUERY) UResolution, #endif UOther }; static UnitCategory unitCategory(CSSPrimitiveValue::UnitTypes); bool isAngle() const { return m_primitiveUnitType == CSS_DEG || m_primitiveUnitType == CSS_RAD || m_primitiveUnitType == CSS_GRAD || m_primitiveUnitType == CSS_TURN; } bool isAttr() const { return m_primitiveUnitType == CSS_ATTR; } bool isCounter() const { return m_primitiveUnitType == CSS_COUNTER; } bool isFontIndependentLength() const { return m_primitiveUnitType >= CSS_PX && m_primitiveUnitType <= CSS_PC; } static bool isFontRelativeLength(unsigned primitiveUnitType) { return primitiveUnitType == CSS_EMS || primitiveUnitType == CSS_EXS || primitiveUnitType == CSS_REMS || primitiveUnitType == CSS_CHS; } bool isFontRelativeLength() const { return isFontRelativeLength(m_primitiveUnitType); } static bool isViewportPercentageLength(unsigned short type) { return type >= CSS_VW && type <= CSS_VMAX; } bool isViewportPercentageLength() const { return isViewportPercentageLength(m_primitiveUnitType); } static bool isLength(unsigned short type) { return (type >= CSS_EMS && type <= CSS_PC) || type == CSS_REMS || type == CSS_CHS || isViewportPercentageLength(type); } bool isLength() const { return isLength(primitiveType()); } bool isNumber() const { return primitiveType() == CSS_NUMBER; } bool isPercentage() const { return primitiveType() == CSS_PERCENTAGE; } bool isPx() const { return primitiveType() == CSS_PX; } bool isRect() const { return m_primitiveUnitType == CSS_RECT; } #if ENABLE(CSS_SCROLL_SNAP) bool isLengthRepeat() const { return m_primitiveUnitType == CSS_LENGTH_REPEAT; } #endif bool isPair() const { return m_primitiveUnitType == CSS_PAIR; } bool isPropertyID() const { return m_primitiveUnitType == CSS_PROPERTY_ID; } bool isRGBColor() const { return m_primitiveUnitType == CSS_RGBCOLOR; } bool isShape() const { return m_primitiveUnitType == CSS_SHAPE; } bool isString() const { return m_primitiveUnitType == CSS_STRING; } bool isFontFamily() const { return m_primitiveUnitType == CSS_FONT_FAMILY; } bool isTime() const { return m_primitiveUnitType == CSS_S || m_primitiveUnitType == CSS_MS; } bool isURI() const { return m_primitiveUnitType == CSS_URI; } bool isCalculated() const { return m_primitiveUnitType == CSS_CALC; } bool isCalculatedPercentageWithNumber() const { return primitiveType() == CSS_CALC_PERCENTAGE_WITH_NUMBER; } bool isCalculatedPercentageWithLength() const { return primitiveType() == CSS_CALC_PERCENTAGE_WITH_LENGTH; } bool isDotsPerInch() const { return primitiveType() == CSS_DPI; } bool isDotsPerPixel() const { return primitiveType() == CSS_DPPX; } bool isDotsPerCentimeter() const { return primitiveType() == CSS_DPCM; } static bool isResolution(unsigned short type) { return type >= CSS_DPPX && type <= CSS_DPCM; } bool isResolution() const { return isResolution(primitiveType()); } bool isViewportPercentageWidth() const { return m_primitiveUnitType == CSS_VW; } bool isViewportPercentageHeight() const { return m_primitiveUnitType == CSS_VH; } bool isViewportPercentageMax() const { return m_primitiveUnitType == CSS_VMAX; } bool isViewportPercentageMin() const { return m_primitiveUnitType == CSS_VMIN; } bool isValueID() const { return m_primitiveUnitType == CSS_VALUE_ID; } bool isFlex() const { return primitiveType() == CSS_FR; } bool isParserOperator() const { return primitiveType() == CSS_PARSER_OPERATOR; } int parserOperator() const { return isParserOperator() ? m_value.parserOperator : 0; } static Ref createIdentifier(CSSValueID valueID) { return adoptRef(*new CSSPrimitiveValue(valueID)); } static Ref createIdentifier(CSSPropertyID propertyID) { return adoptRef(*new CSSPrimitiveValue(propertyID)); } static Ref createParserOperator(int parserOperator) { return adoptRef(*new CSSPrimitiveValue(parserOperator)); } static Ref createColor(unsigned rgbValue) { return adoptRef(*new CSSPrimitiveValue(rgbValue)); } static Ref create(double value, UnitTypes type) { return adoptRef(*new CSSPrimitiveValue(value, type)); } static Ref create(const String& value, UnitTypes type) { return adoptRef(*new CSSPrimitiveValue(value, type)); } static Ref create(const Length& value, const RenderStyle& style) { return adoptRef(*new CSSPrimitiveValue(value, style)); } static Ref create(const LengthSize& value, const RenderStyle& style) { return adoptRef(*new CSSPrimitiveValue(value, style)); } template static Ref create(T&& value) { return adoptRef(*new CSSPrimitiveValue(std::forward(value))); } // This value is used to handle quirky margins in reflow roots (body, td, and th) like WinIE. // The basic idea is that a stylesheet can use the value __qem (for quirky em) instead of em. // When the quirky value is used, if you're in quirks mode, the margin will collapse away // inside a table cell. static Ref createAllowingMarginQuirk(double value, UnitTypes type) { CSSPrimitiveValue* quirkValue = new CSSPrimitiveValue(value, type); quirkValue->m_isQuirkValue = true; return adoptRef(*quirkValue); } ~CSSPrimitiveValue(); void cleanup(); unsigned short primitiveType() const; double computeDegrees() const; bool buildParserValue(CSSParserValue*) const; enum TimeUnit { Seconds, Milliseconds }; template T computeTime() const { if (timeUnit == Seconds && primitiveType() == CSS_S) return getValue(); if (timeUnit == Seconds && primitiveType() == CSS_MS) return getValue() / 1000; if (timeUnit == Milliseconds && primitiveType() == CSS_MS) return getValue(); if (timeUnit == Milliseconds && primitiveType() == CSS_S) return getValue() * 1000; ASSERT_NOT_REACHED(); return 0; } /* * computes a length in pixels out of the given CSSValue. Need the RenderStyle to get * the fontinfo in case val is defined in em or ex. * * The metrics have to be a bit different for screen and printer output. * For screen output we assume 1 inch == 72 px, for printer we assume 300 dpi * * this is screen/printer dependent, so we probably need a config option for this, * and some tool to calibrate. */ template T computeLength(const CSSToLengthConversionData&) const; // Converts to a Length, mapping various unit types appropriately. template Length convertToLength(const CSSToLengthConversionData&) const; bool convertingToLengthRequiresNonNullStyle(int lengthConversion) const; // use with care!!! void setPrimitiveType(unsigned short type) { m_primitiveUnitType = type; } double getDoubleValue(unsigned short unitType, ExceptionCode&) const; double getDoubleValue(unsigned short unitType) const; double getDoubleValue() const; void setFloatValue(unsigned short unitType, double floatValue, ExceptionCode&); float getFloatValue(unsigned short unitType, ExceptionCode& ec) const { return getValue(unitType, ec); } float getFloatValue(unsigned short unitType) const { return getValue(unitType); } float getFloatValue() const { return getValue(); } int getIntValue(unsigned short unitType, ExceptionCode& ec) const { return getValue(unitType, ec); } int getIntValue(unsigned short unitType) const { return getValue(unitType); } int getIntValue() const { return getValue(); } template inline T getValue(unsigned short unitType, ExceptionCode& ec) const { return clampTo(getDoubleValue(unitType, ec)); } template inline T getValue(unsigned short unitType) const { return clampTo(getDoubleValue(unitType)); } template inline T getValue() const { return clampTo(getDoubleValue()); } void setStringValue(unsigned short stringType, const String& stringValue, ExceptionCode&); String getStringValue(ExceptionCode&) const; String getStringValue() const; Counter* getCounterValue(ExceptionCode&) const; Counter* getCounterValue() const { return m_primitiveUnitType != CSS_COUNTER ? 0 : m_value.counter; } Rect* getRectValue(ExceptionCode&) const; Rect* getRectValue() const { return m_primitiveUnitType != CSS_RECT ? 0 : m_value.rect; } Quad* getQuadValue(ExceptionCode&) const; Quad* getQuadValue() const { return m_primitiveUnitType != CSS_QUAD ? 0 : m_value.quad; } #if ENABLE(CSS_SCROLL_SNAP) LengthRepeat* getLengthRepeatValue(ExceptionCode&) const; LengthRepeat* getLengthRepeatValue() const { return m_primitiveUnitType != CSS_LENGTH_REPEAT ? 0 : m_value.lengthRepeat; } #endif PassRefPtr getRGBColorValue(ExceptionCode&) const; RGBA32 getRGBA32Value() const { return m_primitiveUnitType != CSS_RGBCOLOR ? 0 : m_value.rgbcolor; } Pair* getPairValue(ExceptionCode&) const; Pair* getPairValue() const { return m_primitiveUnitType != CSS_PAIR ? nullptr : m_value.pair; } #if ENABLE(DASHBOARD_SUPPORT) DashboardRegion* getDashboardRegionValue() const { return m_primitiveUnitType != CSS_DASHBOARD_REGION ? nullptr : m_value.region; } #endif CSSBasicShape* getShapeValue() const { return m_primitiveUnitType != CSS_SHAPE ? nullptr : m_value.shape; } const CSSFontFamily& fontFamily() const { ASSERT(m_primitiveUnitType == CSS_FONT_FAMILY); return *m_value.fontFamily; } CSSCalcValue* cssCalcValue() const { return m_primitiveUnitType != CSS_CALC ? nullptr : m_value.calc; } CSSPropertyID getPropertyID() const { return m_primitiveUnitType == CSS_PROPERTY_ID ? m_value.propertyID : CSSPropertyInvalid; } CSSValueID getValueID() const { return m_primitiveUnitType == CSS_VALUE_ID ? m_value.valueID : CSSValueInvalid; } template inline operator T() const; // Defined in CSSPrimitiveValueMappings.h String customCSSText() const; bool isQuirkValue() const { return m_isQuirkValue; } void addSubresourceStyleURLs(ListHashSet&, const StyleSheetContents*) const; RefPtr cloneForCSSOM() const; void setCSSOMSafe() { m_isCSSOMSafe = true; } bool equals(const CSSPrimitiveValue&) const; static UnitTypes canonicalUnitTypeForCategory(UnitCategory); static double conversionToCanonicalUnitsScaleFactor(unsigned short unitType); static double computeNonCalcLengthDouble(const CSSToLengthConversionData&, unsigned short primitiveType, double value); #if COMPILER(MSVC) // FIXME: This should be private, but for some reason MSVC then fails to invoke it from LazyNeverDestroyed::construct. public: #else private: friend class CSSValuePool; friend class LazyNeverDestroyed; #endif CSSPrimitiveValue(CSSValueID); CSSPrimitiveValue(CSSPropertyID); // FIXME: int vs. unsigned overloading is too subtle to distinguish the color and operator cases. CSSPrimitiveValue(int parserOperator); CSSPrimitiveValue(unsigned color); // RGB value CSSPrimitiveValue(const Length&); CSSPrimitiveValue(const Length&, const RenderStyle&); CSSPrimitiveValue(const LengthSize&, const RenderStyle&); CSSPrimitiveValue(const String&, UnitTypes); CSSPrimitiveValue(double, UnitTypes); template CSSPrimitiveValue(T); // Defined in CSSPrimitiveValueMappings.h template CSSPrimitiveValue(RefPtr&& value) : CSSValue(PrimitiveClass) { init(WTFMove(value)); } template CSSPrimitiveValue(Ref&& value) : CSSValue(PrimitiveClass) { init(WTFMove(value)); } static void create(int); // compile-time guard static void create(unsigned); // compile-time guard template operator T*(); // compile-time guard void init(const Length&); void init(const LengthSize&, const RenderStyle&); void init(Ref&&); void init(Ref&&); void init(Ref&&); void init(Ref&&); #if ENABLE(CSS_SCROLL_SNAP) void init(Ref&&); #endif #if ENABLE(DASHBOARD_SUPPORT) void init(RefPtr&&); // FIXME: Dashboard region should not be a primitive value. #endif void init(Ref&&); void init(RefPtr&&); bool getDoubleValueInternal(UnitTypes targetUnitType, double* result) const; double computeLengthDouble(const CSSToLengthConversionData&) const; ALWAYS_INLINE String formatNumberForCustomCSSText() const; template ALWAYS_INLINE Ref formatNumberValue(const char (&characters)[characterCount]) const; NEVER_INLINE Ref formatNumberValue(const char* suffix, unsigned suffixLength) const; union { CSSPropertyID propertyID; CSSValueID valueID; int parserOperator; double num; StringImpl* string; Counter* counter; Rect* rect; Quad* quad; #if ENABLE(CSS_SCROLL_SNAP) LengthRepeat* lengthRepeat; #endif unsigned rgbcolor; Pair* pair; DashboardRegion* region; CSSBasicShape* shape; CSSCalcValue* calc; const CSSFontFamily* fontFamily; } m_value; }; } // namespace WebCore SPECIALIZE_TYPE_TRAITS_CSS_VALUE(CSSPrimitiveValue, isPrimitiveValue()) #endif // CSSPrimitiveValue_h