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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
|
#ifndef UTILS_H
#define UTILS_H
#include "coreSQLiteStudio_global.h"
#include <QList>
#include <QMutableListIterator>
#include <QSet>
#include <QChar>
#include <QStringList>
#include <QFileInfo>
class QTextCodec;
API_EXPORT void initUtils();
class API_EXPORT Range
{
public:
Range();
Range(qint64 from, qint64 to);
void setFrom(qint64 from);
void setTo(qint64 to);
qint64 getFrom() const;
qint64 getTo() const;
bool isValid() const;
bool contains(qint64 position) const;
bool overlaps(const Range& other) const;
bool overlaps(qint64 from, qint64 to) const;
Range common(const Range& other) const;
Range common(qint64 from, qint64 to) const;
qint64 length() const;
private:
qint64 from;
qint64 to;
bool fromValid = false;
bool toValid = false;
};
API_EXPORT bool isXDigit(const QChar& c);
/**
* @brief Get character from string.
* @param str String to get char from.
* @param pos Character position.
* @return Requested character or null character.
*
* This is safe getter for a character of the string,
* thish returns null if pos index is out of range.
*/
QChar API_EXPORT charAt(const QString& str, int pos);
API_EXPORT int rand(int min = 0, int max = RAND_MAX);
API_EXPORT QString randStr(int length, bool numChars = true, bool whiteSpaces = false);
API_EXPORT QString randStr(int length, const QString& charCollection);
API_EXPORT QString randBinStr(int length);
API_EXPORT QString randStrNotIn(int length, const QSet<QString> set, bool numChars = true, bool whiteSpaces = false);
API_EXPORT QString generateUniqueName(const QString& prefix, const QStringList& existingNames);
API_EXPORT bool isNumeric(const QVariant& value);
API_EXPORT QString rStrip(const QString& str);
API_EXPORT QStringList tokenizeArgs(const QString& str);
API_EXPORT QStringList prefixEach(const QString& prefix, const QStringList& list);
API_EXPORT QByteArray hashToBytes(const QHash<QString,QVariant>& hash);
API_EXPORT QHash<QString,QVariant> bytesToHash(const QByteArray& bytes);
/**
* @brief indexOf Extension to QStringList::indexOf().
*
* This method does pretty much the same as QStringList::indexOf(), except it supports
* case sensitivity flag, unlike the original method.
*/
API_EXPORT int indexOf(const QStringList& list, const QString& value, int from = 0, Qt::CaseSensitivity cs = Qt::CaseSensitive);
API_EXPORT int indexOf(const QStringList& list, const QString& value, Qt::CaseSensitivity cs = Qt::CaseSensitive);
/**
* @brief Returns only those elements from the list, which passed the filter.
* @tparam T type for which the filter will be applied for. It should match the type in the list and in the function argument.
* @param list List to filter elements from.
* @param filterFunction Function that accepts elements from the list and returns true for elements that should be returned by the filter.
* @return List of elements that passed custom function validation.
*/
template <class T>
QList<T> filter(const QList<T>& list, std::function<bool(const T& value)> filterFunction)
{
QList<T> results;
for (const T& value : list)
{
if (filterFunction(value))
results << value;
}
return results;
}
template <class T>
bool contains(const QList<T>& list, std::function<bool(const T& value)> testFunction)
{
for (const T& value : list)
{
if (testFunction(value))
return true;
}
return false;
}
/**
* @brief Appends or prepends characters to the string to make it of specified length.
* @param str Input string to work with.
* @param length Desired length of output string.
* @param fillChar Character to use to fill missing part of string.
* @param String which is at least \p length characters long, using \p str as an initial value.
*
* It appends or prepends as many \p fillChar characters to the \p str, so the \p str becomes \p length characters long.
* In case the \p str is already \p length characters long, or even longer, then the original string is returned.
*
* If \p length is positive value, characters are appended to string. It it's negative, then values are prepended to the string,
* using an absolute value of the \p length for calculating output length.
*/
API_EXPORT QString pad(const QString& str, int length, const QChar& fillChar);
API_EXPORT QString center(const QString& str, int length, const QChar& fillChar);
/**
* @brief Picks the longest string from the list.
* @param strList List to pick from.
* @return Longest value from the list, or empty string if the \p strList was empty as well.
*
* If there are many values with the same, longest length, then the first one is picked.
*/
API_EXPORT QString longest(const QStringList& strList);
/**
* @brief Picks the shortest string from the list.
* @param strList List to pick from.
* @return Shortest value from the list, or empty string if the \p strList was empty as well.
*
* If there are many values with the same, shortest length, then the first one is picked.
*/
API_EXPORT QString shortest(const QStringList& strList);
/**
* @brief Finds the longest common part of all strings.
* @param strList List to compare strings from.
* @return Longest common string (looking from the begining of each string) from the list.
*/
API_EXPORT QString longestCommonPart(const QStringList& strList);
/**
* @brief Applies margin of given number of characters to the string, splitting it into lines.
* @param str String to apply the margin to.
* @param margin Number of characters allows in single line.
* @return List of lines produced by applying the margin.
*
* If \p str is longer than \p margin number of characters, this method splits \p str into several lines
* in order to respect the \p margin. White spaces are taken as points of splitting, but if there is
* a single word longer than \p margin, then this word gets splitted.
*/
API_EXPORT QStringList applyMargin(const QString& str, int margin);
/**
* @brief toGregorian Converts Julian Date to Gregorian Date.
* @param julianDateTime Floating point representing Julian Day and Julian time.
* @return Gregorian date.
*
* Converts Julian Calendar date into Gregorian Calendar date.
* See Wikipedia for details.
*/
API_EXPORT QDateTime toGregorian(double julianDateTime);
/**
* @brief toJulian Converts Gregorian Date to Julian Date.
* @param gregDateTime Gregorian calendar date and time.
* @return Julian calendar date and time.
*
* Converts the usually used Gregorian date and time into Julian Date format,
* which is floating point, where integral part is the Julian Day and fraction part is time of the day.
*/
API_EXPORT double toJulian(const QDateTime& gregDateTime);
/**
* @brief toJulian Converts Gregorian Date to Julian Date.
* @overload
*/
API_EXPORT double toJulian(int year, int month, int day, int hour, int minute, int second, int msec);
API_EXPORT QString formatFileSize(quint64 size);
API_EXPORT QString formatTimePeriod(int msecs);
API_EXPORT QStringList common(const QStringList& list1, const QStringList& list2, Qt::CaseSensitivity cs = Qt::CaseSensitive);
API_EXPORT QStringList textCodecNames();
API_EXPORT QString defaultCodecName();
API_EXPORT QTextCodec* defaultCodec();
API_EXPORT QTextCodec* codecForName(const QString& name);
API_EXPORT QStringList splitByLines(const QString& str);
API_EXPORT QString joinLines(const QStringList& lines);
API_EXPORT int sum(const QList<int>& integers);
API_EXPORT QString getOsString();
API_EXPORT bool validateEmail(const QString& email);
API_EXPORT bool isHex(const QString& str);
API_EXPORT QString formatVersion(int version);
API_EXPORT bool copyRecursively(const QString& src, const QString& dst);
API_EXPORT bool renameBetweenPartitions(const QString& src, const QString& dst);
API_EXPORT bool isWritableRecursively(const QString& dir);
API_EXPORT QString encryptRsa(const QString& input, const QString& modulus, const QString& exponent);
API_EXPORT QString decryptRsa(const QString& input, const QString& modulus, const QString& exponent);
enum class DistributionType
{
PORTABLE,
OSX_BOUNDLE,
OS_MANAGED
};
API_EXPORT DistributionType getDistributionType();
template <class T>
QList<T> reverse(const QList<T>& list)
{
QList<T> result;
for (const T& el : list)
result.prepend(el);
return result;
}
template <class T>
void removeDuplicates(QList<T>& list)
{
QSet<T> set;
QMutableListIterator<T> i(list);
while (i.hasNext())
{
i.next();
if (set.contains(i.value()))
i.remove();
else
set << i.value();
}
}
Q_DECLARE_METATYPE(QList<int>)
#endif // UTILS_H
|