MuldeR's Utilities for Qt
MUtilities
Global.h
Go to the documentation of this file.
1 // MuldeR's Utilities for Qt
3 // Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 //
19 // http://www.gnu.org/licenses/lgpl-2.1.txt
21 
27 #pragma once
28 
29 #include <QString>
30 
31 //Forward Declarations
32 class QProcess;
33 
35 
36 //MUtils API
37 #ifdef _MSC_VER
38 # ifdef MUTILS_DLL_EXPORT
39 # define MUTILS_API __declspec(dllexport)
40 # else
41 # ifndef MUTILS_STATIC_LIB
42 # define MUTILS_API __declspec(dllimport)
43 # else
44 # define MUTILS_API /*static lib*/
45 # endif
46 # endif
47 #else
48 # define MUTILS_API
49 #endif
50 
51 //Helper Macros
52 #define MUTILS_MAKE_STRING_HELPER(X) #X
53 #define MUTILS_MAKE_STRING(X) MUTILS_MAKE_STRING_HELPER(X)
54 #define MUTILS_COMPILER_WARNING(TXT) __pragma(message(__FILE__ "(" MUTILS_MAKE_STRING(__LINE__) ") : warning: " TXT))
55 
56 //Check Debug Flags
57 #if defined(_DEBUG) || defined(DEBUG) || (!defined(NDEBUG))
58 # define MUTILS_DEBUG (1)
59 # if defined(NDEBUG) || defined(QT_NO_DEBUG) || (!defined(QT_DEBUG))
60 # error Inconsistent DEBUG flags have been detected!
61 # endif
62 #else
63 # define MUTILS_DEBUG (0)
64 # if (!defined(NDEBUG)) || (!defined(QT_NO_DEBUG)) || defined(QT_DEBUG)
65 # error Inconsistent DEBUG flags have been detected!
66 # endif
67 #endif
68 
69 //Check CPU options
70 #if defined(_MSC_VER) && (!defined(__INTELLISENSE__)) && (!defined(_M_X64)) && defined(_M_IX86_FP)
71  #if (_M_IX86_FP != 0)
72  #error We should not enabled SSE or SSE2 in release builds!
73  #endif
74 #endif
75 
77 
114 namespace MUtils
115 {
123  MUTILS_API const QString& temp_folder(void);
124 
125  //Process Utils
126  MUTILS_API void init_process(QProcess &process, const QString &wokringDir, const bool bReplaceTempDir = true, const QStringList *const extraPaths = NULL);
127 
135  MUTILS_API quint32 next_rand_u32(void);
136 
144  MUTILS_API quint64 next_rand_u64(void);
145 
155  MUTILS_API QString next_rand_str(const bool &bLong = false);
156 
170  MUTILS_API QString make_temp_file(const QString &basePath, const QString &extension, const bool placeholder = false);
171 
187  MUTILS_API QString make_unique_file(const QString &basePath, const QString &baseName, const QString &extension, const bool fancy = false);
188 
196  MUTILS_API bool parity(quint32 value);
197 
198  //Remove File/Dir
199  MUTILS_API bool remove_file(const QString &fileName);
200  MUTILS_API bool remove_directory(const QString &folderPath, const bool &recursive);
201 
202  //String utils
203  MUTILS_API QString& trim_right(QString &str);
204  MUTILS_API QString& trim_left(QString &str);
205  MUTILS_API QString trim_right(const QString &str);
206  MUTILS_API QString trim_left(const QString &str);
207 
208  //String sorting
209  MUTILS_API void natural_string_sort(QStringList &list, const bool bIgnoreCase);
210 
211  //Clean file path
212  MUTILS_API QString clean_file_name(const QString &name);
213  MUTILS_API QString clean_file_path(const QString &path);
214 
215  //Regular expressions
216  MUTILS_API bool regexp_parse_uint32(const QRegExp &regexp, quint32 &value);
217  MUTILS_API bool regexp_parse_uint32(const QRegExp &regexp, quint32 *values, const size_t &count);
218 
219  //Internationalization
220  MUTILS_API QStringList available_codepages(const bool &noAliases = true);
221 
222  //Internal
223  namespace Internal
224  {
225  MUTILS_API int selfTest(const char *const buildKey, const bool debug);
226  static const int s_selfTest = selfTest(__DATE__ "@" __TIME__, MUTILS_DEBUG);
227  }
228 }
229 
231 
232 //Delete helper
233 #define MUTILS_DELETE(PTR) do { if((PTR)) { delete (PTR); (PTR) = NULL; } } while(0)
234 #define MUTILS_DELETE_ARRAY(PTR) do { if((PTR)) { delete [] (PTR); (PTR) = NULL; } } while(0)
235 
236 //Zero memory
237 #define MUTILS_ZERO_MEMORY(PTR) memset(&(PTR), 0, sizeof((PTR)))
238 
239 //String conversion macros
240 #define MUTILS_WCHR(STR) (reinterpret_cast<const wchar_t*>((STR).utf16()))
241 #define MUTILS_UTF8(STR) ((STR).toUtf8().constData())
242 #define MUTILS_QSTR(STR) (QString::fromUtf16(reinterpret_cast<const unsigned short*>((STR))))
243 
244 //Boolean helper
245 #define MUTILS_BOOL2STR(X) ((X) ? "1" : "0")
quint32 next_rand_u32(void)
Generates a random unsigned 32-Bit value.
bool parity(quint32 value)
Computes the parity of the given unsigned 32-Bit value.
QString make_unique_file(const QString &basePath, const QString &baseName, const QString &extension, const bool fancy=false)
Generates a unique file name.
const QString & temp_folder(void)
Rerieves the full path of the application&#39;s Temp folder.
Definition: CPUFeatures.h:30
QString next_rand_str(const bool &bLong=false)
Generates a random string.
QString make_temp_file(const QString &basePath, const QString &extension, const bool placeholder=false)
Generates a temporary file name.
quint64 next_rand_u64(void)
Generates a random unsigned 64-Bit value.