2002-09-27 06:08:49 +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 06:08:49 +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 06:08:49 +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 06:08:49 +00:00
|
|
|
*
|
2002-09-30 22:01:46 +00:00
|
|
|
* The Initial Developer of the Original Code
|
|
|
|
* Netscape Communications Corp.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2002
|
2002-09-27 06:08:49 +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 06:08:49 +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 06:08:49 +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 06:08:49 +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 06:08:49 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#ifndef nsCOMArray_h__
|
|
|
|
#define nsCOMArray_h__
|
|
|
|
|
|
|
|
#include "nsVoidArray.h"
|
|
|
|
#include "nsISupports.h"
|
|
|
|
|
2002-09-30 23:02:31 +00:00
|
|
|
// See below for the definition of nsCOMArray<T>
|
|
|
|
|
2002-09-27 19:29:45 +00:00
|
|
|
// a class that's nsISupports-specific, so that we can contain the
|
|
|
|
// work of this class in the XPCOM dll
|
|
|
|
class NS_COM nsCOMArray_base
|
|
|
|
{
|
2002-10-02 18:54:12 +00:00
|
|
|
friend class nsArray;
|
2002-09-27 19:29:45 +00:00
|
|
|
protected:
|
|
|
|
nsCOMArray_base() {}
|
|
|
|
nsCOMArray_base(PRInt32 aCount) : mArray(aCount) {}
|
2002-09-30 23:02:31 +00:00
|
|
|
nsCOMArray_base(const nsCOMArray_base& other);
|
2002-09-27 19:29:45 +00:00
|
|
|
|
|
|
|
PRInt32 IndexOf(nsISupports* aObject) {
|
|
|
|
return mArray.IndexOf(aObject);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool EnumerateForwards(nsVoidArrayEnumFunc aFunc, void* aData) {
|
|
|
|
return mArray.EnumerateForwards(aFunc, aData);
|
|
|
|
}
|
|
|
|
|
2002-10-02 18:54:12 +00:00
|
|
|
PRBool EnumerateBackwards(nsVoidArrayEnumFunc aFunc, void* aData) {
|
|
|
|
return mArray.EnumerateBackwards(aFunc, aData);
|
|
|
|
}
|
|
|
|
|
2002-09-27 19:29:45 +00:00
|
|
|
// any method which is not a direct forward to mArray should
|
|
|
|
// avoid inline bodies, so that the compiler doesn't inline them
|
|
|
|
// all over the place
|
2002-09-30 22:01:46 +00:00
|
|
|
void Clear();
|
2002-09-27 19:29:45 +00:00
|
|
|
PRBool InsertObjectAt(nsISupports* aObject, PRInt32 aIndex);
|
|
|
|
PRBool ReplaceObjectAt(nsISupports* aObject, PRInt32 aIndex);
|
|
|
|
PRBool AppendObject(nsISupports *aObject);
|
|
|
|
PRBool RemoveObject(nsISupports *aObject);
|
|
|
|
PRBool RemoveObjectAt(PRInt32 aIndex);
|
|
|
|
|
2002-10-01 17:34:25 +00:00
|
|
|
public:
|
|
|
|
// override nsVoidArray stuff so that they can be accessed by
|
|
|
|
// consumers of nsCOMArray
|
|
|
|
PRInt32 Count() const {
|
|
|
|
return mArray.Count();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsISupports* ObjectAt(PRInt32 aIndex) const {
|
|
|
|
return NS_STATIC_CAST(nsISupports*, mArray.ElementAt(aIndex));
|
|
|
|
}
|
|
|
|
|
|
|
|
nsISupports* operator[](PRInt32 aIndex) const {
|
|
|
|
return ObjectAt(aIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2002-09-27 19:29:45 +00:00
|
|
|
|
|
|
|
// the actual storage
|
|
|
|
nsVoidArray mArray;
|
2002-09-30 22:01:46 +00:00
|
|
|
|
|
|
|
// don't implement these, defaults will muck with refcounts!
|
2002-09-27 19:29:45 +00:00
|
|
|
nsCOMArray_base& operator=(const nsCOMArray_base& other);
|
|
|
|
};
|
|
|
|
|
2002-09-27 06:08:49 +00:00
|
|
|
// a non-XPCOM, refcounting array of XPCOM objects
|
|
|
|
// used as a member variable or stack variable - this object is NOT
|
|
|
|
// refcounted, but the objects that it holds are
|
2002-09-30 23:02:31 +00:00
|
|
|
//
|
|
|
|
// most of the read-only accessors like ObjectAt()/etc do NOT refcount
|
|
|
|
// on the way out. This means that you can do one of two things:
|
|
|
|
//
|
|
|
|
// * does an addref, but holds onto a reference
|
|
|
|
// nsCOMPtr<T> foo = array[i];
|
|
|
|
//
|
|
|
|
// * avoids the refcount, but foo might go stale if array[i] is ever
|
|
|
|
// * modified/removed. Be careful not to NS_RELEASE(foo)!
|
|
|
|
// T* foo = array[i];
|
|
|
|
//
|
|
|
|
// This array will accept null as an argument for any object, and will
|
|
|
|
// store null in the array, just like nsVoidArray. But that also means
|
|
|
|
// that methods like ObjectAt() may return null when refering to an
|
|
|
|
// existing, but null entry in the array.
|
2002-09-27 06:08:49 +00:00
|
|
|
template <class T>
|
2002-10-01 00:37:41 +00:00
|
|
|
class nsCOMArray : public nsCOMArray_base
|
2002-09-27 06:08:49 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsCOMArray() {}
|
2002-09-27 19:29:45 +00:00
|
|
|
nsCOMArray(PRInt32 aCount) : nsCOMArray_base(aCount) {}
|
2002-09-30 23:02:31 +00:00
|
|
|
|
2002-10-02 18:54:12 +00:00
|
|
|
// only to be used by trusted classes who are going to pass us the
|
|
|
|
// right type!
|
|
|
|
nsCOMArray(const nsCOMArray<T>& aOther) : nsCOMArray_base(aOther) { }
|
2002-09-27 06:08:49 +00:00
|
|
|
|
|
|
|
~nsCOMArray() {}
|
|
|
|
|
|
|
|
// these do NOT refcount on the way out, for speed
|
|
|
|
T* ObjectAt(PRInt32 aIndex) const {
|
2002-09-27 19:29:45 +00:00
|
|
|
return NS_STATIC_CAST(T*,nsCOMArray_base::ObjectAt(aIndex));
|
2002-09-27 06:08:49 +00:00
|
|
|
}
|
2002-09-30 23:02:31 +00:00
|
|
|
|
|
|
|
// indexing operator for syntactic sugar
|
2002-09-27 06:08:49 +00:00
|
|
|
T* operator[](PRInt32 aIndex) const {
|
|
|
|
return ObjectAt(aIndex);
|
|
|
|
}
|
|
|
|
|
2002-09-30 23:02:31 +00:00
|
|
|
// index of the element in question.. does NOT refcount
|
2002-09-27 06:08:49 +00:00
|
|
|
PRInt32 IndexOf(T* aObject) {
|
2002-09-27 19:29:45 +00:00
|
|
|
return nsCOMArray_base::IndexOf(aObject);
|
2002-09-27 06:08:49 +00:00
|
|
|
}
|
2002-09-30 23:02:31 +00:00
|
|
|
|
|
|
|
// inserts the object at aIndex, and move all objects after aIndex
|
|
|
|
// to the right
|
2002-09-27 06:08:49 +00:00
|
|
|
PRBool InsertObjectAt(T* aObject, PRInt32 aIndex) {
|
2002-09-27 19:29:45 +00:00
|
|
|
return nsCOMArray_base::InsertObjectAt(aObject, aIndex);
|
2002-09-27 06:08:49 +00:00
|
|
|
}
|
2002-09-30 23:02:31 +00:00
|
|
|
|
|
|
|
// replaces an existing element. Warning: if the array grows,
|
|
|
|
// the newly created entries will all be null
|
2002-09-27 06:08:49 +00:00
|
|
|
PRBool ReplaceObjectAt(T* aObject, PRInt32 aIndex) {
|
2002-09-27 19:29:45 +00:00
|
|
|
return nsCOMArray_base::ReplaceObjectAt(aObject, aIndex);
|
2002-09-27 06:08:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// override nsVoidArray stuff so that they can be accessed by
|
|
|
|
// other methods
|
2002-09-30 23:02:31 +00:00
|
|
|
|
|
|
|
// elements in the array (including null elements!)
|
2002-09-27 06:08:49 +00:00
|
|
|
PRInt32 Count() const {
|
2002-09-27 19:29:45 +00:00
|
|
|
return nsCOMArray_base::Count();
|
2002-09-27 06:08:49 +00:00
|
|
|
}
|
|
|
|
|
2002-09-30 23:02:31 +00:00
|
|
|
// remove all elements in the array, and call NS_RELEASE on each one
|
2002-09-27 06:08:49 +00:00
|
|
|
void Clear() {
|
2002-09-27 19:29:45 +00:00
|
|
|
nsCOMArray_base::Clear();
|
2002-09-27 06:08:49 +00:00
|
|
|
}
|
|
|
|
|
2002-09-30 23:02:31 +00:00
|
|
|
// Enumerator callback function. Return PR_FALSE to stop
|
|
|
|
// Here's a more readable form:
|
|
|
|
// PRBool PR_CALLBACK enumerate(T* aElement, void* aData)
|
|
|
|
typedef PRBool (* PR_CALLBACK nsCOMArrayEnumFunc)
|
|
|
|
(T* aElement, void *aData);
|
2002-09-27 06:08:49 +00:00
|
|
|
|
2002-09-30 23:02:31 +00:00
|
|
|
// enumerate through the array with a callback.
|
|
|
|
PRBool EnumerateForwards(nsCOMArrayEnumFunc aFunc, void* aData) {
|
|
|
|
return nsCOMArray_base::EnumerateForwards(nsVoidArrayEnumFunc(aFunc),
|
|
|
|
aData);
|
|
|
|
}
|
|
|
|
|
2002-10-02 18:54:12 +00:00
|
|
|
PRBool EnumerateBackwards(nsCOMArrayEnumFunc aFunc, void* aData) {
|
|
|
|
return nsCOMArray_base::EnumerateBackwards(nsVoidArrayEnumFunc(aFunc),
|
|
|
|
aData);
|
|
|
|
}
|
|
|
|
|
2002-09-30 23:02:31 +00:00
|
|
|
// append an object, growing the array as necessary
|
2002-09-27 06:08:49 +00:00
|
|
|
PRBool AppendObject(T *aObject) {
|
2002-09-27 19:29:45 +00:00
|
|
|
return nsCOMArray_base::AppendObject(aObject);
|
2002-09-27 06:08:49 +00:00
|
|
|
}
|
|
|
|
|
2002-09-30 23:02:31 +00:00
|
|
|
// remove the first instance of the given object and shrink the
|
|
|
|
// array as necessary
|
|
|
|
// Warning: if you pass null here, it will remove the first null element
|
2002-09-27 06:08:49 +00:00
|
|
|
PRBool RemoveObject(T *aObject) {
|
2002-09-27 19:29:45 +00:00
|
|
|
return nsCOMArray_base::RemoveObject(aObject);
|
2002-09-27 06:08:49 +00:00
|
|
|
}
|
2002-09-30 23:02:31 +00:00
|
|
|
|
|
|
|
// remove an element at a specific position, shrinking the array
|
|
|
|
// as necessary
|
2002-09-27 06:08:49 +00:00
|
|
|
PRBool RemoveObjectAt(PRInt32 aIndex) {
|
2002-09-27 19:29:45 +00:00
|
|
|
return nsCOMArray_base::RemoveObjectAt(aIndex);
|
2002-09-27 06:08:49 +00:00
|
|
|
}
|
|
|
|
|
2002-10-02 18:54:12 +00:00
|
|
|
private:
|
2002-09-30 22:01:46 +00:00
|
|
|
|
|
|
|
// don't implement these!
|
2002-10-15 05:19:30 +00:00
|
|
|
nsCOMArray<T>& operator=(const nsCOMArray<T>& other);
|
2002-09-27 06:08:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|