2016-10-07 00:23:08 +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: */
|
|
|
|
/* 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 DocGroup_h
|
|
|
|
#define DocGroup_h
|
|
|
|
|
|
|
|
#include "nsISupportsImpl.h"
|
|
|
|
#include "nsIPrincipal.h"
|
|
|
|
#include "nsTHashtable.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
|
2017-02-02 00:38:33 +03:00
|
|
|
#include "mozilla/dom/TabGroup.h"
|
2016-10-07 00:23:08 +03:00
|
|
|
#include "mozilla/RefPtr.h"
|
2017-03-21 07:42:00 +03:00
|
|
|
#include "mozilla/dom/CustomElementRegistry.h"
|
2017-12-19 18:14:55 +03:00
|
|
|
#include "mozilla/dom/HTMLSlotElement.h"
|
2018-03-06 12:19:19 +03:00
|
|
|
#include "mozilla/PerformanceCounter.h"
|
|
|
|
|
2016-10-07 00:23:08 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
2016-12-01 13:33:05 +03:00
|
|
|
class AbstractThread;
|
2016-10-07 00:23:08 +03:00
|
|
|
namespace dom {
|
|
|
|
|
2018-03-20 22:07:41 +03:00
|
|
|
class PerformanceInfo;
|
|
|
|
|
2016-10-07 00:23:08 +03:00
|
|
|
// Two browsing contexts are considered "related" if they are reachable from one
|
|
|
|
// another through window.opener, window.parent, or window.frames. This is the
|
|
|
|
// spec concept of a "unit of related browsing contexts"
|
|
|
|
//
|
|
|
|
// Two browsing contexts are considered "similar-origin" if they can be made to
|
|
|
|
// have the same origin by setting document.domain. This is the spec concept of
|
|
|
|
// a "unit of similar-origin related browsing contexts"
|
|
|
|
//
|
|
|
|
// A TabGroup is a set of browsing contexts which are all "related". Within a
|
|
|
|
// TabGroup, browsing contexts are broken into "similar-origin" DocGroups. In
|
|
|
|
// more detail, a DocGroup is actually a collection of documents, and a
|
|
|
|
// TabGroup is a collection of DocGroups. A TabGroup typically will contain
|
|
|
|
// (through its DocGroups) the documents from one or more tabs related by
|
|
|
|
// window.opener. A DocGroup is a member of exactly one TabGroup.
|
|
|
|
|
2017-04-04 02:28:58 +03:00
|
|
|
class DocGroup final
|
2016-10-07 00:23:08 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef nsTArray<nsIDocument*>::iterator Iterator;
|
|
|
|
friend class TabGroup;
|
|
|
|
|
2017-04-04 02:28:58 +03:00
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(DocGroup)
|
2016-10-07 00:23:08 +03:00
|
|
|
|
2017-01-17 03:10:27 +03:00
|
|
|
// Returns NS_ERROR_FAILURE and sets |aString| to an empty string if the TLD
|
|
|
|
// service isn't available. Returns NS_OK on success, but may still set
|
|
|
|
// |aString| may still be set to an empty string.
|
|
|
|
static MOZ_MUST_USE nsresult
|
|
|
|
GetKey(nsIPrincipal* aPrincipal, nsACString& aString);
|
|
|
|
|
2016-10-07 00:23:08 +03:00
|
|
|
bool MatchesKey(const nsACString& aKey)
|
|
|
|
{
|
|
|
|
return aKey == mKey;
|
|
|
|
}
|
2018-04-24 23:03:06 +03:00
|
|
|
|
2018-03-06 12:19:19 +03:00
|
|
|
PerformanceCounter* GetPerformanceCounter()
|
|
|
|
{
|
|
|
|
return mPerformanceCounter;
|
|
|
|
}
|
2018-03-20 22:07:41 +03:00
|
|
|
|
|
|
|
PerformanceInfo
|
|
|
|
ReportPerformanceInfo();
|
2018-04-24 23:03:06 +03:00
|
|
|
|
2016-10-07 00:23:08 +03:00
|
|
|
TabGroup* GetTabGroup()
|
|
|
|
{
|
|
|
|
return mTabGroup;
|
|
|
|
}
|
2017-03-21 07:42:00 +03:00
|
|
|
mozilla::dom::CustomElementReactionsStack* CustomElementReactionsStack()
|
|
|
|
{
|
2017-03-29 21:37:38 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2017-03-21 07:42:00 +03:00
|
|
|
if (!mReactionsStack) {
|
|
|
|
mReactionsStack = new mozilla::dom::CustomElementReactionsStack();
|
|
|
|
}
|
|
|
|
|
|
|
|
return mReactionsStack;
|
|
|
|
}
|
2016-10-07 00:23:08 +03:00
|
|
|
void RemoveDocument(nsIDocument* aWindow);
|
|
|
|
|
|
|
|
// Iterators for iterating over every document within the DocGroup
|
|
|
|
Iterator begin()
|
|
|
|
{
|
2017-03-29 21:37:38 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2016-10-07 00:23:08 +03:00
|
|
|
return mDocuments.begin();
|
|
|
|
}
|
|
|
|
Iterator end()
|
|
|
|
{
|
2017-03-29 21:37:38 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2016-10-07 00:23:08 +03:00
|
|
|
return mDocuments.end();
|
|
|
|
}
|
|
|
|
|
2017-07-26 11:13:35 +03:00
|
|
|
nsresult Dispatch(TaskCategory aCategory,
|
2017-04-04 02:28:58 +03:00
|
|
|
already_AddRefed<nsIRunnable>&& aRunnable);
|
2016-10-29 01:25:08 +03:00
|
|
|
|
2017-06-13 23:40:00 +03:00
|
|
|
nsISerialEventTarget* EventTargetFor(TaskCategory aCategory) const;
|
2017-04-04 02:28:58 +03:00
|
|
|
|
|
|
|
AbstractThread*
|
|
|
|
AbstractMainThreadFor(TaskCategory aCategory);
|
2016-11-23 08:14:39 +03:00
|
|
|
|
2017-02-02 00:38:33 +03:00
|
|
|
// Ensure that it's valid to access the DocGroup at this time.
|
|
|
|
void ValidateAccess() const
|
|
|
|
{
|
|
|
|
mTabGroup->ValidateAccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a pointer that can be continually checked to see if access to this
|
|
|
|
// DocGroup is valid. This pointer should live at least as long as the
|
|
|
|
// DocGroup.
|
|
|
|
bool* GetValidAccessPtr();
|
|
|
|
|
2018-05-07 20:09:19 +03:00
|
|
|
// Append aSlot to the list of signal slot list, and queue a mutation observer
|
|
|
|
// microtask.
|
|
|
|
void SignalSlotChange(HTMLSlotElement& aSlot);
|
2017-12-19 18:14:55 +03:00
|
|
|
|
2018-05-07 20:09:19 +03:00
|
|
|
void MoveSignalSlotListTo(nsTArray<RefPtr<HTMLSlotElement>>& aDest);
|
2017-12-19 18:14:55 +03:00
|
|
|
|
|
|
|
// List of DocGroups that has non-empty signal slot list.
|
|
|
|
static AutoTArray<RefPtr<DocGroup>, 2>* sPendingDocGroups;
|
|
|
|
|
2018-05-30 05:48:00 +03:00
|
|
|
// Returns true if any of its documents are active but not in the bfcache.
|
|
|
|
bool IsActive() const;
|
|
|
|
|
2017-01-31 03:13:18 +03:00
|
|
|
private:
|
2016-10-07 00:23:08 +03:00
|
|
|
DocGroup(TabGroup* aTabGroup, const nsACString& aKey);
|
|
|
|
~DocGroup();
|
|
|
|
|
|
|
|
nsCString mKey;
|
|
|
|
RefPtr<TabGroup> mTabGroup;
|
|
|
|
nsTArray<nsIDocument*> mDocuments;
|
2017-03-21 07:42:00 +03:00
|
|
|
RefPtr<mozilla::dom::CustomElementReactionsStack> mReactionsStack;
|
2017-12-19 18:14:55 +03:00
|
|
|
nsTArray<RefPtr<HTMLSlotElement>> mSignalSlotList;
|
2018-04-24 23:03:06 +03:00
|
|
|
// This pointer will be null if dom.performance.enable_scheduler_timing is
|
|
|
|
// false (default value)
|
2018-03-06 12:19:19 +03:00
|
|
|
RefPtr<mozilla::PerformanceCounter> mPerformanceCounter;
|
2016-10-07 00:23:08 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // defined(DocGroup_h)
|