2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-12-23 08:54:20 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "SVGPreserveAspectRatio.h"
|
2017-04-10 17:58:30 +03:00
|
|
|
|
2012-12-23 08:54:20 +04:00
|
|
|
#include "mozilla/dom/SVGPreserveAspectRatioBinding.h"
|
2018-03-18 10:14:32 +03:00
|
|
|
#include "nsContentUtils.h"
|
2017-04-10 17:58:30 +03:00
|
|
|
#include "nsWhitespaceTokenizer.h"
|
|
|
|
#include "SVGAnimatedPreserveAspectRatio.h"
|
2012-12-23 08:54:20 +04:00
|
|
|
|
2019-09-21 17:38:56 +03:00
|
|
|
using namespace mozilla::dom;
|
|
|
|
using namespace mozilla::dom::SVGPreserveAspectRatio_Binding;
|
|
|
|
|
|
|
|
namespace mozilla {
|
2012-12-23 08:54:20 +04:00
|
|
|
|
2012-12-23 08:54:22 +04:00
|
|
|
NS_SVG_VAL_IMPL_CYCLE_COLLECTION_WRAPPERCACHED(DOMSVGPreserveAspectRatio,
|
|
|
|
mSVGElement)
|
2012-12-23 08:54:20 +04:00
|
|
|
|
2020-08-08 01:50:28 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_ROOT_NATIVE(DOMSVGPreserveAspectRatio, AddRef)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNROOT_NATIVE(DOMSVGPreserveAspectRatio, Release)
|
2012-12-23 08:54:20 +04:00
|
|
|
|
2017-04-10 17:58:30 +03:00
|
|
|
static const char* sAlignStrings[] = {
|
|
|
|
"none", "xMinYMin", "xMidYMin", "xMaxYMin", "xMinYMid",
|
|
|
|
"xMidYMid", "xMaxYMid", "xMinYMax", "xMidYMax", "xMaxYMax"};
|
|
|
|
|
|
|
|
static const char* sMeetOrSliceStrings[] = {"meet", "slice"};
|
|
|
|
|
|
|
|
static uint16_t GetAlignForString(const nsAString& aAlignString) {
|
|
|
|
for (uint32_t i = 0; i < ArrayLength(sAlignStrings); i++) {
|
|
|
|
if (aAlignString.EqualsASCII(sAlignStrings[i])) {
|
|
|
|
return (i + SVG_ALIGN_MIN_VALID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SVG_PRESERVEASPECTRATIO_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint16_t GetMeetOrSliceForString(const nsAString& aMeetOrSlice) {
|
|
|
|
for (uint32_t i = 0; i < ArrayLength(sMeetOrSliceStrings); i++) {
|
|
|
|
if (aMeetOrSlice.EqualsASCII(sMeetOrSliceStrings[i])) {
|
|
|
|
return (i + SVG_MEETORSLICE_MIN_VALID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SVG_MEETORSLICE_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
2019-02-26 01:05:29 +03:00
|
|
|
/* static */
|
|
|
|
nsresult SVGPreserveAspectRatio::FromString(const nsAString& aString,
|
|
|
|
SVGPreserveAspectRatio* aValue) {
|
2018-03-18 10:14:32 +03:00
|
|
|
nsWhitespaceTokenizerTemplate<nsContentUtils::IsHTMLWhitespace> tokenizer(
|
|
|
|
aString);
|
2017-04-10 17:58:30 +03:00
|
|
|
if (tokenizer.whitespaceBeforeFirstToken() || !tokenizer.hasMoreTokens()) {
|
|
|
|
return NS_ERROR_DOM_SYNTAX_ERR;
|
|
|
|
}
|
|
|
|
const nsAString& token = tokenizer.nextToken();
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
SVGPreserveAspectRatio val;
|
|
|
|
|
|
|
|
rv = val.SetAlign(GetAlignForString(token));
|
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return NS_ERROR_DOM_SYNTAX_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tokenizer.hasMoreTokens()) {
|
|
|
|
rv = val.SetMeetOrSlice(GetMeetOrSliceForString(tokenizer.nextToken()));
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return NS_ERROR_DOM_SYNTAX_ERR;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
val.SetMeetOrSlice(SVG_MEETORSLICE_MEET);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tokenizer.whitespaceAfterCurrentToken()) {
|
|
|
|
return NS_ERROR_DOM_SYNTAX_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aValue = val;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SVGPreserveAspectRatio::ToString(nsAString& aValueAsString) const {
|
|
|
|
MOZ_ASSERT(mAlign >= SVG_ALIGN_MIN_VALID && mAlign <= SVG_ALIGN_MAX_VALID,
|
|
|
|
"Unknown align");
|
|
|
|
aValueAsString.AssignASCII(sAlignStrings[mAlign - SVG_ALIGN_MIN_VALID]);
|
|
|
|
|
|
|
|
if (mAlign != uint8_t(SVG_PRESERVEASPECTRATIO_NONE)) {
|
|
|
|
MOZ_ASSERT(mMeetOrSlice >= SVG_MEETORSLICE_MIN_VALID &&
|
|
|
|
mMeetOrSlice <= SVG_MEETORSLICE_MAX_VALID,
|
|
|
|
"Unknown meetOrSlice");
|
|
|
|
aValueAsString.Append(' ');
|
|
|
|
aValueAsString.AppendASCII(
|
|
|
|
sMeetOrSliceStrings[mMeetOrSlice - SVG_MEETORSLICE_MIN_VALID]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-23 08:54:20 +04:00
|
|
|
bool SVGPreserveAspectRatio::operator==(
|
|
|
|
const SVGPreserveAspectRatio& aOther) const {
|
2016-07-01 03:28:56 +03:00
|
|
|
return mAlign == aOther.mAlign && mMeetOrSlice == aOther.mMeetOrSlice;
|
2012-12-23 08:54:20 +04:00
|
|
|
}
|
|
|
|
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
JSObject* DOMSVGPreserveAspectRatio::WrapObject(
|
|
|
|
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return mozilla::dom::SVGPreserveAspectRatio_Binding::Wrap(aCx, this,
|
|
|
|
aGivenProto);
|
2012-12-23 08:54:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t DOMSVGPreserveAspectRatio::Align() {
|
|
|
|
if (mIsBaseValue) {
|
|
|
|
return mVal->GetBaseValue().GetAlign();
|
|
|
|
}
|
|
|
|
|
|
|
|
mSVGElement->FlushAnimations();
|
|
|
|
return mVal->GetAnimValue().GetAlign();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DOMSVGPreserveAspectRatio::SetAlign(uint16_t aAlign, ErrorResult& rv) {
|
|
|
|
if (!mIsBaseValue) {
|
|
|
|
rv.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
rv = mVal->SetBaseAlign(aAlign, mSVGElement);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t DOMSVGPreserveAspectRatio::MeetOrSlice() {
|
|
|
|
if (mIsBaseValue) {
|
|
|
|
return mVal->GetBaseValue().GetMeetOrSlice();
|
|
|
|
}
|
|
|
|
|
|
|
|
mSVGElement->FlushAnimations();
|
|
|
|
return mVal->GetAnimValue().GetMeetOrSlice();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DOMSVGPreserveAspectRatio::SetMeetOrSlice(uint16_t aMeetOrSlice,
|
|
|
|
ErrorResult& rv) {
|
|
|
|
if (!mIsBaseValue) {
|
|
|
|
rv.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
rv = mVal->SetBaseMeetOrSlice(aMeetOrSlice, mSVGElement);
|
|
|
|
}
|
2019-09-21 17:38:56 +03:00
|
|
|
|
|
|
|
} // namespace mozilla
|