2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* 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/
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* The Original Code is String Enumerator.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corp.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2003
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Alec Flett <alecf@netscape.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either 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"),
|
|
|
|
* 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
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* 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
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
|
|
|
|
#include "nsStringEnumerator.h"
|
|
|
|
#include "prtypes.h"
|
|
|
|
#include "nsCRT.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsReadableUtils.h"
|
|
|
|
#include "nsISimpleEnumerator.h"
|
|
|
|
#include "nsSupportsPrimitives.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// nsStringEnumerator
|
|
|
|
//
|
|
|
|
|
2008-02-21 12:39:20 -08:00
|
|
|
class nsStringEnumerator : public nsIStringEnumerator,
|
|
|
|
public nsIUTF8StringEnumerator,
|
|
|
|
public nsISimpleEnumerator
|
|
|
|
{
|
|
|
|
public:
|
2009-01-18 12:14:14 -08:00
|
|
|
nsStringEnumerator(const nsTArray<nsString>* aArray, PRBool aOwnsArray) :
|
2008-02-21 12:39:20 -08:00
|
|
|
mArray(aArray), mIndex(0), mOwnsArray(aOwnsArray), mIsUnicode(PR_TRUE)
|
|
|
|
{}
|
|
|
|
|
2009-01-21 20:15:34 -08:00
|
|
|
nsStringEnumerator(const nsTArray<nsCString>* aArray, PRBool aOwnsArray) :
|
2008-02-21 12:39:20 -08:00
|
|
|
mCArray(aArray), mIndex(0), mOwnsArray(aOwnsArray), mIsUnicode(PR_FALSE)
|
|
|
|
{}
|
|
|
|
|
2009-01-18 12:14:14 -08:00
|
|
|
nsStringEnumerator(const nsTArray<nsString>* aArray, nsISupports* aOwner) :
|
2008-02-21 12:39:20 -08:00
|
|
|
mArray(aArray), mIndex(0), mOwner(aOwner), mOwnsArray(PR_FALSE), mIsUnicode(PR_TRUE)
|
|
|
|
{}
|
|
|
|
|
2009-01-21 20:15:34 -08:00
|
|
|
nsStringEnumerator(const nsTArray<nsCString>* aArray, nsISupports* aOwner) :
|
2008-02-21 12:39:20 -08:00
|
|
|
mCArray(aArray), mIndex(0), mOwner(aOwner), mOwnsArray(PR_FALSE), mIsUnicode(PR_FALSE)
|
|
|
|
{}
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIUTF8STRINGENUMERATOR
|
|
|
|
|
|
|
|
// have to declare nsIStringEnumerator manually, because of
|
|
|
|
// overlapping method names
|
|
|
|
NS_IMETHOD GetNext(nsAString& aResult);
|
|
|
|
NS_DECL_NSISIMPLEENUMERATOR
|
|
|
|
|
|
|
|
private:
|
|
|
|
~nsStringEnumerator() {
|
|
|
|
if (mOwnsArray) {
|
|
|
|
// const-casting is safe here, because the NS_New*
|
|
|
|
// constructors make sure mOwnsArray is consistent with
|
|
|
|
// the constness of the objects
|
|
|
|
if (mIsUnicode)
|
2009-01-18 12:14:14 -08:00
|
|
|
delete const_cast<nsTArray<nsString>*>(mArray);
|
2008-02-21 12:39:20 -08:00
|
|
|
else
|
2009-01-21 20:15:34 -08:00
|
|
|
delete const_cast<nsTArray<nsCString>*>(mCArray);
|
2008-02-21 12:39:20 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
union {
|
2009-01-18 12:14:14 -08:00
|
|
|
const nsTArray<nsString>* mArray;
|
2009-01-21 20:15:34 -08:00
|
|
|
const nsTArray<nsCString>* mCArray;
|
2008-02-21 12:39:20 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
inline PRUint32 Count() {
|
2009-01-21 20:15:34 -08:00
|
|
|
return mIsUnicode ? mArray->Length() : mCArray->Length();
|
2008-02-21 12:39:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 mIndex;
|
|
|
|
|
|
|
|
// the owner allows us to hold a strong reference to the object
|
|
|
|
// that owns the array. Having a non-null value in mOwner implies
|
|
|
|
// that mOwnsArray is PR_FALSE, because we rely on the real owner
|
|
|
|
// to release the array
|
|
|
|
nsCOMPtr<nsISupports> mOwner;
|
|
|
|
PRPackedBool mOwnsArray;
|
|
|
|
PRPackedBool mIsUnicode;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS3(nsStringEnumerator,
|
|
|
|
nsIStringEnumerator,
|
|
|
|
nsIUTF8StringEnumerator,
|
|
|
|
nsISimpleEnumerator)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsStringEnumerator::HasMore(PRBool* aResult)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
|
|
*aResult = mIndex < Count();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsStringEnumerator::HasMoreElements(PRBool* aResult)
|
|
|
|
{
|
|
|
|
return HasMore(aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsStringEnumerator::GetNext(nsISupports** aResult)
|
|
|
|
{
|
|
|
|
if (mIsUnicode) {
|
|
|
|
nsSupportsStringImpl* stringImpl = new nsSupportsStringImpl();
|
|
|
|
if (!stringImpl) return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
2009-01-18 12:14:14 -08:00
|
|
|
stringImpl->SetData(mArray->ElementAt(mIndex++));
|
2007-03-22 10:30:00 -07:00
|
|
|
*aResult = stringImpl;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nsSupportsCStringImpl* cstringImpl = new nsSupportsCStringImpl();
|
|
|
|
if (!cstringImpl) return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
2009-01-21 20:15:34 -08:00
|
|
|
cstringImpl->SetData(mCArray->ElementAt(mIndex++));
|
2007-03-22 10:30:00 -07:00
|
|
|
*aResult = cstringImpl;
|
|
|
|
}
|
|
|
|
NS_ADDREF(*aResult);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsStringEnumerator::GetNext(nsAString& aResult)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mIndex < Count(), NS_ERROR_UNEXPECTED);
|
|
|
|
|
|
|
|
if (mIsUnicode)
|
2009-01-18 12:14:14 -08:00
|
|
|
aResult = mArray->ElementAt(mIndex++);
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
2009-01-21 20:15:34 -08:00
|
|
|
CopyUTF8toUTF16(mCArray->ElementAt(mIndex++), aResult);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsStringEnumerator::GetNext(nsACString& aResult)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mIndex < Count(), NS_ERROR_UNEXPECTED);
|
|
|
|
|
|
|
|
if (mIsUnicode)
|
2009-01-18 12:14:14 -08:00
|
|
|
CopyUTF16toUTF8(mArray->ElementAt(mIndex++), aResult);
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
2009-01-21 20:15:34 -08:00
|
|
|
aResult = mCArray->ElementAt(mIndex++);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
static inline nsresult
|
2008-05-02 18:03:38 -07:00
|
|
|
StringEnumeratorTail(T** aResult NS_INPARAM)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (!*aResult)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
NS_ADDREF(*aResult);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// constructors
|
|
|
|
//
|
|
|
|
|
|
|
|
NS_COM nsresult
|
|
|
|
NS_NewStringEnumerator(nsIStringEnumerator** aResult,
|
2009-01-18 12:14:14 -08:00
|
|
|
const nsTArray<nsString>* aArray, nsISupports* aOwner)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
|
|
NS_ENSURE_ARG_POINTER(aArray);
|
|
|
|
|
|
|
|
*aResult = new nsStringEnumerator(aArray, aOwner);
|
|
|
|
return StringEnumeratorTail(aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_COM nsresult
|
|
|
|
NS_NewUTF8StringEnumerator(nsIUTF8StringEnumerator** aResult,
|
2009-01-21 20:15:34 -08:00
|
|
|
const nsTArray<nsCString>* aArray, nsISupports* aOwner)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
|
|
NS_ENSURE_ARG_POINTER(aArray);
|
|
|
|
|
|
|
|
*aResult = new nsStringEnumerator(aArray, aOwner);
|
|
|
|
return StringEnumeratorTail(aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_COM nsresult
|
|
|
|
NS_NewAdoptingStringEnumerator(nsIStringEnumerator** aResult,
|
2009-01-18 12:14:14 -08:00
|
|
|
nsTArray<nsString>* aArray)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
|
|
NS_ENSURE_ARG_POINTER(aArray);
|
|
|
|
|
|
|
|
*aResult = new nsStringEnumerator(aArray, PR_TRUE);
|
|
|
|
return StringEnumeratorTail(aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_COM nsresult
|
|
|
|
NS_NewAdoptingUTF8StringEnumerator(nsIUTF8StringEnumerator** aResult,
|
2009-01-21 20:15:34 -08:00
|
|
|
nsTArray<nsCString>* aArray)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
|
|
NS_ENSURE_ARG_POINTER(aArray);
|
|
|
|
|
|
|
|
*aResult = new nsStringEnumerator(aArray, PR_TRUE);
|
|
|
|
return StringEnumeratorTail(aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
// const ones internally just forward to the non-const equivalents
|
|
|
|
NS_COM nsresult
|
|
|
|
NS_NewStringEnumerator(nsIStringEnumerator** aResult,
|
2009-01-18 12:14:14 -08:00
|
|
|
const nsTArray<nsString>* aArray)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
|
|
NS_ENSURE_ARG_POINTER(aArray);
|
|
|
|
|
|
|
|
*aResult = new nsStringEnumerator(aArray, PR_FALSE);
|
|
|
|
return StringEnumeratorTail(aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_COM nsresult
|
|
|
|
NS_NewUTF8StringEnumerator(nsIUTF8StringEnumerator** aResult,
|
2009-01-21 20:15:34 -08:00
|
|
|
const nsTArray<nsCString>* aArray)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
|
|
NS_ENSURE_ARG_POINTER(aArray);
|
|
|
|
|
|
|
|
*aResult = new nsStringEnumerator(aArray, PR_FALSE);
|
|
|
|
return StringEnumeratorTail(aResult);
|
|
|
|
}
|
|
|
|
|