2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 14:21:17 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-01-26 23:50:25 +00:00
|
|
|
*
|
2004-04-18 14:21:17 +00:00
|
|
|
* 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/
|
1999-01-26 23:50:25 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* 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.
|
1999-01-26 23:50:25 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 14:21:17 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-28 20:14:13 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:43:54 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 14:21:17 +00:00
|
|
|
* either of 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"),
|
2001-09-28 20:14:13 +00:00
|
|
|
* 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
|
2004-04-18 14:21:17 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00:00
|
|
|
* 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
|
2004-04-18 14:21:17 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-01-26 23:50:25 +00:00
|
|
|
|
1999-04-30 22:54:22 +00:00
|
|
|
#include "nsProperties.h"
|
1999-04-22 07:32:51 +00:00
|
|
|
|
2000-01-05 09:29:25 +00:00
|
|
|
//#include <iostream.h>
|
1999-07-17 01:58:38 +00:00
|
|
|
|
1999-04-22 07:32:51 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-05-26 01:38:36 +00:00
|
|
|
nsProperties::nsProperties(nsISupports* outer)
|
|
|
|
{
|
|
|
|
NS_INIT_AGGREGATED(outer);
|
|
|
|
}
|
1999-04-22 07:32:51 +00:00
|
|
|
|
1999-05-26 01:38:36 +00:00
|
|
|
NS_METHOD
|
|
|
|
nsProperties::Create(nsISupports *outer, REFNSIID aIID, void **aResult)
|
1999-04-22 07:32:51 +00:00
|
|
|
{
|
1999-08-19 05:36:30 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
2000-01-05 09:29:25 +00:00
|
|
|
NS_ENSURE_PROPER_AGGREGATION(outer, aIID);
|
1999-08-19 05:36:30 +00:00
|
|
|
|
1999-05-26 01:38:36 +00:00
|
|
|
nsProperties* props = new nsProperties(outer);
|
|
|
|
if (props == NULL)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
1999-08-19 05:36:30 +00:00
|
|
|
|
|
|
|
nsresult rv = props->AggregatedQueryInterface(aIID, aResult);
|
2000-01-05 09:29:25 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
delete props;
|
1999-08-19 05:36:30 +00:00
|
|
|
return rv;
|
1999-04-22 07:32:51 +00:00
|
|
|
}
|
|
|
|
|
2000-05-02 22:38:04 +00:00
|
|
|
PRBool PR_CALLBACK
|
1999-04-22 07:32:51 +00:00
|
|
|
nsProperties::ReleaseValues(nsHashKey* key, void* data, void* closure)
|
|
|
|
{
|
|
|
|
nsISupports* value = (nsISupports*)data;
|
|
|
|
NS_IF_RELEASE(value);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsProperties::~nsProperties()
|
|
|
|
{
|
|
|
|
Enumerate(ReleaseValues);
|
|
|
|
}
|
|
|
|
|
2003-09-08 00:31:50 +00:00
|
|
|
NS_IMPL_AGGREGATED(nsProperties)
|
1999-05-26 01:38:36 +00:00
|
|
|
|
|
|
|
NS_METHOD
|
|
|
|
nsProperties::AggregatedQueryInterface(const nsIID& aIID, void** aInstancePtr)
|
|
|
|
{
|
1999-08-19 05:36:30 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aInstancePtr);
|
|
|
|
|
2000-01-05 09:29:25 +00:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsISupports)))
|
|
|
|
*aInstancePtr = GetInner();
|
|
|
|
else if (aIID.Equals(NS_GET_IID(nsIProperties)))
|
|
|
|
*aInstancePtr = NS_STATIC_CAST(nsIProperties*, this);
|
|
|
|
else {
|
|
|
|
*aInstancePtr = nsnull;
|
|
|
|
return NS_NOINTERFACE;
|
1999-05-26 01:38:36 +00:00
|
|
|
}
|
1999-08-19 05:36:30 +00:00
|
|
|
|
2000-01-05 09:29:25 +00:00
|
|
|
NS_ADDREF((nsISupports*)*aInstancePtr);
|
1999-08-19 05:36:30 +00:00
|
|
|
return NS_OK;
|
1999-05-26 01:38:36 +00:00
|
|
|
}
|
|
|
|
|
1999-04-22 07:32:51 +00:00
|
|
|
NS_IMETHODIMP
|
2000-01-05 09:29:25 +00:00
|
|
|
nsProperties::Get(const char* prop, const nsIID & uuid, void* *result)
|
1999-04-22 07:32:51 +00:00
|
|
|
{
|
2000-01-05 09:29:25 +00:00
|
|
|
nsresult rv;
|
2000-08-10 06:19:37 +00:00
|
|
|
nsCStringKey key(prop);
|
2000-01-05 09:29:25 +00:00
|
|
|
nsISupports* value = (nsISupports*)nsHashtable::Get(&key);
|
|
|
|
if (value) {
|
|
|
|
rv = value->QueryInterface(uuid, result);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rv = NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
return rv;
|
1999-04-22 07:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-01-05 09:29:25 +00:00
|
|
|
nsProperties::Set(const char* prop, nsISupports* value)
|
1999-04-22 07:32:51 +00:00
|
|
|
{
|
2000-08-10 06:19:37 +00:00
|
|
|
nsCStringKey key(prop);
|
1999-04-22 07:32:51 +00:00
|
|
|
|
|
|
|
nsISupports* prevValue = (nsISupports*)Put(&key, value);
|
2002-09-27 17:49:08 +00:00
|
|
|
NS_IF_RELEASE(prevValue);
|
1999-04-22 07:32:51 +00:00
|
|
|
NS_IF_ADDREF(value);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-08-26 20:36:44 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsProperties::Undefine(const char* prop)
|
|
|
|
{
|
|
|
|
nsCStringKey key(prop);
|
|
|
|
if (!Exists(&key))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsISupports* prevValue = (nsISupports*)Remove(&key);
|
|
|
|
NS_IF_RELEASE(prevValue);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-04-22 07:32:51 +00:00
|
|
|
NS_IMETHODIMP
|
2000-01-06 23:02:32 +00:00
|
|
|
nsProperties::Has(const char* prop, PRBool *result)
|
2000-01-05 09:29:25 +00:00
|
|
|
{
|
2000-08-10 06:19:37 +00:00
|
|
|
nsCStringKey key(prop);
|
2002-02-17 10:11:25 +00:00
|
|
|
*result = nsHashtable::Exists(&key);
|
1999-06-12 21:07:22 +00:00
|
|
|
return NS_OK;
|
1999-01-26 23:50:25 +00:00
|
|
|
}
|
|
|
|
|
2002-08-26 20:36:44 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsProperties::GetKeys(PRUint32 *count, char ***keys)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
1999-04-22 07:32:51 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|