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-05-21 15:12: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/. */
|
2000-05-08 18:29:44 +04:00
|
|
|
|
2006-03-31 12:00:42 +04:00
|
|
|
/*
|
|
|
|
* A class for handing out nodeinfos and ensuring sharing of them as needed.
|
|
|
|
*/
|
|
|
|
|
2000-05-08 18:29:44 +04:00
|
|
|
#ifndef nsNodeInfoManager_h___
|
|
|
|
#define nsNodeInfoManager_h___
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
#include "mozilla/Attributes.h" // for final
|
2018-03-02 02:33:52 +03:00
|
|
|
#include "mozilla/dom/NodeInfo.h"
|
2012-08-06 16:02:08 +04:00
|
|
|
#include "nsCOMPtr.h" // for member
|
|
|
|
#include "nsCycleCollectionParticipant.h" // for NS_DECL_CYCLE_*
|
2018-03-02 02:33:52 +03:00
|
|
|
#include "nsDataHashtable.h"
|
2017-08-17 02:48:52 +03:00
|
|
|
#include "nsStringFwd.h"
|
2000-05-08 18:29:44 +04:00
|
|
|
|
2012-08-06 16:02:08 +04:00
|
|
|
class nsBindingManager;
|
2017-10-03 01:05:19 +03:00
|
|
|
class nsAtom;
|
2004-06-25 16:26:02 +04:00
|
|
|
class nsIDocument;
|
2003-10-22 02:11:49 +04:00
|
|
|
class nsIPrincipal;
|
2018-02-16 15:02:28 +03:00
|
|
|
class nsWindowSizes;
|
2012-08-06 16:02:08 +04:00
|
|
|
template<class T> struct already_AddRefed;
|
2000-05-08 18:29:44 +04:00
|
|
|
|
2017-04-01 05:57:35 +03:00
|
|
|
#define RECENTLY_USED_NODEINFOS_SIZE 31
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsNodeInfoManager final
|
2000-05-08 18:29:44 +04:00
|
|
|
{
|
2014-06-25 06:09:15 +04:00
|
|
|
private:
|
|
|
|
~nsNodeInfoManager();
|
|
|
|
|
2000-05-08 18:29:44 +04:00
|
|
|
public:
|
|
|
|
nsNodeInfoManager();
|
2004-06-25 16:26:02 +04:00
|
|
|
|
2014-11-17 15:04:00 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SKIPPABLE_NATIVE_CLASS(nsNodeInfoManager)
|
2012-08-24 20:50:06 +04:00
|
|
|
|
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(nsNodeInfoManager)
|
2004-06-25 16:26:02 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the nodeinfo manager with a document.
|
|
|
|
*/
|
|
|
|
nsresult Init(nsIDocument *aDocument);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Release the reference to the document, this will be called when
|
|
|
|
* the document is going away.
|
|
|
|
*/
|
|
|
|
void DropDocumentReference();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Methods for creating nodeinfo's from atoms and/or strings.
|
|
|
|
*/
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>
|
2017-10-03 01:05:19 +03:00
|
|
|
GetNodeInfo(nsAtom *aName, nsAtom *aPrefix, int32_t aNamespaceID,
|
|
|
|
uint16_t aNodeType, nsAtom* aExtraName = nullptr);
|
|
|
|
nsresult GetNodeInfo(const nsAString& aName, nsAtom *aPrefix,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aNamespaceID, uint16_t aNodeType,
|
2014-06-20 06:01:40 +04:00
|
|
|
mozilla::dom::NodeInfo** aNodeInfo);
|
2017-10-03 01:05:19 +03:00
|
|
|
nsresult GetNodeInfo(const nsAString& aName, nsAtom *aPrefix,
|
2012-08-22 19:56:38 +04:00
|
|
|
const nsAString& aNamespaceURI, uint16_t aNodeType,
|
2014-06-20 06:01:40 +04:00
|
|
|
mozilla::dom::NodeInfo** aNodeInfo);
|
2004-06-25 16:26:02 +04:00
|
|
|
|
2005-09-24 22:43:15 +04:00
|
|
|
/**
|
|
|
|
* Returns the nodeinfo for text nodes. Can return null if OOM.
|
|
|
|
*/
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo> GetTextNodeInfo();
|
2006-01-19 06:34:18 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the nodeinfo for comment nodes. Can return null if OOM.
|
|
|
|
*/
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo> GetCommentNodeInfo();
|
2005-09-24 22:43:15 +04:00
|
|
|
|
2006-01-19 06:34:18 +03:00
|
|
|
/**
|
|
|
|
* Returns the nodeinfo for the document node. Can return null if OOM.
|
|
|
|
*/
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo> GetDocumentNodeInfo();
|
2006-01-19 06:34:18 +03:00
|
|
|
|
2004-06-25 16:26:02 +04:00
|
|
|
/**
|
|
|
|
* Retrieve a pointer to the document that owns this node info
|
|
|
|
* manager.
|
|
|
|
*/
|
|
|
|
nsIDocument* GetDocument() const
|
|
|
|
{
|
|
|
|
return mDocument;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-02-02 23:02:34 +03:00
|
|
|
* Gets the principal of the document this nodeinfo manager belongs to.
|
2004-06-25 16:26:02 +04:00
|
|
|
*/
|
2006-04-27 22:21:11 +04:00
|
|
|
nsIPrincipal *DocumentPrincipal() const {
|
|
|
|
NS_ASSERTION(mPrincipal, "How'd that happen?");
|
2006-02-02 23:02:34 +03:00
|
|
|
return mPrincipal;
|
|
|
|
}
|
|
|
|
|
2014-06-20 06:01:40 +04:00
|
|
|
void RemoveNodeInfo(mozilla::dom::NodeInfo *aNodeInfo);
|
2006-02-02 23:02:34 +03:00
|
|
|
|
2008-03-28 17:09:00 +03:00
|
|
|
nsBindingManager* GetBindingManager() const
|
|
|
|
{
|
|
|
|
return mBindingManager;
|
|
|
|
}
|
|
|
|
|
2017-07-04 11:00:03 +03:00
|
|
|
enum Tri
|
|
|
|
{
|
|
|
|
eTriUnset = 0,
|
|
|
|
eTriFalse,
|
|
|
|
eTriTrue
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if SVG nodes in this document have real SVG semantics.
|
|
|
|
*/
|
|
|
|
bool SVGEnabled()
|
|
|
|
{
|
|
|
|
return mSVGEnabled == eTriTrue
|
|
|
|
? true
|
|
|
|
: mSVGEnabled == eTriFalse ? false : InternalSVGEnabled();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if MathML nodes in this document have real MathML semantics.
|
|
|
|
*/
|
|
|
|
bool MathMLEnabled()
|
|
|
|
{
|
|
|
|
return mMathMLEnabled == eTriTrue
|
|
|
|
? true
|
|
|
|
: mMathMLEnabled == eTriFalse ? false : InternalMathMLEnabled();
|
|
|
|
}
|
|
|
|
|
2018-02-16 15:02:28 +03:00
|
|
|
void AddSizeOfIncludingThis(nsWindowSizes& aSizes) const;
|
|
|
|
|
2006-02-02 23:02:34 +03:00
|
|
|
protected:
|
2018-03-10 06:53:49 +03:00
|
|
|
friend class nsIDocument;
|
2006-02-02 23:02:34 +03:00
|
|
|
friend class nsXULPrototypeDocument;
|
2004-06-25 16:26:02 +04:00
|
|
|
|
|
|
|
/**
|
2006-02-02 23:02:34 +03:00
|
|
|
* Sets the principal of the document this nodeinfo manager belongs to.
|
2004-06-25 16:26:02 +04:00
|
|
|
*/
|
|
|
|
void SetDocumentPrincipal(nsIPrincipal *aPrincipal);
|
|
|
|
|
2000-05-08 18:29:44 +04:00
|
|
|
private:
|
2017-07-04 11:00:03 +03:00
|
|
|
bool InternalSVGEnabled();
|
|
|
|
bool InternalMathMLEnabled();
|
|
|
|
|
2018-03-02 02:33:52 +03:00
|
|
|
class NodeInfoInnerKey :
|
|
|
|
public nsPtrHashKey<mozilla::dom::NodeInfo::NodeInfoInner>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit NodeInfoInnerKey(KeyTypePointer aKey) : nsPtrHashKey(aKey) {}
|
|
|
|
~NodeInfoInnerKey() = default;
|
|
|
|
bool KeyEquals(KeyTypePointer aKey) const { return *mKey == *aKey; }
|
|
|
|
static PLDHashNumber HashKey(KeyTypePointer aKey) { return aKey->Hash(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
nsDataHashtable<NodeInfoInnerKey, mozilla::dom::NodeInfo*> mNodeInfoHash;
|
2015-04-17 04:18:25 +03:00
|
|
|
nsIDocument * MOZ_NON_OWNING_REF mDocument; // WEAK
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mNonDocumentNodeInfos;
|
2014-04-10 18:05:20 +04:00
|
|
|
nsCOMPtr<nsIPrincipal> mPrincipal; // Never null after Init() succeeds.
|
2006-04-04 01:20:02 +04:00
|
|
|
nsCOMPtr<nsIPrincipal> mDefaultPrincipal; // Never null after Init() succeeds
|
2015-04-17 04:18:25 +03:00
|
|
|
mozilla::dom::NodeInfo * MOZ_NON_OWNING_REF mTextNodeInfo; // WEAK to avoid circular ownership
|
|
|
|
mozilla::dom::NodeInfo * MOZ_NON_OWNING_REF mCommentNodeInfo; // WEAK to avoid circular ownership
|
|
|
|
mozilla::dom::NodeInfo * MOZ_NON_OWNING_REF mDocumentNodeInfo; // WEAK to avoid circular ownership
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsBindingManager> mBindingManager;
|
2017-04-01 05:57:35 +03:00
|
|
|
mozilla::dom::NodeInfo* mRecentlyUsedNodeInfos[RECENTLY_USED_NODEINFOS_SIZE];
|
2017-07-04 11:00:03 +03:00
|
|
|
Tri mSVGEnabled;
|
|
|
|
Tri mMathMLEnabled;
|
2000-05-08 18:29:44 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsNodeInfoManager_h___ */
|