2008-07-11 23:47:28 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2009-04-13 20:29:41 +04:00
|
|
|
* vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
|
2012-05-21 15:12:37 +04:00
|
|
|
* 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/. */
|
2008-07-11 23:47:28 +04:00
|
|
|
|
|
|
|
#include "mozStorageRow.h"
|
|
|
|
#include "mozStorageResultSet.h"
|
|
|
|
|
2009-05-09 04:29:56 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace storage {
|
2008-07-11 23:47:28 +04:00
|
|
|
|
2009-05-09 04:29:56 +04:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// ResultSet
|
2008-07-11 23:47:28 +04:00
|
|
|
|
2009-05-09 04:29:56 +04:00
|
|
|
ResultSet::ResultSet() : mCurrentIndex(0) {}
|
2008-07-11 23:47:28 +04:00
|
|
|
|
2009-05-09 04:29:56 +04:00
|
|
|
ResultSet::~ResultSet() { mData.Clear(); }
|
2008-07-11 23:47:28 +04:00
|
|
|
|
2019-05-01 11:47:10 +03:00
|
|
|
nsresult ResultSet::add(mozIStorageRow* aRow) {
|
2008-07-11 23:47:28 +04:00
|
|
|
return mData.AppendObject(aRow) ? NS_OK : NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
2009-05-09 04:29:56 +04:00
|
|
|
/**
|
|
|
|
* Note: This object is only ever accessed on one thread at a time. It it not
|
|
|
|
* threadsafe, but it does need threadsafe AddRef and Release.
|
|
|
|
*/
|
|
|
|
NS_IMPL_ISUPPORTS(ResultSet, mozIStorageResultSet)
|
|
|
|
|
2008-07-11 23:47:28 +04:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// mozIStorageResultSet
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 11:47:10 +03:00
|
|
|
ResultSet::GetNextRow(mozIStorageRow** _row) {
|
2009-10-31 13:38:31 +03:00
|
|
|
NS_ENSURE_ARG_POINTER(_row);
|
|
|
|
|
2008-07-11 23:47:28 +04:00
|
|
|
if (mCurrentIndex >= mData.Count()) {
|
|
|
|
// Just return null here
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ADDREF(*_row = mData.ObjectAt(mCurrentIndex++));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-05-09 04:29:56 +04:00
|
|
|
|
|
|
|
} // namespace storage
|
|
|
|
} // namespace mozilla
|