2005-11-02 16:04:34 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2005-11-02 16:04:34 +00:00
|
|
|
|
|
|
|
#include "nsCOMArray.h"
|
2005-11-02 16:05:13 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2005-11-02 16:04:34 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool ReleaseObjects(void* aElement, void*);
|
2005-11-02 16:04:36 +00:00
|
|
|
|
2005-11-02 16:04:34 +00:00
|
|
|
// implementations of non-trivial methods in nsCOMArray_base
|
|
|
|
|
2005-11-02 16:04:36 +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)
|
|
|
|
{
|
|
|
|
// make sure we do only one allocation
|
2005-11-02 16:04:46 +00:00
|
|
|
mArray.SizeTo(aOther.Count());
|
|
|
|
AppendObjects(aOther);
|
2005-11-02 16:04:36 +00:00
|
|
|
}
|
|
|
|
|
2005-11-02 16:04:47 +00:00
|
|
|
nsCOMArray_base::~nsCOMArray_base()
|
|
|
|
{
|
2010-06-09 18:13:16 +00:00
|
|
|
Clear();
|
2005-11-02 16:04:47 +00:00
|
|
|
}
|
|
|
|
|
2005-11-08 20:55:30 +00:00
|
|
|
PRInt32
|
2005-11-02 16:05:09 +00:00
|
|
|
nsCOMArray_base::IndexOfObject(nsISupports* aObject) const {
|
|
|
|
nsCOMPtr<nsISupports> supports = do_QueryInterface(aObject);
|
|
|
|
NS_ENSURE_TRUE(supports, -1);
|
|
|
|
|
|
|
|
PRInt32 i, count;
|
|
|
|
PRInt32 retval = -1;
|
|
|
|
count = mArray.Count();
|
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
nsCOMPtr<nsISupports> arrayItem =
|
2007-07-08 07:08:04 +00:00
|
|
|
do_QueryInterface(reinterpret_cast<nsISupports*>(mArray.ElementAt(i)));
|
2005-11-02 16:05:09 +00:00
|
|
|
if (arrayItem == supports) {
|
|
|
|
retval = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2005-11-02 16:04:34 +00:00
|
|
|
nsCOMArray_base::InsertObjectAt(nsISupports* aObject, PRInt32 aIndex) {
|
2011-09-29 06:19:26 +00:00
|
|
|
bool result = mArray.InsertElementAt(aObject, aIndex);
|
2005-11-02 16:04:34 +00:00
|
|
|
if (result)
|
2005-11-02 16:04:35 +00:00
|
|
|
NS_IF_ADDREF(aObject);
|
2005-11-02 16:04:34 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2005-11-02 16:04:44 +00:00
|
|
|
nsCOMArray_base::InsertObjectsAt(const nsCOMArray_base& aObjects, PRInt32 aIndex) {
|
2011-09-29 06:19:26 +00:00
|
|
|
bool result = mArray.InsertElementsAt(aObjects.mArray, aIndex);
|
2005-11-02 16:04:44 +00:00
|
|
|
if (result) {
|
|
|
|
// need to addref all these
|
|
|
|
PRInt32 count = aObjects.Count();
|
|
|
|
for (PRInt32 i = 0; i < count; ++i) {
|
2005-11-02 16:05:13 +00:00
|
|
|
NS_IF_ADDREF(aObjects.ObjectAt(i));
|
2005-11-02 16:04:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2005-11-02 16:04:35 +00:00
|
|
|
nsCOMArray_base::ReplaceObjectAt(nsISupports* aObject, PRInt32 aIndex)
|
|
|
|
{
|
2005-11-02 16:04:37 +00:00
|
|
|
// its ok if oldObject is null here
|
2005-11-02 16:04:49 +00:00
|
|
|
nsISupports *oldObject =
|
2007-07-08 07:08:04 +00:00
|
|
|
reinterpret_cast<nsISupports*>(mArray.SafeElementAt(aIndex));
|
2005-11-02 16:04:35 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool result = mArray.ReplaceElementAt(aObject, aIndex);
|
2005-11-02 16:04:37 +00:00
|
|
|
|
|
|
|
// ReplaceElementAt could fail, such as if the array grows
|
|
|
|
// so only release the existing object if the replacement succeeded
|
|
|
|
if (result) {
|
2005-11-02 16:05:18 +00:00
|
|
|
// Make sure to addref first, in case aObject == oldObject
|
2005-11-02 16:04:37 +00:00
|
|
|
NS_IF_ADDREF(aObject);
|
2005-11-02 16:05:18 +00:00
|
|
|
NS_IF_RELEASE(oldObject);
|
2005-11-02 16:04:35 +00:00
|
|
|
}
|
2005-11-02 16:04:37 +00:00
|
|
|
return result;
|
2005-11-02 16:04:34 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2005-11-02 16:04:35 +00:00
|
|
|
nsCOMArray_base::RemoveObject(nsISupports *aObject)
|
|
|
|
{
|
2011-09-29 06:19:26 +00:00
|
|
|
bool result = mArray.RemoveElement(aObject);
|
2005-11-02 16:04:34 +00:00
|
|
|
if (result)
|
2005-11-02 16:04:35 +00:00
|
|
|
NS_IF_RELEASE(aObject);
|
2005-11-02 16:04:34 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2005-11-02 16:04:35 +00:00
|
|
|
nsCOMArray_base::RemoveObjectAt(PRInt32 aIndex)
|
|
|
|
{
|
2006-03-01 01:10:20 +00:00
|
|
|
if (PRUint32(aIndex) < PRUint32(Count())) {
|
|
|
|
nsISupports* element = ObjectAt(aIndex);
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool result = mArray.RemoveElementAt(aIndex);
|
2010-06-09 18:13:16 +00:00
|
|
|
NS_IF_RELEASE(element);
|
|
|
|
return result;
|
2006-03-01 01:10:20 +00:00
|
|
|
}
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-02 16:04:34 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2011-04-14 14:18:02 +00:00
|
|
|
nsCOMArray_base::RemoveObjectsAt(PRInt32 aIndex, PRInt32 aCount)
|
|
|
|
{
|
|
|
|
if (PRUint32(aIndex) + PRUint32(aCount) <= PRUint32(Count())) {
|
|
|
|
nsVoidArray elementsToDestroy(aCount);
|
|
|
|
for (PRInt32 i = 0; i < aCount; ++i) {
|
|
|
|
elementsToDestroy.InsertElementAt(mArray.FastElementAt(aIndex + i), i);
|
|
|
|
}
|
2011-09-29 06:19:26 +00:00
|
|
|
bool result = mArray.RemoveElementsAt(aIndex, aCount);
|
2011-04-14 14:18:02 +00:00
|
|
|
for (PRInt32 i = 0; i < aCount; ++i) {
|
|
|
|
nsISupports* element = static_cast<nsISupports*> (elementsToDestroy.FastElementAt(i));
|
|
|
|
NS_IF_RELEASE(element);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2011-04-14 14:18:02 +00:00
|
|
|
}
|
|
|
|
|
2005-11-02 16:04:36 +00:00
|
|
|
// useful for destructors
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2005-11-02 16:04:36 +00:00
|
|
|
ReleaseObjects(void* aElement, void*)
|
2005-11-02 16:04:34 +00:00
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
nsISupports* element = static_cast<nsISupports*>(aElement);
|
2005-11-02 16:04:35 +00:00
|
|
|
NS_IF_RELEASE(element);
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2005-11-02 16:04:34 +00:00
|
|
|
}
|
2005-11-02 16:04:35 +00:00
|
|
|
|
2005-11-08 20:55:30 +00:00
|
|
|
void
|
2005-11-02 16:04:35 +00:00
|
|
|
nsCOMArray_base::Clear()
|
|
|
|
{
|
2010-06-09 18:13:16 +00:00
|
|
|
nsAutoVoidArray objects;
|
|
|
|
objects = mArray;
|
2005-11-02 16:04:35 +00:00
|
|
|
mArray.Clear();
|
2010-06-09 18:13:16 +00:00
|
|
|
objects.EnumerateForwards(ReleaseObjects, nsnull);
|
2005-11-02 16:04:35 +00:00
|
|
|
}
|
2005-11-02 16:04:36 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2010-03-15 11:38:50 +00:00
|
|
|
nsCOMArray_base::SetCount(PRInt32 aNewCount)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aNewCount >= 0,"SetCount(negative index)");
|
|
|
|
if (aNewCount < 0)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-03-15 11:38:50 +00:00
|
|
|
|
|
|
|
PRInt32 count = Count(), i;
|
2010-06-09 18:13:16 +00:00
|
|
|
nsAutoVoidArray objects;
|
|
|
|
if (count > aNewCount) {
|
|
|
|
objects.SetCount(count - aNewCount);
|
|
|
|
for (i = aNewCount; i < count; ++i) {
|
|
|
|
objects.ReplaceElementAt(ObjectAt(i), i - aNewCount);
|
|
|
|
}
|
2010-03-15 11:38:50 +00:00
|
|
|
}
|
2011-09-29 06:19:26 +00:00
|
|
|
bool result = mArray.SetCount(aNewCount);
|
2010-06-09 18:13:16 +00:00
|
|
|
objects.EnumerateForwards(ReleaseObjects, nsnull);
|
|
|
|
return result;
|
2010-03-15 11:38:50 +00:00
|
|
|
}
|
|
|
|
|