2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim:cindent:ts=2:et:sw=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
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of 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 *****
|
|
|
|
*
|
|
|
|
* This Original Code has been modified by IBM Corporation. Modifications made by IBM
|
|
|
|
* described herein are Copyright (c) International Business Machines Corporation, 2000.
|
|
|
|
* Modifications to Mozilla code or documentation identified per MPL Section 3.3
|
|
|
|
*
|
|
|
|
* Date Modified by Description of modification
|
|
|
|
* 04/20/2000 IBM Corp. OS/2 VisualAge build.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nsPropertyTable allows a set of arbitrary key/value pairs to be stored
|
|
|
|
* for any number of nodes, in a global hashtable rather than on the nodes
|
|
|
|
* themselves. Nodes can be any type of object; the hashtable keys are
|
|
|
|
* nsIAtom pointers, and the values are void pointers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsPropertyTable.h"
|
|
|
|
#include "pldhash.h"
|
|
|
|
#include "nsContentErrors.h"
|
|
|
|
#include "nsIAtom.h"
|
|
|
|
|
|
|
|
struct PropertyListMapEntry : public PLDHashEntryHdr {
|
|
|
|
const void *key;
|
|
|
|
void *value;
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
class nsPropertyTable::PropertyList {
|
|
|
|
public:
|
2010-04-22 19:41:38 -07:00
|
|
|
PropertyList(nsIAtom* aName,
|
2007-03-22 10:30:00 -07:00
|
|
|
NSPropertyDtorFunc aDtorFunc,
|
|
|
|
void* aDtorData,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aTransfer) NS_HIDDEN;
|
2007-03-22 10:30:00 -07:00
|
|
|
~PropertyList() NS_HIDDEN;
|
|
|
|
|
|
|
|
// Removes the property associated with the given object, and destroys
|
|
|
|
// the property value
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_HIDDEN_(bool) DeletePropertyFor(nsPropertyOwner aObject);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Destroy all remaining properties (without removing them)
|
|
|
|
NS_HIDDEN_(void) Destroy();
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_HIDDEN_(bool) Equals(nsIAtom *aPropertyName)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-04-22 19:41:38 -07:00
|
|
|
return mName == aPropertyName;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAtom> mName; // property name
|
|
|
|
PLDHashTable mObjectValueMap; // map of object/value pairs
|
|
|
|
NSPropertyDtorFunc mDtorFunc; // property specific value dtor function
|
|
|
|
void* mDtorData; // pointer to pass to dtor
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mTransfer; // whether to transfer in
|
2007-03-22 10:30:00 -07:00
|
|
|
// TransferOrDeleteAllPropertiesFor
|
|
|
|
|
|
|
|
PropertyList* mNext;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
nsPropertyTable::DeleteAllProperties()
|
|
|
|
{
|
|
|
|
while (mPropertyList) {
|
|
|
|
PropertyList* tmp = mPropertyList;
|
|
|
|
|
|
|
|
mPropertyList = mPropertyList->mNext;
|
|
|
|
tmp->Destroy();
|
|
|
|
delete tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsPropertyTable::DeleteAllPropertiesFor(nsPropertyOwner aObject)
|
|
|
|
{
|
|
|
|
for (PropertyList* prop = mPropertyList; prop; prop = prop->mNext) {
|
|
|
|
prop->DeletePropertyFor(aObject);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsPropertyTable::TransferOrDeleteAllPropertiesFor(nsPropertyOwner aObject,
|
|
|
|
nsPropertyTable *aOtherTable)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
for (PropertyList* prop = mPropertyList; prop; prop = prop->mNext) {
|
|
|
|
if (prop->mTransfer) {
|
2007-07-08 00:08:04 -07:00
|
|
|
PropertyListMapEntry *entry = static_cast<PropertyListMapEntry*>
|
|
|
|
(PL_DHashTableOperate(&prop->mObjectValueMap, aObject,
|
2007-03-22 10:30:00 -07:00
|
|
|
PL_DHASH_LOOKUP));
|
|
|
|
if (PL_DHASH_ENTRY_IS_BUSY(entry)) {
|
2010-04-22 19:41:38 -07:00
|
|
|
rv = aOtherTable->SetProperty(aObject, prop->mName,
|
2007-03-22 10:30:00 -07:00
|
|
|
entry->value, prop->mDtorFunc,
|
|
|
|
prop->mDtorData, prop->mTransfer);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
DeleteAllPropertiesFor(aObject);
|
|
|
|
aOtherTable->DeleteAllPropertiesFor(aObject);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
PL_DHashTableRawRemove(&prop->mObjectValueMap, entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
prop->DeletePropertyFor(aObject);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-04-22 19:41:38 -07:00
|
|
|
nsPropertyTable::Enumerate(nsPropertyOwner aObject,
|
2007-03-22 10:30:00 -07:00
|
|
|
NSPropertyFunc aCallback, void *aData)
|
|
|
|
{
|
|
|
|
PropertyList* prop;
|
|
|
|
for (prop = mPropertyList; prop; prop = prop->mNext) {
|
2010-04-22 19:41:38 -07:00
|
|
|
PropertyListMapEntry *entry = static_cast<PropertyListMapEntry*>
|
|
|
|
(PL_DHashTableOperate(&prop->mObjectValueMap, aObject, PL_DHASH_LOOKUP));
|
|
|
|
if (PL_DHASH_ENTRY_IS_BUSY(entry)) {
|
|
|
|
aCallback(const_cast<void*>(aObject.get()), prop->mName, entry->value,
|
|
|
|
aData);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
nsPropertyTable::GetPropertyInternal(nsPropertyOwner aObject,
|
|
|
|
nsIAtom *aPropertyName,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aRemove,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult *aResult)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aPropertyName && aObject, "unexpected null param");
|
|
|
|
nsresult rv = NS_PROPTABLE_PROP_NOT_THERE;
|
|
|
|
void *propValue = nsnull;
|
|
|
|
|
2010-04-22 19:41:38 -07:00
|
|
|
PropertyList* propertyList = GetPropertyListFor(aPropertyName);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (propertyList) {
|
2007-07-08 00:08:04 -07:00
|
|
|
PropertyListMapEntry *entry = static_cast<PropertyListMapEntry*>
|
|
|
|
(PL_DHashTableOperate(&propertyList->mObjectValueMap, aObject,
|
2007-03-22 10:30:00 -07:00
|
|
|
PL_DHASH_LOOKUP));
|
|
|
|
if (PL_DHASH_ENTRY_IS_BUSY(entry)) {
|
|
|
|
propValue = entry->value;
|
|
|
|
if (aRemove) {
|
|
|
|
// don't call propertyList->mDtorFunc. That's the caller's job now.
|
|
|
|
PL_DHashTableRawRemove(&propertyList->mObjectValueMap, entry);
|
|
|
|
}
|
|
|
|
rv = NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aResult)
|
|
|
|
*aResult = rv;
|
|
|
|
|
|
|
|
return propValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsPropertyTable::SetPropertyInternal(nsPropertyOwner aObject,
|
|
|
|
nsIAtom *aPropertyName,
|
|
|
|
void *aPropertyValue,
|
|
|
|
NSPropertyDtorFunc aPropDtorFunc,
|
|
|
|
void *aPropDtorData,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aTransfer,
|
2007-03-22 10:30:00 -07:00
|
|
|
void **aOldValue)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aPropertyName && aObject, "unexpected null param");
|
|
|
|
|
2010-04-22 19:41:38 -07:00
|
|
|
PropertyList* propertyList = GetPropertyListFor(aPropertyName);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (propertyList) {
|
|
|
|
// Make sure the dtor function and data and the transfer flag match
|
|
|
|
if (aPropDtorFunc != propertyList->mDtorFunc ||
|
|
|
|
aPropDtorData != propertyList->mDtorData ||
|
|
|
|
aTransfer != propertyList->mTransfer) {
|
|
|
|
NS_WARNING("Destructor/data mismatch while setting property");
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2010-04-22 19:41:38 -07:00
|
|
|
propertyList = new PropertyList(aPropertyName, aPropDtorFunc,
|
2007-03-22 10:30:00 -07:00
|
|
|
aPropDtorData, aTransfer);
|
|
|
|
if (!propertyList || !propertyList->mObjectValueMap.ops) {
|
|
|
|
delete propertyList;
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
propertyList->mNext = mPropertyList;
|
|
|
|
mPropertyList = propertyList;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The current property value (if there is one) is replaced and the current
|
|
|
|
// value is destroyed
|
|
|
|
nsresult result = NS_OK;
|
2007-07-08 00:08:04 -07:00
|
|
|
PropertyListMapEntry *entry = static_cast<PropertyListMapEntry*>
|
|
|
|
(PL_DHashTableOperate(&propertyList->mObjectValueMap, aObject, PL_DHASH_ADD));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!entry)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
// A NULL entry->key is the sign that the entry has just been allocated
|
|
|
|
// for us. If it's non-NULL then we have an existing entry.
|
|
|
|
if (entry->key) {
|
|
|
|
if (aOldValue)
|
|
|
|
*aOldValue = entry->value;
|
|
|
|
else if (propertyList->mDtorFunc)
|
2007-07-08 00:08:04 -07:00
|
|
|
propertyList->mDtorFunc(const_cast<void*>(entry->key), aPropertyName,
|
2007-03-22 10:30:00 -07:00
|
|
|
entry->value, propertyList->mDtorData);
|
|
|
|
result = NS_PROPTABLE_PROP_OVERWRITTEN;
|
|
|
|
}
|
|
|
|
else if (aOldValue) {
|
|
|
|
*aOldValue = nsnull;
|
|
|
|
}
|
|
|
|
entry->key = aObject;
|
|
|
|
entry->value = aPropertyValue;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsPropertyTable::DeleteProperty(nsPropertyOwner aObject,
|
|
|
|
nsIAtom *aPropertyName)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aPropertyName && aObject, "unexpected null param");
|
|
|
|
|
2010-04-22 19:41:38 -07:00
|
|
|
PropertyList* propertyList = GetPropertyListFor(aPropertyName);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (propertyList) {
|
|
|
|
if (propertyList->DeletePropertyFor(aObject))
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_PROPTABLE_PROP_NOT_THERE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsPropertyTable::PropertyList*
|
2010-04-22 19:41:38 -07:00
|
|
|
nsPropertyTable::GetPropertyListFor(nsIAtom* aPropertyName) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
PropertyList* result;
|
|
|
|
|
|
|
|
for (result = mPropertyList; result; result = result->mNext) {
|
2010-04-22 19:41:38 -07:00
|
|
|
if (result->Equals(aPropertyName)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2010-04-22 19:41:38 -07:00
|
|
|
nsPropertyTable::PropertyList::PropertyList(nsIAtom *aName,
|
2007-03-22 10:30:00 -07:00
|
|
|
NSPropertyDtorFunc aDtorFunc,
|
|
|
|
void *aDtorData,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aTransfer)
|
2007-03-22 10:30:00 -07:00
|
|
|
: mName(aName),
|
|
|
|
mDtorFunc(aDtorFunc),
|
|
|
|
mDtorData(aDtorData),
|
|
|
|
mTransfer(aTransfer),
|
|
|
|
mNext(nsnull)
|
|
|
|
{
|
|
|
|
PL_DHashTableInit(&mObjectValueMap, PL_DHashGetStubOps(), this,
|
|
|
|
sizeof(PropertyListMapEntry), 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsPropertyTable::PropertyList::~PropertyList()
|
|
|
|
{
|
|
|
|
PL_DHashTableFinish(&mObjectValueMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static PLDHashOperator
|
2007-03-22 10:30:00 -07:00
|
|
|
DestroyPropertyEnumerator(PLDHashTable *table, PLDHashEntryHdr *hdr,
|
|
|
|
PRUint32 number, void *arg)
|
|
|
|
{
|
|
|
|
nsPropertyTable::PropertyList *propList =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsPropertyTable::PropertyList*>(table->data);
|
|
|
|
PropertyListMapEntry* entry = static_cast<PropertyListMapEntry*>(hdr);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-07-08 00:08:04 -07:00
|
|
|
propList->mDtorFunc(const_cast<void*>(entry->key), propList->mName,
|
2007-03-22 10:30:00 -07:00
|
|
|
entry->value, propList->mDtorData);
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsPropertyTable::PropertyList::Destroy()
|
|
|
|
{
|
|
|
|
// Enumerate any remaining object/value pairs and destroy the value object
|
|
|
|
if (mDtorFunc)
|
|
|
|
PL_DHashTableEnumerate(&mObjectValueMap, DestroyPropertyEnumerator,
|
|
|
|
nsnull);
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2007-03-22 10:30:00 -07:00
|
|
|
nsPropertyTable::PropertyList::DeletePropertyFor(nsPropertyOwner aObject)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
PropertyListMapEntry *entry = static_cast<PropertyListMapEntry*>
|
|
|
|
(PL_DHashTableOperate(&mObjectValueMap, aObject, PL_DHASH_LOOKUP));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!PL_DHASH_ENTRY_IS_BUSY(entry))
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
void* value = entry->value;
|
|
|
|
PL_DHashTableRawRemove(&mObjectValueMap, entry);
|
|
|
|
|
|
|
|
if (mDtorFunc)
|
2007-07-08 00:08:04 -07:00
|
|
|
mDtorFunc(const_cast<void*>(aObject.get()), mName, value, mDtorData);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static */
|
|
|
|
void
|
|
|
|
nsPropertyTable::SupportsDtorFunc(void *aObject, nsIAtom *aPropertyName,
|
|
|
|
void *aPropertyValue, void *aData)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
nsISupports *propertyValue = static_cast<nsISupports*>(aPropertyValue);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IF_RELEASE(propertyValue);
|
|
|
|
}
|