BSMPT 3.0.7
BSMPT - Beyond the Standard Model Phase Transitions : A C++ package for the computation of the EWPT in BSM models
Loading...
Searching...
No Matches
parser.h
1// Copyright (C) 2020 Philipp Basler, Margarete Mühlleitner and Jonas Müller
2// SPDX-FileCopyrightText: 2021 Philipp Basler, Margarete Mühlleitner and Jonas
3// Müller
4//
5// SPDX-License-Identifier: GPL-3.0-or-later
6
7#ifndef PARSER_H
8#define PARSER_H
9
11#include <optional>
12#include <string>
13#include <unordered_map>
14#include <vector>
15
16namespace BSMPT
17{
18
19class parserException : public std::exception
20{
21public:
22 virtual const char *what() const noexcept;
23 parserException(const std::string &msg);
24
25private:
26 std::string message;
27};
28
33class parser
34{
35public:
36 parser();
37 parser(const bool &enable_column_output);
50 void add_argument_only_display(const std::string &argument,
51 const std::string &description,
52 const std::string &default_val);
59 void add_argument(const std::string &argument, bool required);
67 void add_argument(const std::string &argument,
68 const std::string &description,
69 bool required);
78 void add_argument(const std::string &argument,
79 const std::string &description,
80 const std::string &default_val,
81 bool required);
86 void add_subtext(const std::string &subtext);
93 void add_input(const std::vector<std::string> &input);
98 void print_help() const;
106 template <typename T = std::string>
107 T get_value(const std::string &argument) const
108 {
109 auto value = get_value_as_string(argument);
110 if constexpr (std::is_same<T, std::string>::value)
111 {
112 return value;
113 }
114 else if constexpr (std::is_same<T, int>::value)
115 {
116 return std::stoi(value);
117 }
118 else if constexpr (std::is_same<T, unsigned int>::value)
119 {
120 return std::stoul(value);
121 }
122 else if constexpr (std::is_same<T, double>::value)
123 {
124 return std::stod(value);
125 }
126 else if constexpr (std::is_same<T, bool>::value)
127 {
128 auto lower = to_lower(value);
129 return lower == "true";
130 }
131 else
132 {
133 return static_cast<T>(value);
134 }
135 }
136
141 bool all_required_set() const;
147 void check_required_parameters() const;
152 void set_help_header(const std::string &header);
153
154private:
155 struct Options
156 {
157 std::string argument;
158 std::string description;
159 std::optional<std::string> value;
160 std::string default_val = "";
161 };
162 struct KeyValue
163 {
164 std::string key;
165 std::string value;
166 KeyValue() = default;
167 KeyValue(const std::string &Key, const std::string &Value)
168 : key{Key}
169 , value{Value}
170 {
171 }
172 };
173
174 std::vector<std::pair<std::string, Options>> mOrderedArguments;
175 std::unordered_map<std::string, Options> mRequiredArguments;
176 std::unordered_map<std::string, Options> mOptionalArguments;
177
178 bool extra_column_output = false;
179
187 std::string get_value_as_string(const std::string &argument) const;
192 void add_json_input(const std::string &filename);
197 void add_input(const std::vector<KeyValue> &input);
205 std::string to_lower(const std::string &input) const;
206
207 KeyValue get_key_value(const std::string &input);
208 std::string mHeader;
209
213 mutable bool mHelpAlreadyPrinted{false};
214};
215} // namespace BSMPT
216#endif // PARSER_H
Definition parser.h:20
The parser class provides the argument parser for the CLI and JSON methods. This is case insensitive.
Definition parser.h:34
void add_input(const std::vector< std::string > &input)
add_input Add the vector with each input as it is given in the CLI in the form "--argument=value".
Definition parser.cpp:195
bool all_required_set() const
all_required_set Check ifs all required parameter are set.
Definition parser.cpp:226
std::string get_value_as_string(const std::string &argument) const
get_value Get the value for the required parameter.
Definition parser.cpp:333
T get_value(const std::string &argument) const
get_value Get the value for the required parameter.
Definition parser.h:107
void print_help() const
print_help Prints the header and the arguments with their description.
Definition parser.cpp:250
std::string to_lower(const std::string &input) const
get_key_value Converts the CLI input in the form "--argName=value" into a key value pair.
Definition parser.cpp:440
void set_help_header(const std::string &header)
set_help_header Sets the header which is printed in print_help()
Definition parser.cpp:389
bool mHelpAlreadyPrinted
Helper to avoid multiple prints of the help output.
Definition parser.h:213
void check_required_parameters() const
check_required_parameters Calls all_required_set() and throws a parserException if not all required p...
Definition parser.cpp:241
void add_subtext(const std::string &subtext)
add_subtext add subtext to description column
Definition parser.cpp:187
void add_json_input(const std::string &filename)
add_json_input Add the input parameters with a json file.
Definition parser.cpp:365
void enable_minimizer_options()
enable_minimizer_options Enables the options regarding the minimizer.
Definition parser.cpp:95
void add_argument_only_display(const std::string &argument, const std::string &description, const std::string &default_val)
add_argument Silently adds a new argument for the parser options.
Definition parser.cpp:111
void add_argument(const std::string &argument, bool required)
add_argument Silently adds a new argument for the parser options.
Definition parser.cpp:124
This classes calculates the Bounce action of the potential with a set temperature.
Definition CalculateEtaInterface.h:24
Definition parser.h:163
Definition parser.h:156