Bug 579517 - Part 6: Automated conversion of NSPR numeric types to stdint types in Gecko; r=mconley
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*/mozilla*" \
! -wholename "*ldap/sdks/c-sdk*" \
! -wholename "*/.hg*" \
! -wholename "obj-tb-dbg*" \
! -wholename "obj-sm-dbg*" \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* 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/. */
#include "msgCore.h" // precompiled header...
#include "nsCOMPtr.h"
#include "nsNNTPArticleList.h"
#include "nsIMsgFolder.h"
#include "nsAutoPtr.h"
#include "nsMsgKeyArray.h"
NS_IMPL_ISUPPORTS1(nsNNTPArticleList, nsINNTPArticleList)
nsNNTPArticleList::nsNNTPArticleList()
{
}
nsNNTPArticleList::~nsNNTPArticleList()
{
if (m_newsDB) {
m_newsDB->Commit(nsMsgDBCommitType::kSessionCommit);
m_newsDB->Close(true);
m_newsDB = nullptr;
}
m_newsFolder = nullptr;
}
NS_IMETHODIMP
nsNNTPArticleList::Initialize(nsIMsgNewsFolder *newsFolder)
{
nsresult rv;
NS_ENSURE_ARG_POINTER(newsFolder);
m_dbIndex = 0;
m_newsFolder = newsFolder;
nsCOMPtr <nsIMsgFolder> folder = do_QueryInterface(m_newsFolder, &rv);
NS_ENSURE_SUCCESS(rv,rv);
rv = folder->GetMsgDatabase(getter_AddRefs(m_newsDB));
NS_ENSURE_SUCCESS(rv,rv);
if (!m_newsDB) return NS_ERROR_UNEXPECTED;
nsRefPtr<nsMsgKeyArray> keys = new nsMsgKeyArray;
rv = m_newsDB->ListAllKeys(keys);
NS_ENSURE_SUCCESS(rv,rv);
m_idsInDB.AppendElements(keys->m_keys);
return NS_OK;
}
NS_IMETHODIMP
nsNNTPArticleList::AddArticleKey(int32_t key)
{
#ifdef DEBUG
m_idsOnServer.AppendElement(key);
#endif
if (m_dbIndex < m_idsInDB.Length())
{
int32_t idInDBToCheck = m_idsInDB[m_dbIndex];
// if there are keys in the database that aren't in the newsgroup
// on the server, remove them. We probably shouldn't do this if
// we have a copy of the article offline.
// We'll add to m_idsDeleted for now and remove the id later
while (idInDBToCheck < key)
{
m_idsDeleted.AppendElement(idInDBToCheck);
if (m_dbIndex >= m_idsInDB.Length())
break;
idInDBToCheck = m_idsInDB[++m_dbIndex];
}
if (idInDBToCheck == key)
m_dbIndex++;
}
return NS_OK;
}
NS_IMETHODIMP
nsNNTPArticleList::FinishAddingArticleKeys()
{
// if the last n messages in the group are cancelled, they won't have gotten removed
// so we have to go and remove them now.
if (m_dbIndex < m_idsInDB.Length())
m_idsDeleted.AppendElements(&m_idsInDB[m_dbIndex],
m_idsInDB.Length() - m_dbIndex);
if (m_idsDeleted.Length())
m_newsFolder->RemoveMessages(m_idsDeleted);
#ifdef DEBUG
// make sure none of the deleted turned up on the idsOnServer list
for (uint32_t i = 0; i < m_idsDeleted.Length(); i++) {
NS_ASSERTION(m_idsOnServer.IndexOf((nsMsgKey)(m_idsDeleted[i]), 0) == nsMsgViewIndex_None, "a deleted turned up on the idsOnServer list");
}
#endif
return NS_OK;
}