2001-09-22 10:42:08 +08:00
|
|
|
//#include <stdlib.h>
|
2001-01-11 00:32:10 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
#include <osg/Timer>
|
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
// follows are the constructors of the Timer class, once version
|
|
|
|
// for each OS combination. The order is WIN32, FreeBSD, Linux, IRIX,
|
|
|
|
// and the rest of the world.
|
|
|
|
//
|
|
|
|
// all the rest of the timer methods are implemented within the header.
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#ifdef WIN32
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
Timer::Timer()
|
|
|
|
{
|
|
|
|
_useStandardClock = false;
|
|
|
|
|
|
|
|
if (_useStandardClock)
|
|
|
|
{
|
|
|
|
_secsPerClick = (1.0 / (double) CLOCKS_PER_SEC);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
|
2001-12-17 00:30:34 +08:00
|
|
|
// use a static here to ensure that the Sleep(..) for 1 sec
|
|
|
|
// is not incurred more than once per app execution.
|
|
|
|
static double _tempSecsPerClick=0.0;
|
|
|
|
if (_tempSecsPerClick==0.0)
|
|
|
|
{
|
|
|
|
Timer_t start_time = tick();
|
|
|
|
Sleep (1000);
|
|
|
|
Timer_t end_time = tick();
|
|
|
|
|
|
|
|
_tempSecsPerClick = 1.0/(double)(end_time-start_time);
|
|
|
|
}
|
|
|
|
_secsPerClick = _tempSecsPerClick;
|
2001-09-22 10:42:08 +08:00
|
|
|
|
|
|
|
}
|
2001-09-20 05:08:56 +08:00
|
|
|
}
|
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#elif defined(__FreeBSD__)
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
Timer::Timer()
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
2001-09-22 10:42:08 +08:00
|
|
|
_useStandardClock = false;
|
|
|
|
|
|
|
|
if (_useStandardClock)
|
|
|
|
{
|
|
|
|
_secsPerClick = 1e-6; // gettimeofday()'s precision.
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int cpuspeed;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
len = sizeof(cpuspeed);
|
|
|
|
if (sysctlbyname("machdep.tsc_freq", &cpuspeed, &len, NULL, NULL) == -1)
|
|
|
|
{
|
|
|
|
_useStandardClock = true;
|
|
|
|
perror("sysctlbyname(machdep.tsc_freq)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_secsPerClick = 1.0/cpuspeed;
|
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
}
|
2001-09-22 10:42:08 +08:00
|
|
|
|
|
|
|
#elif defined(__linux)
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/types.h>
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
Timer::Timer()
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
2002-12-20 03:50:16 +08:00
|
|
|
#ifdef __ia64
|
|
|
|
_useStandardClock = true;
|
|
|
|
#else
|
2001-09-22 10:42:08 +08:00
|
|
|
_useStandardClock = false;
|
2002-12-20 03:50:16 +08:00
|
|
|
#endif
|
2001-09-22 10:42:08 +08:00
|
|
|
|
|
|
|
if (_useStandardClock)
|
|
|
|
{
|
|
|
|
_secsPerClick = 1e-6; // gettimeofday()'s precision.
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char buff[128];
|
|
|
|
FILE *fp = fopen( "/proc/cpuinfo", "r" );
|
|
|
|
|
|
|
|
double cpu_mhz=0.0f;
|
|
|
|
|
|
|
|
while( fgets( buff, sizeof( buff ), fp ) > 0 )
|
|
|
|
{
|
|
|
|
if( !strncmp( buff, "cpu MHz", strlen( "cpu MHz" )))
|
|
|
|
{
|
|
|
|
char *ptr = buff;
|
|
|
|
|
|
|
|
while( ptr && *ptr != ':' ) ptr++;
|
|
|
|
if( ptr )
|
|
|
|
{
|
|
|
|
ptr++;
|
|
|
|
sscanf( ptr, "%lf", &cpu_mhz );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose( fp );
|
|
|
|
|
|
|
|
if (cpu_mhz==0.0f)
|
|
|
|
{
|
|
|
|
// error - no cpu_mhz found.
|
|
|
|
Timer_t start_time = tick();
|
|
|
|
sleep (1);
|
|
|
|
Timer_t end_time = tick();
|
|
|
|
_secsPerClick = 1.0/(double)(end_time-start_time);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_secsPerClick = 1e-6/cpu_mhz;
|
|
|
|
}
|
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
}
|
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#elif defined(__sgi)
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/syssgi.h>
|
|
|
|
#include <sys/immu.h>
|
|
|
|
#include <sys/mman.h>
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
Timer::Timer( void )
|
|
|
|
{
|
2001-12-17 00:30:34 +08:00
|
|
|
_useStandardClock = false; // default to false.
|
2001-09-22 10:42:08 +08:00
|
|
|
|
2001-12-17 00:30:34 +08:00
|
|
|
if (!_useStandardClock)
|
2001-09-22 10:42:08 +08:00
|
|
|
{
|
|
|
|
__psunsigned_t phys_addr, raddr;
|
|
|
|
unsigned int cycleval;
|
2002-06-14 02:27:14 +08:00
|
|
|
volatile unsigned long long *iotimer_addr;
|
2001-09-22 10:42:08 +08:00
|
|
|
int fd, poffmask;
|
|
|
|
|
|
|
|
poffmask = getpagesize() - 1;
|
2002-06-14 02:27:14 +08:00
|
|
|
phys_addr = syssgi( SGI_QUERY_CYCLECNTR, &cycleval );
|
2001-09-22 10:42:08 +08:00
|
|
|
raddr = phys_addr & ~poffmask;
|
|
|
|
|
2002-06-14 02:27:14 +08:00
|
|
|
_clockAddress_32 = 0;
|
|
|
|
_clockAddress_64 = 0;
|
2002-08-09 05:36:22 +08:00
|
|
|
_rollOver = 0;
|
|
|
|
_lastClockValue = 0;
|
2001-09-22 10:42:08 +08:00
|
|
|
|
|
|
|
if( (fd = open( "/dev/mmem", O_RDONLY )) < 0 )
|
|
|
|
{
|
|
|
|
perror( "/dev/mmem" );
|
2002-06-14 02:27:14 +08:00
|
|
|
_useStandardClock=true;
|
2001-09-22 10:42:08 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-06-14 02:27:14 +08:00
|
|
|
iotimer_addr = (volatile unsigned long long *)mmap(
|
2001-09-22 10:42:08 +08:00
|
|
|
(void *)0L,
|
|
|
|
(size_t)poffmask,
|
|
|
|
(int)PROT_READ,
|
|
|
|
(int)MAP_PRIVATE, fd, (off_t)raddr);
|
|
|
|
|
2002-06-14 02:27:14 +08:00
|
|
|
iotimer_addr = (unsigned long long *)(
|
2001-09-22 10:42:08 +08:00
|
|
|
(__psunsigned_t)iotimer_addr + (phys_addr & poffmask)
|
|
|
|
);
|
|
|
|
|
|
|
|
_cycleCntrSize = syssgi( SGI_CYCLECNTR_SIZE );
|
|
|
|
|
2002-06-14 02:27:14 +08:00
|
|
|
// Warning: this casts away the volatile; not good
|
2001-09-22 10:42:08 +08:00
|
|
|
if( _cycleCntrSize > 32 )
|
2002-06-14 02:27:14 +08:00
|
|
|
_clockAddress_32 = 0,
|
|
|
|
_clockAddress_64 = (unsigned long long *) iotimer_addr;
|
|
|
|
else
|
|
|
|
_clockAddress_32 = (unsigned long *) iotimer_addr,
|
|
|
|
_clockAddress_64 = 0;
|
2001-09-22 10:42:08 +08:00
|
|
|
|
|
|
|
_secsPerClick = (double)(cycleval)* 1e-12;
|
2001-12-17 00:30:34 +08:00
|
|
|
|
2002-06-14 03:39:28 +08:00
|
|
|
#if 0 // Obsolete
|
2001-12-17 00:30:34 +08:00
|
|
|
// this is to force the use of the standard clock in
|
|
|
|
// instances which the realtime clock is of such a small
|
|
|
|
// size that it will loop too rapidly for proper realtime work.
|
|
|
|
// this happens on the O2 for instance.
|
|
|
|
if (_cycleCntrSize<=32) _useStandardClock=true;
|
2002-06-14 03:39:28 +08:00
|
|
|
#endif // Obsolete
|
2001-12-17 00:30:34 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_useStandardClock)
|
|
|
|
{
|
|
|
|
_secsPerClick = 1e-6; // gettimeofday()'s precision.
|
2001-09-22 10:42:08 +08:00
|
|
|
}
|
2001-12-17 00:30:34 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
}
|
2002-01-18 22:11:46 +08:00
|
|
|
|
2002-01-16 18:36:20 +08:00
|
|
|
#elif defined (__DARWIN_OSX__) || defined (macintosh)
|
2001-10-17 04:56:46 +08:00
|
|
|
|
2002-01-18 22:11:46 +08:00
|
|
|
#if defined (__DARWIN_OSX__)
|
|
|
|
#include <Carbon/Carbon.h> // do I really have to link against the Carbon framework just for this?
|
|
|
|
#else
|
|
|
|
#include <MacTypes.h>
|
|
|
|
#include <Timer.h>
|
|
|
|
#endif
|
2001-10-04 05:44:07 +08:00
|
|
|
|
|
|
|
|
2002-01-18 22:11:46 +08:00
|
|
|
Timer::Timer( void )
|
|
|
|
{
|
|
|
|
_useStandardClock = false;
|
|
|
|
_secsPerClick = 1e-6; // Carbon timer's precision.
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2002-01-18 22:11:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Timer_t Timer::tick(void) const
|
|
|
|
{
|
|
|
|
UnsignedWide usecs;
|
|
|
|
Microseconds(&usecs);
|
|
|
|
|
|
|
|
return (usecs.hi * 4294967296.0) + usecs.lo;
|
|
|
|
}
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#elif defined(unix)
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
Timer::Timer( void )
|
|
|
|
{
|
|
|
|
_useStandardClock = true;
|
|
|
|
_secsPerClick = 1e-6; // gettimeofday()'s precision.
|
|
|
|
}
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#else
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
// handle the rest of the OS world by just using the std::clock,
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
Timer::Timer( void )
|
|
|
|
{
|
|
|
|
_useStandardClock = true;
|
|
|
|
_secsPerClick = (1.0 / (double) CLOCKS_PER_SEC);
|
|
|
|
}
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#endif
|