gecko-dev/xpcom/ds/nsAtomTable.cpp

177 lines
4.6 KiB
C++
Raw Normal View History

1998-04-13 20:24:54 +00:00
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape 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/NPL/
1998-04-13 20:24:54 +00:00
*
* 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.
1998-04-13 20:24:54 +00:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1998-04-13 20:24:54 +00:00
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
1998-04-13 20:24:54 +00:00
*/
1999-05-26 01:38:36 +00:00
#include "nsAtomTable.h"
1998-04-13 20:24:54 +00:00
#include "nsString.h"
#include "nsCRT.h"
#include "plhash.h"
1998-06-05 21:38:36 +00:00
#include "nsISizeOfHandler.h"
1998-04-13 20:24:54 +00:00
/**
* The shared hash table for atom lookups.
*/
static nsrefcnt gAtoms;
static struct PLHashTable* gAtomHashTable;
#if defined(DEBUG) && (defined(XP_UNIX) || defined(XP_PC))
static PRIntn
DumpAtomLeaks(PLHashEntry *he, PRIntn index, void *arg)
{
AtomImpl* atom = (AtomImpl*) he->value;
if (atom) {
nsAutoString tmp;
atom->ToString(tmp);
fputs(tmp, stdout);
fputs("\n", stdout);
}
return HT_ENUMERATE_NEXT;
}
#endif
NS_COM void NS_PurgeAtomTable(void)
{
if (gAtomHashTable) {
#if defined(DEBUG) && (defined(XP_UNIX) || defined(XP_PC))
if (gAtoms) {
if (getenv("MOZ_DUMP_ATOM_LEAKS")) {
printf("*** leaking %d atoms\n", gAtoms);
PL_HashTableEnumerateEntries(gAtomHashTable, DumpAtomLeaks, 0);
}
}
#endif
PL_HashTableDestroy(gAtomHashTable);
gAtomHashTable = nsnull;
}
}
1998-04-13 20:24:54 +00:00
AtomImpl::AtomImpl()
{
NS_INIT_REFCNT();
// Every live atom holds a reference on the atom hashtable
gAtoms++;
}
AtomImpl::~AtomImpl()
{
1999-11-20 07:30:26 +00:00
NS_PRECONDITION(nsnull != gAtomHashTable, "null atom hashtable");
1998-04-13 20:24:54 +00:00
if (nsnull != gAtomHashTable) {
PL_HashTableRemove(gAtomHashTable, mString);
nsrefcnt cnt = --gAtoms;
if (0 == cnt) {
// When the last atom is destroyed, the atom arena is destroyed
NS_ASSERTION(0 == gAtomHashTable->nentries, "bad atom table");
PL_HashTableDestroy(gAtomHashTable);
gAtomHashTable = nsnull;
}
}
}
NS_IMPL_ISUPPORTS1(AtomImpl, nsIAtom)
1998-04-13 20:24:54 +00:00
void* AtomImpl::operator new(size_t size, const PRUnichar* us, PRInt32 uslen)
{
size = size + uslen * sizeof(PRUnichar);
1999-03-05 04:33:57 +00:00
AtomImpl* ii = (AtomImpl*) ::operator new(size);
1998-04-13 20:24:54 +00:00
nsCRT::memcpy(ii->mString, us, uslen * sizeof(PRUnichar));
ii->mString[uslen] = 0;
return ii;
}
NS_IMETHODIMP
AtomImpl::ToString(nsString& aBuf) /*FIX: const */
1998-04-13 20:24:54 +00:00
{
aBuf.SetLength(0);
aBuf.Append(mString, nsCRT::strlen(mString));
return NS_OK;
1998-04-13 20:24:54 +00:00
}
NS_IMETHODIMP
AtomImpl::GetUnicode(const PRUnichar **aResult) /*FIX: const */
1998-04-13 20:24:54 +00:00
{
NS_ENSURE_ARG_POINTER(aResult);
*aResult = mString;
return NS_OK;
1998-04-13 20:24:54 +00:00
}
1998-06-05 21:38:36 +00:00
NS_IMETHODIMP
AtomImpl::SizeOf(nsISizeOfHandler* aHandler, PRUint32* _retval) /*FIX: const */
1998-06-05 21:38:36 +00:00
{
NS_ENSURE_ARG_POINTER(_retval);
PRUint32 sum = sizeof(*this) + nsCRT::strlen(mString) * sizeof(PRUnichar);
*_retval = sum;
1998-06-05 21:38:36 +00:00
return NS_OK;
}
1998-04-13 20:24:54 +00:00
//----------------------------------------------------------------------
static PLHashNumber HashKey(const PRUnichar* k)
{
return (PLHashNumber) nsCRT::HashValue(k);
1998-04-13 20:24:54 +00:00
}
static PRIntn CompareKeys(const PRUnichar* k1, const PRUnichar* k2)
{
return nsCRT::strcmp(k1, k2) == 0;
}
1999-05-26 01:38:36 +00:00
NS_COM nsIAtom* NS_NewAtom(const char* isolatin1)
1998-04-13 20:24:54 +00:00
{
nsAutoString tmp(isolatin1);
return NS_NewAtom(tmp.GetUnicode());
}
1999-05-26 01:38:36 +00:00
NS_COM nsIAtom* NS_NewAtom(const nsString& aString)
1998-04-13 20:24:54 +00:00
{
return NS_NewAtom(aString.GetUnicode());
}
1999-05-26 01:38:36 +00:00
NS_COM nsIAtom* NS_NewAtom(const PRUnichar* us)
1998-04-13 20:24:54 +00:00
{
if (nsnull == gAtomHashTable) {
gAtomHashTable = PL_NewHashTable(8, (PLHashFunction) HashKey,
(PLHashComparator) CompareKeys,
(PLHashComparator) nsnull,
nsnull, nsnull);
}
1999-02-06 03:56:36 +00:00
PRUint32 uslen;
PRUint32 hashCode = nsCRT::HashValue(us, &uslen);
1998-04-13 20:24:54 +00:00
PLHashEntry** hep = PL_HashTableRawLookup(gAtomHashTable, hashCode, us);
PLHashEntry* he = *hep;
if (nsnull != he) {
nsIAtom* id = (nsIAtom*) he->value;
NS_IF_ADDREF(id);
1998-04-13 20:24:54 +00:00
return id;
}
AtomImpl* id = new(us, uslen) AtomImpl();
PL_HashTableRawAdd(gAtomHashTable, hep, hashCode, id->mString, id);
NS_IF_ADDREF(id);
1998-04-13 20:24:54 +00:00
return id;
}
1999-05-26 01:38:36 +00:00
NS_COM nsrefcnt NS_GetNumberOfAtoms(void)
1998-04-13 20:24:54 +00:00
{
if (nsnull != gAtomHashTable) {
NS_PRECONDITION(nsrefcnt(gAtomHashTable->nentries) == gAtoms, "bad atom table");
}
return gAtoms;
}