Newer
Older
Russell Taylor
committed
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include "MantidKernel/Timer.h"
Peterson, Peter
committed
#include <sstream>
Russell Taylor
committed
namespace Mantid {
namespace Kernel {
Russell Taylor
committed
/** Constructor.
* Instantiating the object starts the timer.
*/
#ifdef _WIN32
m_start = clock();
#else /* linux & mac */
Russell Taylor
committed
}
/// Destructor
Russell Taylor
committed
/** Returns the wall-clock time elapsed in seconds since the Timer object's
*creation, or the last call to elapsed
*
* @param reset :: set to true to reset the clock (default)
* @return time in seconds
*/
float Timer::elapsed(bool reset) {
float retval = elapsed_no_reset();
Peterson, Peter
committed
return retval;
}
/** Returns the wall-clock time elapsed in seconds since the Timer object's
*creation, or the last call to elapsed
*
* @return time in seconds
*/
float Timer::elapsed_no_reset() const {
Peterson, Peter
committed
#ifdef _WIN32
const float retval = float(now - m_start) / CLOCKS_PER_SEC;
Peterson, Peter
committed
#else /* linux & mac */
timeval now;
gettimeofday(&now, 0);
const float retval =
float(now.tv_sec - m_start.tv_sec) +
float(static_cast<float>(now.tv_usec - m_start.tv_usec) / 1e6);
Peterson, Peter
committed
#endif
Peterson, Peter
committed
}
/// Explicitly reset the timer.
Russell Taylor
committed
}
Peterson, Peter
committed
/// Convert the elapsed time (without reseting) to a string.
Peterson, Peter
committed
std::stringstream buffer;
buffer << this->elapsed_no_reset() << "s";
return buffer.str();
}
/// Convenience function to provide for easier debug printing.
std::ostream &operator<<(std::ostream &out, const Timer &obj) {
Peterson, Peter
committed
out << obj.str();
return out;
}
Russell Taylor
committed
} // namespace Kernel
} // namespace Mantid