blob: 1072cfac439f5b23d289bd378cd37e8c59592772 [file] [log] [blame]
/*
* Copyright (C) 2014 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * 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.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "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
* OWNER OR CONTRIBUTORS 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 "core/svg/SVGLengthTearOff.h"
#include "bindings/core/v8/ExceptionState.h"
#include "core/dom/ExceptionCode.h"
#include "core/svg/SVGElement.h"
namespace blink {
namespace {
inline bool isValidLengthUnit(CSSPrimitiveValue::UnitType unit) {
return unit == CSSPrimitiveValue::UnitType::Number ||
unit == CSSPrimitiveValue::UnitType::Percentage ||
unit == CSSPrimitiveValue::UnitType::Ems ||
unit == CSSPrimitiveValue::UnitType::Exs ||
unit == CSSPrimitiveValue::UnitType::Pixels ||
unit == CSSPrimitiveValue::UnitType::Centimeters ||
unit == CSSPrimitiveValue::UnitType::Millimeters ||
unit == CSSPrimitiveValue::UnitType::Inches ||
unit == CSSPrimitiveValue::UnitType::Points ||
unit == CSSPrimitiveValue::UnitType::Picas;
}
inline bool isValidLengthUnit(unsigned short type) {
return isValidLengthUnit(static_cast<CSSPrimitiveValue::UnitType>(type));
}
inline bool canResolveRelativeUnits(const SVGElement* contextElement) {
return contextElement && contextElement->isConnected();
}
inline CSSPrimitiveValue::UnitType toCSSUnitType(unsigned short type) {
ASSERT(isValidLengthUnit(type));
if (type == SVGLengthTearOff::kSvgLengthtypeNumber)
return CSSPrimitiveValue::UnitType::UserUnits;
return static_cast<CSSPrimitiveValue::UnitType>(type);
}
inline unsigned short toInterfaceConstant(CSSPrimitiveValue::UnitType type) {
switch (type) {
case CSSPrimitiveValue::UnitType::Unknown:
return SVGLengthTearOff::kSvgLengthtypeUnknown;
case CSSPrimitiveValue::UnitType::UserUnits:
return SVGLengthTearOff::kSvgLengthtypeNumber;
case CSSPrimitiveValue::UnitType::Percentage:
return SVGLengthTearOff::kSvgLengthtypePercentage;
case CSSPrimitiveValue::UnitType::Ems:
return SVGLengthTearOff::kSvgLengthtypeEms;
case CSSPrimitiveValue::UnitType::Exs:
return SVGLengthTearOff::kSvgLengthtypeExs;
case CSSPrimitiveValue::UnitType::Pixels:
return SVGLengthTearOff::kSvgLengthtypePx;
case CSSPrimitiveValue::UnitType::Centimeters:
return SVGLengthTearOff::kSvgLengthtypeCm;
case CSSPrimitiveValue::UnitType::Millimeters:
return SVGLengthTearOff::kSvgLengthtypeMm;
case CSSPrimitiveValue::UnitType::Inches:
return SVGLengthTearOff::kSvgLengthtypeIn;
case CSSPrimitiveValue::UnitType::Points:
return SVGLengthTearOff::kSvgLengthtypePt;
case CSSPrimitiveValue::UnitType::Picas:
return SVGLengthTearOff::kSvgLengthtypePc;
default:
return SVGLengthTearOff::kSvgLengthtypeUnknown;
}
}
} // namespace
bool SVGLengthTearOff::hasExposedLengthUnit() {
if (target()->isCalculated())
return false;
CSSPrimitiveValue::UnitType unit = target()->typeWithCalcResolved();
return isValidLengthUnit(unit) ||
unit == CSSPrimitiveValue::UnitType::Unknown ||
unit == CSSPrimitiveValue::UnitType::UserUnits;
}
unsigned short SVGLengthTearOff::unitType() {
return hasExposedLengthUnit()
? toInterfaceConstant(target()->typeWithCalcResolved())
: kSvgLengthtypeUnknown;
}
SVGLengthMode SVGLengthTearOff::unitMode() {
return target()->unitMode();
}
float SVGLengthTearOff::value(ExceptionState& exceptionState) {
if (target()->isRelative() && !canResolveRelativeUnits(contextElement())) {
exceptionState.throwDOMException(NotSupportedError,
"Could not resolve relative length.");
return 0;
}
SVGLengthContext lengthContext(contextElement());
return target()->value(lengthContext);
}
void SVGLengthTearOff::setValue(float value, ExceptionState& exceptionState) {
if (isImmutable()) {
throwReadOnly(exceptionState);
return;
}
if (target()->isRelative() && !canResolveRelativeUnits(contextElement())) {
exceptionState.throwDOMException(NotSupportedError,
"Could not resolve relative length.");
return;
}
SVGLengthContext lengthContext(contextElement());
if (target()->isCalculated())
target()->setValueAsNumber(value);
else
target()->setValue(value, lengthContext);
commitChange();
}
float SVGLengthTearOff::valueInSpecifiedUnits() {
if (target()->isCalculated())
return 0;
return target()->valueInSpecifiedUnits();
}
void SVGLengthTearOff::setValueInSpecifiedUnits(
float value,
ExceptionState& exceptionState) {
if (isImmutable()) {
throwReadOnly(exceptionState);
return;
}
if (target()->isCalculated())
target()->setValueAsNumber(value);
else
target()->setValueInSpecifiedUnits(value);
commitChange();
}
String SVGLengthTearOff::valueAsString() {
// TODO(shanmuga.m@samsung.com): Not all <length> properties have 0 (with no
// unit) as the default (lacuna) value. We need to return default value
// instead of 0.
return hasExposedLengthUnit() ? target()->valueAsString() : String::number(0);
}
void SVGLengthTearOff::setValueAsString(const String& str,
ExceptionState& exceptionState) {
if (isImmutable()) {
throwReadOnly(exceptionState);
return;
}
String oldValue = target()->valueAsString();
SVGParsingError status = target()->setValueAsString(str);
if (status == SVGParseStatus::NoError && !hasExposedLengthUnit()) {
target()->setValueAsString(oldValue); // rollback to old value
status = SVGParseStatus::ParsingFailed;
}
if (status != SVGParseStatus::NoError) {
exceptionState.throwDOMException(
SyntaxError, "The value provided ('" + str + "') is invalid.");
return;
}
commitChange();
}
void SVGLengthTearOff::newValueSpecifiedUnits(unsigned short unitType,
float valueInSpecifiedUnits,
ExceptionState& exceptionState) {
if (isImmutable()) {
throwReadOnly(exceptionState);
return;
}
if (!isValidLengthUnit(unitType)) {
exceptionState.throwDOMException(
NotSupportedError, "Cannot set value with unknown or invalid units (" +
String::number(unitType) + ").");
return;
}
target()->newValueSpecifiedUnits(toCSSUnitType(unitType),
valueInSpecifiedUnits);
commitChange();
}
void SVGLengthTearOff::convertToSpecifiedUnits(unsigned short unitType,
ExceptionState& exceptionState) {
if (isImmutable()) {
throwReadOnly(exceptionState);
return;
}
if (!isValidLengthUnit(unitType)) {
exceptionState.throwDOMException(
NotSupportedError, "Cannot convert to unknown or invalid units (" +
String::number(unitType) + ").");
return;
}
if ((target()->isRelative() ||
CSSPrimitiveValue::isRelativeUnit(toCSSUnitType(unitType))) &&
!canResolveRelativeUnits(contextElement())) {
exceptionState.throwDOMException(NotSupportedError,
"Could not resolve relative length.");
return;
}
SVGLengthContext lengthContext(contextElement());
target()->convertToSpecifiedUnits(toCSSUnitType(unitType), lengthContext);
commitChange();
}
SVGLengthTearOff::SVGLengthTearOff(SVGLength* target,
SVGElement* contextElement,
PropertyIsAnimValType propertyIsAnimVal,
const QualifiedName& attributeName)
: SVGPropertyTearOff<SVGLength>(target,
contextElement,
propertyIsAnimVal,
attributeName) {}
DEFINE_TRACE_WRAPPERS(SVGLengthTearOff) {
visitor->traceWrappers(contextElement());
}
} // namespace blink