2013-11-15 08:11:21 +01:00
|
|
|
#ifndef __MAPNIK_BENCH_FRAMEWORK_HPP__
|
2014-07-07 19:23:15 +02:00
|
|
|
#define __MAPNIK_BENCH_FRAMEWORK_HPP__
|
2013-11-15 08:11:21 +01:00
|
|
|
|
|
|
|
// mapnik
|
2016-02-16 18:37:24 +01:00
|
|
|
#include <mapnik/debug.hpp>
|
2013-11-15 08:11:21 +01:00
|
|
|
#include <mapnik/params.hpp>
|
|
|
|
#include <mapnik/value_types.hpp>
|
2015-06-14 04:23:36 +02:00
|
|
|
#include <mapnik/safe_cast.hpp>
|
2015-06-13 04:52:58 +02:00
|
|
|
#include "../test/cleanup.hpp"
|
2013-11-15 08:11:21 +01:00
|
|
|
|
|
|
|
// stl
|
2014-10-01 11:38:08 +02:00
|
|
|
#include <chrono>
|
2016-02-16 16:27:32 +01:00
|
|
|
#include <cstdio> // snprintf
|
2013-11-15 08:11:21 +01:00
|
|
|
#include <iostream>
|
2014-10-01 11:38:08 +02:00
|
|
|
#include <set>
|
|
|
|
#include <sstream>
|
2013-11-15 08:11:21 +01:00
|
|
|
#include <thread>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace benchmark {
|
|
|
|
|
|
|
|
class test_case
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
mapnik::parameters params_;
|
|
|
|
std::size_t threads_;
|
|
|
|
std::size_t iterations_;
|
|
|
|
public:
|
|
|
|
test_case(mapnik::parameters const& params)
|
|
|
|
: params_(params),
|
2015-06-14 04:23:36 +02:00
|
|
|
threads_(mapnik::safe_cast<std::size_t>(*params.get<mapnik::value_integer>("threads",0))),
|
|
|
|
iterations_(mapnik::safe_cast<std::size_t>(*params.get<mapnik::value_integer>("iterations",0)))
|
2013-11-15 08:11:21 +01:00
|
|
|
{}
|
|
|
|
std::size_t threads() const
|
|
|
|
{
|
|
|
|
return threads_;
|
|
|
|
}
|
|
|
|
std::size_t iterations() const
|
|
|
|
{
|
|
|
|
return iterations_;
|
|
|
|
}
|
|
|
|
virtual bool validate() const = 0;
|
2014-12-12 17:59:45 +01:00
|
|
|
virtual bool operator()() const = 0;
|
2013-11-15 08:11:21 +01:00
|
|
|
virtual ~test_case() {}
|
|
|
|
};
|
|
|
|
|
2016-02-16 18:37:24 +01:00
|
|
|
// gathers --long-option values in 'params';
|
|
|
|
// returns the index of the first non-option argument,
|
|
|
|
// or negated index of an ill-formed option argument
|
|
|
|
inline int parse_args(int argc, char** argv, mapnik::parameters & params)
|
2013-11-15 08:11:21 +01:00
|
|
|
{
|
2016-02-16 18:37:24 +01:00
|
|
|
for (int i = 1; i < argc; ++i) {
|
|
|
|
const char* opt = argv[i];
|
|
|
|
if (opt[0] != '-') {
|
|
|
|
// non-option argument, return its index
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
if (opt[1] != '-') {
|
|
|
|
// we only accept --long-options, but instead of throwing,
|
|
|
|
// just issue a warning and let the caller decide what to do
|
|
|
|
std::clog << argv[0] << ": invalid option '" << opt << "'\n";
|
|
|
|
return -i; // negative means ill-formed option #i
|
|
|
|
}
|
|
|
|
if (opt[2] == '\0') {
|
|
|
|
// option-list terminator '--'
|
|
|
|
return i + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// take option name without the leading '--'
|
|
|
|
std::string key(opt + 2);
|
|
|
|
size_t eq = key.find('=');
|
|
|
|
if (eq != std::string::npos) {
|
|
|
|
// one-argument form '--foo=bar'
|
|
|
|
params[key.substr(0, eq)] = key.substr(eq + 1);
|
|
|
|
}
|
|
|
|
else if (i + 1 < argc) {
|
|
|
|
// two-argument form '--foo' 'bar'
|
|
|
|
params[key] = std::string(argv[++i]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// missing second argument
|
|
|
|
std::clog << argv[0] << ": missing option '" << opt << "' value\n";
|
|
|
|
return -i; // negative means ill-formed option #i
|
2013-11-15 08:11:21 +01:00
|
|
|
}
|
|
|
|
}
|
2016-02-16 18:37:24 +01:00
|
|
|
return argc; // there were no non-option arguments
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void handle_common_args(mapnik::parameters const& params)
|
|
|
|
{
|
|
|
|
if (auto severity = params.get<std::string>("log-severity")) {
|
|
|
|
if (*severity == "debug")
|
|
|
|
mapnik::logger::set_severity(mapnik::logger::debug);
|
|
|
|
else if (*severity == "warn")
|
|
|
|
mapnik::logger::set_severity(mapnik::logger::warn);
|
|
|
|
else if (*severity == "error")
|
|
|
|
mapnik::logger::set_severity(mapnik::logger::error);
|
|
|
|
else if (*severity == "none")
|
|
|
|
mapnik::logger::set_severity(mapnik::logger::none);
|
|
|
|
else
|
|
|
|
std::clog << "ignoring option --log-severity='" << *severity
|
|
|
|
<< "' (allowed values are: debug, warn, error, none)\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int handle_args(int argc, char** argv, mapnik::parameters & params)
|
|
|
|
{
|
|
|
|
int res = parse_args(argc, argv, params);
|
|
|
|
handle_common_args(params);
|
|
|
|
return res;
|
2013-11-15 08:11:21 +01:00
|
|
|
}
|
|
|
|
|
2013-11-22 07:47:55 +01:00
|
|
|
#define BENCHMARK(test_class,name) \
|
|
|
|
int main(int argc, char** argv) \
|
|
|
|
{ \
|
|
|
|
try \
|
|
|
|
{ \
|
|
|
|
mapnik::parameters params; \
|
|
|
|
benchmark::handle_args(argc,argv,params); \
|
|
|
|
test_class test_runner(params); \
|
2015-06-13 05:51:18 +02:00
|
|
|
auto result = run(test_runner,name); \
|
|
|
|
testing::run_cleanup(); \
|
|
|
|
return result; \
|
2013-11-22 07:47:55 +01:00
|
|
|
} \
|
|
|
|
catch (std::exception const& ex) \
|
|
|
|
{ \
|
|
|
|
std::clog << ex.what() << "\n"; \
|
2015-06-13 05:51:18 +02:00
|
|
|
testing::run_cleanup(); \
|
2013-11-22 07:47:55 +01:00
|
|
|
return -1; \
|
|
|
|
} \
|
|
|
|
} \
|
2013-11-15 08:11:21 +01:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
int run(T const& test_runner, std::string const& name)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (!test_runner.validate())
|
|
|
|
{
|
|
|
|
std::clog << "test did not validate: " << name << "\n";
|
|
|
|
return -1;
|
|
|
|
}
|
2014-12-12 17:59:45 +01:00
|
|
|
// run test once before timing
|
|
|
|
// if it returns false then we'll abort timing
|
|
|
|
if (test_runner())
|
2013-11-15 08:11:21 +01:00
|
|
|
{
|
2014-12-12 17:59:45 +01:00
|
|
|
std::chrono::high_resolution_clock::time_point start;
|
|
|
|
std::chrono::high_resolution_clock::duration elapsed;
|
2016-02-16 16:27:32 +01:00
|
|
|
|
2014-12-12 17:59:45 +01:00
|
|
|
if (test_runner.threads() > 0)
|
2013-11-15 08:11:21 +01:00
|
|
|
{
|
2014-12-12 17:59:45 +01:00
|
|
|
using thread_group = std::vector<std::unique_ptr<std::thread> >;
|
|
|
|
using value_type = thread_group::value_type;
|
|
|
|
thread_group tg;
|
|
|
|
for (std::size_t i=0;i<test_runner.threads();++i)
|
|
|
|
{
|
|
|
|
tg.emplace_back(new std::thread(test_runner));
|
|
|
|
}
|
|
|
|
start = std::chrono::high_resolution_clock::now();
|
|
|
|
std::for_each(tg.begin(), tg.end(), [](value_type & t) {if (t->joinable()) t->join();});
|
|
|
|
elapsed = std::chrono::high_resolution_clock::now() - start;
|
2013-11-15 08:11:21 +01:00
|
|
|
}
|
2014-12-12 17:59:45 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
start = std::chrono::high_resolution_clock::now();
|
|
|
|
test_runner();
|
|
|
|
elapsed = std::chrono::high_resolution_clock::now() - start;
|
|
|
|
}
|
2016-02-16 16:27:32 +01:00
|
|
|
|
|
|
|
char msg[200];
|
|
|
|
std::snprintf(msg, sizeof(msg),
|
|
|
|
"%-43s %3zu threads %9zu iters %6.0f milliseconds",
|
|
|
|
name.c_str(),
|
|
|
|
test_runner.threads(),
|
|
|
|
test_runner.iterations(),
|
|
|
|
std::chrono::duration<double, std::milli>(elapsed).count());
|
|
|
|
std::clog << msg << "\n";
|
2013-11-15 08:11:21 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
catch (std::exception const& ex)
|
|
|
|
{
|
|
|
|
std::clog << "test runner did not complete: " << ex.what() << "\n";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-07-07 19:23:15 +02:00
|
|
|
#endif // __MAPNIK_BENCH_FRAMEWORK_HPP__
|