X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dc2ae3558358c13b3944239dfb6536bf45453d2c..b5123fb66f54f5c5019586c2042f993ae21eb0ae:/tests/benchmarks/bench.h diff --git a/tests/benchmarks/bench.h b/tests/benchmarks/bench.h index af7fba2723..8b1ef764e5 100644 --- a/tests/benchmarks/bench.h +++ b/tests/benchmarks/bench.h @@ -12,6 +12,7 @@ #define _WX_TESTS_BENCHMARKS_BENCH_H_ #include "wx/cpp.h" +#include "wx/defs.h" namespace Bench { @@ -24,12 +25,19 @@ namespace Bench class Function { public: - typedef bool (*Type)(); + typedef bool (*InitType)(); + typedef bool (*FuncType)(); + typedef void (*DoneType)(); /// Ctor is used implicitly by BENCHMARK_FUNC(). - Function(const char *name, Type func) + Function(const char *name, + FuncType func, + InitType init = NULL, + DoneType done = NULL) : m_name(name), m_func(func), + m_init(init), + m_done(done), m_next(ms_head) { ms_head = this; @@ -38,9 +46,14 @@ public: /// Get the name of this function const char *GetName() const { return m_name; } + /// Perform once-only initialization prior to Run(). + bool Init() { return m_init ? (*m_init)() : true; } + /// Run the function, return its return value. bool Run() { return (*m_func)(); } + /// Clean up after performing the benchmark. + void Done() { if ( m_done ) (*m_done)(); } /// Get the head of the linked list of benchmark objects static Function *GetFirst() { return ms_head; } @@ -54,7 +67,9 @@ private: // name of and pointer to the function, as passed to the ctor const char * const m_name; - const Type m_func; + const FuncType m_func; + const InitType m_init; + const DoneType m_done; // pointer to the next object in the linked list or NULL Function * const m_next; @@ -62,6 +77,22 @@ private: DECLARE_NO_COPY_CLASS(Function) }; +/** + Get the numeric parameter. + + Tests may use this parameter in whatever way they see fit, by default it is + 1 but can be set to a different value by user from the command line. + */ +long GetNumericParameter(); + +/** + Get the string parameter. + + Tests may use this parameter in whatever way they see fit, by default it is + empty but can be set to a different value by user from the command line. + */ +wxString GetStringParameter(); + } // namespace Bench /** @@ -81,4 +112,15 @@ private: static Bench::Function wxMAKE_UNIQUE_NAME(name)(#name, name); \ bool name() +/** + Define a benchmark function requiring initialization and shutdown. + + This macro is similar to BENCHMARK_FUNC() but ensures that @a init is + called before the benchmark is ran and @a done afterwards. + */ +#define BENCHMARK_FUNC_WITH_INIT(name, init, done) \ + static bool name(); \ + static Bench::Function wxMAKE_UNIQUE_NAME(name)(#name, name, init, done); \ + bool name() + #endif // _WX_TESTS_BENCHMARKS_BENCH_H_