-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuildStatusReporter.cpp
More file actions
82 lines (59 loc) · 1.69 KB
/
BuildStatusReporter.cpp
File metadata and controls
82 lines (59 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include "BuildStatus.h"
#include "BuildStatusReporter.h"
#include <boost/program_options/variables_map.hpp>
#include <boost/program_options/options_description.hpp>
#include <string>
#include <memory>
#include <stdexcept>
#include <sstream>
using namespace std;
using namespace boost::program_options;
BuildStatusReporter::~BuildStatusReporter()
{
}
void BuildStatusReporter::init(const boost::program_options::variables_map&)
{
}
auto BuildStatusReporter::getHelpString() const -> string
{
ostringstream oss;
oss << getOptionsDescription();
return oss.str();
}
auto BuildStatusReporter::getOptionsDescription() const -> options_description
{
return options_description();
}
BuildStatusReporterRegistry& BuildStatusReporterRegistry::instance()
{
static BuildStatusReporterRegistry reporterRegistry;
return reporterRegistry;
}
void BuildStatusReporterRegistry::registerReporter(std::unique_ptr<BuildStatusReporter> reporter)
{
auto reporterName = reporter->getName();
registry_[reporterName] = move(reporter);
}
auto BuildStatusReporterRegistry::getReporter(const std::string& reporterName) -> BuildStatusReporter&
{
try {
return *registry_.at(reporterName);
} catch (out_of_range&) {
throw runtime_error("Unknown reporter: \"" + reporterName + "\"");
}
}
auto BuildStatusReporterRegistry::getHelpString() -> std::string
{
ostringstream oss;
for (auto& reporterPair : registry_) {
auto helpString = reporterPair.second->getHelpString();
if (!helpString.empty()) {
oss << helpString << endl;
}
}
return oss.str();
}
BuildStatusRegistrar::BuildStatusRegistrar(unique_ptr<BuildStatusReporter> reporter)
{
BuildStatusReporterRegistry::instance().registerReporter(move(reporter));
}