//---------------------------------------------------------------------------
/*
TestTimer, class that measures time a test takes
Copyright (C) 2014-2015 Richel Bilderbeek
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 3 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, see <http://www.gnu.org/licenses/>.
*/
//---------------------------------------------------------------------------
//From http://www.richelbilderbeek.nl/CppTestTimer.htm
//---------------------------------------------------------------------------
#include "testtimer.h"
#include <cassert>
#include <iostream>
#include <boost/timer.hpp>
#include "testtimer.h"
namespace ribi {
std::string ExtractFilename(const std::string& s) noexcept
{
const auto pos_1 = s.find_last_of('/');
const auto pos_2 = s.find_last_of('\\');
const auto pos = std::min(pos_1,pos_2);
if (pos == std::string::npos) return s;
return s.substr(pos + 1,s.size() - pos - 1);
}
struct TestTimerImpl
{
explicit TestTimerImpl(
const std::string& function_name,
const std::string& file_name,
const double max_time_sec
)
: m_file_name{file_name},
m_function_name{function_name},
m_max_time_sec{max_time_sec},
m_timer{}
{
assert(m_file_name.find('\n') == std::string::npos);
assert(m_file_name.find('\r') == std::string::npos);
assert(m_file_name.find('\t') == std::string::npos);
assert(m_function_name.find('\n') == std::string::npos);
assert(m_function_name.find('\r') == std::string::npos);
assert(m_function_name.find('\t') == std::string::npos);
++m_cnt;
++m_n_tests;
}
~TestTimerImpl() noexcept
{
--m_cnt;
}
///Number of active tests
static int m_cnt;
///Maximum number of active tests
static int m_max_cnt;
///Filename where the most recent test is active
const std::string m_file_name;
///Function name where the most recent test is active
const std::string m_function_name;
///Maximum allowed time for a test
const double m_max_time_sec;
///Timer to measure the duration of a test
boost::timer m_timer;
///The number of tests started
static int m_n_tests;
};
int TestTimerImpl::m_cnt = 0;
int TestTimerImpl::m_max_cnt = 2;
int TestTimerImpl::m_n_tests = 0;
} //~namespace ribi
ribi::TestTimer::TestTimer(
const std::string& function_name,
const std::string& file_name,
const double max_time_sec
)
#if __cplusplus >= 201402L
: m_impl(std::make_unique<TestTimerImpl>(function_name,file_name,max_time_sec))
#endif
#if __cplusplus < 201402L
: m_impl(new TestTimerImpl(function_name,file_name,max_time_sec))
#endif
{
std::clog
<< std::string(m_impl->m_cnt - 1,' ')
<< "\\ START: "
<< ExtractFilename(m_impl->m_file_name)
<< ','
<< m_impl->m_function_name
<< " #"
<< m_impl->m_n_tests
<< std::endl
;
if (m_impl->m_cnt == m_impl->m_max_cnt)
{
std::clog
<< "WARNING: "
<< m_impl->m_file_name
<< ','
<< m_impl->m_function_name
<< ": count equals " << m_impl->m_cnt
<< std::endl
;
}
assert(m_impl->m_cnt < m_impl->m_max_cnt && "TestTimer can only have max_cnt TestTimer instances active");
}
ribi::TestTimer::~TestTimer() noexcept
{
const double elapsed_secs = m_impl->m_timer.elapsed();
if (elapsed_secs > m_impl->m_max_time_sec)
{
std::clog
<< std::string(m_impl->m_cnt - 1,' ')
<< " | FUNCTION '"
<< m_impl->m_function_name
<< "' IN FILE '"
<< m_impl->m_file_name
<< "' TOOK TOO LONG"
<< std::endl
;
}
std::clog
<< std::string(m_impl->m_cnt - 1,' ')
<< "/ DONE : "
<< ExtractFilename(m_impl->m_file_name)
<< ','
<< m_impl->m_function_name
<< " ("
<< elapsed_secs
<< " seconds)"
<< std::endl
;
if (elapsed_secs > m_impl->m_max_time_sec)
{
std::exit(0);
}
}
std::string ribi::TestTimer::GetVersion() noexcept
{
return "1.4";
}
std::vector<std::string> ribi::TestTimer::GetVersionHistory() noexcept
{
return {
"2014-08-02: version 1.0: initial version",
"2014-08-08: version 1.1: allow setting a maximum amount of TestTimers active",
"2014-08-10: version 1.2: count the number of constructed TestTimers",
"2014-12-24: version 1.3: added GetMaxCnt",
"2014-12-31: version 1.4: use of std::unique_ptr"
};
}
int ribi::TestTimer::GetMaxCnt() noexcept
{
return TestTimerImpl::m_max_cnt;
}
void ribi::TestTimer::SetMaxCnt(const int max_cnt) noexcept
{
TestTimerImpl::m_max_cnt = max_cnt + 1;
}
|