1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/* Copyright (c) 2003-2005 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifndef NDBTIMER_H
#define NDBTIMER_H
#include <NdbTick.h>
#include <NdbOut.hpp>
//
// Class used for measuring time and priting the results
//
// Currently measures time in milliseconds
//
class NdbTimer
{
public:
NdbTimer();
~NdbTimer() {};
void doStart();
void doStop();
void doReset();
NDB_TICKS elapsedTime();
void printTransactionStatistics(const char* text,
int numTransactions,
int numOperations);
void printTestTimer(int numLoops,
int numRecords);
void printTotalTime(void);
private:
NDB_TICKS startTime;
NDB_TICKS stopTime;
};
inline NdbTimer::NdbTimer(){
doReset();
}
inline void NdbTimer::doReset(void){
startTime = 0;
stopTime = 0;
}
inline void NdbTimer::doStart(void){
startTime = NdbTick_CurrentMillisecond();
}
inline void NdbTimer::doStop(void){
stopTime = NdbTick_CurrentMillisecond();
}
inline NDB_TICKS NdbTimer::elapsedTime(void){
return (stopTime - startTime);
}
inline void NdbTimer::printTransactionStatistics(const char* text,
int numTransactions,
int numOperations){
// Convert to Uint32 in order to be able to print it to screen
Uint32 lapTime = (Uint32)elapsedTime();
ndbout_c("%i transactions, %i %s total time = %d ms\nAverage %f ms/transaction, %f ms/%s.\n%f transactions/second, %f %ss/second.\n",
numTransactions, numTransactions*numOperations, text, lapTime,
((double)lapTime/numTransactions), ((double)lapTime/(numTransactions*numOperations)), text,
1000.0/((double)lapTime/numOperations), 1000.0/((double)lapTime/(numTransactions*numOperations)), text);
}
inline void NdbTimer::printTestTimer(int numLoops,
int numRecords){
// Convert to Uint32 in order to be able to print it to screen
Uint32 lapTime = (Uint32)elapsedTime();
ndbout_c("%i loop * %i records, total time = %d ms\nAverage %f ms/loop, %f ms/record.\n%f looop/second, %f records/second.\n",
numLoops, numRecords, lapTime,
((double)lapTime/numLoops), ((double)lapTime/(numLoops*numRecords)),
1000.0/((double)lapTime/numLoops), 1000.0/((double)lapTime/(numLoops*numRecords)));
}
inline void NdbTimer::printTotalTime(void){
// Convert to Uint32 in order to be able to print it to screen
Uint32 lapTime = (Uint32)elapsedTime();
Uint32 secTime = lapTime/1000;
ndbout_c("Total time : %d seconds (%d ms)\n", secTime, lapTime);
}
#endif
|