2002-09-27 19:29:45 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2002-09-30 22:01:46 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2002-09-27 19:29:45 +00:00
|
|
|
*
|
2002-09-30 22:01:46 +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/
|
2002-09-27 19:29:45 +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.
|
|
|
|
*
|
2002-09-30 22:01:46 +00:00
|
|
|
* The Original Code is a COM aware array class.
|
2002-09-27 19:29:45 +00:00
|
|
|
*
|
2002-09-30 22:01:46 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corp.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2002
|
2002-09-27 19:29:45 +00:00
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2002-09-30 22:01:46 +00:00
|
|
|
* Alec Flett <alecf@netscape.com>
|
2002-09-27 19:29:45 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2002-09-30 22:01:46 +00:00
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
2002-09-27 19:29:45 +00:00
|
|
|
* 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
|
2002-09-30 22:01:46 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2002-09-27 19:29:45 +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
|
2002-09-30 22:01:46 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2002-09-27 19:29:45 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "nsCOMArray.h"
|
|
|
|
|
2002-10-07 21:32:37 +00:00
|
|
|
PR_STATIC_CALLBACK(PRBool) ReleaseObjects(void* aElement, void*);
|
2002-09-30 23:02:31 +00:00
|
|
|
|
2002-09-27 19:29:45 +00:00
|
|
|
// implementations of non-trivial methods in nsCOMArray_base
|
|
|
|
|
2002-09-30 23:02:31 +00:00
|
|
|
// copy constructor - we can't just memcpy here, because
|
|
|
|
// we have to make sure we own our own array buffer, and that each
|
|
|
|
// object gets another AddRef()
|
|
|
|
nsCOMArray_base::nsCOMArray_base(const nsCOMArray_base& aOther)
|
|
|
|
{
|
|
|
|
PRInt32 count = aOther.Count();
|
|
|
|
// make sure we do only one allocation
|
|
|
|
mArray.SizeTo(count);
|
|
|
|
|
|
|
|
PRInt32 i;
|
|
|
|
for (i=0; i<count; i++) {
|
2002-10-01 00:37:41 +00:00
|
|
|
// ReplaceObjectAt will handle existing null entries for us
|
2002-09-30 23:02:31 +00:00
|
|
|
ReplaceObjectAt(aOther[i], i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-27 19:29:45 +00:00
|
|
|
PRBool
|
|
|
|
nsCOMArray_base::InsertObjectAt(nsISupports* aObject, PRInt32 aIndex) {
|
|
|
|
PRBool result = mArray.InsertElementAt(aObject, aIndex);
|
|
|
|
if (result)
|
2002-09-30 22:01:46 +00:00
|
|
|
NS_IF_ADDREF(aObject);
|
2002-09-27 19:29:45 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
2002-09-30 22:01:46 +00:00
|
|
|
nsCOMArray_base::ReplaceObjectAt(nsISupports* aObject, PRInt32 aIndex)
|
|
|
|
{
|
2002-10-01 00:37:41 +00:00
|
|
|
// its ok if oldObject is null here
|
2002-09-27 19:29:45 +00:00
|
|
|
nsISupports *oldObject = ObjectAt(aIndex);
|
2002-09-30 22:01:46 +00:00
|
|
|
|
2002-10-01 00:37:41 +00:00
|
|
|
PRBool result = mArray.ReplaceElementAt(aObject, aIndex);
|
|
|
|
|
|
|
|
// ReplaceElementAt could fail, such as if the array grows
|
|
|
|
// so only release the existing object if the replacement succeeded
|
|
|
|
if (result) {
|
|
|
|
NS_IF_RELEASE(oldObject);
|
|
|
|
NS_IF_ADDREF(aObject);
|
2002-09-30 22:01:46 +00:00
|
|
|
}
|
2002-10-01 00:37:41 +00:00
|
|
|
return result;
|
2002-09-27 19:29:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PRBool
|
2002-09-30 22:01:46 +00:00
|
|
|
nsCOMArray_base::AppendObject(nsISupports *aObject)
|
|
|
|
{
|
2002-09-27 19:29:45 +00:00
|
|
|
PRBool result = InsertObjectAt(aObject, Count());
|
|
|
|
if (result)
|
2002-09-30 22:01:46 +00:00
|
|
|
NS_IF_ADDREF(aObject);
|
2002-09-27 19:29:45 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
2002-09-30 22:01:46 +00:00
|
|
|
nsCOMArray_base::RemoveObject(nsISupports *aObject)
|
|
|
|
{
|
2002-09-27 19:29:45 +00:00
|
|
|
PRBool result = mArray.RemoveElement(aObject);
|
|
|
|
if (result)
|
2002-09-30 22:01:46 +00:00
|
|
|
NS_IF_RELEASE(aObject);
|
2002-09-27 19:29:45 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
2002-09-30 22:01:46 +00:00
|
|
|
nsCOMArray_base::RemoveObjectAt(PRInt32 aIndex)
|
|
|
|
{
|
2002-09-27 19:29:45 +00:00
|
|
|
nsISupports* element = ObjectAt(aIndex);
|
|
|
|
if (element) {
|
|
|
|
PRBool result = mArray.RemoveElementAt(aIndex);
|
|
|
|
if (result)
|
2002-09-30 22:01:46 +00:00
|
|
|
NS_IF_RELEASE(element);
|
2002-09-27 19:29:45 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
2002-09-30 23:02:31 +00:00
|
|
|
// useful for destructors
|
|
|
|
PRBool
|
|
|
|
ReleaseObjects(void* aElement, void*)
|
2002-09-27 19:29:45 +00:00
|
|
|
{
|
|
|
|
nsISupports* element = NS_STATIC_CAST(nsISupports*, aElement);
|
2002-09-30 22:01:46 +00:00
|
|
|
NS_IF_RELEASE(element);
|
2002-09-27 19:29:45 +00:00
|
|
|
return PR_TRUE;
|
|
|
|
}
|
2002-09-30 22:01:46 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
nsCOMArray_base::Clear()
|
|
|
|
{
|
2002-09-30 23:02:31 +00:00
|
|
|
mArray.EnumerateForwards(ReleaseObjects, nsnull);
|
2002-09-30 22:01:46 +00:00
|
|
|
mArray.Clear();
|
|
|
|
}
|
2002-09-30 23:02:31 +00:00
|
|
|
|