2003-06-18 11:26:27 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
1999-09-29 02:35:42 +00:00
|
|
|
|
|
|
|
|
2003-06-18 11:26:27 +00:00
|
|
|
#ifndef NSCATEGORYMANAGER_H
|
|
|
|
#define NSCATEGORYMANAGER_H
|
|
|
|
|
|
|
|
#include "prio.h"
|
|
|
|
#include "plarena.h"
|
|
|
|
#include "nsClassHashtable.h"
|
|
|
|
#include "nsICategoryManager.h"
|
2013-11-07 05:35:30 +00:00
|
|
|
#include "nsIMemoryReporter.h"
|
2013-06-23 12:03:39 +00:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2009-07-23 14:29:00 +00:00
|
|
|
#include "mozilla/Mutex.h"
|
2012-06-13 03:08:53 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2003-06-18 11:26:27 +00:00
|
|
|
|
2012-10-19 12:07:36 +00:00
|
|
|
class nsIMemoryReporter;
|
2002-07-18 05:09:10 +00:00
|
|
|
|
|
|
|
/* 16d222a6-1dd2-11b2-b693-f38b02c021b2 */
|
|
|
|
#define NS_CATEGORYMANAGER_CID \
|
|
|
|
{ 0x16d222a6, 0x1dd2, 0x11b2, \
|
|
|
|
{0xb6, 0x93, 0xf3, 0x8b, 0x02, 0xc0, 0x21, 0xb2} }
|
|
|
|
|
2003-06-18 11:26:27 +00:00
|
|
|
/**
|
|
|
|
* a "leaf-node", managed by the nsCategoryNode hashtable.
|
|
|
|
*
|
|
|
|
* we need to keep a "persistent value" (which will be written to the registry)
|
|
|
|
* and a non-persistent value (for the current runtime): these are usually
|
2011-10-17 14:59:28 +00:00
|
|
|
* the same, except when aPersist==false. The strings are permanently arena-
|
2003-06-18 11:26:27 +00:00
|
|
|
* allocated, and will never go away.
|
|
|
|
*/
|
|
|
|
class CategoryLeaf : public nsDepCharHashKey
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CategoryLeaf(const char* aKey)
|
|
|
|
: nsDepCharHashKey(aKey),
|
2013-10-10 20:41:00 +00:00
|
|
|
value(nullptr) { }
|
2010-06-10 18:11:11 +00:00
|
|
|
const char* value;
|
2003-06-18 11:26:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-10-02 06:49:45 +00:00
|
|
|
* CategoryNode keeps a hashtable of its entries.
|
2003-06-18 11:26:27 +00:00
|
|
|
* the CategoryNode itself is permanently allocated in
|
|
|
|
* the arena.
|
|
|
|
*/
|
|
|
|
class CategoryNode
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_METHOD GetLeaf(const char* aEntryName,
|
|
|
|
char** _retval);
|
|
|
|
|
|
|
|
NS_METHOD AddLeaf(const char* aEntryName,
|
|
|
|
const char* aValue,
|
2010-06-28 01:14:54 +00:00
|
|
|
bool aReplace,
|
2003-06-18 11:26:27 +00:00
|
|
|
char** _retval,
|
|
|
|
PLArenaPool* aArena);
|
|
|
|
|
2010-06-24 18:31:18 +00:00
|
|
|
void DeleteLeaf(const char* aEntryName);
|
|
|
|
|
|
|
|
void Clear() {
|
|
|
|
mozilla::MutexAutoLock lock(mLock);
|
|
|
|
mTable.Clear();
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t Count() {
|
2009-07-23 14:29:00 +00:00
|
|
|
mozilla::MutexAutoLock lock(mLock);
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t tCount = mTable.Count();
|
2003-06-18 11:26:27 +00:00
|
|
|
return tCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_METHOD Enumerate(nsISimpleEnumerator** _retval);
|
|
|
|
|
|
|
|
// CategoryNode is arena-allocated, with the strings
|
|
|
|
static CategoryNode* Create(PLArenaPool* aArena);
|
|
|
|
~CategoryNode();
|
|
|
|
void operator delete(void*) { }
|
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
size_t SizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf);
|
2012-10-19 12:07:36 +00:00
|
|
|
|
2003-06-18 11:26:27 +00:00
|
|
|
private:
|
2009-07-23 14:29:00 +00:00
|
|
|
CategoryNode()
|
|
|
|
: mLock("CategoryLeaf")
|
|
|
|
{ }
|
|
|
|
|
2003-06-18 11:26:27 +00:00
|
|
|
void* operator new(size_t aSize, PLArenaPool* aArena);
|
|
|
|
|
|
|
|
nsTHashtable<CategoryLeaf> mTable;
|
2009-07-23 14:29:00 +00:00
|
|
|
mozilla::Mutex mLock;
|
2003-06-18 11:26:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The main implementation of nsICategoryManager.
|
|
|
|
*
|
|
|
|
* This implementation is thread-safe.
|
|
|
|
*/
|
2012-06-13 03:08:53 +00:00
|
|
|
class nsCategoryManager MOZ_FINAL
|
2013-11-07 05:35:30 +00:00
|
|
|
: public mozilla::MemoryUniReporter
|
|
|
|
, public nsICategoryManager
|
2003-06-18 11:26:27 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICATEGORYMANAGER
|
|
|
|
|
2005-06-17 21:07:47 +00:00
|
|
|
/**
|
|
|
|
* Suppress or unsuppress notifications of category changes to the
|
|
|
|
* observer service. This is to be used by nsComponentManagerImpl
|
|
|
|
* on startup while reading the stored category list.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_METHOD SuppressNotifications(bool aSuppress);
|
2005-06-17 21:07:47 +00:00
|
|
|
|
2010-06-10 18:11:11 +00:00
|
|
|
void AddCategoryEntry(const char* aCategory,
|
|
|
|
const char* aKey,
|
2010-06-24 18:31:18 +00:00
|
|
|
const char* aValue,
|
|
|
|
bool aReplace = true,
|
2013-10-10 20:41:00 +00:00
|
|
|
char** aOldValue = nullptr);
|
2010-06-10 18:11:11 +00:00
|
|
|
|
|
|
|
static nsresult Create(nsISupports* aOuter, REFNSIID aIID, void** aResult);
|
2012-10-19 12:07:36 +00:00
|
|
|
void InitMemoryReporter();
|
2010-06-10 18:11:11 +00:00
|
|
|
|
|
|
|
static nsCategoryManager* GetSingleton();
|
|
|
|
static void Destroy();
|
2009-07-23 14:29:00 +00:00
|
|
|
|
2013-11-07 05:35:30 +00:00
|
|
|
int64_t Amount() MOZ_OVERRIDE;
|
2012-10-19 12:07:36 +00:00
|
|
|
|
2003-06-18 11:26:27 +00:00
|
|
|
private:
|
2010-06-10 18:11:11 +00:00
|
|
|
static nsCategoryManager* gCategoryManager;
|
2003-06-18 11:26:27 +00:00
|
|
|
|
2010-06-10 18:11:11 +00:00
|
|
|
nsCategoryManager();
|
2003-06-18 11:26:27 +00:00
|
|
|
~nsCategoryManager();
|
|
|
|
|
2013-11-07 05:35:30 +00:00
|
|
|
size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf);
|
2013-01-18 05:43:21 +00:00
|
|
|
|
2003-06-18 11:26:27 +00:00
|
|
|
CategoryNode* get_category(const char* aName);
|
2005-06-17 21:07:47 +00:00
|
|
|
void NotifyObservers(const char* aTopic,
|
2012-01-11 16:28:21 +00:00
|
|
|
const char* aCategoryName, // must be a static string
|
2005-06-17 21:07:47 +00:00
|
|
|
const char* aEntryName);
|
2003-06-18 11:26:27 +00:00
|
|
|
|
|
|
|
PLArenaPool mArena;
|
|
|
|
nsClassHashtable<nsDepCharHashKey, CategoryNode> mTable;
|
2009-07-23 14:29:00 +00:00
|
|
|
mozilla::Mutex mLock;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mSuppressNotifications;
|
2003-06-18 11:26:27 +00:00
|
|
|
};
|
2002-07-18 05:09:10 +00:00
|
|
|
|
2003-06-18 11:26:27 +00:00
|
|
|
#endif
|