add timeutil
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -99,3 +99,6 @@ my_settings.txt
|
||||
borrar/*
|
||||
|
||||
*/ExecMean.txt
|
||||
|
||||
# Unignore selected files:
|
||||
!timeutil.*
|
||||
|
||||
124
Thirdparty/g2o/g2o/stuff/timeutil.cpp
vendored
Normal file
124
Thirdparty/g2o/g2o/stuff/timeutil.cpp
vendored
Normal file
@@ -0,0 +1,124 @@
|
||||
// g2o - General Graph Optimization
|
||||
// Copyright (C) 2011 R. Kuemmerle, G. Grisetti, W. Burgard
|
||||
// All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright notice,
|
||||
// this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above copyright
|
||||
// notice, this list of conditions and the following disclaimer in the
|
||||
// documentation and/or other materials provided with the distribution.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||
// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
||||
// PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
||||
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
#include "timeutil.h"
|
||||
#include <iostream>
|
||||
|
||||
#ifdef _WINDOWS
|
||||
#include <time.h>
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#ifdef UNIX
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
namespace g2o {
|
||||
|
||||
#ifdef _WINDOWS
|
||||
#if defined(_MSC_VER) || defined(_MSC_EXTENSIONS)
|
||||
#define DELTA_EPOCH_IN_MICROSECS 11644473600000000Ui64
|
||||
#else
|
||||
#define DELTA_EPOCH_IN_MICROSECS 11644473600000000ULL
|
||||
#endif
|
||||
|
||||
struct timezone
|
||||
{
|
||||
int tz_minuteswest; /* minutes W of Greenwich */
|
||||
int tz_dsttime; /* type of dst correction */
|
||||
};
|
||||
|
||||
int gettimeofday(struct timeval *tv, struct timezone *tz)
|
||||
{
|
||||
// Define a structure to receive the current Windows filetime
|
||||
FILETIME ft;
|
||||
|
||||
// Initialize the present time to 0 and the timezone to UTC
|
||||
unsigned __int64 tmpres = 0;
|
||||
static int tzflag = 0;
|
||||
|
||||
if (NULL != tv)
|
||||
{
|
||||
GetSystemTimeAsFileTime(&ft);
|
||||
|
||||
// The GetSystemTimeAsFileTime returns the number of 100 nanosecond
|
||||
// intervals since Jan 1, 1601 in a structure. Copy the high bits to
|
||||
// the 64 bit tmpres, shift it left by 32 then or in the low 32 bits.
|
||||
tmpres |= ft.dwHighDateTime;
|
||||
tmpres <<= 32;
|
||||
tmpres |= ft.dwLowDateTime;
|
||||
|
||||
// Convert to microseconds by dividing by 10
|
||||
tmpres /= 10;
|
||||
|
||||
// The Unix epoch starts on Jan 1 1970. Need to subtract the difference
|
||||
// in seconds from Jan 1 1601.
|
||||
tmpres -= DELTA_EPOCH_IN_MICROSECS;
|
||||
|
||||
// Finally change microseconds to seconds and place in the seconds value.
|
||||
// The modulus picks up the microseconds.
|
||||
tv->tv_sec = (long)(tmpres / 1000000UL);
|
||||
tv->tv_usec = (long)(tmpres % 1000000UL);
|
||||
}
|
||||
|
||||
if (NULL != tz) {
|
||||
if (!tzflag) {
|
||||
_tzset();
|
||||
tzflag++;
|
||||
}
|
||||
|
||||
long sec;
|
||||
int hours;
|
||||
_get_timezone(&sec);
|
||||
_get_daylight(&hours);
|
||||
|
||||
// Adjust for the timezone west of Greenwich
|
||||
tz->tz_minuteswest = sec / 60;
|
||||
tz->tz_dsttime = hours;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
ScopeTime::ScopeTime(const char* title) : _title(title), _startTime(get_monotonic_time()) {}
|
||||
|
||||
ScopeTime::~ScopeTime() {
|
||||
std::cerr << _title<<" took "<<1000*(get_monotonic_time()-_startTime)<<"ms.\n";
|
||||
}
|
||||
|
||||
double get_monotonic_time()
|
||||
{
|
||||
#if (defined(_POSIX_TIMERS) && (_POSIX_TIMERS+0 >= 0) && defined(_POSIX_MONOTONIC_CLOCK))
|
||||
struct timespec ts;
|
||||
clock_gettime(CLOCK_MONOTONIC, &ts);
|
||||
return ts.tv_sec + ts.tv_nsec*1e-9;
|
||||
#else
|
||||
return get_time();
|
||||
#endif
|
||||
}
|
||||
|
||||
} // end namespace
|
||||
132
Thirdparty/g2o/g2o/stuff/timeutil.h
vendored
Normal file
132
Thirdparty/g2o/g2o/stuff/timeutil.h
vendored
Normal file
@@ -0,0 +1,132 @@
|
||||
// g2o - General Graph Optimization
|
||||
// Copyright (C) 2011 R. Kuemmerle, G. Grisetti, W. Burgard
|
||||
// All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright notice,
|
||||
// this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above copyright
|
||||
// notice, this list of conditions and the following disclaimer in the
|
||||
// documentation and/or other materials provided with the distribution.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||
// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
||||
// PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
||||
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
#ifndef G2O_TIMEUTIL_H
|
||||
#define G2O_TIMEUTIL_H
|
||||
|
||||
#ifdef _WINDOWS
|
||||
#include <time.h>
|
||||
#else
|
||||
#include <sys/time.h>
|
||||
#endif
|
||||
|
||||
#include <string>
|
||||
|
||||
|
||||
/** @addtogroup utils **/
|
||||
// @{
|
||||
|
||||
/** \file timeutil.h
|
||||
* \brief utility functions for handling time related stuff
|
||||
*/
|
||||
|
||||
/// Executes code, only if secs are gone since last exec.
|
||||
/// extended version, in which the current time is given, e.g., timestamp of IPC message
|
||||
#ifndef DO_EVERY_TS
|
||||
#define DO_EVERY_TS(secs, currentTime, code) \
|
||||
if (1) {\
|
||||
static double s_lastDone_ = (currentTime); \
|
||||
double s_now_ = (currentTime); \
|
||||
if (s_lastDone_ > s_now_) \
|
||||
s_lastDone_ = s_now_; \
|
||||
if (s_now_ - s_lastDone_ > (secs)) { \
|
||||
code; \
|
||||
s_lastDone_ = s_now_; \
|
||||
}\
|
||||
} else \
|
||||
(void)0
|
||||
#endif
|
||||
|
||||
/// Executes code, only if secs are gone since last exec.
|
||||
#ifndef DO_EVERY
|
||||
#define DO_EVERY(secs, code) DO_EVERY_TS(secs, g2o::get_time(), code)
|
||||
#endif
|
||||
|
||||
#ifndef MEASURE_TIME
|
||||
#define MEASURE_TIME(text, code) \
|
||||
if(1) { \
|
||||
double _start_time_ = g2o::get_time(); \
|
||||
code; \
|
||||
fprintf(stderr, "%s took %f sec\n", text, g2o::get_time() - _start_time_); \
|
||||
} else \
|
||||
(void) 0
|
||||
#endif
|
||||
|
||||
namespace g2o {
|
||||
|
||||
#ifdef _WINDOWS
|
||||
typedef struct timeval {
|
||||
long tv_sec;
|
||||
long tv_usec;
|
||||
} timeval;
|
||||
int gettimeofday(struct timeval *tv, struct timezone *tz);
|
||||
#endif
|
||||
|
||||
/**
|
||||
* return the current time in seconds since 1. Jan 1970
|
||||
*/
|
||||
inline double get_time()
|
||||
{
|
||||
struct timeval ts;
|
||||
gettimeofday(&ts,0);
|
||||
return ts.tv_sec + ts.tv_usec*1e-6;
|
||||
}
|
||||
|
||||
/**
|
||||
* return a monotonic increasing time which basically does not need to
|
||||
* have a reference point. Consider this for measuring how long some
|
||||
* code fragments required to execute.
|
||||
*
|
||||
* On Linux we call clock_gettime() on other systems we currently
|
||||
* call get_time().
|
||||
*/
|
||||
double get_monotonic_time();
|
||||
|
||||
/**
|
||||
* \brief Class to measure the time spent in a scope
|
||||
*
|
||||
* To use this class, e.g. to measure the time spent in a function,
|
||||
* just create and instance at the beginning of the function.
|
||||
*/
|
||||
class ScopeTime {
|
||||
public:
|
||||
ScopeTime(const char* title);
|
||||
~ScopeTime();
|
||||
private:
|
||||
std::string _title;
|
||||
double _startTime;
|
||||
};
|
||||
|
||||
} // end namespace
|
||||
|
||||
#ifndef MEASURE_FUNCTION_TIME
|
||||
#define MEASURE_FUNCTION_TIME \
|
||||
g2o::ScopeTime scopeTime(__PRETTY_FUNCTION__)
|
||||
#endif
|
||||
|
||||
|
||||
// @}
|
||||
#endif
|
||||
Reference in New Issue
Block a user