mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
134 lines
3.3 KiB
C++
134 lines
3.3 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
#include "nsSupportsArrayEnumerator.h"
|
|
#include "nsISupportsArray.h"
|
|
|
|
nsSupportsArrayEnumerator::nsSupportsArrayEnumerator(nsISupportsArray* array)
|
|
: mArray(array), mCursor(0)
|
|
{
|
|
NS_INIT_REFCNT();
|
|
NS_ASSERTION(array, "null array");
|
|
NS_ADDREF(mArray);
|
|
}
|
|
|
|
nsSupportsArrayEnumerator::~nsSupportsArrayEnumerator()
|
|
{
|
|
NS_RELEASE(mArray);
|
|
}
|
|
|
|
NS_IMPL_ADDREF(nsSupportsArrayEnumerator);
|
|
NS_IMPL_RELEASE(nsSupportsArrayEnumerator);
|
|
|
|
NS_IMETHODIMP
|
|
nsSupportsArrayEnumerator::QueryInterface(REFNSIID aIID, void** aInstancePtr)
|
|
{
|
|
if (NULL == aInstancePtr)
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
if (aIID.Equals(nsIBidirectionalEnumerator::GetIID()) ||
|
|
aIID.Equals(nsIEnumerator::GetIID()) ||
|
|
aIID.Equals(nsISupports::GetIID())) {
|
|
*aInstancePtr = (void*) this;
|
|
NS_ADDREF_THIS();
|
|
return NS_OK;
|
|
}
|
|
return NS_NOINTERFACE;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsSupportsArrayEnumerator::First()
|
|
{
|
|
mCursor = 0;
|
|
PRInt32 end = (PRInt32)mArray->Count();
|
|
if (mCursor < end)
|
|
return NS_OK;
|
|
else
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsSupportsArrayEnumerator::Next()
|
|
{
|
|
PRInt32 end = (PRInt32)mArray->Count();
|
|
if (mCursor < end) // don't count upward forever
|
|
mCursor++;
|
|
if (mCursor < end)
|
|
return NS_OK;
|
|
else
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsSupportsArrayEnumerator::CurrentItem(nsISupports **aItem)
|
|
{
|
|
NS_ASSERTION(aItem, "null out parameter");
|
|
if (mCursor >= 0 && mCursor < (PRInt32)mArray->Count()) {
|
|
*aItem = (*mArray)[mCursor];
|
|
NS_IF_ADDREF(*aItem);
|
|
return NS_OK;
|
|
}
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsSupportsArrayEnumerator::IsDone()
|
|
{
|
|
return (mCursor >= 0 && mCursor < (PRInt32)mArray->Count())
|
|
? NS_COMFALSE : NS_OK;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
NS_IMETHODIMP
|
|
nsSupportsArrayEnumerator::Last()
|
|
{
|
|
mCursor = mArray->Count() - 1;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsSupportsArrayEnumerator::Prev()
|
|
{
|
|
if (mCursor >= 0)
|
|
--mCursor;
|
|
if (mCursor >= 0)
|
|
return NS_OK;
|
|
else
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
NS_COM nsresult
|
|
NS_NewISupportsArrayEnumerator(nsISupportsArray* array,
|
|
nsIBidirectionalEnumerator* *aInstancePtrResult)
|
|
{
|
|
if (aInstancePtrResult == 0)
|
|
return NS_ERROR_NULL_POINTER;
|
|
nsSupportsArrayEnumerator* e = new nsSupportsArrayEnumerator(array);
|
|
if (e == 0)
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
NS_ADDREF(e);
|
|
*aInstancePtrResult = e;
|
|
return NS_OK;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|