-
Notifications
You must be signed in to change notification settings - Fork 2
/
Configuration.h
81 lines (52 loc) · 2.08 KB
/
Configuration.h
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
#ifndef _CONFIGURATION_H_
#define _CONFIGURATION_H_
#include <string>
namespace runexe {
const int RUN_EXIT_FAILURE = 2147483647;
const std::string version = "1.0";
const std::string copyrightYears = "2009-2019";
const bool RETURN_EXIT_CODE = false;
const bool SCREEN_OUTPUT = true;
const bool XML_OUTPUT = false;
const bool SHOW_KERNEL_MODE_TIME = false;
const std::string STATISTICS_FILE_NAME = "";
const std::string XML_FILE_NAME = "";
class Configuration {
public:
static Configuration &getConfiguration();
~Configuration();
bool isReturnExitCode() const;
void setReturnExitCode(bool isReturnExitCode);
bool isScreenOutput() const;
void setScreenOutput(bool isScreenOutput);
bool isXmlOutput() const;
void setXmlOutput(bool isXmlOutput);
bool isShowKernelModeTime() const;
void setShowKernelModeTime(bool showKernelModeTime);
std::string getStatisticsFileName() const;
void setStatisticsFileName(const std::string &statisticsFileName);
std::string getXmlFileName() const;
void setXmlFileName(const std::string &xmlFileName);
const std::string &getInteractor() const;
void setInteractor(const std::string &interactor);
const std::string &getInteractorRecordInput() const;
void setInteractorRecordInput(const std::string &interactorRecordInput);
const std::string &getInteractorRecordOutput() const;
void setInteractorRecordOutput(const std::string &interactorRecordOutput);
private:
Configuration();
Configuration(const Configuration &configuration);
Configuration &operator=(const Configuration &configuration);
bool returnExitCode;
bool screenOutput;
bool xmlOutput;
bool showKernelModeTime;
std::string statisticsFileName;
std::string xmlFileName;
std::string interactor;
std::string interactorRecordInput;
std::string interactorRecordOutput;
void setDefaults();
};
}
#endif