ppsspp/Common/TimeUtil.cpp

103 lines
1.9 KiB
C++
Raw Normal View History

#include <cstdio>
2012-03-24 23:39:19 +01:00
#include "base/basictypes.h"
#include "Common/TimeUtil.h"
2012-03-24 23:39:19 +01:00
#ifdef _WIN32
#include <windows.h>
#else
#include <sys/time.h>
#include <unistd.h>
#endif
2020-03-15 07:56:38 -07:00
#ifdef HAVE_LIBNX
#include <switch.h>
#endif // HAVE_LIBNX
#include "Common/Log.h"
2012-03-24 23:39:19 +01:00
static double curtime = 0;
#ifdef _WIN32
LARGE_INTEGER frequency;
double frequencyMult;
LARGE_INTEGER startTime;
2012-03-24 23:39:19 +01:00
double real_time_now() {
if (frequency.QuadPart == 0) {
QueryPerformanceFrequency(&frequency);
QueryPerformanceCounter(&startTime);
curtime = 0.0;
frequencyMult = 1.0 / static_cast<double>(frequency.QuadPart);
2012-10-30 13:20:55 +01:00
}
LARGE_INTEGER time;
QueryPerformanceCounter(&time);
double elapsed = static_cast<double>(time.QuadPart - startTime.QuadPart);
return elapsed * frequencyMult;
2012-03-24 23:39:19 +01:00
}
#else
uint64_t _frequency = 0;
uint64_t _starttime = 0;
2012-03-24 23:39:19 +01:00
double real_time_now() {
static time_t start;
struct timeval tv;
gettimeofday(&tv, NULL);
if (start == 0) {
start = tv.tv_sec;
}
tv.tv_sec -= start;
return (double)tv.tv_sec + (double)tv.tv_usec / 1000000.0;
2012-03-24 23:39:19 +01:00
}
#endif
void time_update() {
2012-10-30 13:20:55 +01:00
curtime = real_time_now();
2012-03-24 23:39:19 +01:00
}
double time_now_d() {
2012-10-30 13:20:55 +01:00
return curtime;
2012-03-24 23:39:19 +01:00
}
int time_now_ms() {
2012-10-30 13:20:55 +01:00
return int(curtime*1000.0);
2012-03-24 23:39:19 +01:00
}
void sleep_ms(int ms) {
#ifdef _WIN32
2012-10-30 13:20:55 +01:00
Sleep(ms);
2020-03-15 07:56:38 -07:00
#elif defined(HAVE_LIBNX)
svcSleepThread(ms * 1000000);
2012-03-24 23:39:19 +01:00
#else
2012-10-30 13:20:55 +01:00
usleep(ms * 1000);
2012-03-24 23:39:19 +01:00
#endif
}
LoggingDeadline::LoggingDeadline(const char *name, int ms) : name_(name), endCalled_(false) {
totalTime_ = (double)ms * 0.001;
time_update();
endTime_ = time_now_d() + totalTime_;
}
LoggingDeadline::~LoggingDeadline() {
if (!endCalled_)
End();
}
bool LoggingDeadline::End() {
2013-01-11 23:45:39 +01:00
endCalled_ = true;
time_update();
if (time_now_d() > endTime_) {
double late = (time_now_d() - endTime_);
double totalTime = late + totalTime_;
ERROR_LOG(SYSTEM, "===== %0.2fms DEADLINE PASSED FOR %s at %0.2fms - %0.2fms late =====", totalTime_ * 1000.0, name_, 1000.0 * totalTime, 1000.0 * late);
return false;
}
return true;
}