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
|
/*
* Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
*
* 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 THE COPYRIGHT HOLDER “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 THE COPYRIGHT HOLDER BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* 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 "BasicShapeFunctions.h"
#include "BasicShapes.h"
#include "CSSBasicShapes.h"
#include "CSSPrimitiveValueMappings.h"
#include "CSSValuePair.h"
#include "CSSValuePool.h"
#include "CalculationValue.h"
#include "LengthFunctions.h"
#include "RenderStyle.h"
#include "SVGPathByteStream.h"
namespace WebCore {
static Ref<CSSValue> valueForCenterCoordinate(const RenderStyle& style, const BasicShapeCenterCoordinate& center, BoxOrient orientation)
{
if (center.direction() == BasicShapeCenterCoordinate::Direction::TopLeft)
return CSSPrimitiveValue::create(center.length(), style);
CSSValueID keyword = orientation == BoxOrient::Horizontal ? CSSValueRight : CSSValueBottom;
return CSSValuePair::create(CSSPrimitiveValue::create(keyword), CSSPrimitiveValue::create(center.length(), style));
}
static Ref<CSSPrimitiveValue> basicShapeRadiusToCSSValue(const RenderStyle& style, const BasicShapeRadius& radius)
{
switch (radius.type()) {
case BasicShapeRadius::Type::Value:
return CSSPrimitiveValue::create(radius.value(), style);
case BasicShapeRadius::Type::ClosestSide:
return CSSPrimitiveValue::create(CSSValueClosestSide);
case BasicShapeRadius::Type::FarthestSide:
return CSSPrimitiveValue::create(CSSValueFarthestSide);
}
ASSERT_NOT_REACHED();
return CSSPrimitiveValue::create(CSSValueClosestSide);
}
static SVGPathByteStream copySVGPathByteStream(const SVGPathByteStream& source, SVGPathConversion conversion)
{
if (conversion == SVGPathConversion::ForceAbsolute) {
// Only returns the resulting absolute path if the conversion succeeds.
if (auto result = convertSVGPathByteStreamToAbsoluteCoordinates(source))
return *result;
}
return source;
}
Ref<CSSValue> valueForBasicShape(const RenderStyle& style, const BasicShape& basicShape, SVGPathConversion conversion)
{
switch (basicShape.type()) {
case BasicShape::Type::Circle: {
auto& circle = downcast<BasicShapeCircle>(basicShape);
return CSSCircleValue::create(basicShapeRadiusToCSSValue(style, circle.radius()),
valueForCenterCoordinate(style, circle.centerX(), BoxOrient::Horizontal),
valueForCenterCoordinate(style, circle.centerY(), BoxOrient::Vertical));
}
case BasicShape::Type::Ellipse: {
auto& ellipse = downcast<BasicShapeEllipse>(basicShape);
return CSSEllipseValue::create(basicShapeRadiusToCSSValue(style, ellipse.radiusX()),
basicShapeRadiusToCSSValue(style, ellipse.radiusY()),
valueForCenterCoordinate(style, ellipse.centerX(), BoxOrient::Horizontal),
valueForCenterCoordinate(style, ellipse.centerY(), BoxOrient::Vertical));
}
case BasicShape::Type::Polygon: {
auto& polygon = downcast<BasicShapePolygon>(basicShape);
CSSValueListBuilder values;
for (auto& value : polygon.values())
values.append(CSSPrimitiveValue::create(value, style));
return CSSPolygonValue::create(WTFMove(values), polygon.windRule());
}
case BasicShape::Type::Path: {
auto& pathShape = downcast<BasicShapePath>(basicShape);
ASSERT(pathShape.pathData());
return CSSPathValue::create(copySVGPathByteStream(*pathShape.pathData(), conversion), pathShape.windRule());
}
case BasicShape::Type::Inset: {
auto createValue = [&](const Length& length) {
return CSSPrimitiveValue::create(length, style);
};
auto createPair = [&](const LengthSize& size) {
return CSSValuePair::create(createValue(size.width), createValue(size.height));
};
auto& inset = downcast<BasicShapeInset>(basicShape);
return CSSInsetShapeValue::create(createValue(inset.top()), createValue(inset.right()),
createValue(inset.bottom()), createValue(inset.left()),
createPair(inset.topLeftRadius()), createPair(inset.topRightRadius()),
createPair(inset.bottomRightRadius()), createPair(inset.bottomLeftRadius()));
}
}
RELEASE_ASSERT_NOT_REACHED();
}
static Length convertToLength(const CSSToLengthConversionData& conversionData, const CSSValue& value)
{
return downcast<CSSPrimitiveValue>(value).convertToLength<FixedIntegerConversion | FixedFloatConversion | PercentConversion | CalculatedConversion>(conversionData);
}
static LengthSize convertToLengthSize(const CSSToLengthConversionData& conversionData, const CSSValue* value)
{
if (!value)
return { { 0, LengthType::Fixed }, { 0, LengthType::Fixed } };
return { convertToLength(conversionData, value->first()), convertToLength(conversionData, value->second()) };
}
static BasicShapeCenterCoordinate convertToCenterCoordinate(const CSSToLengthConversionData& conversionData, const CSSValue* value)
{
CSSValueID keyword = CSSValueTop;
Length offset { 0, LengthType::Fixed };
if (!value)
keyword = CSSValueCenter;
else if (value->isValueID())
keyword = value->valueID();
else if (value->isPair()) {
keyword = value->first().valueID();
offset = convertToLength(conversionData, value->second());
} else
offset = convertToLength(conversionData, *value);
BasicShapeCenterCoordinate::Direction direction;
switch (keyword) {
case CSSValueTop:
case CSSValueLeft:
direction = BasicShapeCenterCoordinate::Direction::TopLeft;
break;
case CSSValueRight:
case CSSValueBottom:
direction = BasicShapeCenterCoordinate::Direction::BottomRight;
break;
case CSSValueCenter:
direction = BasicShapeCenterCoordinate::Direction::TopLeft;
offset = Length(50, LengthType::Percent);
break;
default:
ASSERT_NOT_REACHED();
direction = BasicShapeCenterCoordinate::Direction::TopLeft;
break;
}
return BasicShapeCenterCoordinate(direction, WTFMove(offset));
}
static BasicShapeRadius cssValueToBasicShapeRadius(const CSSToLengthConversionData& conversionData, const CSSValue* radius)
{
if (!radius)
return BasicShapeRadius(BasicShapeRadius::Type::ClosestSide);
if (radius->isValueID()) {
switch (radius->valueID()) {
case CSSValueClosestSide:
return BasicShapeRadius(BasicShapeRadius::Type::ClosestSide);
case CSSValueFarthestSide:
return BasicShapeRadius(BasicShapeRadius::Type::FarthestSide);
default:
ASSERT_NOT_REACHED();
break;
}
}
return BasicShapeRadius(convertToLength(conversionData, *radius));
}
Ref<BasicShape> basicShapeForValue(const CSSToLengthConversionData& conversionData, const CSSValue& value, float zoom)
{
if (value.isCircle()) {
auto& circleValue = downcast<CSSCircleValue>(value);
auto circle = BasicShapeCircle::create();
circle->setRadius(cssValueToBasicShapeRadius(conversionData, circleValue.radius()));
circle->setCenterX(convertToCenterCoordinate(conversionData, circleValue.centerX()));
circle->setCenterY(convertToCenterCoordinate(conversionData, circleValue.centerY()));
return circle;
}
if (value.isEllipse()) {
auto& ellipseValue = downcast<CSSEllipseValue>(value);
auto ellipse = BasicShapeEllipse::create();
ellipse->setRadiusX(cssValueToBasicShapeRadius(conversionData, ellipseValue.radiusX()));
ellipse->setRadiusY(cssValueToBasicShapeRadius(conversionData, ellipseValue.radiusY()));
ellipse->setCenterX(convertToCenterCoordinate(conversionData, ellipseValue.centerX()));
ellipse->setCenterY(convertToCenterCoordinate(conversionData, ellipseValue.centerY()));
return ellipse;
}
if (value.isPolygon()) {
auto& polygonValue = downcast<CSSPolygonValue>(value);
auto polygon = BasicShapePolygon::create();
polygon->setWindRule(polygonValue.windRule());
for (unsigned i = 0; i < polygonValue.size(); i += 2)
polygon->appendPoint(convertToLength(conversionData, *polygonValue.item(i)), convertToLength(conversionData, *polygonValue.item(i + 1)));
return polygon;
}
if (value.isInsetShape()) {
auto& rectValue = downcast<CSSInsetShapeValue>(value);
auto rect = BasicShapeInset::create();
rect->setTop(convertToLength(conversionData, rectValue.top()));
rect->setRight(convertToLength(conversionData, rectValue.right()));
rect->setBottom(convertToLength(conversionData, rectValue.bottom()));
rect->setLeft(convertToLength(conversionData, rectValue.left()));
rect->setTopLeftRadius(convertToLengthSize(conversionData, rectValue.topLeftRadius()));
rect->setTopRightRadius(convertToLengthSize(conversionData, rectValue.topRightRadius()));
rect->setBottomRightRadius(convertToLengthSize(conversionData, rectValue.bottomRightRadius()));
rect->setBottomLeftRadius(convertToLengthSize(conversionData, rectValue.bottomLeftRadius()));
return rect;
}
if (value.isPath()) {
auto& pathValue = downcast<CSSPathValue>(value);
auto path = BasicShapePath::create(pathValue.pathData().copy());
path->setWindRule(pathValue.windRule());
path->setZoom(zoom);
return path;
}
RELEASE_ASSERT_NOT_REACHED();
}
float floatValueForCenterCoordinate(const BasicShapeCenterCoordinate& center, float boxDimension)
{
float offset = floatValueForLength(center.length(), boxDimension);
if (center.direction() == BasicShapeCenterCoordinate::Direction::TopLeft)
return offset;
return boxDimension - offset;
}
}
|