1999-01-28 19:54:58 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1999-01-28 19:54:58 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +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.
|
1999-01-28 19:54:58 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-01-28 19:54:58 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
* Copyright (C) 1999 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-01-28 19:54:58 +00:00
|
|
|
*/
|
|
|
|
// nsMsgKeyArray.cpp : implementation file
|
|
|
|
//
|
1999-02-07 01:16:26 +00:00
|
|
|
|
|
|
|
#include "msgCore.h" // precompiled header...
|
|
|
|
|
1999-01-28 19:54:58 +00:00
|
|
|
#include "nsMsgKeyArray.h"
|
|
|
|
|
|
|
|
|
2001-03-17 01:59:34 +00:00
|
|
|
nsMsgViewIndex nsMsgKeyArray::FindIndex(nsMsgKey key, PRUint32 startIndex)
|
1999-01-28 19:54:58 +00:00
|
|
|
{
|
2001-03-17 01:59:34 +00:00
|
|
|
for (PRUint32 i = startIndex; i < GetSize(); i++)
|
1999-01-28 19:54:58 +00:00
|
|
|
{
|
1999-02-13 10:39:59 +00:00
|
|
|
if ((nsMsgKey)(m_pData[i]) == key)
|
1999-01-28 19:54:58 +00:00
|
|
|
{
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
1999-02-13 10:39:59 +00:00
|
|
|
return nsMsgViewIndex_None;
|
1999-01-28 19:54:58 +00:00
|
|
|
}
|
|
|
|
|
1999-02-13 10:39:59 +00:00
|
|
|
void nsMsgKeyArray::SetArray(nsMsgKey* pData, int numElements, int numAllocated)
|
1999-01-28 19:54:58 +00:00
|
|
|
{
|
1999-02-12 01:58:10 +00:00
|
|
|
NS_ASSERTION(pData != NULL, "storage is NULL");
|
|
|
|
NS_ASSERTION(numElements >= 0, "negative number of elements");
|
|
|
|
NS_ASSERTION(numAllocated >= numElements, "num elements more than array size");
|
1999-01-28 19:54:58 +00:00
|
|
|
|
|
|
|
delete [] m_pData; // delete previous array
|
|
|
|
m_pData = pData; // set new array
|
|
|
|
m_nMaxSize = numAllocated; // set size
|
|
|
|
m_nSize = numElements; // set allocated length
|
|
|
|
}
|