/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * IBM Corporation. * Portions created by the Initial Developer are Copyright (C) 2003 * IBM Corporation. All Rights Reserved. * * Contributor(s): * IBM Corporation * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ /* * Storage of the children and attributes of a DOM node; storage for * the two is unified to minimize footprint. */ #ifndef nsAttrAndChildArray_h___ #define nsAttrAndChildArray_h___ #include "nscore.h" #include "nsAttrName.h" #include "nsAttrValue.h" class nsINode; class nsIContent; class nsMappedAttributes; class nsHTMLStyleSheet; class nsRuleWalker; class nsMappedAttributeElement; #define ATTRCHILD_ARRAY_GROWSIZE 8 #define ATTRCHILD_ARRAY_LINEAR_THRESHOLD 32 #define ATTRCHILD_ARRAY_ATTR_SLOTS_BITS 10 #define ATTRCHILD_ARRAY_MAX_ATTR_COUNT \ ((1 << ATTRCHILD_ARRAY_ATTR_SLOTS_BITS) - 1) #define ATTRCHILD_ARRAY_MAX_CHILD_COUNT \ (~PtrBits(0) >> ATTRCHILD_ARRAY_ATTR_SLOTS_BITS) #define ATTRCHILD_ARRAY_ATTR_SLOTS_COUNT_MASK \ ((1 << ATTRCHILD_ARRAY_ATTR_SLOTS_BITS) - 1) #define ATTRSIZE (sizeof(InternalAttr) / sizeof(void*)) class nsAttrAndChildArray { public: nsAttrAndChildArray(); ~nsAttrAndChildArray(); PRUint32 ChildCount() const { return mImpl ? (mImpl->mAttrAndChildCount >> ATTRCHILD_ARRAY_ATTR_SLOTS_BITS) : 0; } nsIContent* ChildAt(PRUint32 aPos) const { NS_ASSERTION(aPos < ChildCount(), "out-of-bounds access in nsAttrAndChildArray"); return reinterpret_cast(mImpl->mBuffer[AttrSlotsSize() + aPos]); } nsIContent* GetSafeChildAt(PRUint32 aPos) const; nsresult AppendChild(nsIContent* aChild) { return InsertChildAt(aChild, ChildCount()); } nsresult InsertChildAt(nsIContent* aChild, PRUint32 aPos); void RemoveChildAt(PRUint32 aPos); PRInt32 IndexOfChild(nsINode* aPossibleChild) const; PRUint32 AttrCount() const; const nsAttrValue* GetAttr(nsIAtom* aLocalName, PRInt32 aNamespaceID = kNameSpaceID_None) const; const nsAttrValue* AttrAt(PRUint32 aPos) const; nsresult SetAttr(nsIAtom* aLocalName, const nsAString& aValue); nsresult SetAndTakeAttr(nsIAtom* aLocalName, nsAttrValue& aValue); nsresult SetAndTakeAttr(nsINodeInfo* aName, nsAttrValue& aValue); // Remove the attr at position aPos. The value of the attr is placed in // aValue; any value that was already in aValue is destroyed. nsresult RemoveAttrAt(PRUint32 aPos, nsAttrValue& aValue); // Returns attribute name at given position, *not* out-of-bounds safe const nsAttrName* AttrNameAt(PRUint32 aPos) const; // Returns attribute name at given position or null if aPos is out-of-bounds const nsAttrName* GetSafeAttrNameAt(PRUint32 aPos) const; // aName is UTF-8 encoded const nsAttrName* GetExistingAttrNameFromQName(const nsACString& aName) const; PRInt32 IndexOfAttr(nsIAtom* aLocalName, PRInt32 aNamespaceID = kNameSpaceID_None) const; nsresult SetAndTakeMappedAttr(nsIAtom* aLocalName, nsAttrValue& aValue, nsMappedAttributeElement* aContent, nsHTMLStyleSheet* aSheet); nsresult SetMappedAttrStyleSheet(nsHTMLStyleSheet* aSheet); void WalkMappedAttributeStyleRules(nsRuleWalker* aRuleWalker); void Compact(); private: nsAttrAndChildArray(const nsAttrAndChildArray& aOther); // Not to be implemented nsAttrAndChildArray& operator=(const nsAttrAndChildArray& aOther); // Not to be implemented void Clear(); PRUint32 NonMappedAttrCount() const; PRUint32 MappedAttrCount() const; nsresult GetModifiableMapped(nsMappedAttributeElement* aContent, nsHTMLStyleSheet* aSheet, PRBool aWillAddAttr, nsMappedAttributes** aModifiable); nsresult MakeMappedUnique(nsMappedAttributes* aAttributes); PRUint32 AttrSlotsSize() const { return AttrSlotCount() * ATTRSIZE; } PRUint32 AttrSlotCount() const { return mImpl ? mImpl->mAttrAndChildCount & ATTRCHILD_ARRAY_ATTR_SLOTS_COUNT_MASK : 0; } void SetChildCount(PRUint32 aCount) { mImpl->mAttrAndChildCount = (mImpl->mAttrAndChildCount & ATTRCHILD_ARRAY_ATTR_SLOTS_COUNT_MASK) | (aCount << ATTRCHILD_ARRAY_ATTR_SLOTS_BITS); } void SetAttrSlotCount(PRUint32 aCount) { mImpl->mAttrAndChildCount = (mImpl->mAttrAndChildCount & ~ATTRCHILD_ARRAY_ATTR_SLOTS_COUNT_MASK) | aCount; } void SetAttrSlotAndChildCount(PRUint32 aSlotCount, PRUint32 aChildCount) { mImpl->mAttrAndChildCount = aSlotCount | (aChildCount << ATTRCHILD_ARRAY_ATTR_SLOTS_BITS); } PRBool GrowBy(PRUint32 aGrowSize); PRBool AddAttrSlot(); struct InternalAttr { nsAttrName mName; nsAttrValue mValue; }; struct Impl { PRUint32 mAttrAndChildCount; PRUint32 mBufferSize; nsMappedAttributes* mMappedAttrs; void* mBuffer[1]; }; Impl* mImpl; }; #endif