2001-09-25 01:32:19 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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 14:29:44 +00:00
|
|
|
|
2006-03-31 08:00:42 +00:00
|
|
|
/*
|
|
|
|
* A class for handing out nodeinfos and ensuring sharing of them as needed.
|
|
|
|
*/
|
|
|
|
|
2000-05-08 14:29:44 +00:00
|
|
|
#ifndef nsNodeInfoManager_h___
|
|
|
|
#define nsNodeInfoManager_h___
|
|
|
|
|
2012-08-06 12:02:08 +00:00
|
|
|
#include "mozilla/Attributes.h" // for MOZ_FINAL
|
|
|
|
#include "nsCOMPtr.h" // for member
|
2014-04-10 14:05:20 +00:00
|
|
|
#include "nsAutoPtr.h" // for nsRefPtr
|
2012-08-06 12:02:08 +00:00
|
|
|
#include "nsCycleCollectionParticipant.h" // for NS_DECL_CYCLE_*
|
|
|
|
#include "plhash.h" // for typedef PLHashNumber
|
2000-05-08 14:29:44 +00:00
|
|
|
|
2012-08-06 12:02:08 +00:00
|
|
|
class nsAString;
|
|
|
|
class nsBindingManager;
|
2004-06-25 12:26:02 +00:00
|
|
|
class nsIAtom;
|
|
|
|
class nsIDocument;
|
2012-08-06 12:02:08 +00:00
|
|
|
class nsIDOMDocumentType;
|
2003-10-21 22:11:49 +00:00
|
|
|
class nsIPrincipal;
|
2012-08-06 12:02:08 +00:00
|
|
|
struct PLHashEntry;
|
|
|
|
struct PLHashTable;
|
|
|
|
template<class T> struct already_AddRefed;
|
2000-05-08 14:29:44 +00:00
|
|
|
|
2014-06-20 02:01:40 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class NodeInfo;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-24 16:50:06 +00:00
|
|
|
class nsNodeInfoManager MOZ_FINAL
|
2000-05-08 14:29:44 +00:00
|
|
|
{
|
2014-06-25 02:09:15 +00:00
|
|
|
private:
|
|
|
|
~nsNodeInfoManager();
|
|
|
|
|
2000-05-08 14:29:44 +00:00
|
|
|
public:
|
|
|
|
nsNodeInfoManager();
|
2004-06-25 12:26:02 +00:00
|
|
|
|
2014-11-17 12:04:00 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SKIPPABLE_NATIVE_CLASS(nsNodeInfoManager)
|
2012-08-24 16:50:06 +00:00
|
|
|
|
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(nsNodeInfoManager)
|
2004-06-25 12:26:02 +00: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 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>
|
|
|
|
GetNodeInfo(nsIAtom *aName, nsIAtom *aPrefix, int32_t aNamespaceID,
|
|
|
|
uint16_t aNodeType, nsIAtom* aExtraName = nullptr);
|
2004-06-25 12:26:02 +00:00
|
|
|
nsresult GetNodeInfo(const nsAString& aName, nsIAtom *aPrefix,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aNamespaceID, uint16_t aNodeType,
|
2014-06-20 02:01:40 +00:00
|
|
|
mozilla::dom::NodeInfo** aNodeInfo);
|
2008-10-07 18:53:22 +00:00
|
|
|
nsresult GetNodeInfo(const nsAString& aName, nsIAtom *aPrefix,
|
2012-08-22 15:56:38 +00:00
|
|
|
const nsAString& aNamespaceURI, uint16_t aNodeType,
|
2014-06-20 02:01:40 +00:00
|
|
|
mozilla::dom::NodeInfo** aNodeInfo);
|
2004-06-25 12:26:02 +00:00
|
|
|
|
2005-09-24 18:43:15 +00:00
|
|
|
/**
|
|
|
|
* Returns the nodeinfo for text nodes. Can return null if OOM.
|
|
|
|
*/
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo> GetTextNodeInfo();
|
2006-01-19 03:34:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the nodeinfo for comment nodes. Can return null if OOM.
|
|
|
|
*/
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo> GetCommentNodeInfo();
|
2005-09-24 18:43:15 +00:00
|
|
|
|
2006-01-19 03:34:18 +00:00
|
|
|
/**
|
|
|
|
* Returns the nodeinfo for the document node. Can return null if OOM.
|
|
|
|
*/
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo> GetDocumentNodeInfo();
|
2006-01-19 03:34:18 +00:00
|
|
|
|
2004-06-25 12:26:02 +00:00
|
|
|
/**
|
|
|
|
* Retrieve a pointer to the document that owns this node info
|
|
|
|
* manager.
|
|
|
|
*/
|
|
|
|
nsIDocument* GetDocument() const
|
|
|
|
{
|
|
|
|
return mDocument;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-02-02 20:02:34 +00:00
|
|
|
* Gets the principal of the document this nodeinfo manager belongs to.
|
2004-06-25 12:26:02 +00:00
|
|
|
*/
|
2006-04-27 18:21:11 +00:00
|
|
|
nsIPrincipal *DocumentPrincipal() const {
|
|
|
|
NS_ASSERTION(mPrincipal, "How'd that happen?");
|
2006-02-02 20:02:34 +00:00
|
|
|
return mPrincipal;
|
|
|
|
}
|
|
|
|
|
2014-06-20 02:01:40 +00:00
|
|
|
void RemoveNodeInfo(mozilla::dom::NodeInfo *aNodeInfo);
|
2006-02-02 20:02:34 +00:00
|
|
|
|
2008-03-28 14:09:00 +00:00
|
|
|
nsBindingManager* GetBindingManager() const
|
|
|
|
{
|
|
|
|
return mBindingManager;
|
|
|
|
}
|
|
|
|
|
2006-02-02 20:02:34 +00:00
|
|
|
protected:
|
|
|
|
friend class nsDocument;
|
|
|
|
friend class nsXULPrototypeDocument;
|
2006-02-02 20:36:02 +00:00
|
|
|
friend nsresult NS_NewDOMDocumentType(nsIDOMDocumentType** ,
|
|
|
|
nsNodeInfoManager *,
|
|
|
|
nsIAtom *,
|
|
|
|
const nsAString& ,
|
|
|
|
const nsAString& ,
|
|
|
|
const nsAString& );
|
2004-06-25 12:26:02 +00:00
|
|
|
|
|
|
|
/**
|
2006-02-02 20:02:34 +00:00
|
|
|
* Sets the principal of the document this nodeinfo manager belongs to.
|
2004-06-25 12:26:02 +00:00
|
|
|
*/
|
|
|
|
void SetDocumentPrincipal(nsIPrincipal *aPrincipal);
|
|
|
|
|
2000-05-08 14:29:44 +00:00
|
|
|
private:
|
2012-08-09 07:09:40 +00:00
|
|
|
static int NodeInfoInnerKeyCompare(const void *key1, const void *key2);
|
2008-10-10 15:04:34 +00:00
|
|
|
static PLHashNumber GetNodeInfoInnerHashValue(const void *key);
|
2012-08-09 07:09:40 +00:00
|
|
|
static int DropNodeInfoDocument(PLHashEntry *he, int hashIndex,
|
2011-06-15 00:58:57 +00:00
|
|
|
void *arg);
|
2002-01-03 04:51:02 +00:00
|
|
|
|
2000-05-08 14:29:44 +00:00
|
|
|
PLHashTable *mNodeInfoHash;
|
2004-06-25 12:26:02 +00:00
|
|
|
nsIDocument *mDocument; // WEAK
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mNonDocumentNodeInfos;
|
2014-04-10 14:05:20 +00:00
|
|
|
nsCOMPtr<nsIPrincipal> mPrincipal; // Never null after Init() succeeds.
|
2006-04-03 21:20:02 +00:00
|
|
|
nsCOMPtr<nsIPrincipal> mDefaultPrincipal; // Never null after Init() succeeds
|
2014-06-20 02:01:40 +00:00
|
|
|
mozilla::dom::NodeInfo *mTextNodeInfo; // WEAK to avoid circular ownership
|
|
|
|
mozilla::dom::NodeInfo *mCommentNodeInfo; // WEAK to avoid circular ownership
|
|
|
|
mozilla::dom::NodeInfo *mDocumentNodeInfo; // WEAK to avoid circular ownership
|
2014-04-10 14:05:20 +00:00
|
|
|
nsRefPtr<nsBindingManager> mBindingManager;
|
2000-05-08 14:29:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsNodeInfoManager_h___ */
|