29 bool isMemLockAvailable() noexcept {
return g_bUseMLock;}
36 #if defined __WIN32__ || defined WINDOWS || defined _WIN32
37 #define KAME_LOG_FILENAME "kame.log"
39 #define KAME_LOG_FILENAME "/tmp/kame.log"
42 static std::ofstream g_debugofs(KAME_LOG_FILENAME, std::ios::out);
43 static XMutex g_debug_mutex;
47 #include "threadlocal.h"
49 #if defined __linux__ || defined __APPLE__
51 #if defined TRAP_FPE && defined __linux__
52 #include <fpu_control.h>
53 static void __attribute__ ((constructor)) trapfpe (
void)
56 _FPU_DEFAULT & ~(_FPU_MASK_IM | _FPU_MASK_ZM | _FPU_MASK_OM);
62 XKameError::XKameError() : std::runtime_error(
""), m_msg(
""), m_file(0), m_line(0), m_errno(0) {
65 XKameError::XKameError(
const XString &s,
const char *file,
int line)
66 : std::runtime_error(s.c_str()), m_msg(s), m_file(file), m_line(line), m_errno(errno) {
71 XKameError::print(
const XString &header) {
72 print(header + m_msg, m_file, m_line, m_errno);
79 XKameError::print(
const XString &msg,
const char *file,
int line,
int errno_) {
85 char *s = strerror_r(errno_, buf,
sizeof(buf));
86 gErrPrint_redirected(msg +
" " + s, file, line);
88 #if defined __WIN32__ || defined WINDOWS || defined _WIN32
89 strerror_s(buf,
sizeof(buf), errno_);
91 strerror_r(errno_, buf,
sizeof(buf));
94 gErrPrint_redirected(msg +
" " + buf, file, line);
96 gErrPrint_redirected(msg +
" (strerror failed)", file, line);
101 gErrPrint_redirected(msg, file, line);
106 XKameError::msg()
const {
110 const char* XKameError::what() const noexcept {
111 return m_msg.c_str();
114 double roundlog10(
double val) {
115 int i = lrint(log10(val));
116 return pow(10.0, (
double)i);
118 double setprec(
double val,
double prec) noexcept {
121 if(prec <= 1e-100)
return val;
122 x = roundlog10(prec/2);
123 double f = rint(val / x);
124 double z = (fabs(f) < (double)0x8fffffff) ? ((int)f) * x : f * x;
134 dbgPrint_redirected(
const XString &str,
const char *file,
int line,
bool force_dump) {
135 if( !force_dump && !g_bLogDbgPrint)
return;
138 << (QString(
"0x%1:%2:%3:%4 %5")
139 .arg((uintptr_t)threadID(), 0, 16)
140 .arg(XTime::now().getTimeStr())
143 .arg(str)).toUtf8().data()
146 shared_ptr<XStatusPrinter> statusprinter = g_statusPrinter;
147 if(statusprinter) statusprinter->printMessage(str,
true, file, line);
151 gErrPrint_redirected(
const XString &str,
const char *file,
int line) {
154 fprintf(stderr,
"err:%s:%d %s\n", file, line, (
const char*)QString(str).toLocal8Bit().data());
156 << (
const char*)(QString(
"Err:0x%1:%2:%3:%4 %5")
157 .arg((uintptr_t)threadID(), 0, 16)
158 .arg(XTime::now().getTimeStr())
161 .arg(str)).toUtf8().data()
163 #if !defined __WIN32__ && !defined WINDOWS && !defined _WIN32
167 shared_ptr<XStatusPrinter> statusprinter = g_statusPrinter;
168 if(statusprinter) statusprinter->printError(str,
true, file, line);
171 gWarnPrint_redirected(
const XString &str,
const char *file,
int line) {
174 fprintf(stderr,
"warn:%s:%d %s\n", file, line, (
const char*)QString(str).toLocal8Bit().data());
176 << (
const char*)(QString(
"Warn:0x%1:%2:%3:%4 %5")
177 .arg((uintptr_t)threadID(), 0, 16)
178 .arg(XTime::now().getTimeStr())
181 .arg(str)).toUtf8().data()
184 shared_ptr<XStatusPrinter> statusprinter = g_statusPrinter;
185 if(statusprinter) statusprinter->printWarning(str,
false, file, line);
188 #define SNPRINT_BUF_SIZE 128
193 v_formatString(
const char *fmt, va_list ap) {
194 int buf_size = SNPRINT_BUF_SIZE;
195 std::vector<char> buf;
197 buf.resize(buf_size);
200 ret = vsnprintf(&buf[0], buf_size, fmt, ap);
202 if(ret < 0)
throw XKameError(i18n_noncontext(
"Mal-format conversion."), __FILE__, __LINE__);
203 if(ret < buf_size)
break;
207 return XString((
char*)&buf[0]);
211 formatString_tr(
const char *fmt, ...) {
214 XString str = v_formatString(i18n_noncontext(fmt).toUtf8().data(), ap);
220 formatString(
const char *fmt, ...) {
223 XString str = v_formatString(fmt, ap);
228 XString formatDouble(
const char *fmt,
double var) {
229 char cbuf[SNPRINT_BUF_SIZE];
230 if(strlen(fmt) == 0) {
231 snprintf(cbuf,
sizeof(cbuf),
"%.12g", var);
235 if(!strncmp(fmt,
"TIME:", 5)) {
236 #if !defined __WIN32__ && !defined WINDOWS && !defined _WIN32
243 return time.getTimeFmtStr(fmt + 5,
false);
245 return time.getTimeStr(
false);
247 snprintf(cbuf,
sizeof(cbuf), fmt, var);
250 void formatDoubleValidator(
XString &fmt) {
251 if(fmt.empty())
return;
255 if( !strncmp(buf.c_str(),
"TIME:", 5))
return;
259 pos = buf.find(
'%', pos);
260 if(pos == std::string::npos)
break;
262 if(buf[pos] ==
'%') {
267 throw XKameError(i18n_noncontext(
"Illegal Format, too many %s."), __FILE__, __LINE__);
270 if((sscanf(buf.c_str() + pos,
"%*[+-'0# ]%*f%c", &conv) != 1) &&
271 (sscanf(buf.c_str() + pos,
"%*[+-'0# ]%c", &conv) != 1) &&
272 (sscanf(buf.c_str() + pos,
"%*f%c", &conv) != 1) &&
273 (sscanf(buf.c_str() + pos,
"%c", &conv) != 1)) {
274 throw XKameError(i18n_noncontext(
"Illegal Format."), __FILE__, __LINE__);
276 if(std::string(
"eEgGf").find(conv) == std::string::npos)
277 throw XKameError(i18n_noncontext(
"Illegal Format, no float conversion."), __FILE__, __LINE__);
280 throw XKameError(i18n_noncontext(
"Illegal Format, no %."), __FILE__, __LINE__);
283 XString dumpCString(
const char *cstr) {
285 for(; *cstr; cstr++) {
287 buf.append(1, *cstr);
290 snprintf(s, 5,
"\\x%02x", (
unsigned int)(
int)*cstr);
297 #if defined __WIN32__ || defined WINDOWS || defined _WIN32
299 int mlock(
const void *addr,
size_t len) {
300 return (VirtualLock((LPVOID)addr, len) != 0) ? 0 : -1;
304 #if defined __i386__ || defined __i486__ || defined __i586__ || defined __i686__ || defined __x86_64__
305 X86CPUSpec::X86CPUSpec() {
306 uint32_t stepinfo, brand, features_ext, features;
309 __cpuid(reinterpret_cast<int*>(cpuinfo), 0x1);
310 stepinfo = cpuinfo[0];
312 features_ext = cpuinfo[2];
313 features = cpuinfo[3];
315 __cpuid(0x1, stepinfo, brand , features_ext, features);
323 verSSE = (features & (1uL << 25)) ? 1 : 0;
324 if(verSSE && (features & (1uL << 26)))
326 if((verSSE == 2) && (features_ext & (1uL << 0)))
331 hasMonitor = (verSSE == 3) && (features_ext & (1uL << 3));
333 monitorSizeSmallest = 0L;
334 monitorSizeLargest = 0L;
336 uint32_t monsize_s, monsize_l;
339 __cpuid(reinterpret_cast<int*>(cpuinfo), 0x5);
340 monsize_s = cpuinfo[0];
341 monsize_l = cpuinfo[2];
343 __cpuid(0x5, monsize_s, cpuinfo[1] , monsize_l, cpuinfo[2]);
351 monitorSizeSmallest = monsize_s;
352 monitorSizeLargest = monsize_l;
354 fprintf(stderr,
"Target: "
358 #
if defined __LLP64__
367 "; Detected: SSE%u\n", verSSE);