mirror of
https://github.com/google/benchmark.git
synced 2025-04-03 16:10:58 +08:00
Make State constructor private. (#650)
The State constructor should not be part of the public API. Adding a utility method to BenchmarkInstance allows us to avoid leaking the RunInThread method into the public API.
This commit is contained in:
parent
eb8cbec077
commit
edc77a3669
@ -430,6 +430,7 @@ struct Statistics {
|
|||||||
};
|
};
|
||||||
|
|
||||||
namespace internal {
|
namespace internal {
|
||||||
|
struct BenchmarkInstance;
|
||||||
class ThreadTimer;
|
class ThreadTimer;
|
||||||
class ThreadManager;
|
class ThreadManager;
|
||||||
|
|
||||||
@ -664,12 +665,11 @@ class State {
|
|||||||
// Number of threads concurrently executing the benchmark.
|
// Number of threads concurrently executing the benchmark.
|
||||||
const int threads;
|
const int threads;
|
||||||
|
|
||||||
// TODO(EricWF) make me private
|
private:
|
||||||
State(size_t max_iters, const std::vector<int64_t>& ranges, int thread_i,
|
State(size_t max_iters, const std::vector<int64_t>& ranges, int thread_i,
|
||||||
int n_threads, internal::ThreadTimer* timer,
|
int n_threads, internal::ThreadTimer* timer,
|
||||||
internal::ThreadManager* manager);
|
internal::ThreadManager* manager);
|
||||||
|
|
||||||
private:
|
|
||||||
void StartKeepRunning();
|
void StartKeepRunning();
|
||||||
// Implementation of KeepRunning() and KeepRunningBatch().
|
// Implementation of KeepRunning() and KeepRunningBatch().
|
||||||
// is_batch must be true unless n is 1.
|
// is_batch must be true unless n is 1.
|
||||||
@ -677,7 +677,8 @@ class State {
|
|||||||
void FinishKeepRunning();
|
void FinishKeepRunning();
|
||||||
internal::ThreadTimer* timer_;
|
internal::ThreadTimer* timer_;
|
||||||
internal::ThreadManager* manager_;
|
internal::ThreadManager* manager_;
|
||||||
BENCHMARK_DISALLOW_COPY_AND_ASSIGN(State);
|
|
||||||
|
friend struct internal::BenchmarkInstance;
|
||||||
};
|
};
|
||||||
|
|
||||||
inline BENCHMARK_ALWAYS_INLINE bool State::KeepRunning() {
|
inline BENCHMARK_ALWAYS_INLINE bool State::KeepRunning() {
|
||||||
@ -931,9 +932,6 @@ class Benchmark {
|
|||||||
|
|
||||||
virtual void Run(State& state) = 0;
|
virtual void Run(State& state) = 0;
|
||||||
|
|
||||||
// Used inside the benchmark implementation
|
|
||||||
struct Instance;
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
explicit Benchmark(const char* name);
|
explicit Benchmark(const char* name);
|
||||||
Benchmark(Benchmark const&);
|
Benchmark(Benchmark const&);
|
||||||
|
@ -126,7 +126,7 @@ void UseCharPointer(char const volatile*) {}
|
|||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
BenchmarkReporter::Run CreateRunReport(
|
BenchmarkReporter::Run CreateRunReport(
|
||||||
const benchmark::internal::Benchmark::Instance& b,
|
const benchmark::internal::BenchmarkInstance& b,
|
||||||
const internal::ThreadManager::Result& results, size_t memory_iterations,
|
const internal::ThreadManager::Result& results, size_t memory_iterations,
|
||||||
const MemoryManager::Result& memory_result, double seconds) {
|
const MemoryManager::Result& memory_result, double seconds) {
|
||||||
// Create report about this benchmark run.
|
// Create report about this benchmark run.
|
||||||
@ -169,12 +169,10 @@ BenchmarkReporter::Run CreateRunReport(
|
|||||||
|
|
||||||
// Execute one thread of benchmark b for the specified number of iterations.
|
// Execute one thread of benchmark b for the specified number of iterations.
|
||||||
// Adds the stats collected for the thread into *total.
|
// Adds the stats collected for the thread into *total.
|
||||||
void RunInThread(const benchmark::internal::Benchmark::Instance* b,
|
void RunInThread(const BenchmarkInstance* b, size_t iters, int thread_id,
|
||||||
size_t iters, int thread_id,
|
ThreadManager* manager) {
|
||||||
internal::ThreadManager* manager) {
|
|
||||||
internal::ThreadTimer timer;
|
internal::ThreadTimer timer;
|
||||||
State st(iters, b->arg, thread_id, b->threads, &timer, manager);
|
State st = b->Run(iters, thread_id, &timer, manager);
|
||||||
b->benchmark->Run(st);
|
|
||||||
CHECK(st.iterations() >= st.max_iterations)
|
CHECK(st.iterations() >= st.max_iterations)
|
||||||
<< "Benchmark returned before State::KeepRunning() returned false!";
|
<< "Benchmark returned before State::KeepRunning() returned false!";
|
||||||
{
|
{
|
||||||
@ -199,7 +197,7 @@ struct RunResults {
|
|||||||
};
|
};
|
||||||
|
|
||||||
RunResults RunBenchmark(
|
RunResults RunBenchmark(
|
||||||
const benchmark::internal::Benchmark::Instance& b,
|
const benchmark::internal::BenchmarkInstance& b,
|
||||||
std::vector<BenchmarkReporter::Run>* complexity_reports) {
|
std::vector<BenchmarkReporter::Run>* complexity_reports) {
|
||||||
RunResults run_results;
|
RunResults run_results;
|
||||||
|
|
||||||
@ -437,7 +435,7 @@ void State::FinishKeepRunning() {
|
|||||||
namespace internal {
|
namespace internal {
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
void RunBenchmarks(const std::vector<Benchmark::Instance>& benchmarks,
|
void RunBenchmarks(const std::vector<BenchmarkInstance>& benchmarks,
|
||||||
BenchmarkReporter* display_reporter,
|
BenchmarkReporter* display_reporter,
|
||||||
BenchmarkReporter* file_reporter) {
|
BenchmarkReporter* file_reporter) {
|
||||||
// Note the file_reporter can be null.
|
// Note the file_reporter can be null.
|
||||||
@ -447,7 +445,7 @@ void RunBenchmarks(const std::vector<Benchmark::Instance>& benchmarks,
|
|||||||
bool has_repetitions = FLAGS_benchmark_repetitions > 1;
|
bool has_repetitions = FLAGS_benchmark_repetitions > 1;
|
||||||
size_t name_field_width = 10;
|
size_t name_field_width = 10;
|
||||||
size_t stat_field_width = 0;
|
size_t stat_field_width = 0;
|
||||||
for (const Benchmark::Instance& benchmark : benchmarks) {
|
for (const BenchmarkInstance& benchmark : benchmarks) {
|
||||||
name_field_width =
|
name_field_width =
|
||||||
std::max<size_t>(name_field_width, benchmark.name.size());
|
std::max<size_t>(name_field_width, benchmark.name.size());
|
||||||
has_repetitions |= benchmark.repetitions > 1;
|
has_repetitions |= benchmark.repetitions > 1;
|
||||||
@ -595,7 +593,7 @@ size_t RunSpecifiedBenchmarks(BenchmarkReporter* display_reporter,
|
|||||||
file_reporter->SetErrorStream(&output_file);
|
file_reporter->SetErrorStream(&output_file);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<internal::Benchmark::Instance> benchmarks;
|
std::vector<internal::BenchmarkInstance> benchmarks;
|
||||||
if (!FindBenchmarksInternal(spec, &benchmarks, &Err)) return 0;
|
if (!FindBenchmarksInternal(spec, &benchmarks, &Err)) return 0;
|
||||||
|
|
||||||
if (benchmarks.empty()) {
|
if (benchmarks.empty()) {
|
||||||
|
15
src/benchmark_api_internal.cc
Normal file
15
src/benchmark_api_internal.cc
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#include "benchmark_api_internal.h"
|
||||||
|
|
||||||
|
namespace benchmark {
|
||||||
|
namespace internal {
|
||||||
|
|
||||||
|
State BenchmarkInstance::Run(
|
||||||
|
size_t iters, int thread_id, internal::ThreadTimer* timer,
|
||||||
|
internal::ThreadManager* manager) const {
|
||||||
|
State st(iters, arg, thread_id, threads, timer, manager);
|
||||||
|
benchmark->Run(st);
|
||||||
|
return st;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // internal
|
||||||
|
} // benchmark
|
@ -6,6 +6,7 @@
|
|||||||
#include <cmath>
|
#include <cmath>
|
||||||
#include <iosfwd>
|
#include <iosfwd>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
#include <memory>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
@ -13,7 +14,7 @@ namespace benchmark {
|
|||||||
namespace internal {
|
namespace internal {
|
||||||
|
|
||||||
// Information kept per benchmark we may want to run
|
// Information kept per benchmark we may want to run
|
||||||
struct Benchmark::Instance {
|
struct BenchmarkInstance {
|
||||||
std::string name;
|
std::string name;
|
||||||
Benchmark* benchmark;
|
Benchmark* benchmark;
|
||||||
AggregationReportMode aggregation_report_mode;
|
AggregationReportMode aggregation_report_mode;
|
||||||
@ -31,10 +32,13 @@ struct Benchmark::Instance {
|
|||||||
double min_time;
|
double min_time;
|
||||||
size_t iterations;
|
size_t iterations;
|
||||||
int threads; // Number of concurrent threads to us
|
int threads; // Number of concurrent threads to us
|
||||||
|
|
||||||
|
State Run(size_t iters, int thread_id, internal::ThreadTimer* timer,
|
||||||
|
internal::ThreadManager* manager) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
bool FindBenchmarksInternal(const std::string& re,
|
bool FindBenchmarksInternal(const std::string& re,
|
||||||
std::vector<Benchmark::Instance>* benchmarks,
|
std::vector<BenchmarkInstance>* benchmarks,
|
||||||
std::ostream* Err);
|
std::ostream* Err);
|
||||||
|
|
||||||
bool IsZero(double n);
|
bool IsZero(double n);
|
||||||
|
@ -78,7 +78,7 @@ class BenchmarkFamilies {
|
|||||||
// Extract the list of benchmark instances that match the specified
|
// Extract the list of benchmark instances that match the specified
|
||||||
// regular expression.
|
// regular expression.
|
||||||
bool FindBenchmarks(std::string re,
|
bool FindBenchmarks(std::string re,
|
||||||
std::vector<Benchmark::Instance>* benchmarks,
|
std::vector<BenchmarkInstance>* benchmarks,
|
||||||
std::ostream* Err);
|
std::ostream* Err);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@ -107,7 +107,7 @@ void BenchmarkFamilies::ClearBenchmarks() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool BenchmarkFamilies::FindBenchmarks(
|
bool BenchmarkFamilies::FindBenchmarks(
|
||||||
std::string spec, std::vector<Benchmark::Instance>* benchmarks,
|
std::string spec, std::vector<BenchmarkInstance>* benchmarks,
|
||||||
std::ostream* ErrStream) {
|
std::ostream* ErrStream) {
|
||||||
CHECK(ErrStream);
|
CHECK(ErrStream);
|
||||||
auto& Err = *ErrStream;
|
auto& Err = *ErrStream;
|
||||||
@ -152,7 +152,7 @@ bool BenchmarkFamilies::FindBenchmarks(
|
|||||||
|
|
||||||
for (auto const& args : family->args_) {
|
for (auto const& args : family->args_) {
|
||||||
for (int num_threads : *thread_counts) {
|
for (int num_threads : *thread_counts) {
|
||||||
Benchmark::Instance instance;
|
BenchmarkInstance instance;
|
||||||
instance.name = family->name_;
|
instance.name = family->name_;
|
||||||
instance.benchmark = family.get();
|
instance.benchmark = family.get();
|
||||||
instance.aggregation_report_mode = family->aggregation_report_mode_;
|
instance.aggregation_report_mode = family->aggregation_report_mode_;
|
||||||
@ -225,7 +225,7 @@ Benchmark* RegisterBenchmarkInternal(Benchmark* bench) {
|
|||||||
// FIXME: This function is a hack so that benchmark.cc can access
|
// FIXME: This function is a hack so that benchmark.cc can access
|
||||||
// `BenchmarkFamilies`
|
// `BenchmarkFamilies`
|
||||||
bool FindBenchmarksInternal(const std::string& re,
|
bool FindBenchmarksInternal(const std::string& re,
|
||||||
std::vector<Benchmark::Instance>* benchmarks,
|
std::vector<BenchmarkInstance>* benchmarks,
|
||||||
std::ostream* Err) {
|
std::ostream* Err) {
|
||||||
return BenchmarkFamilies::GetInstance()->FindBenchmarks(re, benchmarks, Err);
|
return BenchmarkFamilies::GetInstance()->FindBenchmarks(re, benchmarks, Err);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user