mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
aef3149a23
--HG-- rename : intl/locale/src/Makefile.in => intl/locale/Makefile.in rename : intl/locale/src/PluralForm.jsm => intl/locale/PluralForm.jsm rename : intl/locale/src/langGroups.properties => intl/locale/langGroups.properties rename : intl/locale/src/language.properties => intl/locale/language.properties rename : intl/locale/src/mac/moz.build => intl/locale/mac/moz.build rename : intl/locale/src/mac/nsCollationMacUC.cpp => intl/locale/mac/nsCollationMacUC.cpp rename : intl/locale/src/mac/nsCollationMacUC.h => intl/locale/mac/nsCollationMacUC.h rename : intl/locale/src/mac/nsDateTimeFormatMac.cpp => intl/locale/mac/nsDateTimeFormatMac.cpp rename : intl/locale/src/mac/nsDateTimeFormatMac.h => intl/locale/mac/nsDateTimeFormatMac.h rename : intl/locale/src/mac/nsMacCharset.cpp => intl/locale/mac/nsMacCharset.cpp rename : intl/locale/src/nsCollation.cpp => intl/locale/nsCollation.cpp rename : intl/locale/src/nsCollation.h => intl/locale/nsCollation.h rename : intl/locale/src/nsLanguageAtomService.cpp => intl/locale/nsLanguageAtomService.cpp rename : intl/locale/src/nsLanguageAtomService.h => intl/locale/nsLanguageAtomService.h rename : intl/locale/src/nsLocale.cpp => intl/locale/nsLocale.cpp rename : intl/locale/src/nsLocale.h => intl/locale/nsLocale.h rename : intl/locale/src/nsLocaleConstructors.h => intl/locale/nsLocaleConstructors.h rename : intl/locale/src/nsLocaleService.cpp => intl/locale/nsLocaleService.cpp rename : intl/locale/src/nsPlatformCharset.h => intl/locale/nsPlatformCharset.h rename : intl/locale/src/nsScriptableDateFormat.cpp => intl/locale/nsScriptableDateFormat.cpp rename : intl/locale/src/nsUConvPropertySearch.cpp => intl/locale/nsUConvPropertySearch.cpp rename : intl/locale/src/nsUConvPropertySearch.h => intl/locale/nsUConvPropertySearch.h rename : intl/locale/src/props2arrays.py => intl/locale/props2arrays.py rename : intl/locale/src/unix/Makefile.in => intl/locale/unix/Makefile.in rename : intl/locale/src/unix/moz.build => intl/locale/unix/moz.build rename : intl/locale/src/unix/nsAndroidCharset.cpp => intl/locale/unix/nsAndroidCharset.cpp rename : intl/locale/src/unix/nsCollationUnix.cpp => intl/locale/unix/nsCollationUnix.cpp rename : intl/locale/src/unix/nsCollationUnix.h => intl/locale/unix/nsCollationUnix.h rename : intl/locale/src/unix/nsDateTimeFormatUnix.cpp => intl/locale/unix/nsDateTimeFormatUnix.cpp rename : intl/locale/src/unix/nsDateTimeFormatUnix.h => intl/locale/unix/nsDateTimeFormatUnix.h rename : intl/locale/src/unix/nsPosixLocale.cpp => intl/locale/unix/nsPosixLocale.cpp rename : intl/locale/src/unix/nsUNIXCharset.cpp => intl/locale/unix/nsUNIXCharset.cpp rename : intl/locale/src/unix/unixcharset.properties => intl/locale/unix/unixcharset.properties rename : intl/locale/src/windows/Makefile.in => intl/locale/windows/Makefile.in rename : intl/locale/src/windows/moz.build => intl/locale/windows/moz.build rename : intl/locale/src/windows/nsCollationWin.cpp => intl/locale/windows/nsCollationWin.cpp rename : intl/locale/src/windows/nsCollationWin.h => intl/locale/windows/nsCollationWin.h rename : intl/locale/src/windows/nsDateTimeFormatWin.cpp => intl/locale/windows/nsDateTimeFormatWin.cpp rename : intl/locale/src/windows/nsDateTimeFormatWin.h => intl/locale/windows/nsDateTimeFormatWin.h rename : intl/locale/src/windows/nsWin32Locale.cpp => intl/locale/windows/nsWin32Locale.cpp rename : intl/locale/src/windows/nsWinCharset.cpp => intl/locale/windows/nsWinCharset.cpp rename : intl/locale/src/windows/wincharset.properties => intl/locale/windows/wincharset.properties
109 lines
2.5 KiB
C++
109 lines
2.5 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
|
|
#include "nsString.h"
|
|
#include "nsISupports.h"
|
|
#include "nsILocale.h"
|
|
#include "nsLocale.h"
|
|
#include "nsMemory.h"
|
|
#include "nsCRT.h"
|
|
|
|
#define LOCALE_HASH_SIZE 0xFF
|
|
|
|
|
|
/* nsILocale */
|
|
NS_IMPL_ISUPPORTS(nsLocale, nsILocale)
|
|
|
|
nsLocale::nsLocale(void)
|
|
: fHashtable(nullptr), fCategoryCount(0)
|
|
{
|
|
fHashtable = PL_NewHashTable(LOCALE_HASH_SIZE,&nsLocale::Hash_HashFunction,
|
|
&nsLocale::Hash_CompareNSString,
|
|
&nsLocale::Hash_CompareNSString,
|
|
nullptr, nullptr);
|
|
NS_ASSERTION(fHashtable, "nsLocale: failed to allocate PR_Hashtable");
|
|
}
|
|
|
|
nsLocale::~nsLocale(void)
|
|
{
|
|
// enumerate all the entries with a delete function to
|
|
// safely delete all the keys and values
|
|
PL_HashTableEnumerateEntries(fHashtable, &nsLocale::Hash_EnumerateDelete,
|
|
nullptr);
|
|
|
|
PL_HashTableDestroy(fHashtable);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsLocale::GetCategory(const nsAString& category, nsAString& result)
|
|
{
|
|
const char16_t *value = (const char16_t*)
|
|
PL_HashTableLookup(fHashtable, PromiseFlatString(category).get());
|
|
|
|
if (value)
|
|
{
|
|
result.Assign(value);
|
|
return NS_OK;
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsLocale::AddCategory(const nsAString &category, const nsAString &value)
|
|
{
|
|
char16_t* newKey = ToNewUnicode(category);
|
|
if (!newKey)
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
char16_t* newValue = ToNewUnicode(value);
|
|
if (!newValue) {
|
|
nsMemory::Free(newKey);
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
}
|
|
|
|
if (!PL_HashTableAdd(fHashtable, newKey, newValue)) {
|
|
nsMemory::Free(newKey);
|
|
nsMemory::Free(newValue);
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
PLHashNumber
|
|
nsLocale::Hash_HashFunction(const void* key)
|
|
{
|
|
const char16_t* ptr = (const char16_t *) key;
|
|
PLHashNumber hash;
|
|
|
|
hash = (PLHashNumber)0;
|
|
|
|
while (*ptr)
|
|
hash += (PLHashNumber) *ptr++;
|
|
|
|
return hash;
|
|
}
|
|
|
|
|
|
int
|
|
nsLocale::Hash_CompareNSString(const void* s1, const void* s2)
|
|
{
|
|
return !nsCRT::strcmp((const char16_t *) s1, (const char16_t *) s2);
|
|
}
|
|
|
|
|
|
int
|
|
nsLocale::Hash_EnumerateDelete(PLHashEntry *he, int hashIndex, void *arg)
|
|
{
|
|
// delete an entry
|
|
nsMemory::Free((char16_t *)he->key);
|
|
nsMemory::Free((char16_t *)he->value);
|
|
|
|
return (HT_ENUMERATE_NEXT | HT_ENUMERATE_REMOVE);
|
|
}
|
|
|