klayout/src/tl/tlTimer.h

250 lines
4.8 KiB
C++

/*
KLayout Layout Viewer
Copyright (C) 2006-2017 Matthias Koefferlein
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef HDR_tlTimer
#define HDR_tlTimer
#include "tlCommon.h"
#include <string>
#include <stdint.h>
class QDateTime;
namespace tl
{
/**
* @brief Provides a ms difference between QDateTimes
* This function is provided to emulate QDateTime::msecsTo for Qt < 4.7
*/
TL_PUBLIC int64_t msecs_to (const QDateTime &from, const QDateTime &to);
/**
* @brief A basic timer class
*
* Measure the time between start() and stop() and
* report the time through several methods
*/
class TL_PUBLIC Timer
{
public:
Timer ();
/**
* @brief Starts the timer
*/
void start ();
/**
* @brief Stops the timer
*/
void stop ();
/**
* @brief Reports the time spent between start() and stop() in user space
*/
double sec_user () const
{
return (double (m_user_ms_res) * 0.001);
}
/**
* @brief Reports the time spent between start() and stop() in system space
*/
double sec_sys () const
{
return (double (m_sys_ms_res) * 0.001);
}
/**
* @brief Reports the real time spent between start() and stop()
*/
double sec_wall () const
{
return (double (m_wall_ms_res) * 0.001);
}
private:
long m_user_ms, m_sys_ms, m_wall_ms;
long m_user_ms_res, m_sys_ms_res, m_wall_ms_res;
};
/**
* @brief A self-timing class
*
* Starts the timer upon construction of the object and
* reports the object's lifetime upon destruction
*/
class TL_PUBLIC SelfTimer
: public Timer
{
public:
/**
* @brief Instantiate the timer and start
*/
SelfTimer (const std::string &desc) : Timer (), m_desc (desc)
{
m_enabled = true;
start ();
}
/**
* @brief Instantiate the timer and start if the first parameter is true
*
* This constructor is useful in conjunction with the verbosity level:
* SelfTimer (tl::verbosity () >= 30, ...).
*/
SelfTimer (bool enabled, const std::string &desc) : Timer (), m_desc (desc)
{
m_enabled = enabled;
if (enabled) {
start ();
}
}
~SelfTimer ()
{
if (m_enabled) {
stop ();
report ();
}
}
private:
void report () const;
std::string m_desc;
bool m_enabled;
};
/**
* @brief An abstraction of the clock() function found in the POSIX API
*
* The original clock function returns the number of ticks spent in the
* user process from start of the process. On some platforms this includes
* the child processes' time as well, on others (like Linux) is does not.
* In order to provide a equivalent implementation of this function for
* other platforms, this function is provided in this module.
*/
class TL_PUBLIC Clock
{
public:
typedef unsigned long clock_value;
/**
* @brief Default constructor: construct a clock object pointing to an arbitrary value
*/
Clock () : m_clock (0)
{
// .. nothing yet ..
}
/**
* @brief Create a clock value corresponding to a certain number of seconds
*/
Clock (double s);
/**
* @brief Copy constructor
*/
Clock (const Clock &d)
: m_clock (d.m_clock)
{
// .. nothing yet ..
}
/**
* @brief Assignment
*/
Clock &operator= (Clock d)
{
m_clock = d.m_clock;
return *this;
}
/**
* @brief Equality
*/
bool operator== (Clock d) const
{
return m_clock == d.m_clock;
}
/**
* @brief Inequality
*/
bool operator!= (Clock d) const
{
return ! operator== (d);
}
/**
* @brief Comparison
*/
bool operator< (Clock d) const
{
// to account for wrap around, we do the comparison this way:
return long (m_clock) - long (d.m_clock) < 0;
}
/**
* @brief Difference (in place)
*/
Clock &operator-= (Clock d)
{
m_clock -= d.m_clock;
return *this;
}
/**
* @brief Difference
*/
Clock operator- (Clock d) const
{
Clock c (*this);
c -= d;
return c;
}
/**
* @brief Convert into seconds
*/
double seconds () const;
/**
* @brief Current time (user time from start of process)
*/
static Clock current ();
private:
clock_value m_clock;
};
} // namespace tl
#endif