SWDEV-470698 - fix formatting, add format check workflow (#657)

This commit is contained in:
Danylo Lytovchenko
2025-08-20 16:28:06 +02:00
committed by GitHub
szülő 5840940caa
commit f7338717ae
1574 fájl változott, egészen pontosan 162972 új sor hozzáadva és 199346 régi sor törölve
@@ -14,103 +14,84 @@
#define NANOSECONDS_PER_SEC 1000000000
#endif
CPerfCounter::CPerfCounter() : _clocks(0), _start(0)
{
CPerfCounter::CPerfCounter() : _clocks(0), _start(0) {
#ifdef _WIN32
QueryPerformanceFrequency((LARGE_INTEGER *)&_freq);
QueryPerformanceFrequency((LARGE_INTEGER*)&_freq);
#endif
#ifdef __linux__
_freq = NANOSECONDS_PER_SEC;
_freq = NANOSECONDS_PER_SEC;
#endif
}
CPerfCounter::~CPerfCounter()
{
// EMPTY!
CPerfCounter::~CPerfCounter() {
// EMPTY!
}
void
CPerfCounter::Start(void)
{
void CPerfCounter::Start(void) {
#ifdef _WIN32
if( _start )
{
MessageBox(NULL, "Bad Perf Counter Start", "Error", MB_OK);
exit(0);
}
QueryPerformanceCounter((LARGE_INTEGER *)&_start);
if (_start) {
MessageBox(NULL, "Bad Perf Counter Start", "Error", MB_OK);
exit(0);
}
QueryPerformanceCounter((LARGE_INTEGER*)&_start);
#endif
#ifdef __linux__
struct timespec s;
clock_gettime(CLOCK_MONOTONIC, &s);
_start = (i64)s.tv_sec * NANOSECONDS_PER_SEC + (i64)s.tv_nsec ;
struct timespec s;
clock_gettime(CLOCK_MONOTONIC, &s);
_start = (i64)s.tv_sec * NANOSECONDS_PER_SEC + (i64)s.tv_nsec;
#endif
}
void
CPerfCounter::Stop(void)
{
i64 n;
void CPerfCounter::Stop(void) {
i64 n;
#ifdef _WIN32
if( !_start )
{
MessageBox(NULL, "Bad Perf Counter Stop", "Error", MB_OK);
exit(0);
}
if (!_start) {
MessageBox(NULL, "Bad Perf Counter Stop", "Error", MB_OK);
exit(0);
}
QueryPerformanceCounter((LARGE_INTEGER *)&n);
QueryPerformanceCounter((LARGE_INTEGER*)&n);
#endif
#ifdef __linux__
struct timespec s;
clock_gettime(CLOCK_MONOTONIC, &s);
n = (i64)s.tv_sec * NANOSECONDS_PER_SEC + (i64)s.tv_nsec ;
struct timespec s;
clock_gettime(CLOCK_MONOTONIC, &s);
n = (i64)s.tv_sec * NANOSECONDS_PER_SEC + (i64)s.tv_nsec;
#endif
n -= _start;
_start = 0;
_clocks += n;
n -= _start;
_start = 0;
_clocks += n;
}
void
CPerfCounter::Reset(void)
{
void CPerfCounter::Reset(void) {
#ifdef _WIN32
if( _start )
{
MessageBox(NULL, "Bad Perf Counter Reset", "Error", MB_OK);
exit(0);
}
if (_start) {
MessageBox(NULL, "Bad Perf Counter Reset", "Error", MB_OK);
exit(0);
}
#endif
_clocks = 0;
_clocks = 0;
}
double
CPerfCounter::GetElapsedTime(void)
{
double CPerfCounter::GetElapsedTime(void) {
#ifdef _WIN32
if( _start ) {
MessageBox(NULL, "Trying to get time while still running.", "Error", MB_OK);
exit(0);
}
if (_start) {
MessageBox(NULL, "Trying to get time while still running.", "Error", MB_OK);
exit(0);
}
#endif
return (double)_clocks / (double)_freq;
return (double)_clocks / (double)_freq;
}