// ************************************************************************** // * This file is part of the FreeFileSync project. It is distributed under * // * GNU General Public License: http://www.gnu.org/licenses/gpl.html * // * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved * // ************************************************************************** #ifndef ZEN_TICK_COUNT_HEADER_3807326 #define ZEN_TICK_COUNT_HEADER_3807326 #include #include "type_traits.h" #include "basic_math.h" #ifdef ZEN_WIN #include "win.h" //includes "windows.h" #elif defined ZEN_LINUX #include //Posix ::clock_gettime() #elif defined ZEN_MAC #include #endif //#include //#include "assert_static.h" //#include //template inline //T dist(T a, T b) //{ // return a > b ? a - b : b - a; //} namespace zen { //a portable "GetTickCount()" using "wall time equivalent" - e.g. no jumps due to ntp time corrections class TickVal; std::int64_t dist(const TickVal& lhs, const TickVal& rhs); //use absolute difference for paranoid security: even QueryPerformanceCounter "wraps-around" at *some* time std::int64_t ticksPerSec(); //return 0 on error TickVal getTicks(); //return invalid value on error: !TickVal::isValid() //############################ implementation ############################## class TickVal { public: #ifdef ZEN_WIN typedef LARGE_INTEGER NativeVal; #elif defined ZEN_LINUX typedef timespec NativeVal; #elif defined ZEN_MAC typedef uint64_t NativeVal; #endif TickVal() : val_() {} explicit TickVal(const NativeVal& val) : val_(val) {} inline friend std::int64_t dist(const TickVal& lhs, const TickVal& rhs) { #ifdef ZEN_WIN return numeric::dist(lhs.val_.QuadPart, rhs.val_.QuadPart); //std::abs(a - b) can lead to overflow! #elif defined ZEN_LINUX const auto distSec = numeric::dist(lhs.val_.tv_sec, rhs.val_.tv_sec); const auto distNsec = numeric::dist(lhs.val_.tv_nsec, rhs.val_.tv_nsec); if (distSec > (std::numeric_limits::max() - distNsec) / 1000000000) //truncate instead of overflow! return std::numeric_limits::max(); return distSec * 1000000000 + distNsec; #elif defined ZEN_MAC return numeric::dist(lhs.val_, rhs.val_); #endif } inline friend bool operator<(const TickVal& lhs, const TickVal& rhs) { #ifdef ZEN_WIN return lhs.val_.QuadPart < rhs.val_.QuadPart; #elif defined ZEN_LINUX if (lhs.val_.tv_sec != rhs.val_.tv_sec) return lhs.val_.tv_sec < rhs.val_.tv_sec; return lhs.val_.tv_nsec < rhs.val_.tv_nsec; #elif defined ZEN_MAC return lhs.val_ < rhs.val_; #endif } bool isValid() const { return dist(*this, TickVal()) != 0; } private: NativeVal val_; }; inline std::int64_t ticksPerSec() //return 0 on error { #ifdef ZEN_WIN LARGE_INTEGER frequency = {}; if (!::QueryPerformanceFrequency(&frequency)) //MSDN promises: "The frequency cannot change while the system is running." return 0; static_assert(sizeof(std::int64_t) >= sizeof(frequency.QuadPart), ""); return frequency.QuadPart; #elif defined ZEN_LINUX return 1000000000; //precision: nanoseconds #elif defined ZEN_MAC mach_timebase_info_data_t tbi = {}; if (::mach_timebase_info(&tbi) != KERN_SUCCESS) return 0; return 1000000000 * tbi.denom / tbi.numer; #endif } inline TickVal getTicks() //return !isValid() on error { #ifdef ZEN_WIN LARGE_INTEGER now = {}; if (!::QueryPerformanceCounter(&now)) //msdn: SetThreadAffinityMask() may be required if there are bugs in BIOS or HAL" return TickVal(); #elif defined ZEN_LINUX //gettimeofday() seems fine but is deprecated timespec now = {}; if (::clock_gettime(CLOCK_MONOTONIC_RAW, &now) != 0) //CLOCK_MONOTONIC measures time reliably across processors! return TickVal(); #elif defined ZEN_MAC uint64_t now = ::mach_absolute_time(); //can this call fail??? #endif return TickVal(now); } } #endif //ZEN_TICK_COUNT_HEADER_3807326