mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 13:23:07 +00:00
2c8ca451b9
- bits of Bug 571294 - Part 1: Implement selection events (8af4ef3f65) - Bug 1208885 - Remove mozGenericWordUtils; r=smaug (b1a529f772) - fix nsRefPtr/RefPtr (c56979e04d) - Bug 1243657 spellchecker should check if IME composition works as deleting whole text r=ehsan (8b4d4825b9) - Bug 1137544 - New scripts to upgrade en-US.dic to the latest upstream version; r=ehsan (47150b3549) - Bug 1137544 - Upgrade en-US.dic dictionary to upstream version 2015.02.15; r=ehsan (057540f06b) - Bug 1137544 - Generate 5-mozilla-added and 5-mozilla-removed to aid in submitting changes upstream; r=ehsan (f0d6332df3) - Bug 1137544 - Update the en-US dictionary based on the SCOWL 2015.04.24 wordlist using the new scripts (e87b0a0285) - minor test alignment (f3e976adf2) - Bug 1162823 - Do not treat non-Latin words as misspelled; r=ekanan (c298db7251) - Bug 1160730 - Add composited, compositing and compositeness to the en-US dictionary. r=ehsan (7d62babbdb) - Bug 1167912 - Add eldritch to the en-US dictionary. r=ehsan (4d1e08e03b) - Bug 1168802 - Update the en-US dictionary to SCOWL 2015.05.18 (3daa6d0831) - Bug 1183765 - Add crappiness to our en-US dictionary. r=ehsan (54ccd28fa2) - Bug 1192054 - Add subsumption to the en-US dictionary. r=ehsan (8c5aaa92bc) - Bug 1199540 - Update the en-US dictionary to SCOWL 2015.08.24 (cb21d0092d) - Bug 1200508 - Add dialogs to the en-US dictionary. r=ehsan (1e69b4d574) - Bug 1202600 - Add Fukushima to the en-US dictionary. r=ehsan (6ffca1c47b) - Bug 1213765 - Add preliminarily to the en-US dictionary. r=ehsan (cb12d4979b) - Bug 1228174 - Add validator to the en-US dictionary. r=ehsan (b356d7f5cb) - Bug 1199532 - Add disassembly, disassembler to the en-US dictionary. r=ehsan (979bb4f997) - Bug 1235506 - Correct 353 entries in the en-US dictionary. r=ehsan (efb2f4a890) - Bug 1238031 - Fix make-new-dict to use a custom en_US dictionary that adds common variants and accented words. r=ehsan (39464a234f) - Bug 301712 - Remove uncommon proper names, remove unneeded words. r=ehsan (a6ece3925f) - Bug 1240916 - Part 2: Update the en-US dictionary to SCOWL 2016.01.19 (bb059318e5) - Bug 1196784 - imageset will use permissions.default.image. r=jdm (9a5669f71f) - Bug 1182727 - Part 16: Fix a bug in build_tar_package (1d8f444eba) - Bug 1182727 - Part 19: Fix another stupid mistake in build_tar_package() (87bb241693) - Bug 1261264 - Apply GCC PR64905 to fix miscompilation with -fomit-frame-pointer. r=froydnj (d746a0c878) - missing option, for safety (6fba93dff9) - Bug 1260605 - Remove hack from bug 967556. r=nalexander (9513dbcd26) - Bug 1239789 - Add secondary buffers to zxx_stream::StaticAllocator to handle reentrancy. r=glandium (74b60ffaad) - Bug 1260351 - MozGlue: Build: Add mips support. r=glandium (8a463032f6) - Bug 1249849: Ensure that we can always reach malloc_decl.h even when MOZ_REPLACE_ALLOC is not defined; r=glandium (1a8d0356ac) - Bug 1248915 - TSan: data race on global 'mozilla::net::CacheObserver::sDiskCacheCapacity'. r=honzab.moz, n.nethercote. (86769cd893) - Bug 1249157 - prefapi enums into class enums, explicit conversion, cleanup. r=bsmedberg (1843c09593) - Bug 1251393: Remove a duplicated line. r=me (c2bca1a4f4)
391 lines
13 KiB
C++
391 lines
13 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/. */
|
|
|
|
#ifndef mozilla_Preferences_h
|
|
#define mozilla_Preferences_h
|
|
|
|
#ifndef MOZILLA_INTERNAL_API
|
|
#error "This header is only usable from within libxul (MOZILLA_INTERNAL_API)."
|
|
#endif
|
|
|
|
#include "nsIPrefService.h"
|
|
#include "nsIPrefBranch.h"
|
|
#include "nsIPrefBranchInternal.h"
|
|
#include "nsIObserver.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsTArray.h"
|
|
#include "nsWeakReference.h"
|
|
#include "mozilla/MemoryReporting.h"
|
|
|
|
class nsIFile;
|
|
class nsAdoptingString;
|
|
class nsAdoptingCString;
|
|
|
|
#ifndef have_PrefChangedFunc_typedef
|
|
typedef void (*PrefChangedFunc)(const char *, void *);
|
|
#define have_PrefChangedFunc_typedef
|
|
#endif
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
class PrefSetting;
|
|
} // namespace dom
|
|
|
|
class Preferences final : public nsIPrefService,
|
|
public nsIObserver,
|
|
public nsIPrefBranchInternal,
|
|
public nsSupportsWeakReference
|
|
{
|
|
public:
|
|
typedef mozilla::dom::PrefSetting PrefSetting;
|
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
NS_DECL_NSIPREFSERVICE
|
|
NS_FORWARD_NSIPREFBRANCH(sRootBranch->)
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
Preferences();
|
|
|
|
nsresult Init();
|
|
|
|
/**
|
|
* Reset loaded user prefs then read them
|
|
*/
|
|
static nsresult ResetAndReadUserPrefs();
|
|
|
|
/**
|
|
* Returns the singleton instance which is addreffed.
|
|
*/
|
|
static Preferences* GetInstanceForService();
|
|
|
|
/**
|
|
* Finallizes global members.
|
|
*/
|
|
static void Shutdown();
|
|
|
|
/**
|
|
* Returns shared pref service instance
|
|
* NOTE: not addreffed.
|
|
*/
|
|
static nsIPrefService* GetService()
|
|
{
|
|
NS_ENSURE_TRUE(InitStaticMembers(), nullptr);
|
|
return sPreferences;
|
|
}
|
|
|
|
/**
|
|
* Returns shared pref branch instance.
|
|
* NOTE: not addreffed.
|
|
*/
|
|
static nsIPrefBranch* GetRootBranch()
|
|
{
|
|
NS_ENSURE_TRUE(InitStaticMembers(), nullptr);
|
|
return sRootBranch;
|
|
}
|
|
|
|
/**
|
|
* Returns shared default pref branch instance.
|
|
* NOTE: not addreffed.
|
|
*/
|
|
static nsIPrefBranch* GetDefaultRootBranch()
|
|
{
|
|
NS_ENSURE_TRUE(InitStaticMembers(), nullptr);
|
|
return sDefaultRootBranch;
|
|
}
|
|
|
|
/**
|
|
* Gets int or bool type pref value with default value if failed to get
|
|
* the pref.
|
|
*/
|
|
static bool GetBool(const char* aPref, bool aDefault = false)
|
|
{
|
|
bool result = aDefault;
|
|
GetBool(aPref, &result);
|
|
return result;
|
|
}
|
|
|
|
static int32_t GetInt(const char* aPref, int32_t aDefault = 0)
|
|
{
|
|
int32_t result = aDefault;
|
|
GetInt(aPref, &result);
|
|
return result;
|
|
}
|
|
|
|
static uint32_t GetUint(const char* aPref, uint32_t aDefault = 0)
|
|
{
|
|
uint32_t result = aDefault;
|
|
GetUint(aPref, &result);
|
|
return result;
|
|
}
|
|
|
|
static float GetFloat(const char* aPref, float aDefault = 0)
|
|
{
|
|
float result = aDefault;
|
|
GetFloat(aPref, &result);
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* Gets char type pref value directly. If failed, the get() of result
|
|
* returns nullptr. Even if succeeded but the result was empty string, the
|
|
* get() does NOT return nullptr. So, you can check whether the method
|
|
* succeeded or not by:
|
|
*
|
|
* nsAdoptingString value = Prefereces::GetString("foo.bar");
|
|
* if (!value) {
|
|
* // failed
|
|
* }
|
|
*
|
|
* Be aware. If you wrote as:
|
|
*
|
|
* nsAutoString value = Preferences::GetString("foo.bar");
|
|
* if (!value.get()) {
|
|
* // the condition is always FALSE!!
|
|
* }
|
|
*
|
|
* The value.get() doesn't return nullptr. You must use nsAdoptingString
|
|
* when you need to check whether it was failure or not.
|
|
*/
|
|
static nsAdoptingCString GetCString(const char* aPref);
|
|
static nsAdoptingString GetString(const char* aPref);
|
|
static nsAdoptingCString GetLocalizedCString(const char* aPref);
|
|
static nsAdoptingString GetLocalizedString(const char* aPref);
|
|
|
|
/**
|
|
* Gets int, float, or bool type pref value with raw return value of
|
|
* nsIPrefBranch.
|
|
*
|
|
* @param aPref A pref name.
|
|
* @param aResult Must not be nullptr. The value is never modified
|
|
* when these methods fail.
|
|
*/
|
|
static nsresult GetBool(const char* aPref, bool* aResult);
|
|
static nsresult GetInt(const char* aPref, int32_t* aResult);
|
|
static nsresult GetFloat(const char* aPref, float* aResult);
|
|
static nsresult GetUint(const char* aPref, uint32_t* aResult)
|
|
{
|
|
int32_t result;
|
|
nsresult rv = GetInt(aPref, &result);
|
|
if (NS_SUCCEEDED(rv)) {
|
|
*aResult = static_cast<uint32_t>(result);
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
/**
|
|
* Gets string type pref value with raw return value of nsIPrefBranch.
|
|
*
|
|
* @param aPref A pref name.
|
|
* @param aResult Must not be nullptr. The value is never modified
|
|
* when these methods fail.
|
|
*/
|
|
static nsresult GetCString(const char* aPref, nsACString* aResult);
|
|
static nsresult GetString(const char* aPref, nsAString* aResult);
|
|
static nsresult GetLocalizedCString(const char* aPref, nsACString* aResult);
|
|
static nsresult GetLocalizedString(const char* aPref, nsAString* aResult);
|
|
|
|
static nsresult GetComplex(const char* aPref, const nsIID &aType,
|
|
void** aResult);
|
|
|
|
/**
|
|
* Sets various type pref values.
|
|
*/
|
|
static nsresult SetBool(const char* aPref, bool aValue);
|
|
static nsresult SetInt(const char* aPref, int32_t aValue);
|
|
static nsresult SetUint(const char* aPref, uint32_t aValue)
|
|
{
|
|
return SetInt(aPref, static_cast<int32_t>(aValue));
|
|
}
|
|
static nsresult SetFloat(const char* aPref, float aValue);
|
|
static nsresult SetCString(const char* aPref, const char* aValue);
|
|
static nsresult SetCString(const char* aPref, const nsACString &aValue);
|
|
static nsresult SetString(const char* aPref, const char16ptr_t aValue);
|
|
static nsresult SetString(const char* aPref, const nsAString &aValue);
|
|
|
|
static nsresult SetComplex(const char* aPref, const nsIID &aType,
|
|
nsISupports* aValue);
|
|
|
|
/**
|
|
* Clears user set pref.
|
|
*/
|
|
static nsresult ClearUser(const char* aPref);
|
|
|
|
/**
|
|
* Whether the pref has a user value or not.
|
|
*/
|
|
static bool HasUserValue(const char* aPref);
|
|
|
|
/**
|
|
* Gets the type of the pref.
|
|
*/
|
|
static int32_t GetType(const char* aPref);
|
|
|
|
/**
|
|
* Adds/Removes the observer for the root pref branch.
|
|
* The observer is referenced strongly if AddStrongObserver is used. On the
|
|
* other hand, it is referenced weakly, if AddWeakObserver is used.
|
|
* See nsIPrefBranch.idl for details.
|
|
*/
|
|
static nsresult AddStrongObserver(nsIObserver* aObserver, const char* aPref);
|
|
static nsresult AddWeakObserver(nsIObserver* aObserver, const char* aPref);
|
|
static nsresult RemoveObserver(nsIObserver* aObserver, const char* aPref);
|
|
|
|
/**
|
|
* Adds/Removes two or more observers for the root pref branch.
|
|
* Pass to aPrefs an array of const char* whose last item is nullptr.
|
|
*/
|
|
static nsresult AddStrongObservers(nsIObserver* aObserver,
|
|
const char** aPrefs);
|
|
static nsresult AddWeakObservers(nsIObserver* aObserver,
|
|
const char** aPrefs);
|
|
static nsresult RemoveObservers(nsIObserver* aObserver,
|
|
const char** aPrefs);
|
|
|
|
/**
|
|
* Registers/Unregisters the callback function for the aPref.
|
|
*/
|
|
static nsresult RegisterCallback(PrefChangedFunc aCallback,
|
|
const char* aPref,
|
|
void* aClosure = nullptr);
|
|
static nsresult UnregisterCallback(PrefChangedFunc aCallback,
|
|
const char* aPref,
|
|
void* aClosure = nullptr);
|
|
// Like RegisterCallback, but also calls the callback immediately for
|
|
// initialization.
|
|
static nsresult RegisterCallbackAndCall(PrefChangedFunc aCallback,
|
|
const char* aPref,
|
|
void* aClosure = nullptr);
|
|
|
|
/**
|
|
* Adds the aVariable to cache table. aVariable must be a pointer for a
|
|
* static variable. The value will be modified when the pref value is
|
|
* changed but note that even if you modified it, the value isn't assigned to
|
|
* the pref.
|
|
*/
|
|
static nsresult AddBoolVarCache(bool* aVariable,
|
|
const char* aPref,
|
|
bool aDefault = false);
|
|
static nsresult AddIntVarCache(int32_t* aVariable,
|
|
const char* aPref,
|
|
int32_t aDefault = 0);
|
|
static nsresult AddUintVarCache(uint32_t* aVariable,
|
|
const char* aPref,
|
|
uint32_t aDefault = 0);
|
|
template <MemoryOrdering Order>
|
|
static nsresult AddAtomicUintVarCache(Atomic<uint32_t, Order>* aVariable,
|
|
const char* aPref,
|
|
uint32_t aDefault = 0);
|
|
static nsresult AddFloatVarCache(float* aVariable,
|
|
const char* aPref,
|
|
float aDefault = 0.0f);
|
|
|
|
/**
|
|
* Gets the default bool, int or uint value of the pref.
|
|
* The result is raw result of nsIPrefBranch::Get*Pref().
|
|
* If the pref could have any value, you needed to use these methods.
|
|
* If not so, you could use below methods.
|
|
*/
|
|
static nsresult GetDefaultBool(const char* aPref, bool* aResult);
|
|
static nsresult GetDefaultInt(const char* aPref, int32_t* aResult);
|
|
static nsresult GetDefaultUint(const char* aPref, uint32_t* aResult)
|
|
{
|
|
return GetDefaultInt(aPref, reinterpret_cast<int32_t*>(aResult));
|
|
}
|
|
|
|
/**
|
|
* Gets the default bool, int or uint value of the pref directly.
|
|
* You can set an invalid value of the pref to aFailedResult. If these
|
|
* methods failed to get the default value, they would return the
|
|
* aFailedResult value.
|
|
*/
|
|
static bool GetDefaultBool(const char* aPref, bool aFailedResult)
|
|
{
|
|
bool result;
|
|
return NS_SUCCEEDED(GetDefaultBool(aPref, &result)) ? result :
|
|
aFailedResult;
|
|
}
|
|
static int32_t GetDefaultInt(const char* aPref, int32_t aFailedResult)
|
|
{
|
|
int32_t result;
|
|
return NS_SUCCEEDED(GetDefaultInt(aPref, &result)) ? result : aFailedResult;
|
|
}
|
|
static uint32_t GetDefaultUint(const char* aPref, uint32_t aFailedResult)
|
|
{
|
|
return static_cast<uint32_t>(
|
|
GetDefaultInt(aPref, static_cast<int32_t>(aFailedResult)));
|
|
}
|
|
|
|
/**
|
|
* Gets the default value of the char type pref.
|
|
* If the get() of the result returned nullptr, that meant the value didn't
|
|
* have default value.
|
|
*
|
|
* See the comment at definition at GetString() and GetCString() for more
|
|
* details of the result.
|
|
*/
|
|
static nsAdoptingString GetDefaultString(const char* aPref);
|
|
static nsAdoptingCString GetDefaultCString(const char* aPref);
|
|
static nsAdoptingString GetDefaultLocalizedString(const char* aPref);
|
|
static nsAdoptingCString GetDefaultLocalizedCString(const char* aPref);
|
|
|
|
static nsresult GetDefaultCString(const char* aPref, nsACString* aResult);
|
|
static nsresult GetDefaultString(const char* aPref, nsAString* aResult);
|
|
static nsresult GetDefaultLocalizedCString(const char* aPref,
|
|
nsACString* aResult);
|
|
static nsresult GetDefaultLocalizedString(const char* aPref,
|
|
nsAString* aResult);
|
|
|
|
static nsresult GetDefaultComplex(const char* aPref, const nsIID &aType,
|
|
void** aResult);
|
|
|
|
/**
|
|
* Gets the type of the pref.
|
|
*/
|
|
static int32_t GetDefaultType(const char* aPref);
|
|
|
|
// Used to synchronise preferences between chrome and content processes.
|
|
static void GetPreferences(InfallibleTArray<PrefSetting>* aPrefs);
|
|
static void GetPreference(PrefSetting* aPref);
|
|
static void SetPreference(const PrefSetting& aPref);
|
|
|
|
static int64_t SizeOfIncludingThisAndOtherStuff(mozilla::MallocSizeOf aMallocSizeOf);
|
|
|
|
protected:
|
|
virtual ~Preferences();
|
|
|
|
nsresult NotifyServiceObservers(const char *aSubject);
|
|
/**
|
|
* Reads the default pref file or, if that failed, try to save a new one.
|
|
*
|
|
* @return NS_OK if either action succeeded,
|
|
* or the error code related to the read attempt.
|
|
*/
|
|
nsresult UseDefaultPrefFile();
|
|
nsresult UseUserPrefFile();
|
|
nsresult ReadAndOwnUserPrefFile(nsIFile *aFile);
|
|
nsresult ReadAndOwnSharedUserPrefFile(nsIFile *aFile);
|
|
nsresult SavePrefFileInternal(nsIFile* aFile);
|
|
nsresult WritePrefFile(nsIFile* aFile);
|
|
nsresult MakeBackupPrefFile(nsIFile *aFile);
|
|
|
|
private:
|
|
nsCOMPtr<nsIFile> mCurrentFile;
|
|
|
|
static Preferences* sPreferences;
|
|
static nsIPrefBranch* sRootBranch;
|
|
static nsIPrefBranch* sDefaultRootBranch;
|
|
static bool sShutdown;
|
|
|
|
/**
|
|
* Init static members. TRUE if it succeeded. Otherwise, FALSE.
|
|
*/
|
|
static bool InitStaticMembers();
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_Preferences_h
|