mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
e368dc9c85
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
123 lines
3.1 KiB
C++
123 lines
3.1 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* 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 "nsErrorService.h"
|
|
#include "nsCRT.h"
|
|
|
|
static void*
|
|
CloneCString(nsHashKey *aKey, void *aData, void* closure)
|
|
{
|
|
return NS_strdup((const char*)aData);
|
|
}
|
|
|
|
static bool
|
|
DeleteCString(nsHashKey *aKey, void *aData, void* closure)
|
|
{
|
|
NS_Free(aData);
|
|
return true;
|
|
}
|
|
|
|
nsInt2StrHashtable::nsInt2StrHashtable()
|
|
: mHashtable(CloneCString, nullptr, DeleteCString, nullptr, 16)
|
|
{
|
|
}
|
|
|
|
nsresult
|
|
nsInt2StrHashtable::Put(uint32_t key, const char* aData)
|
|
{
|
|
char* value = NS_strdup(aData);
|
|
if (value == nullptr)
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
nsPRUint32Key k(key);
|
|
char* oldValue = (char*)mHashtable.Put(&k, value);
|
|
if (oldValue)
|
|
NS_Free(oldValue);
|
|
return NS_OK;
|
|
}
|
|
|
|
char*
|
|
nsInt2StrHashtable::Get(uint32_t key)
|
|
{
|
|
nsPRUint32Key k(key);
|
|
const char* value = (const char*)mHashtable.Get(&k);
|
|
if (value == nullptr)
|
|
return nullptr;
|
|
return NS_strdup(value);
|
|
}
|
|
|
|
nsresult
|
|
nsInt2StrHashtable::Remove(uint32_t key)
|
|
{
|
|
nsPRUint32Key k(key);
|
|
char* oldValue = (char*)mHashtable.Remove(&k);
|
|
if (oldValue)
|
|
NS_Free(oldValue);
|
|
return NS_OK;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
NS_IMPL_ISUPPORTS1(nsErrorService, nsIErrorService)
|
|
|
|
nsresult
|
|
nsErrorService::Create(nsISupports* outer, const nsIID& aIID, void* *aInstancePtr)
|
|
{
|
|
NS_ENSURE_NO_AGGREGATION(outer);
|
|
nsErrorService* serv = new nsErrorService();
|
|
if (serv == nullptr)
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
NS_ADDREF(serv);
|
|
nsresult rv = serv->QueryInterface(aIID, aInstancePtr);
|
|
NS_RELEASE(serv);
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsErrorService::RegisterErrorStringBundle(int16_t errorModule, const char *stringBundleURL)
|
|
{
|
|
return mErrorStringBundleURLMap.Put(errorModule, stringBundleURL);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsErrorService::UnregisterErrorStringBundle(int16_t errorModule)
|
|
{
|
|
return mErrorStringBundleURLMap.Remove(errorModule);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsErrorService::GetErrorStringBundle(int16_t errorModule, char **result)
|
|
{
|
|
char* value = mErrorStringBundleURLMap.Get(errorModule);
|
|
if (value == nullptr)
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
*result = value;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsErrorService::RegisterErrorStringBundleKey(nsresult error, const char *stringBundleKey)
|
|
{
|
|
return mErrorStringBundleKeyMap.Put(static_cast<uint32_t>(error),
|
|
stringBundleKey);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsErrorService::UnregisterErrorStringBundleKey(nsresult error)
|
|
{
|
|
return mErrorStringBundleKeyMap.Remove(static_cast<uint32_t>(error));
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsErrorService::GetErrorStringBundleKey(nsresult error, char **result)
|
|
{
|
|
char* value = mErrorStringBundleKeyMap.Get(static_cast<uint32_t>(error));
|
|
if (value == nullptr)
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
*result = value;
|
|
return NS_OK;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|