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
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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 "mozilla/dom/SessionStoreScrollData.h"
#include <utility>
#include "js/PropertyAndElement.h"
#include "js/TypeDecls.h"
#include "mozilla/Assertions.h"
#include "mozilla/RefPtr.h"
#include "mozilla/dom/BindingUtils.h"
#include "mozilla/dom/BrowserSessionStoreBinding.h"
#include "mozilla/dom/BrowsingContext.h"
#include "nsPresContext.h"
#include "mozilla/dom/WebIDLGlobalNameHash.h"
#include "js/PropertyDescriptor.h"
#include "mozilla/dom/ToJSValue.h"
#include "mozilla/dom/GeneratedAtomList.h"
#include "js/StructuredClone.h"
#include "mozilla/dom/DOMJSClass.h"
#include "mozilla/dom/StructuredCloneHolder.h"
#include "nsContentUtils.h"
#include "js/Array.h"
#include "js/JSON.h"
using namespace mozilla::dom;
NS_IMPL_CYCLE_COLLECTING_ADDREF(SessionStoreScrollData)
NS_IMPL_CYCLE_COLLECTING_RELEASE(SessionStoreScrollData)
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE_WEAK_PTR(SessionStoreScrollData,
mChildren)
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(SessionStoreScrollData)
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
NS_INTERFACE_MAP_ENTRY(nsISupports)
NS_INTERFACE_MAP_END
nsISupports* SessionStoreScrollData::GetParentObject() const {
return xpc::NativeGlobal(xpc::PrivilegedJunkScope());
;
}
JSObject* SessionStoreScrollData::WrapObject(
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) {
return SessionStoreScrollData_Binding::Wrap(aCx, this, aGivenProto);
}
void SessionStoreScrollData::GetScroll(nsACString& aScroll) const {
int scrollX = nsPresContext::AppUnitsToIntCSSPixels(mScroll.x);
int scrollY = nsPresContext::AppUnitsToIntCSSPixels(mScroll.y);
if ((scrollX != 0) || (scrollY != 0)) {
aScroll = nsPrintfCString("%d,%d", scrollX, scrollY);
} else {
aScroll.SetIsVoid(true);
}
}
SessionStoreScrollData::ChildrenArray& SessionStoreScrollData::Children() {
return mChildren;
}
void SessionStoreScrollData::GetChildren(
Nullable<ChildrenArray>& aChildren) const {
if (!mChildren.IsEmpty()) {
aChildren.SetValue() = mChildren.Clone();
} else {
aChildren.SetNull();
}
}
void SessionStoreScrollData::ToJSON(JSContext* aCx,
JS::MutableHandle<JSObject*> aRetval) {
JS::Rooted<JSObject*> self(aCx);
{
JS::Rooted<JS::Value> value(aCx);
if (!GetOrCreateDOMReflector(aCx, this, &value)) {
return;
}
self.set(value.toObjectOrNull());
}
JS::Rooted<JSObject*> result(aCx, JS_NewPlainObject(aCx));
if (!IsEmpty()) {
if (HasData(mScroll)) {
if (!SessionStoreUtils::CopyProperty(aCx, result, self, u"scroll"_ns)) {
return;
}
}
SessionStoreUtils::CopyChildren(aCx, result, mChildren);
}
aRetval.set(result);
}
void SessionStoreScrollData::Update(const CollectedType& aUpdate) {
SessionStoreScrollData_Binding::ClearCachedScrollValue(this);
mScroll = aUpdate;
}
void SessionStoreScrollData::ClearCachedChildren() {
SessionStoreScrollData_Binding::ClearCachedChildrenValue(this);
}
/* static */
bool SessionStoreScrollData::HasData(const CollectedType& aPoint) {
int scrollX = nsPresContext::AppUnitsToIntCSSPixels(aPoint.x);
int scrollY = nsPresContext::AppUnitsToIntCSSPixels(aPoint.y);
return scrollX != 0 || scrollY != 0;
}
bool SessionStoreScrollData::IsEmpty() const {
return !HasData(mScroll) && mChildren.IsEmpty();
}
|