34 template<
typename K,
typename V>
class QHash;
42 #define MUTILS_INTERFACE 4 46 # ifdef MUTILS_DLL_EXPORT 47 # define MUTILS_API __declspec(dllexport) 49 # ifndef MUTILS_STATIC_LIB 50 # define MUTILS_API __declspec(dllimport) 60 #if defined(_DEBUG) || defined(DEBUG) || (!defined(NDEBUG)) 61 # define MUTILS_DEBUG (1) 62 # if defined(NDEBUG) || defined(QT_NO_DEBUG) || (!defined(QT_DEBUG)) 63 # error Inconsistent DEBUG flags have been detected! 66 # define MUTILS_DEBUG (0) 67 # if (!defined(NDEBUG)) || (!defined(QT_NO_DEBUG)) || defined(QT_DEBUG) 68 # error Inconsistent DEBUG flags have been detected! 73 #if defined(_MSC_VER) && (!defined(__INTELLISENSE__)) && (!defined(_M_X64)) && defined(_M_IX86_FP) 75 #error We should not enabled SSE or SSE2 in release builds! 80 #define MUTILS_GLUE_NAME_HELPER(X,Y) X##Y 81 #define MUTILS_GLUE_NAME(X,Y) MUTILS_GLUE_NAME_HELPER(X,Y) 83 #define MUTILS_INITIALIZER MUTILS_GLUE_NAME(initialize_d, MUTILS_INTERFACE) 85 #define MUTILS_INITIALIZER MUTILS_GLUE_NAME(initialize_r, MUTILS_INTERFACE) 89 #define MUTILS_MAKE_STRING_HELPER(X) #X 90 #define MUTILS_MAKE_STRING(X) MUTILS_MAKE_STRING_HELPER(X) 91 #define MUTILS_COMPILER_WARNING(TXT) __pragma(message(__FILE__ "(" MUTILS_MAKE_STRING(__LINE__) ") : warning: " TXT)) 130 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);
175 MUTILS_API QString
make_temp_file(
const QString &basePath,
const QString &extension,
const bool placeholder =
false);
176 MUTILS_API QString
make_temp_file(
const QDir &basePath,
const QString &extension,
const bool placeholder =
false);
193 MUTILS_API QString
make_unique_file(
const QString &basePath,
const QString &baseName,
const QString &extension,
const bool fancy =
false,
const bool placeholder =
false);
194 MUTILS_API QString
make_unique_file(
const QDir &basePath,
const QString &baseName,
const QString &extension,
const bool fancy =
false,
const bool placeholder =
false);
203 MUTILS_API
bool parity(quint32 value);
214 MUTILS_API
bool remove_file(
const QString &fileName);
227 MUTILS_API
bool remove_directory(
const QString &folderPath,
const bool &recursive);
249 MUTILS_API QString&
trim_left(QString &str);
260 MUTILS_API QString
trim_right(
const QString &str);
271 MUTILS_API QString
trim_left(
const QString &str);
295 MUTILS_API QString
clean_file_name(
const QString &name,
const bool &pretty);
308 MUTILS_API QString
clean_file_path(
const QString &path,
const bool &pretty);
322 MUTILS_API
bool regexp_parse_int32(
const QRegExp ®exp, qint32 &value);
323 MUTILS_API
bool regexp_parse_uint32(
const QRegExp ®exp, quint32 &value,
const size_t &offset);
324 MUTILS_API
bool regexp_parse_int32(
const QRegExp ®exp, qint32 &value,
const size_t &offset);
335 MUTILS_API QString
parent_path(
const QString &path);
350 MUTILS_API
bool regexp_parse_uint32(
const QRegExp ®exp, quint32 *values,
const size_t &count);
351 MUTILS_API
bool regexp_parse_int32(
const QRegExp ®exp, qint32 *values,
const size_t &count);
352 MUTILS_API
bool regexp_parse_uint32(
const QRegExp ®exp, quint32 *values,
const size_t &offset,
const size_t &count);
353 MUTILS_API
bool regexp_parse_int32(
const QRegExp ®exp, qint32 *values,
const size_t &offset,
const size_t &count);
380 MUTILS_API
unsigned int MUTILS_INITIALIZER(
const unsigned int interfaceId);
381 static const unsigned int init_flag = MUTILS_INITIALIZER(MUTILS_INTERFACE);
389 #define MUTILS_DELETE(PTR) do { if((PTR)) { delete (PTR); (PTR) = NULL; } } while(0) 393 #define MUTILS_DELETE_ARRAY(PTR) do { if((PTR)) { delete [] (PTR); (PTR) = NULL; } } while(0) 397 #define MUTILS_ZERO_MEMORY(PTR) memset(&(PTR), 0, sizeof((PTR))) 401 #define MUTILS_WCHR(STR) (reinterpret_cast<const wchar_t*>((STR).utf16())) 405 #define MUTILS_UTF8(STR) ((STR).toUtf8().constData()) 409 #define MUTILS_L1STR(STR) ((STR).toLatin1().constData()) 413 #define MUTILS_QSTR(STR) (QString::fromUtf16(reinterpret_cast<const unsigned short*>((STR)))) 417 #define MUTILS_BOOL2STR(X) ((X) ? "1" : "0") 421 #define MUTILS_BOOLIFY(X) (!(!(X))) 425 #define MUTILS_ARR2LEN(X) (sizeof((X)) / sizeof((X)[0])) 429 #define MUTILS_NO_COPY(CLASS) \ 430 CLASS(const CLASS &) { throw "Copy constructor is disabled!"; } \ 431 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.