-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathglobalhelper.hh
108 lines (83 loc) · 2.98 KB
/
globalhelper.hh
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
/* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
#ifndef GLOBALHELPER_HH
#define GLOBALHELPER_HH
#include <QCommandLineOption>
#include <QCommandLineParser>
#include <QString>
#include <memory>
#include <chrono>
#include <QDebug>
class QCoreApplication;
class GlobalParser {
private:
static GlobalParser* _self;
static QCommandLineParser clParser;
public:
static QCommandLineOption help_option;
static QCommandLineOption version_option;
static QCommandLineOption test_option;
static QCommandLineOption unit_test;
static QCommandLineOption port_option;
static QCommandLineOption load_option;
static QCommandLineOption paths_option;
static QCommandLineOption mzn_option;
static QCommandLineOption save_log;
static QCommandLineOption auto_compare;
static QCommandLineOption auto_stats;
public:
GlobalParser();
~GlobalParser();
static bool isSet(const QCommandLineOption& opt);
static QString value(const QCommandLineOption& opt);
static void process(const QCoreApplication& app);
};
class Utils {
public:
/// query the filename with a system dialog and fill it with `str`
static void writeToFile(const QString& str);
/// write str to the file at path
static void writeToFile(const QString& path, const QString& str);
};
class Settings {
static QJsonObject json_setttings;
public:
static void init();
static int get_int(QString name);
static bool get_bool(QString name);
};
// #include <type_traits>
// #include <utility>
/// Helper function for the one below
template<typename T>
static size_t findAnyOf(const std::string& str, T el) {
return str.find(el);
}
/// Return the position of some substrings from args in str,
/// starting from the end of the list
template <typename T, typename... Delimiters>
static size_t findAnyOf(const std::string& str, T first, Delimiters... args) {
auto pos = findAnyOf(str, args...);
if (pos != std::string::npos) return pos;
pos = findAnyOf(str, first);
return pos;
}
#endif