afbd2f3bbc
in Linux. This can happen if the clock is turned back when using the system clock; the time will be less than ArchHooks_Unix::m_iStartTime.
93 lines
3.2 KiB
C++
93 lines
3.2 KiB
C++
#include "global.h"
|
|
#include "ArchHooks.h"
|
|
|
|
ArchHooks *HOOKS = NULL;
|
|
|
|
#include "Selector_ArchHooks.h"
|
|
ArchHooks *MakeArchHooks()
|
|
{
|
|
return new ARCH_HOOKS;
|
|
}
|
|
|
|
/*
|
|
* This is a helper for GetMicrosecondsSinceStart on systems with a system
|
|
* timer that may loop or move backwards.
|
|
*
|
|
* The time may decrease last for at least two reasons:
|
|
*
|
|
* 1. The underlying timer may be 32-bit and use millisecs internally, in which case
|
|
* the timer will loop every 2^32 ms.
|
|
*
|
|
* 2. The underlying clock may have moved backwards (eg. system clock and ntpd).
|
|
*
|
|
* If the system clock moves backwards, we can't just clamp the time; if it moved back
|
|
* an hour, we'd sit around for an hour until it catches up.
|
|
*
|
|
* Keep track of an offset: the amount of time to add to the result. If we move back
|
|
* by 100ms, the offset will be increased by 100ms. If we loop, the offset will be
|
|
* increased by the duration 2^32 ms.
|
|
*
|
|
* This helper only needs to be used if one or both of the above conditions can occur.
|
|
* If the underlying timer is reliable, this doesn't need to be used (for a small
|
|
* efficiency bonus). Also, you may omit this for GetMicrosecondsSinceStart() when
|
|
* bAccurate == false.
|
|
*/
|
|
|
|
int64_t ArchHooks::FixupTimeIfLooped( int64_t usecs )
|
|
{
|
|
static int64_t last = 0;
|
|
static int64_t offset_us = 0;
|
|
|
|
/* The time has wrapped if the last time was very high and the current time is very low. */
|
|
const int64_t i32BitMaxMs = uint64_t(1) << 32;
|
|
const int64_t i32BitMaxUs = i32BitMaxMs*1000;
|
|
const int64_t one_day = uint64_t(24*60*60)*1000000;
|
|
if( last > (i32BitMaxUs-one_day) && usecs < one_day )
|
|
offset_us += i32BitMaxUs;
|
|
|
|
last = usecs;
|
|
|
|
return usecs + offset_us;
|
|
}
|
|
|
|
int64_t ArchHooks::FixupTimeIfBackwards( int64_t usecs )
|
|
{
|
|
static int64_t last = 0;
|
|
static int64_t offset_us = 0;
|
|
|
|
if( usecs < last )
|
|
{
|
|
/* The time has moved backwards. Increase the offset by the amount we moved. */
|
|
offset_us += last - usecs;
|
|
}
|
|
|
|
last = usecs;
|
|
|
|
return usecs + offset_us;
|
|
}
|
|
|
|
/*
|
|
* (c) 2003-2004 Glenn Maynard, Chris Danford
|
|
* All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, and/or sell copies of the Software, and to permit persons to
|
|
* whom the Software is furnished to do so, provided that the above
|
|
* copyright notice(s) and this permission notice appear in all copies of
|
|
* the Software and that both the above copyright notice(s) and this
|
|
* permission notice appear in supporting documentation.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
|
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
|
|
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|