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: */
|
2014-03-12 05:11:37 +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/. */
|
|
|
|
|
|
|
|
#ifndef MOZILLA_DOMPOINT_H_
|
|
|
|
#define MOZILLA_DOMPOINT_H_
|
|
|
|
|
2019-06-15 20:26:25 +03:00
|
|
|
#include "js/StructuredClone.h"
|
2014-03-12 05:11:37 +04:00
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "mozilla/dom/BindingDeclarations.h"
|
|
|
|
|
2019-06-25 09:46:20 +03:00
|
|
|
class nsIGlobalObject;
|
|
|
|
|
2014-03-12 05:11:37 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class GlobalObject;
|
2014-06-19 04:57:51 +04:00
|
|
|
struct DOMPointInit;
|
2019-07-06 09:55:53 +03:00
|
|
|
struct DOMMatrixInit;
|
2014-03-12 05:11:37 +04:00
|
|
|
|
|
|
|
class DOMPointReadOnly : public nsWrapperCache {
|
|
|
|
public:
|
2019-06-15 20:26:25 +03:00
|
|
|
explicit DOMPointReadOnly(nsISupports* aParent, double aX = 0.0,
|
|
|
|
double aY = 0.0, double aZ = 0.0, double aW = 1.0)
|
2014-03-12 05:11:37 +04:00
|
|
|
: mParent(aParent), mX(aX), mY(aY), mZ(aZ), mW(aW) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
Bug 1186265 - Partially update DOMPoint, DOMQuad, DOMRect, DOMMatrix. r=bz
Some notes: this does not fully bring us to compliance to the current spec.
Instead, these are the fixes that I needed to make in order to make
css/geometry/interfaces.html pass with the DOMPoint changes in the previous
patches. I don't fully understand why that patch caused the test to fail the
way it did, but it ended up being easier to fix our code than understand why
the harness was falling over.
The DOMQuad::QuadBounds class was the source of some confusion for me. Now
that DOMRectReadOnly is a concrete class with members, I wanted to avoid
wasting them. However, the spec is unclear as to whether a DOMQuad's bound's
should be live -- that is because DOMQuad exposes DOMPoint, we can set its
points after retrieving a QuadBounds object. Our current code is live, setting
the points changes the QuadBounds. Chromium's current behavior is to never
update the QuadBounds object. I've left our behavior untouched in this patch
(and waste 4 doubles per QuadBounds object), but I am intending to file a bug
to understand what the intent of the spec is. I wonder if the author intended
the points to be DOMPointReadOnly instead. If so, we could simplify the
DOMRectReadOnly code and get rid of the virtual getters, which would be nice.
I also wasn't thrilled to put the DOMMatrix setters on the DOMMatrixReadOnly
class, but for brevity and simplicity of implementation, I've made them
public. I briefly considered making the setters protected on the ReadOnly
version of the class, but I'm not convinced that having to explicitly make
them public on the derived class is worth the extra copies of the names.
MozReview-Commit-ID: CjdW4Nbnc6A
--HG--
extra : rebase_source : 44489693afebff571a415b487e29fa6153288421
2018-03-30 02:19:31 +03:00
|
|
|
static already_AddRefed<DOMPointReadOnly> FromPoint(
|
|
|
|
const GlobalObject& aGlobal, const DOMPointInit& aParams);
|
|
|
|
static already_AddRefed<DOMPointReadOnly> Constructor(
|
|
|
|
const GlobalObject& aGlobal, double aX, double aY, double aZ, double aW,
|
|
|
|
ErrorResult& aRV);
|
|
|
|
|
2014-11-01 16:10:59 +03:00
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(DOMPointReadOnly)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(DOMPointReadOnly)
|
|
|
|
|
2014-03-12 05:11:37 +04:00
|
|
|
double X() const { return mX; }
|
|
|
|
double Y() const { return mY; }
|
|
|
|
double Z() const { return mZ; }
|
|
|
|
double W() const { return mW; }
|
|
|
|
|
2019-07-06 09:55:53 +03:00
|
|
|
already_AddRefed<DOMPoint> MatrixTransform(const DOMMatrixInit& aInit,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
Bug 1186265 - Partially update DOMPoint, DOMQuad, DOMRect, DOMMatrix. r=bz
Some notes: this does not fully bring us to compliance to the current spec.
Instead, these are the fixes that I needed to make in order to make
css/geometry/interfaces.html pass with the DOMPoint changes in the previous
patches. I don't fully understand why that patch caused the test to fail the
way it did, but it ended up being easier to fix our code than understand why
the harness was falling over.
The DOMQuad::QuadBounds class was the source of some confusion for me. Now
that DOMRectReadOnly is a concrete class with members, I wanted to avoid
wasting them. However, the spec is unclear as to whether a DOMQuad's bound's
should be live -- that is because DOMQuad exposes DOMPoint, we can set its
points after retrieving a QuadBounds object. Our current code is live, setting
the points changes the QuadBounds. Chromium's current behavior is to never
update the QuadBounds object. I've left our behavior untouched in this patch
(and waste 4 doubles per QuadBounds object), but I am intending to file a bug
to understand what the intent of the spec is. I wonder if the author intended
the points to be DOMPointReadOnly instead. If so, we could simplify the
DOMRectReadOnly code and get rid of the virtual getters, which would be nice.
I also wasn't thrilled to put the DOMMatrix setters on the DOMMatrixReadOnly
class, but for brevity and simplicity of implementation, I've made them
public. I briefly considered making the setters protected on the ReadOnly
version of the class, but I'm not convinced that having to explicitly make
them public on the derived class is worth the extra copies of the names.
MozReview-Commit-ID: CjdW4Nbnc6A
--HG--
extra : rebase_source : 44489693afebff571a415b487e29fa6153288421
2018-03-30 02:19:31 +03:00
|
|
|
nsISupports* GetParentObject() const { return mParent; }
|
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
|
2019-06-25 09:46:20 +03:00
|
|
|
bool WriteStructuredClone(JSContext* aCx,
|
|
|
|
JSStructuredCloneWriter* aWriter) const;
|
2019-06-15 20:26:25 +03:00
|
|
|
|
2019-06-25 09:46:20 +03:00
|
|
|
static already_AddRefed<DOMPointReadOnly> ReadStructuredClone(
|
|
|
|
JSContext* aCx, nsIGlobalObject* aGlobal,
|
|
|
|
JSStructuredCloneReader* aReader);
|
2019-06-15 20:26:25 +03:00
|
|
|
|
2014-03-12 05:11:37 +04:00
|
|
|
protected:
|
2014-11-01 16:10:59 +03:00
|
|
|
virtual ~DOMPointReadOnly() {}
|
|
|
|
|
2019-06-25 09:46:20 +03:00
|
|
|
// Shared implementation of ReadStructuredClone for DOMPoint and
|
|
|
|
// DOMPointReadOnly.
|
|
|
|
bool ReadStructuredClone(JSStructuredCloneReader* aReader);
|
|
|
|
|
2014-03-12 05:11:37 +04:00
|
|
|
nsCOMPtr<nsISupports> mParent;
|
|
|
|
double mX, mY, mZ, mW;
|
|
|
|
};
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class DOMPoint final : public DOMPointReadOnly {
|
2014-03-12 05:11:37 +04:00
|
|
|
public:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit DOMPoint(nsISupports* aParent, double aX = 0.0, double aY = 0.0,
|
|
|
|
double aZ = 0.0, double aW = 1.0)
|
2014-03-12 05:11:37 +04:00
|
|
|
: DOMPointReadOnly(aParent, aX, aY, aZ, aW) {}
|
|
|
|
|
Bug 1186265 - Partially update DOMPoint, DOMQuad, DOMRect, DOMMatrix. r=bz
Some notes: this does not fully bring us to compliance to the current spec.
Instead, these are the fixes that I needed to make in order to make
css/geometry/interfaces.html pass with the DOMPoint changes in the previous
patches. I don't fully understand why that patch caused the test to fail the
way it did, but it ended up being easier to fix our code than understand why
the harness was falling over.
The DOMQuad::QuadBounds class was the source of some confusion for me. Now
that DOMRectReadOnly is a concrete class with members, I wanted to avoid
wasting them. However, the spec is unclear as to whether a DOMQuad's bound's
should be live -- that is because DOMQuad exposes DOMPoint, we can set its
points after retrieving a QuadBounds object. Our current code is live, setting
the points changes the QuadBounds. Chromium's current behavior is to never
update the QuadBounds object. I've left our behavior untouched in this patch
(and waste 4 doubles per QuadBounds object), but I am intending to file a bug
to understand what the intent of the spec is. I wonder if the author intended
the points to be DOMPointReadOnly instead. If so, we could simplify the
DOMRectReadOnly code and get rid of the virtual getters, which would be nice.
I also wasn't thrilled to put the DOMMatrix setters on the DOMMatrixReadOnly
class, but for brevity and simplicity of implementation, I've made them
public. I briefly considered making the setters protected on the ReadOnly
version of the class, but I'm not convinced that having to explicitly make
them public on the derived class is worth the extra copies of the names.
MozReview-Commit-ID: CjdW4Nbnc6A
--HG--
extra : rebase_source : 44489693afebff571a415b487e29fa6153288421
2018-03-30 02:19:31 +03:00
|
|
|
static already_AddRefed<DOMPoint> FromPoint(const GlobalObject& aGlobal,
|
|
|
|
const DOMPointInit& aParams);
|
2014-03-12 05:11:37 +04:00
|
|
|
static already_AddRefed<DOMPoint> Constructor(const GlobalObject& aGlobal,
|
|
|
|
double aX, double aY, double aZ,
|
|
|
|
double aW, ErrorResult& aRV);
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2014-03-12 05:11:37 +04:00
|
|
|
|
2019-06-25 09:46:20 +03:00
|
|
|
static already_AddRefed<DOMPoint> ReadStructuredClone(
|
|
|
|
JSContext* aCx, nsIGlobalObject* aGlobal,
|
|
|
|
JSStructuredCloneReader* aReader);
|
|
|
|
using DOMPointReadOnly::ReadStructuredClone;
|
|
|
|
|
2014-03-12 05:11:37 +04:00
|
|
|
void SetX(double aX) { mX = aX; }
|
|
|
|
void SetY(double aY) { mY = aY; }
|
|
|
|
void SetZ(double aZ) { mZ = aZ; }
|
|
|
|
void SetW(double aW) { mW = aW; }
|
|
|
|
};
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2014-03-12 05:11:37 +04:00
|
|
|
|
|
|
|
#endif /*MOZILLA_DOMPOINT_H_*/
|