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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
#ifndef Utilities_Utilities_h
#define Utilities_Utilities_h
#include "CondCore/CondDB/interface/Exception.h"
#include <boost/program_options.hpp>
#include <sstream>
#include <set>
namespace edm {
class ServiceToken;
}
namespace cond {
std::string getpass(const std::string& prompt, bool show_asterisk = true);
std::string getpassForUser(const std::string& userName);
class UtilitiesError : public Exception {
public:
UtilitiesError(const std::string& message);
~UtilitiesError() throw() override;
};
class Utilities {
public:
Utilities(const std::string& commandName, std::string positionalParameter = std::string(""));
virtual ~Utilities();
virtual int execute();
int run(int argc, char** argv);
void addConnectOption(std::string const& fullName, std::string const& shortName, std::string const& helpEntry);
void addAuthenticationOptions();
void addConfigFileOption();
template <typename T>
void addOption(const std::string& fullName, const std::string& shortName, const std::string& helpEntry);
void parseCommand(int argc, char** argv);
std::string getAuthenticationPathValue();
std::string getUserValue();
std::string getPasswordValue();
std::string getConnectValue();
std::string getLogDBValue();
std::string getDictionaryValue();
std::string getConfigFileValue();
template <typename T>
T getOptionValue(const std::string& fullName);
bool hasOptionValue(const std::string& fullName);
bool hasDebug();
void initializePluginManager();
//cond::DbSession openDbSession( const std::string& connectionParameterName, bool readOnly=false );
//cond::DbSession openDbSession( const std::string& connectionParameterName, const std::string& role, bool readOnly=false );
protected:
//cond::DbSession newDbSession( const std::string& connectionString, bool readOnly=false );
//cond::DbSession newDbSession( const std::string& connectionString, const std::string& role, bool readOnly=false );
//void initializeForDbConnection();
private:
std::string getValueIfExists(const std::string& fullName);
void sendException(const std::string& message);
void sendError(const std::string& message);
protected:
edm::ServiceToken* m_currentToken = nullptr;
private:
std::string m_name;
//boost::program_options::options_description m_description;
boost::program_options::options_description m_options;
boost::program_options::positional_options_description m_positionalOptions;
boost::program_options::variables_map m_values;
//cond::DbConnection* m_dbConnection;
//std::set<std::string> m_dbSessions;
};
template <typename T>
inline void Utilities::addOption(const std::string& fullName,
const std::string& shortName,
const std::string& helpEntry) {
std::stringstream optInfo;
optInfo << fullName;
if (!shortName.empty())
optInfo << "," << shortName;
m_options.add_options()(optInfo.str().c_str(), boost::program_options::value<T>(), helpEntry.c_str());
}
template <>
inline void Utilities::addOption<bool>(const std::string& fullName,
const std::string& shortName,
const std::string& helpEntry) {
std::stringstream optInfo;
optInfo << fullName;
if (!shortName.empty())
optInfo << "," << shortName;
m_options.add_options()(optInfo.str().c_str(), helpEntry.c_str());
}
} // namespace cond
template <typename T>
inline T cond::Utilities::getOptionValue(const std::string& fullName) {
const void* found = m_options.find_nothrow(fullName, false);
if (!found) {
std::stringstream message;
message << "Utilities::getOptionValue: option \"" << fullName << "\" is not known by the command.";
sendException(message.str());
}
if (!m_values.count(fullName)) {
std::stringstream message;
message << "Error: Option \"" << fullName << "\" has not been provided.";
sendError(message.str());
}
return m_values[fullName].as<T>();
}
#endif
|