34 template<
typename K,
typename V>
class QHash;
43 # ifdef MUTILS_DLL_EXPORT 44 # define MUTILS_API __declspec(dllexport) 46 # ifndef MUTILS_STATIC_LIB 47 # define MUTILS_API __declspec(dllimport) 56 #define MUTILS_MAKE_STRING_HELPER(X) #X 57 #define MUTILS_MAKE_STRING(X) MUTILS_MAKE_STRING_HELPER(X) 58 #define MUTILS_COMPILER_WARNING(TXT) __pragma(message(__FILE__ "(" MUTILS_MAKE_STRING(__LINE__) ") : warning: " TXT)) 61 #if defined(_DEBUG) || defined(DEBUG) || (!defined(NDEBUG)) 62 # define MUTILS_DEBUG (1) 63 # if defined(NDEBUG) || defined(QT_NO_DEBUG) || (!defined(QT_DEBUG)) 64 # error Inconsistent DEBUG flags have been detected! 67 # define MUTILS_DEBUG (0) 68 # if (!defined(NDEBUG)) || (!defined(QT_NO_DEBUG)) || defined(QT_DEBUG) 69 # error Inconsistent DEBUG flags have been detected! 74 #if defined(_MSC_VER) && (!defined(__INTELLISENSE__)) && (!defined(_M_X64)) && defined(_M_IX86_FP) 76 #error We should not enabled SSE or SSE2 in release builds! 117 MUTILS_API
void init_process(QProcess &process,
const QString &wokringDir,
const bool bReplaceTempDir =
true,
const QStringList *
const extraPaths = NULL,
const QHash<QString, QString> *
const extraEnv = NULL);
162 MUTILS_API QString
make_temp_file(
const QString &basePath,
const QString &extension,
const bool placeholder =
false);
163 MUTILS_API QString
make_temp_file(
const QDir &basePath,
const QString &extension,
const bool placeholder =
false);
180 MUTILS_API QString
make_unique_file(
const QString &basePath,
const QString &baseName,
const QString &extension,
const bool fancy =
false,
const bool placeholder =
false);
181 MUTILS_API QString
make_unique_file(
const QDir &basePath,
const QString &baseName,
const QString &extension,
const bool fancy =
false,
const bool placeholder =
false);
190 MUTILS_API
bool parity(quint32 value);
201 MUTILS_API
bool remove_file(
const QString &fileName);
214 MUTILS_API
bool remove_directory(
const QString &folderPath,
const bool &recursive);
236 MUTILS_API QString&
trim_left(QString &str);
247 MUTILS_API QString
trim_right(
const QString &str);
258 MUTILS_API QString
trim_left(
const QString &str);
282 MUTILS_API QString
clean_file_name(
const QString &name,
const bool &pretty);
295 MUTILS_API QString
clean_file_path(
const QString &path,
const bool &pretty);
309 MUTILS_API
bool regexp_parse_int32(
const QRegExp ®exp, qint32 &value);
310 MUTILS_API
bool regexp_parse_uint32(
const QRegExp ®exp, quint32 &value,
const size_t &offset);
311 MUTILS_API
bool regexp_parse_int32(
const QRegExp ®exp, qint32 &value,
const size_t &offset);
326 MUTILS_API
bool regexp_parse_uint32(
const QRegExp ®exp, quint32 *values,
const size_t &count);
327 MUTILS_API
bool regexp_parse_int32(
const QRegExp ®exp, qint32 *values,
const size_t &count);
328 MUTILS_API
bool regexp_parse_uint32(
const QRegExp ®exp, quint32 *values,
const size_t &offset,
const size_t &count);
329 MUTILS_API
bool regexp_parse_int32(
const QRegExp ®exp, qint32 *values,
const size_t &offset,
const size_t &count);
356 MUTILS_API
int selfTest(
const char *
const buildKey,
const bool debug);
357 static const int s_selfTest = selfTest(__DATE__
"@" __TIME__, MUTILS_DEBUG);
365 #define MUTILS_DELETE(PTR) do { if((PTR)) { delete (PTR); (PTR) = NULL; } } while(0) 369 #define MUTILS_DELETE_ARRAY(PTR) do { if((PTR)) { delete [] (PTR); (PTR) = NULL; } } while(0) 373 #define MUTILS_ZERO_MEMORY(PTR) memset(&(PTR), 0, sizeof((PTR))) 377 #define MUTILS_WCHR(STR) (reinterpret_cast<const wchar_t*>((STR).utf16())) 381 #define MUTILS_UTF8(STR) ((STR).toUtf8().constData()) 385 #define MUTILS_L1STR(STR) ((STR).toLatin1().constData()) 389 #define MUTILS_QSTR(STR) (QString::fromUtf16(reinterpret_cast<const unsigned short*>((STR)))) 393 #define MUTILS_BOOL2STR(X) ((X) ? "1" : "0") 397 #define MUTILS_BOOLIFY(X) (!(!(X))) 401 #define MUTILS_ARR2LEN(X) (sizeof((X)) / sizeof((X)[0])) 405 #define MUTILS_NO_COPY(CLASS) \ 406 CLASS(const CLASS &) { throw "Copy constructor is disabled!"; } \ 407 CLASS &operator=(const CLASS &) { throw "Assignment operator is disabled!"; } MUTILS_API QStringList available_codepages(const bool &noAliases=true)
Retrieve a list of all available codepages.
struct MUtils::_fp_parts_t fp_parts_t
This struct containes the parts (integral and fractional part) of a floating-point number...
MUTILS_API QString next_rand_str(const bool &bLong=false)
Generates a random string.
MUTILS_API bool remove_file(const QString &fileName)
Deletes the specified file.
MUTILS_API QString clean_file_path(const QString &path, const bool &pretty)
Clean up a file path string.
This struct containes the parts (integral and fractional part) of a floating-point number...
Definition: Global.h:93
MUTILS_API void natural_string_sort(QStringList &list, const bool bIgnoreCase)
Sort a list of strings using "natural ordering" algorithm.
MUTILS_API bool regexp_parse_uint32(const QRegExp ®exp, quint32 &value)
Parse regular expression results.
MUTILS_API bool parity(quint32 value)
Computes the parity of the given unsigned 32-Bit value.
MUTILS_API fp_parts_t break_fp(const double value)
Break floating-point number into fractional and integral parts.
MUTILS_API quint64 next_rand_u64(void)
Generates a random unsigned 64-Bit value.
MUTILS_API QString & trim_right(QString &str)
Remove trailing white-space characters.
MUTILS_API const QString & temp_folder(void)
Rerieves the full path of the application's Temp folder.
Global MUtils namespace.
Definition: CPUFeatures.h:37
MUTILS_API QString clean_file_name(const QString &name, const bool &pretty)
Clean up a file name string.
MUTILS_API quint32 next_rand_u32(void)
Generates a random unsigned 32-Bit value.
MUTILS_API bool remove_directory(const QString &folderPath, const bool &recursive)
Recursively deletes the specified directory.
MUTILS_API QString make_temp_file(const QString &basePath, const QString &extension, const bool placeholder=false)
Generates a temporary file name.
MUTILS_API void init_process(QProcess &process, const QString &wokringDir, const bool bReplaceTempDir=true, const QStringList *const extraPaths=NULL, const QHash< QString, QString > *const extraEnv=NULL)
Initialize a given QProcess object.
MUTILS_API QString & trim_left(QString &str)
Remove leading white-space characters.
MUTILS_API QString make_unique_file(const QString &basePath, const QString &baseName, const QString &extension, const bool fancy=false, const bool placeholder=false)
Generates a unique file name.