2001-03-29 06:11:48 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2001-09-26 03:31:24 +04:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
2001-03-29 06:11:48 +04:00
|
|
|
*
|
2001-09-26 03:31:24 +04:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
|
|
|
*
|
|
|
|
* 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.
|
2001-03-29 06:11:48 +04:00
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-26 03:31:24 +04:00
|
|
|
* 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):
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* 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 NPL, 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 NPL, the GPL or the LGPL.
|
2001-03-29 06:11:48 +04:00
|
|
|
*
|
2001-09-26 03:31:24 +04:00
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2001-03-29 06:11:48 +04:00
|
|
|
|
|
|
|
#ifndef nsPermissionManager_h__
|
|
|
|
#define nsPermissionManager_h__
|
|
|
|
|
|
|
|
#include "nsIPermissionManager.h"
|
|
|
|
#include "nsIObserver.h"
|
2003-03-22 04:24:51 +03:00
|
|
|
#include "nsIObserverService.h"
|
2001-03-29 06:11:48 +04:00
|
|
|
#include "nsWeakReference.h"
|
2001-10-19 06:28:06 +04:00
|
|
|
#include "nsCOMPtr.h"
|
2003-03-22 04:24:51 +03:00
|
|
|
#include "nsVoidArray.h"
|
|
|
|
#include "nsIFile.h"
|
2003-04-23 03:33:31 +04:00
|
|
|
#include "nsTHashtable.h"
|
|
|
|
#include "nsString.h"
|
2001-03-29 06:11:48 +04:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2003-04-23 03:33:31 +04:00
|
|
|
// This allow us 8 types of permissions, with 256 values for each
|
|
|
|
// permission. (Some types might want to prompt, block 3rd party etc)
|
|
|
|
// Note: When changing NUMBER_OF_TYPES, also update PermissionsAreEmpty()
|
|
|
|
// This should be a multiple of 4, to make PermissionsAreEmpty() fast
|
|
|
|
#define NUMBER_OF_TYPES (8)
|
|
|
|
|
|
|
|
class nsHostEntry : protected PLDHashEntryHdr
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Hash methods
|
|
|
|
typedef const char* KeyType;
|
|
|
|
typedef const char* KeyTypePointer;
|
|
|
|
|
2003-04-23 08:39:34 +04:00
|
|
|
nsHostEntry(const char* aHost);
|
|
|
|
nsHostEntry(const nsHostEntry& toCopy);
|
2003-04-23 03:33:31 +04:00
|
|
|
|
|
|
|
~nsHostEntry()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
KeyType GetKey() const
|
|
|
|
{
|
|
|
|
return mHost;
|
|
|
|
}
|
|
|
|
|
|
|
|
KeyTypePointer GetKeyPointer() const
|
|
|
|
{
|
|
|
|
return mHost;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool KeyEquals(KeyTypePointer aKey) const
|
|
|
|
{
|
|
|
|
return !strcmp(mHost, aKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
static KeyTypePointer KeyToPointer(KeyType aKey)
|
|
|
|
{
|
|
|
|
return aKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PLDHashNumber HashKey(KeyTypePointer aKey)
|
|
|
|
{
|
|
|
|
// PL_DHashStringKey doesn't use the table parameter, so we can safely
|
|
|
|
// pass nsnull
|
|
|
|
return PL_DHashStringKey(nsnull, aKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRBool AllowMemMove()
|
|
|
|
{
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Permissions methods
|
|
|
|
inline const nsDependentCString GetHost() const
|
|
|
|
{
|
|
|
|
return nsDependentCString(mHost);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Callers must do boundary checks
|
|
|
|
void SetPermission(PRUint32 aType, PRUint32 aPermission);
|
|
|
|
PRUint32 GetPermission(PRUint32 aType) const;
|
|
|
|
PRBool PermissionsAreEmpty() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
const char *mHost;
|
|
|
|
|
|
|
|
// This will contain the permissions for different types, in a bitmasked
|
|
|
|
// form. The type itself defines the position.
|
|
|
|
// One byte per permission. This is a small loss of memory (as 255 types
|
|
|
|
// of action per type is a lot, 16 would be enough), but will improve speed
|
|
|
|
// Bytemasking is around twice as fast (on one arch at least) than bitmasking
|
|
|
|
PRUint8 mPermissions[NUMBER_OF_TYPES];
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-03-29 06:11:48 +04:00
|
|
|
class nsPermissionManager : public nsIPermissionManager,
|
|
|
|
public nsIObserver,
|
2003-03-22 04:24:51 +03:00
|
|
|
public nsSupportsWeakReference
|
|
|
|
{
|
2001-03-29 06:11:48 +04:00
|
|
|
public:
|
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIPERMISSIONMANAGER
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
|
|
|
nsPermissionManager();
|
2003-03-22 04:24:51 +03:00
|
|
|
virtual ~nsPermissionManager();
|
2001-03-29 06:11:48 +04:00
|
|
|
nsresult Init();
|
2001-10-19 06:28:06 +04:00
|
|
|
|
2003-03-22 04:24:51 +03:00
|
|
|
private:
|
|
|
|
|
2003-04-23 03:33:31 +04:00
|
|
|
inline nsresult AddInternal(const nsAFlatCString &aHost,
|
|
|
|
PRUint32 aType,
|
|
|
|
PRUint32 aPermission);
|
2003-03-22 04:24:51 +03:00
|
|
|
|
|
|
|
nsresult Read();
|
|
|
|
nsresult Write();
|
|
|
|
nsresult NotifyObservers(const nsACString &aHost);
|
|
|
|
nsresult RemoveAllFromMemory();
|
2003-04-23 03:33:31 +04:00
|
|
|
inline nsVoidArray* GetHostList();
|
2003-03-22 04:24:51 +03:00
|
|
|
|
|
|
|
nsCOMPtr<nsIObserverService> mObserverService;
|
|
|
|
nsCOMPtr<nsIFile> mPermissionsFile;
|
|
|
|
PRBool mChangedList;
|
2003-04-23 03:33:31 +04:00
|
|
|
nsTHashtable<nsHostEntry> mHostTable;
|
|
|
|
PRUint32 mHostCount;
|
2003-03-22 04:24:51 +03:00
|
|
|
|
2001-03-29 06:11:48 +04:00
|
|
|
};
|
|
|
|
|
2003-03-22 04:24:51 +03:00
|
|
|
// {4F6B5E00-0C36-11d5-A535-0010A401EB10}
|
|
|
|
#define NS_PERMISSIONMANAGER_CID \
|
|
|
|
{ 0x4f6b5e00, 0xc36, 0x11d5, { 0xa5, 0x35, 0x0, 0x10, 0xa4, 0x1, 0xeb, 0x10 } }
|
|
|
|
|
2001-03-29 06:11:48 +04:00
|
|
|
#endif /* nsPermissionManager_h__ */
|