mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-29 06:43:03 +01:00
81 lines
2.1 KiB
C++
81 lines
2.1 KiB
C++
/*
|
|
* The contents of this file are subject to the Initial
|
|
* Developer's Public License Version 1.0 (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.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl.
|
|
*
|
|
* Software distributed under the License is distributed AS IS,
|
|
* 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 was created by Dmitry Yemanov
|
|
* for the Firebird Open Source RDBMS project.
|
|
*
|
|
* Copyright (c) 2006 Dmitry Yemanov <dimitr@users.sf.net>
|
|
* and all contributors signed below.
|
|
*
|
|
* All Rights Reserved.
|
|
* Contributor(s): ______________________________________.
|
|
*/
|
|
|
|
#include "firebird.h"
|
|
#include "../jrd/gdsassert.h"
|
|
#include "../jrd/jrd.h"
|
|
#include "../jrd/req.h"
|
|
#include "../jrd/tra.h"
|
|
|
|
#include "../jrd/RuntimeStatistics.h"
|
|
|
|
using namespace Firebird;
|
|
using namespace Jrd;
|
|
|
|
RuntimeStatistics::RuntimeStatistics(MemoryPool& pool, RuntimeStatistics* p)
|
|
: parent(p), values(pool, TOTAL_ITEMS)
|
|
{
|
|
values.resize(TOTAL_ITEMS);
|
|
}
|
|
|
|
void RuntimeStatistics::setParent(RuntimeStatistics* p)
|
|
{
|
|
parent = p;
|
|
}
|
|
|
|
void RuntimeStatistics::bumpValue(size_t index)
|
|
{
|
|
for (RuntimeStatistics* stats = this; stats; stats = stats->parent) {
|
|
fb_assert(index < stats->values.getCount());
|
|
stats->values[index]++;
|
|
}
|
|
}
|
|
|
|
SINT64 RuntimeStatistics::getValue(size_t index) const
|
|
{
|
|
fb_assert(index < values.getCount());
|
|
return values[index];
|
|
}
|
|
|
|
void RuntimeStatistics::bumpValue(thread_db* tdbb, size_t index)
|
|
{
|
|
fb_assert(tdbb);
|
|
|
|
RuntimeStatistics* statistics = NULL;
|
|
|
|
if (tdbb->tdbb_request) {
|
|
statistics = &tdbb->tdbb_request->req_stats;
|
|
}
|
|
else if (tdbb->tdbb_transaction) {
|
|
statistics = &tdbb->tdbb_transaction->tra_stats;
|
|
}
|
|
else if (tdbb->tdbb_attachment) {
|
|
statistics = &tdbb->tdbb_attachment->att_stats;
|
|
}
|
|
else if (tdbb->tdbb_database) {
|
|
statistics = &tdbb->tdbb_database->dbb_stats;
|
|
}
|
|
|
|
fb_assert(statistics);
|
|
statistics->bumpValue(index);
|
|
}
|