Replaced boost timer implementation with gettimeofday and GetSystemTimeAsFileTime

This commit is contained in:
Alex Zolotarev 2011-06-12 18:47:00 +03:00 committed by Alex Zolotarev
parent 02fe65ee87
commit 7ab5c2d038
3 changed files with 54 additions and 18 deletions

View file

@ -23,6 +23,7 @@ SOURCES += \
lower_case.cpp \
normalize_unicode.cpp \
runner.cpp \
timer.cpp \
HEADERS += \
SRC_FIRST.hpp \

41
base/timer.cpp Normal file
View file

@ -0,0 +1,41 @@
#include "timer.hpp"
#include "../std/target_os.hpp"
#include "../std/time.hpp"
namespace my
{
Timer::Timer()
{
Reset();
}
double Timer::LocalTime() const
{
#ifdef OMIM_OS_WINDOWS
FILETIME ft;
GetSystemTimeAsFileTime(&ft);
uint64_t val = ft.dwHighDateTime;
val <<= 32;
val += ft.dwLowDateTime;
return val / 10000000.0;
#else
timeval tv;
gettimeofday(&tv, 0);
return tv.tv_sec + tv.tv_usec / 1000000.0;
#endif
}
double Timer::ElapsedSeconds() const
{
return LocalTime() - m_startTime;
}
void Timer::Reset()
{
m_startTime = LocalTime();
}
}

View file

@ -1,25 +1,19 @@
#pragma once
#include "base.hpp"
#define BOOST_DATE_TIME_NO_LIB
#include <boost/date_time/posix_time/posix_time.hpp>
namespace my
{
/// Cross platform timer
class Timer
{
public:
Timer() { Reset(); }
double ElapsedSeconds() const
{
return (boost::posix_time::microsec_clock::local_time() - m_StartTime).total_milliseconds()
/ 1000.0;
}
void Reset() { m_StartTime = boost::posix_time::microsec_clock::local_time(); }
private:
boost::posix_time::ptime m_StartTime;
};
/// Cross platform timer
class Timer
{
double m_startTime;
double LocalTime() const;
public:
Timer();
double ElapsedSeconds() const;
void Reset();
};
}