2017-07-13 10:26:03 +02:00
|
|
|
/*
|
|
|
|
* CStopWatch.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
2011-12-14 00:35:28 +03:00
|
|
|
#pragma once
|
2009-04-16 14:14:13 +03:00
|
|
|
|
2011-04-03 02:45:47 +03:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#define TO_MS_DIVISOR (1000)
|
|
|
|
#else
|
|
|
|
#include <ctime>
|
2011-12-14 00:35:28 +03:00
|
|
|
#define TO_MS_DIVISOR (CLOCKS_PER_SEC / 1000)
|
2011-04-03 02:45:47 +03:00
|
|
|
#endif
|
2009-04-16 14:14:13 +03:00
|
|
|
|
2022-07-26 15:07:42 +02:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
2011-12-17 21:59:59 +03:00
|
|
|
class CStopWatch
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
2011-12-14 00:35:28 +03:00
|
|
|
si64 start, last, mem;
|
|
|
|
|
2011-04-03 02:45:47 +03:00
|
|
|
public:
|
2011-12-17 21:59:59 +03:00
|
|
|
CStopWatch()
|
2011-04-03 02:45:47 +03:00
|
|
|
: start(clock())
|
|
|
|
{
|
|
|
|
last=clock();
|
|
|
|
mem=0;
|
|
|
|
}
|
|
|
|
|
2011-12-14 00:35:28 +03:00
|
|
|
si64 getDiff() //get diff in milliseconds
|
2011-04-03 02:45:47 +03:00
|
|
|
{
|
2011-12-14 00:35:28 +03:00
|
|
|
si64 ret = clock() - last;
|
|
|
|
last = clock();
|
|
|
|
return ret / TO_MS_DIVISOR;
|
2011-04-03 02:45:47 +03:00
|
|
|
}
|
|
|
|
void update()
|
|
|
|
{
|
|
|
|
last=clock();
|
|
|
|
}
|
|
|
|
void remember()
|
|
|
|
{
|
|
|
|
mem=clock();
|
|
|
|
}
|
2011-12-14 00:35:28 +03:00
|
|
|
si64 memDif()
|
2011-04-03 02:45:47 +03:00
|
|
|
{
|
2012-08-07 14:28:52 +03:00
|
|
|
return (clock()-mem) / TO_MS_DIVISOR;
|
2011-04-03 02:45:47 +03:00
|
|
|
}
|
2011-12-14 00:35:28 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
si64 clock()
|
2011-04-03 02:45:47 +03:00
|
|
|
{
|
2021-03-07 18:18:26 +02:00
|
|
|
#ifdef __FreeBSD__ // TODO: enable also for Apple?
|
2011-04-03 02:45:47 +03:00
|
|
|
struct rusage usage;
|
|
|
|
getrusage(RUSAGE_SELF, &usage);
|
2011-12-14 00:35:28 +03:00
|
|
|
return static_cast<si64>(usage.ru_utime.tv_sec + usage.ru_stime.tv_sec) * 1000000 + usage.ru_utime.tv_usec + usage.ru_stime.tv_usec;
|
2011-04-03 02:45:47 +03:00
|
|
|
#else
|
|
|
|
return std::clock();
|
|
|
|
#endif
|
|
|
|
}
|
2009-04-16 14:14:13 +03:00
|
|
|
};
|
2022-07-26 15:07:42 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|