2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Brian Nesse <bnesse@netscape.com>
|
2009-11-03 11:05:31 -08:00
|
|
|
* Mats Palmgren <matspal@gmail.com>
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2011-05-23 07:54:03 -07:00
|
|
|
#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
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsIPrefService.h"
|
|
|
|
#include "nsIPrefBranch.h"
|
|
|
|
#include "nsIPrefBranchInternal.h"
|
|
|
|
#include "nsIObserver.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsWeakReference.h"
|
|
|
|
|
|
|
|
class nsIFile;
|
2011-05-23 07:54:03 -07:00
|
|
|
class nsCString;
|
|
|
|
class nsString;
|
2011-05-28 00:03:00 -07:00
|
|
|
class nsAdoptingString;
|
|
|
|
class nsAdoptingCString;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-05-28 16:42:57 -07:00
|
|
|
#ifndef have_PrefChangedFunc_typedef
|
|
|
|
typedef int (*PR_CALLBACK PrefChangedFunc)(const char *, void *);
|
|
|
|
#define have_PrefChangedFunc_typedef
|
|
|
|
#endif
|
|
|
|
|
2011-05-23 07:54:02 -07:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
class Preferences : public nsIPrefService,
|
|
|
|
public nsIPrefServiceInternal,
|
|
|
|
public nsIObserver,
|
|
|
|
public nsIPrefBranchInternal,
|
|
|
|
public nsSupportsWeakReference
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIPREFSERVICE
|
2010-09-08 20:38:12 -07:00
|
|
|
NS_DECL_NSIPREFSERVICEINTERNAL
|
2011-06-21 23:39:10 -07:00
|
|
|
NS_FORWARD_NSIPREFBRANCH(sRootBranch->)
|
|
|
|
NS_FORWARD_NSIPREFBRANCH2(sRootBranch->)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
2011-05-23 07:54:02 -07:00
|
|
|
Preferences();
|
|
|
|
virtual ~Preferences();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsresult Init();
|
2011-05-23 07:54:03 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the singleton instance which is addreffed.
|
|
|
|
*/
|
2011-06-11 19:30:15 -07:00
|
|
|
static Preferences* GetInstanceForService();
|
2011-05-23 07:54:03 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Finallizes global members.
|
|
|
|
*/
|
|
|
|
static void Shutdown();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns shared pref service instance
|
|
|
|
* NOTE: not addreffed.
|
|
|
|
*/
|
2011-06-02 23:01:02 -07:00
|
|
|
static nsIPrefService* GetService()
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(InitStaticMembers(), nsnull);
|
|
|
|
return sPreferences;
|
|
|
|
}
|
2011-05-23 07:54:03 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns shared pref branch instance.
|
|
|
|
* NOTE: not addreffed.
|
|
|
|
*/
|
|
|
|
static nsIPrefBranch2* GetRootBranch()
|
|
|
|
{
|
2011-06-02 23:01:02 -07:00
|
|
|
NS_ENSURE_TRUE(InitStaticMembers(), nsnull);
|
2011-06-21 23:39:10 -07:00
|
|
|
return sRootBranch;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns shared default pref branch instance.
|
|
|
|
* NOTE: not addreffed.
|
|
|
|
*/
|
|
|
|
static nsIPrefBranch* GetDefaultRootBranch()
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(InitStaticMembers(), nsnull);
|
|
|
|
return sDefaultRootBranch;
|
2011-05-23 07:54:03 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets int or bool type pref value with default value if failed to get
|
|
|
|
* the pref.
|
|
|
|
*/
|
|
|
|
static PRBool GetBool(const char* aPref, PRBool aDefault = PR_FALSE)
|
|
|
|
{
|
|
|
|
PRBool result = aDefault;
|
|
|
|
GetBool(aPref, &result);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRInt32 GetInt(const char* aPref, PRInt32 aDefault = 0)
|
|
|
|
{
|
|
|
|
PRInt32 result = aDefault;
|
|
|
|
GetInt(aPref, &result);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-05-24 23:31:59 -07:00
|
|
|
static PRUint32 GetUint(const char* aPref, PRUint32 aDefault = 0)
|
|
|
|
{
|
|
|
|
PRUint32 result = aDefault;
|
|
|
|
GetUint(aPref, &result);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-06-21 23:39:10 -07:00
|
|
|
/**
|
|
|
|
* Gets char type pref value directly. If failed, the get() of result
|
|
|
|
* returns NULL. Even if succeeded but the result was empty string, the
|
|
|
|
* get() does NOT return NULL. 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 NULL. You must use nsAdoptingString when
|
|
|
|
* you need to check whether it was failure or not.
|
|
|
|
*/
|
2011-05-28 00:03:00 -07:00
|
|
|
static nsAdoptingCString GetCString(const char* aPref);
|
|
|
|
static nsAdoptingString GetString(const char* aPref);
|
|
|
|
static nsAdoptingCString GetLocalizedCString(const char* aPref);
|
|
|
|
static nsAdoptingString GetLocalizedString(const char* aPref);
|
|
|
|
|
2011-05-23 07:54:03 -07:00
|
|
|
/**
|
|
|
|
* Gets int or bool type pref value with raw return value of nsIPrefBranch.
|
|
|
|
*
|
|
|
|
* @param aPref A pref name.
|
|
|
|
* @param aResult Must not be NULL. The value is never modified when
|
|
|
|
* these methods fail.
|
|
|
|
*/
|
|
|
|
static nsresult GetBool(const char* aPref, PRBool* aResult);
|
|
|
|
static nsresult GetInt(const char* aPref, PRInt32* aResult);
|
2011-05-24 23:31:59 -07:00
|
|
|
static nsresult GetUint(const char* aPref, PRUint32* aResult)
|
|
|
|
{
|
|
|
|
PRInt32 result;
|
|
|
|
nsresult rv = GetInt(aPref, &result);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
*aResult = static_cast<PRUint32>(result);
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
2011-05-23 07:54:03 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets string type pref value with raw return value of nsIPrefBranch.
|
|
|
|
*
|
|
|
|
* @param aPref A pref name.
|
|
|
|
* @param aResult Must not be NULL. The value is never modified when
|
|
|
|
* these methods fail.
|
|
|
|
*/
|
2011-05-28 00:03:00 -07:00
|
|
|
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);
|
2011-05-23 07:54:03 -07:00
|
|
|
|
2011-06-11 19:30:15 -07:00
|
|
|
static nsresult GetComplex(const char* aPref, const nsIID &aType,
|
|
|
|
void** aResult);
|
|
|
|
|
2011-05-23 07:54:03 -07:00
|
|
|
/**
|
|
|
|
* Sets various type pref values.
|
|
|
|
*/
|
|
|
|
static nsresult SetBool(const char* aPref, PRBool aValue);
|
|
|
|
static nsresult SetInt(const char* aPref, PRInt32 aValue);
|
2011-05-24 23:31:59 -07:00
|
|
|
static nsresult SetUint(const char* aPref, PRUint32 aValue)
|
|
|
|
{
|
|
|
|
return SetInt(aPref, static_cast<PRInt32>(aValue));
|
|
|
|
}
|
2011-05-28 00:03:00 -07:00
|
|
|
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 PRUnichar* aValue);
|
|
|
|
static nsresult SetString(const char* aPref, const nsAString &aValue);
|
2011-05-23 07:54:03 -07:00
|
|
|
|
2011-06-11 19:30:15 -07:00
|
|
|
static nsresult SetComplex(const char* aPref, const nsIID &aType,
|
|
|
|
nsISupports* aValue);
|
|
|
|
|
2011-05-23 07:54:03 -07:00
|
|
|
/**
|
|
|
|
* Clears user set pref.
|
|
|
|
*/
|
|
|
|
static nsresult ClearUser(const char* aPref);
|
|
|
|
|
2011-06-02 23:01:02 -07:00
|
|
|
/**
|
|
|
|
* Whether the pref has a user value or not.
|
|
|
|
*/
|
|
|
|
static PRBool HasUserValue(const char* aPref);
|
|
|
|
|
2011-05-23 07:54:03 -07:00
|
|
|
/**
|
|
|
|
* 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 nsIPrefBran2.idl for the detail.
|
|
|
|
*/
|
|
|
|
static nsresult AddStrongObserver(nsIObserver* aObserver, const char* aPref);
|
|
|
|
static nsresult AddWeakObserver(nsIObserver* aObserver, const char* aPref);
|
|
|
|
static nsresult RemoveObserver(nsIObserver* aObserver, const char* aPref);
|
|
|
|
|
2011-05-28 16:39:27 -07:00
|
|
|
/**
|
|
|
|
* Adds/Removes two or more observers for the root pref branch.
|
|
|
|
* Pass to aPrefs an array of const char* whose last item is NULL.
|
|
|
|
*/
|
|
|
|
static nsresult AddStrongObservers(nsIObserver* aObserver,
|
|
|
|
const char** aPrefs);
|
|
|
|
static nsresult AddWeakObservers(nsIObserver* aObserver,
|
|
|
|
const char** aPrefs);
|
|
|
|
static nsresult RemoveObservers(nsIObserver* aObserver,
|
|
|
|
const char** aPrefs);
|
|
|
|
|
2011-05-28 16:42:57 -07:00
|
|
|
/**
|
|
|
|
* Registers/Unregisters the callback function for the aPref.
|
|
|
|
*/
|
|
|
|
static nsresult RegisterCallback(PrefChangedFunc aCallback,
|
|
|
|
const char* aPref,
|
|
|
|
void* aClosure = nsnull);
|
|
|
|
static nsresult UnregisterCallback(PrefChangedFunc aCallback,
|
|
|
|
const char* aPref,
|
|
|
|
void* aClosure = nsnull);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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(PRBool* aVariable,
|
|
|
|
const char* aPref,
|
|
|
|
PRBool aDefault = PR_FALSE);
|
|
|
|
static nsresult AddIntVarCache(PRInt32* aVariable,
|
|
|
|
const char* aPref,
|
|
|
|
PRInt32 aDefault = 0);
|
|
|
|
static nsresult AddUintVarCache(PRUint32* aVariable,
|
|
|
|
const char* aPref,
|
|
|
|
PRUint32 aDefault = 0);
|
|
|
|
|
2011-06-21 23:39:10 -07:00
|
|
|
/**
|
|
|
|
* 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, PRBool* aResult);
|
|
|
|
static nsresult GetDefaultInt(const char* aPref, PRInt32* aResult);
|
|
|
|
static nsresult GetDefaultUint(const char* aPref, PRUint32* aResult)
|
|
|
|
{
|
|
|
|
return GetDefaultInt(aPref, reinterpret_cast<PRInt32*>(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 PRBool GetDefaultBool(const char* aPref, PRBool aFailedResult)
|
|
|
|
{
|
|
|
|
PRBool result;
|
|
|
|
return NS_SUCCEEDED(GetDefaultBool(aPref, &result)) ? result :
|
|
|
|
aFailedResult;
|
|
|
|
}
|
|
|
|
static PRInt32 GetDefaultInt(const char* aPref, PRInt32 aFailedResult)
|
|
|
|
{
|
|
|
|
PRInt32 result;
|
|
|
|
return NS_SUCCEEDED(GetDefaultInt(aPref, &result)) ? result : aFailedResult;
|
|
|
|
}
|
|
|
|
static PRUint32 GetDefaultUint(const char* aPref, PRUint32 aFailedResult)
|
|
|
|
{
|
|
|
|
return static_cast<PRUint32>(
|
|
|
|
GetDefaultInt(aPref, static_cast<PRInt32>(aFailedResult)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the default value of the char type pref.
|
|
|
|
* If the get() of the result returned NULL, 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);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
|
|
|
nsresult NotifyServiceObservers(const char *aSubject);
|
|
|
|
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:
|
2009-11-03 11:05:31 -08:00
|
|
|
nsCOMPtr<nsIFile> mCurrentFile;
|
2011-05-23 07:54:03 -07:00
|
|
|
|
|
|
|
static Preferences* sPreferences;
|
2011-06-21 23:39:10 -07:00
|
|
|
static nsIPrefBranch2* sRootBranch;
|
|
|
|
// NOTE: default branch doesn't return nsIPrefBranch2 interface at query.
|
|
|
|
static nsIPrefBranch* sDefaultRootBranch;
|
2011-05-23 07:54:03 -07:00
|
|
|
static PRBool sShutdown;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Init static members. TRUE if it succeeded. Otherwise, FALSE.
|
|
|
|
*/
|
2011-06-11 19:30:15 -07:00
|
|
|
static PRBool InitStaticMembers(PRBool aForService = PR_FALSE);
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2011-05-23 07:54:02 -07:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2011-05-23 07:54:03 -07:00
|
|
|
#endif // mozilla_Preferences_h
|