2003-07-14 21:21:54 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2000-08-16 02:07:37 +00:00
|
|
|
*
|
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-08-16 02:07:37 +00:00
|
|
|
|
|
|
|
/* Class to manage lookup of static names in a table. */
|
|
|
|
|
2003-01-17 04:55:10 +00:00
|
|
|
#include "nsCRT.h"
|
|
|
|
|
2001-08-14 04:18:27 +00:00
|
|
|
#include "nscore.h"
|
2000-08-16 02:07:37 +00:00
|
|
|
#include "nsString.h"
|
2001-12-03 00:37:35 +00:00
|
|
|
#include "nsReadableUtils.h"
|
2008-02-13 11:34:46 +00:00
|
|
|
#include "prbit.h"
|
2012-03-12 22:53:18 +00:00
|
|
|
#include "mozilla/HashFunctions.h"
|
2000-08-16 02:07:37 +00:00
|
|
|
|
2002-06-26 03:46:39 +00:00
|
|
|
#define PL_ARENA_CONST_ALIGN_MASK 3
|
|
|
|
#include "nsStaticNameTable.h"
|
|
|
|
|
2012-03-12 22:53:18 +00:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2006-12-12 22:47:16 +00:00
|
|
|
struct NameTableKey
|
|
|
|
{
|
|
|
|
NameTableKey(const nsAFlatCString* aKeyStr)
|
2011-10-17 14:59:28 +00:00
|
|
|
: mIsUnichar(false)
|
2006-12-12 22:47:16 +00:00
|
|
|
{
|
|
|
|
mKeyStr.m1b = aKeyStr;
|
|
|
|
}
|
2013-05-21 10:22:45 +00:00
|
|
|
|
2006-12-12 22:47:16 +00:00
|
|
|
NameTableKey(const nsAFlatString* aKeyStr)
|
2011-10-17 14:59:28 +00:00
|
|
|
: mIsUnichar(true)
|
2006-12-12 22:47:16 +00:00
|
|
|
{
|
|
|
|
mKeyStr.m2b = aKeyStr;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mIsUnichar;
|
2006-12-12 22:47:16 +00:00
|
|
|
union {
|
|
|
|
const nsAFlatCString* m1b;
|
|
|
|
const nsAFlatString* m2b;
|
|
|
|
} mKeyStr;
|
|
|
|
};
|
|
|
|
|
2003-08-05 20:09:21 +00:00
|
|
|
struct NameTableEntry : public PLDHashEntryHdr
|
2002-06-26 03:46:39 +00:00
|
|
|
{
|
2003-07-14 21:21:54 +00:00
|
|
|
// no ownership here!
|
2007-03-27 15:33:38 +00:00
|
|
|
const nsAFlatCString* mString;
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mIndex;
|
2002-06-26 03:46:39 +00:00
|
|
|
};
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool
|
2003-01-17 04:55:10 +00:00
|
|
|
matchNameKeysCaseInsensitive(PLDHashTable*, const PLDHashEntryHdr* aHdr,
|
|
|
|
const void* key)
|
2002-06-26 03:46:39 +00:00
|
|
|
{
|
2003-08-05 20:09:21 +00:00
|
|
|
const NameTableEntry* entry =
|
2007-07-08 07:08:04 +00:00
|
|
|
static_cast<const NameTableEntry *>(aHdr);
|
|
|
|
const NameTableKey *keyValue = static_cast<const NameTableKey*>(key);
|
2003-01-17 04:55:10 +00:00
|
|
|
|
2007-03-27 15:33:38 +00:00
|
|
|
const nsAFlatCString* entryKey = entry->mString;
|
2013-05-21 10:22:45 +00:00
|
|
|
|
2006-12-12 22:47:16 +00:00
|
|
|
if (keyValue->mIsUnichar) {
|
|
|
|
return keyValue->mKeyStr.m2b->
|
|
|
|
LowerCaseEqualsASCII(entryKey->get(), entryKey->Length());
|
|
|
|
}
|
|
|
|
|
|
|
|
return keyValue->mKeyStr.m1b->
|
|
|
|
LowerCaseEqualsASCII(entryKey->get(), entryKey->Length());
|
2003-01-17 04:55:10 +00:00
|
|
|
}
|
2002-06-26 03:46:39 +00:00
|
|
|
|
2003-01-17 04:55:10 +00:00
|
|
|
/*
|
|
|
|
* caseInsensitiveHashKey is just like PL_DHashStringKey except it
|
|
|
|
* uses (*s & ~0x20) instead of simply *s. This means that "aFOO" and
|
|
|
|
* "afoo" and "aFoo" will all hash to the same thing. It also means
|
|
|
|
* that some strings that aren't case-insensensitively equal will hash
|
|
|
|
* to the same value, but it's just a hash function so it doesn't
|
|
|
|
* matter.
|
|
|
|
*/
|
2008-10-10 15:04:34 +00:00
|
|
|
static PLDHashNumber
|
2003-01-17 04:55:10 +00:00
|
|
|
caseInsensitiveStringHashKey(PLDHashTable *table, const void *key)
|
|
|
|
{
|
2003-07-14 21:21:54 +00:00
|
|
|
PLDHashNumber h = 0;
|
2007-07-08 07:08:04 +00:00
|
|
|
const NameTableKey* tableKey = static_cast<const NameTableKey*>(key);
|
2006-12-12 22:47:16 +00:00
|
|
|
if (tableKey->mIsUnichar) {
|
|
|
|
for (const PRUnichar* s = tableKey->mKeyStr.m2b->get();
|
|
|
|
*s != '\0';
|
|
|
|
s++)
|
2012-03-12 22:53:18 +00:00
|
|
|
h = AddToHash(h, *s & ~0x20);
|
2006-12-12 22:47:16 +00:00
|
|
|
} else {
|
|
|
|
for (const unsigned char* s =
|
2007-07-08 07:08:04 +00:00
|
|
|
reinterpret_cast<const unsigned char*>
|
|
|
|
(tableKey->mKeyStr.m1b->get());
|
2006-12-12 22:47:16 +00:00
|
|
|
*s != '\0';
|
|
|
|
s++)
|
2012-03-12 22:53:18 +00:00
|
|
|
h = AddToHash(h, *s & ~0x20);
|
2006-12-12 22:47:16 +00:00
|
|
|
}
|
2003-07-14 21:21:54 +00:00
|
|
|
return h;
|
2002-06-26 03:46:39 +00:00
|
|
|
}
|
|
|
|
|
2003-04-04 15:10:37 +00:00
|
|
|
static const struct PLDHashTableOps nametable_CaseInsensitiveHashTableOps = {
|
2002-06-26 03:46:39 +00:00
|
|
|
PL_DHashAllocTable,
|
|
|
|
PL_DHashFreeTable,
|
2003-01-17 04:55:10 +00:00
|
|
|
caseInsensitiveStringHashKey,
|
|
|
|
matchNameKeysCaseInsensitive,
|
2002-06-26 03:46:39 +00:00
|
|
|
PL_DHashMoveEntryStub,
|
|
|
|
PL_DHashClearEntryStub,
|
|
|
|
PL_DHashFinalizeStub,
|
2012-07-30 14:20:58 +00:00
|
|
|
nullptr,
|
2002-06-26 03:46:39 +00:00
|
|
|
};
|
|
|
|
|
2000-08-16 02:07:37 +00:00
|
|
|
nsStaticCaseInsensitiveNameTable::nsStaticCaseInsensitiveNameTable()
|
2012-07-30 14:20:58 +00:00
|
|
|
: mNameArray(nullptr), mNullStr("")
|
2000-08-16 02:07:37 +00:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsStaticCaseInsensitiveNameTable);
|
2012-07-30 14:20:58 +00:00
|
|
|
mNameTable.ops = nullptr;
|
2003-07-14 21:21:54 +00:00
|
|
|
}
|
2000-08-16 02:07:37 +00:00
|
|
|
|
|
|
|
nsStaticCaseInsensitiveNameTable::~nsStaticCaseInsensitiveNameTable()
|
|
|
|
{
|
2003-07-14 21:21:54 +00:00
|
|
|
if (mNameArray) {
|
|
|
|
// manually call the destructor on placement-new'ed objects
|
2012-08-22 15:56:38 +00:00
|
|
|
for (uint32_t index = 0; index < mNameTable.entryCount; index++) {
|
2003-07-14 21:21:54 +00:00
|
|
|
mNameArray[index].~nsDependentCString();
|
|
|
|
}
|
|
|
|
nsMemory::Free((void*)mNameArray);
|
2001-12-03 00:37:35 +00:00
|
|
|
}
|
2003-07-14 21:21:54 +00:00
|
|
|
if (mNameTable.ops)
|
|
|
|
PL_DHashTableFinish(&mNameTable);
|
2000-08-16 02:07:37 +00:00
|
|
|
MOZ_COUNT_DTOR(nsStaticCaseInsensitiveNameTable);
|
2003-07-14 21:21:54 +00:00
|
|
|
}
|
2000-08-16 02:07:37 +00:00
|
|
|
|
2013-05-21 10:22:45 +00:00
|
|
|
bool
|
2012-08-22 15:56:38 +00:00
|
|
|
nsStaticCaseInsensitiveNameTable::Init(const char* const aNames[], int32_t Count)
|
2000-08-16 02:07:37 +00:00
|
|
|
{
|
2003-07-14 21:21:54 +00:00
|
|
|
NS_ASSERTION(!mNameArray, "double Init");
|
|
|
|
NS_ASSERTION(!mNameTable.ops, "double Init");
|
2003-02-26 00:52:07 +00:00
|
|
|
NS_ASSERTION(aNames, "null name table");
|
2000-08-16 02:07:37 +00:00
|
|
|
NS_ASSERTION(Count, "0 count");
|
|
|
|
|
2003-07-14 21:21:54 +00:00
|
|
|
mNameArray = (nsDependentCString*)
|
|
|
|
nsMemory::Alloc(Count * sizeof(nsDependentCString));
|
|
|
|
if (!mNameArray)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2003-07-14 21:21:54 +00:00
|
|
|
|
|
|
|
if (!PL_DHashTableInit(&mNameTable,
|
|
|
|
&nametable_CaseInsensitiveHashTableOps,
|
2012-07-30 14:20:58 +00:00
|
|
|
nullptr, sizeof(NameTableEntry), Count)) {
|
|
|
|
mNameTable.ops = nullptr;
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2000-08-16 02:07:37 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
for (int32_t index = 0; index < Count; ++index) {
|
2003-02-26 00:52:07 +00:00
|
|
|
const char* raw = aNames[index];
|
2000-08-16 02:07:37 +00:00
|
|
|
#ifdef DEBUG
|
2003-07-14 21:21:54 +00:00
|
|
|
{
|
|
|
|
// verify invariants of contents
|
2012-09-02 02:35:17 +00:00
|
|
|
nsAutoCString temp1(raw);
|
2003-07-14 21:21:54 +00:00
|
|
|
nsDependentCString temp2(raw);
|
|
|
|
ToLowerCase(temp1);
|
|
|
|
NS_ASSERTION(temp1.Equals(temp2), "upper case char in table");
|
|
|
|
NS_ASSERTION(nsCRT::IsAscii(raw),
|
|
|
|
"non-ascii string in table -- "
|
|
|
|
"case-insensitive matching won't work right");
|
|
|
|
}
|
2001-12-03 00:37:35 +00:00
|
|
|
#endif
|
2002-02-18 22:42:37 +00:00
|
|
|
// use placement-new to initialize the string object
|
2006-12-12 22:47:16 +00:00
|
|
|
nsDependentCString* strPtr = &mNameArray[index];
|
|
|
|
new (strPtr) nsDependentCString(raw);
|
|
|
|
|
|
|
|
NameTableKey key(strPtr);
|
2002-06-26 03:46:39 +00:00
|
|
|
|
2003-08-05 20:09:21 +00:00
|
|
|
NameTableEntry *entry =
|
2007-07-08 07:08:04 +00:00
|
|
|
static_cast<NameTableEntry*>
|
|
|
|
(PL_DHashTableOperate(&mNameTable, &key,
|
2006-12-12 22:47:16 +00:00
|
|
|
PL_DHASH_ADD));
|
2003-07-14 21:21:54 +00:00
|
|
|
|
2002-06-26 19:36:24 +00:00
|
|
|
if (!entry) continue;
|
2003-07-14 21:21:54 +00:00
|
|
|
|
2007-03-27 15:33:38 +00:00
|
|
|
NS_ASSERTION(entry->mString == 0, "Entry already exists!");
|
2002-06-26 03:46:39 +00:00
|
|
|
|
2007-03-27 15:33:38 +00:00
|
|
|
entry->mString = strPtr; // not owned!
|
2002-06-26 03:46:39 +00:00
|
|
|
entry->mIndex = index;
|
2000-08-16 02:07:37 +00:00
|
|
|
}
|
2013-05-21 10:22:45 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
PL_DHashMarkTableImmutable(&mNameTable);
|
|
|
|
#endif
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2003-07-14 21:21:54 +00:00
|
|
|
}
|
2000-08-16 02:07:37 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t
|
2006-12-12 22:47:16 +00:00
|
|
|
nsStaticCaseInsensitiveNameTable::Lookup(const nsACString& aName)
|
2000-08-16 02:07:37 +00:00
|
|
|
{
|
2006-12-12 22:47:16 +00:00
|
|
|
NS_ASSERTION(mNameArray, "not inited");
|
|
|
|
NS_ASSERTION(mNameTable.ops, "not inited");
|
|
|
|
|
|
|
|
const nsAFlatCString& str = PromiseFlatCString(aName);
|
|
|
|
|
|
|
|
NameTableKey key(&str);
|
2003-08-05 20:09:21 +00:00
|
|
|
NameTableEntry *entry =
|
2007-07-08 07:08:04 +00:00
|
|
|
static_cast<NameTableEntry*>
|
|
|
|
(PL_DHashTableOperate(&mNameTable, &key,
|
2006-12-12 22:47:16 +00:00
|
|
|
PL_DHASH_LOOKUP));
|
2003-07-14 21:21:54 +00:00
|
|
|
|
2003-08-05 20:09:21 +00:00
|
|
|
if (PL_DHASH_ENTRY_IS_FREE(entry))
|
2003-07-14 21:21:54 +00:00
|
|
|
return nsStaticCaseInsensitiveNameTable::NOT_FOUND;
|
|
|
|
|
2002-06-26 03:46:39 +00:00
|
|
|
return entry->mIndex;
|
2003-07-14 21:21:54 +00:00
|
|
|
}
|
2000-08-16 02:07:37 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t
|
2006-12-12 22:47:16 +00:00
|
|
|
nsStaticCaseInsensitiveNameTable::Lookup(const nsAString& aName)
|
2000-08-16 02:07:37 +00:00
|
|
|
{
|
2003-07-14 21:21:54 +00:00
|
|
|
NS_ASSERTION(mNameArray, "not inited");
|
|
|
|
NS_ASSERTION(mNameTable.ops, "not inited");
|
2000-08-16 02:07:37 +00:00
|
|
|
|
2006-12-12 22:47:16 +00:00
|
|
|
const nsAFlatString& str = PromiseFlatString(aName);
|
2000-08-16 02:07:37 +00:00
|
|
|
|
2006-12-12 22:47:16 +00:00
|
|
|
NameTableKey key(&str);
|
|
|
|
NameTableEntry *entry =
|
2007-07-08 07:08:04 +00:00
|
|
|
static_cast<NameTableEntry*>
|
|
|
|
(PL_DHashTableOperate(&mNameTable, &key,
|
2006-12-12 22:47:16 +00:00
|
|
|
PL_DHASH_LOOKUP));
|
2003-07-14 21:21:54 +00:00
|
|
|
|
2006-12-12 22:47:16 +00:00
|
|
|
if (PL_DHASH_ENTRY_IS_FREE(entry))
|
|
|
|
return nsStaticCaseInsensitiveNameTable::NOT_FOUND;
|
|
|
|
|
|
|
|
return entry->mIndex;
|
2003-07-14 21:21:54 +00:00
|
|
|
}
|
2000-08-16 02:07:37 +00:00
|
|
|
|
2001-12-03 00:37:35 +00:00
|
|
|
const nsAFlatCString&
|
2012-08-22 15:56:38 +00:00
|
|
|
nsStaticCaseInsensitiveNameTable::GetStringValue(int32_t index)
|
2000-08-16 02:07:37 +00:00
|
|
|
{
|
2003-07-14 21:21:54 +00:00
|
|
|
NS_ASSERTION(mNameArray, "not inited");
|
|
|
|
NS_ASSERTION(mNameTable.ops, "not inited");
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
if ((NOT_FOUND < index) && ((uint32_t)index < mNameTable.entryCount)) {
|
2000-08-16 02:07:37 +00:00
|
|
|
return mNameArray[index];
|
|
|
|
}
|
2003-07-14 21:21:54 +00:00
|
|
|
return mNullStr;
|
|
|
|
}
|