/usr/include/stxxl/bits/common
Edit: /usr/include/stxxl/bits/common/timer.h (4662B)
/***************************************************************************
* include/stxxl/bits/common/timer.h
*
* Part of the STXXL. See http://stxxl.sourceforge.net
*
* Copyright (C) 2002, 2005 Roman Dementiev
* Copyright (C) 2007-2009 Andreas Beckmann
* Copyright (C) 2008 Johannes Singler
* Copyright (C) 2013 Timo Bingmann
*
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
**************************************************************************/
#ifndef STXXL_COMMON_TIMER_HEADER
#define STXXL_COMMON_TIMER_HEADER
#include
#include
#include
#include
#if STXXL_BOOST_TIMESTAMP
#include
#include
#elif STXXL_WINDOWS
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include
#else
#include
#include
#endif
STXXL_BEGIN_NAMESPACE
//! \addtogroup support
//! \{
//! Returns number of seconds since the epoch, high resolution.
inline double
timestamp()
{
#if STXXL_BOOST_TIMESTAMP
boost::posix_time::ptime MyTime = boost::posix_time::microsec_clock::local_time();
boost::posix_time::time_duration Duration =
MyTime - boost::posix_time::time_from_string("1970-01-01 00:00:00.000");
double sec = double(Duration.hours()) * 3600. +
double(Duration.minutes()) * 60. +
double(Duration.seconds()) +
double(Duration.fractional_seconds()) / (pow(10., Duration.num_fractional_digits()));
return sec;
#elif STXXL_WINDOWS
return GetTickCount() / 1000.0;
#else
struct timeval tp;
gettimeofday(&tp, NULL);
return double(tp.tv_sec) + double(tp.tv_usec) / 1000000.;
#endif
}
class timer
{
bool running;
double accumulated;
double last_clock;
//! return current timestamp
static inline double timestamp()
{
return stxxl::timestamp();
}
public:
inline timer(bool start_immediately = false)
: running(false), accumulated(0.), last_clock(0)
{
if (start_immediately) start();
}
//! start timer
inline void start()
{
running = true;
last_clock = timestamp();
}
//! stop timer
inline void stop()
{
running = false;
accumulated += timestamp() - last_clock;
}
//! return accumulated time
inline void reset()
{
accumulated = 0.;
last_clock = timestamp();
}
//! return currently accumulated time in milliseconds
inline double mseconds()
{
if (running)
return (accumulated + timestamp() - last_clock) * 1000.;
return (accumulated * 1000.);
}
//! return currently accumulated time in microseconds
inline double useconds()
{
if (running)
return (accumulated + timestamp() - last_clock) * 1000000.;
return (accumulated * 1000000.);
}
//! return currently accumulated time in seconds (as double)
inline double seconds()
{
if (running)
return (accumulated + timestamp() - last_clock);
return (accumulated);
}
};
/*!
* Simple scoped timer, which takes a text message and prints the duration
* until the scope is destroyed.
*/
class scoped_print_timer
{
protected:
//! message
std::string m_message;
//! bytes processed
uint64 m_bytes;
//! timer
class timer m_timer;
public:
//! save message and start timer
scoped_print_timer(const std::string& message, const uint64 bytes = 0)
: m_message(message),
m_bytes(bytes),
m_timer(true)
{
STXXL_MSG("Starting " << message);
}
//! on destruction: tell the time
~scoped_print_timer()
{
if (m_bytes == 0) {
STXXL_MSG("Finished "
<< m_message
<< " after " << m_timer.seconds() << " seconds");
}
else {
double bps = (double)m_bytes / m_timer.seconds();
STXXL_MSG("Finished "
<< m_message
<< " after " << m_timer.seconds() << " seconds. "
<< "Processed " << format_IEC_size(m_bytes) << "B"
<< " @ " << format_IEC_size((uint64)bps) << "B/s");
}
}
};
//! \}
STXXL_END_NAMESPACE
#endif // !STXXL_COMMON_TIMER_HEADER
// vim: et:ts=4:sw=4