freeswitch/libs/jrtplib/src/rtptimeutilities.h
2006-01-30 15:53:38 +00:00

263 lines
6.2 KiB
C++

/*
This file is a part of JRTPLIB
Copyright (c) 1999-2005 Jori Liesenborgs
Contact: jori@lumumba.uhasselt.be
This library was developed at the "Expertisecentrum Digitale Media"
(http://www.edm.uhasselt.be), a research center of the Hasselt University
(http://www.uhasselt.be). The library is based upon work done for
my thesis at the School for Knowledge Technology (Belgium/The Netherlands).
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, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
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. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
*/
#ifndef RTPTIMEUTILITIES_H
#define RTPTIMEUTILITIES_H
#include "rtpconfig.h"
#include "rtptypes.h"
#ifndef WIN32
#include <sys/time.h>
#include <time.h>
#else
#ifndef _WIN32_WCE
#include <sys/timeb.h>
#endif // _WIN32_WINCE
#endif // WIN32
#define RTP_NTPTIMEOFFSET 2208988800UL
class RTPNTPTime
{
public:
RTPNTPTime(u_int32_t m,u_int32_t l) { msw = m ; lsw = l; }
u_int32_t GetMSW() const { return msw; }
u_int32_t GetLSW() const { return lsw; }
private:
u_int32_t msw,lsw;
};
class RTPTime
{
public:
static RTPTime CurrentTime();
static void Wait(const RTPTime &delay);
RTPTime(double t);
RTPTime(RTPNTPTime ntptime);
RTPTime(u_int32_t seconds,u_int32_t microseconds) { sec = seconds; microsec = microseconds; }
u_int32_t GetSeconds() const { return sec; }
u_int32_t GetMicroSeconds() const { return microsec; }
double GetDouble() const { return (((double)sec)+(((double)microsec)/1000000.0)); }
RTPTime &operator-=(const RTPTime &t);
RTPTime &operator+=(const RTPTime &t);
RTPNTPTime GetNTPTime() const;
bool operator<(const RTPTime &t) const;
bool operator>(const RTPTime &t) const;
bool operator<=(const RTPTime &t) const;
bool operator>=(const RTPTime &t) const;
private:
u_int32_t sec,microsec;
};
inline RTPTime::RTPTime(double t)
{
sec = (u_int32_t)t;
double t2 = t-((double)sec);
t2 *= 1000000.0;
microsec = (u_int32_t)t2;
}
inline RTPTime::RTPTime(RTPNTPTime ntptime)
{
if (ntptime.GetMSW() < RTP_NTPTIMEOFFSET)
{
sec = 0;
microsec = 0;
}
else
{
sec = ntptime.GetMSW() - RTP_NTPTIMEOFFSET;
double x = (double)ntptime.GetLSW();
x /= (65536.0*65536.0);
x *= 1000000.0;
microsec = (u_int32_t)x;
}
}
#if (defined(WIN32) || defined(_WIN32_WCE))
inline RTPTime RTPTime::CurrentTime()
{
static int inited = 0;
static unsigned __int64 microseconds, initmicroseconds;
static LARGE_INTEGER performancefrequency;
unsigned __int64 emulate_microseconds, microdiff;
SYSTEMTIME systemtime;
FILETIME filetime;
LARGE_INTEGER performancecount;
QueryPerformanceCounter(&performancecount);
if(!inited){
inited = 1;
QueryPerformanceFrequency(&performancefrequency);
GetSystemTime(&systemtime);
SystemTimeToFileTime(&systemtime,&filetime);
microseconds = ( ((unsigned __int64)(filetime.dwHighDateTime) << 32) + (unsigned __int64)(filetime.dwLowDateTime) ) / 10ui64;
microseconds-= 11644473600000000ui64; // EPOCH
initmicroseconds = ( ( performancecount.QuadPart * 1000000ui64 ) / performancefrequency.QuadPart );
}
emulate_microseconds = ( ( performancecount.QuadPart * 1000000ui64 ) / performancefrequency.QuadPart );
microdiff = emulate_microseconds - initmicroseconds;
return RTPTime((u_int32_t)((microseconds + microdiff) / 1000000ui64),((u_int32_t)((microseconds + microdiff) % 1000000ui64)));
}
inline void RTPTime::Wait(const RTPTime &delay)
{
DWORD t;
t = ((DWORD)delay.GetSeconds())*1000+(((DWORD)delay.GetMicroSeconds())/1000);
Sleep(t);
}
class RTPTimeInitializer
{
public:
RTPTimeInitializer();
void Dummy() { }
};
extern RTPTimeInitializer timeinit;
#else // unix style
inline RTPTime RTPTime::CurrentTime()
{
struct timeval tv;
gettimeofday(&tv,0);
return RTPTime((u_int32_t)tv.tv_sec,(u_int32_t)tv.tv_usec);
}
inline void RTPTime::Wait(const RTPTime &delay)
{
struct timespec req,rem;
req.tv_sec = (time_t)delay.sec;
req.tv_nsec = ((long)delay.microsec)*1000;
nanosleep(&req,&rem);
}
#endif // WIN32
inline RTPTime &RTPTime::operator-=(const RTPTime &t)
{
sec -= t.sec;
if (t.microsec > microsec)
{
sec--;
microsec += 1000000;
}
microsec -= t.microsec;
return *this;
}
inline RTPTime &RTPTime::operator+=(const RTPTime &t)
{
sec += t.sec;
microsec += t.microsec;
if (microsec >= 1000000)
{
sec++;
microsec -= 1000000;
}
return *this;
}
inline RTPNTPTime RTPTime::GetNTPTime() const
{
u_int32_t msw = sec+RTP_NTPTIMEOFFSET;
u_int32_t lsw;
double x;
x = microsec/1000000.0;
x *= (65536.0*65536.0);
lsw = (u_int32_t)x;
return RTPNTPTime(msw,lsw);
}
inline bool RTPTime::operator<(const RTPTime &t) const
{
if (sec < t.sec)
return true;
if (sec > t.sec)
return false;
if (microsec < t.microsec)
return true;
return false;
}
inline bool RTPTime::operator>(const RTPTime &t) const
{
if (sec > t.sec)
return true;
if (sec < t.sec)
return false;
if (microsec > t.microsec)
return true;
return false;
}
inline bool RTPTime::operator<=(const RTPTime &t) const
{
if (sec < t.sec)
return true;
if (sec > t.sec)
return false;
if (microsec <= t.microsec)
return true;
return false;
}
inline bool RTPTime::operator>=(const RTPTime &t) const
{
if (sec > t.sec)
return true;
if (sec < t.sec)
return false;
if (microsec >= t.microsec)
return true;
return false;
}
#endif // RTPTIMEUTILITIES_H