20 #define quotedefined(str) #str
22 #define KAME_DATAFILE_DELIMITER " " //Space
27 #ifndef DECLSPEC_MODULE
28 #define DECLSPEC_MODULE
30 #ifndef DECLSPEC_SHARED
31 #define DECLSPEC_SHARED
38 #ifdef WORDS_BIGENDIAN
39 #ifndef __BIG_ENDIAN__
40 #define __BIG_ENDIAN__
44 #define _USE_MATH_DEFINES
47 #define M_PI 3.1415926535897932385
52 #define DEBUG_XTHREAD 0
54 #define DEBUG_XTHREAD 1
57 #if defined __WIN32__ || defined WINDOWS || defined _WIN32
59 #define USE_STD_THREAD
62 DECLSPEC_KAME
int mlock(
const void *addr,
size_t len);
69 using std::unique_ptr;
70 using std::shared_ptr;
72 using std::enable_shared_from_this;
73 using std::static_pointer_cast;
74 using std::dynamic_pointer_cast;
76 using std::reference_wrapper;
85 #define i18n_noncontext(src) i18n(src)
87 #include <QCoreApplication>
88 #define i18n_noncontext(src) QCoreApplication::translate("static", src)
89 #include <type_traits>
90 #define i18n(src) ((std::is_base_of<QObject, decltype( *this)>::value) ?\
91 QObject::tr(src) : i18n_noncontext(src))
92 #define I18N_NOOP(txt) QT_TR_NOOP(txt)
96 using base_type = std::string;
101 XString(
const char *str) : base_type(str) {}
102 XString(
const QString &str) : base_type(str.toUtf8().data()) {}
103 XString(
const base_type &str) : base_type(str) {}
104 operator QString()
const {
return QString::fromUtf8(c_str());}
105 XString operator+(
const char *s) {
return *
this + base_type(s);}
111 #define dbgPrint(msg) dbgPrint_redirected(msg, __FILE__, __LINE__, false)
112 #define gMessagePrint(msg) dbgPrint_redirected(msg, __FILE__, __LINE__, true)
114 dbgPrint_redirected(
const XString &str,
const char *file,
int line,
bool force_dump);
116 #define gErrPrint(msg) gErrPrint_redirected(msg, __FILE__, __LINE__)
117 #define gWarnPrint(msg) gWarnPrint_redirected(msg, __FILE__, __LINE__)
119 gErrPrint_redirected(
const XString &str,
const char *file,
int line);
121 gWarnPrint_redirected(
const XString &str,
const char *file,
int line);
125 struct DECLSPEC_KAME
XKameError :
public std::runtime_error {
127 virtual ~XKameError() =
default;
130 XKameError(
const XString &s,
const char *file,
int line);
132 void print(
const XString &header);
133 static void print(
const XString &msg,
const char *file,
int line,
int errno_);
135 virtual const char* what()
const noexcept;
144 extern bool g_bLogDbgPrint;
146 extern bool g_bMLockAlways;
148 extern bool g_bUseMLock;
150 DECLSPEC_KAME
bool isMemLockAvailable() noexcept;
153 DECLSPEC_KAME
double roundlog10(
double val);
156 DECLSPEC_KAME
double setprec(
double val,
double prec) noexcept;
159 #define snprintf(fmt, len, ...) _snprintf_s(fmt, len, len - 1, __VA_ARGS__)
163 DECLSPEC_KAME
XString dumpCString(
const char *cstr);
166 DECLSPEC_KAME
XString formatString(
const char *format, ...)
167 #if defined __GNUC__ || defined __clang__
168 __attribute__ ((format(printf,1,2)));
171 XString formatString_tr(
const char *format_i18n_noop, ...)
172 #if defined __GNUC__ || defined __clang__
173 __attribute__ ((format(printf,1,2)));
176 DECLSPEC_KAME
XString formatDouble(
const char *fmt,
double val);
180 DECLSPEC_KAME
void formatDoubleValidator(
XString &fmt);
182 #if defined __i386__ || defined __i486__ || defined __i586__ || defined __i686__ || defined __x86_64__
187 unsigned int monitorSizeSmallest;
188 unsigned int monitorSizeLargest;