support.h
1 /***************************************************************************
2  Copyright (C) 2002-2015 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13  ***************************************************************************/
14 //Every KAME source must include this header
15 //---------------------------------------------------------------------------
16 
17 #ifndef supportH
18 #define supportH
19 
20 #define quotedefined(str) #str
21 
22 #define KAME_DATAFILE_DELIMITER " " //Space
23 
24 #ifndef DECLSPEC_KAME
25  #define DECLSPEC_KAME
26 #endif
27 #ifndef DECLSPEC_MODULE
28  #define DECLSPEC_MODULE
29 #endif
30 #ifndef DECLSPEC_SHARED
31  #define DECLSPEC_SHARED
32 #endif
33 
34 #ifdef HAVE_CONFIG_H
35 #include <config.h>
36 #endif
37 
38 #ifdef WORDS_BIGENDIAN
39 #ifndef __BIG_ENDIAN__
40 #define __BIG_ENDIAN__
41 #endif
42 #endif
43 
44 #define _USE_MATH_DEFINES
45 #include <math.h>
46 #if !defined M_PI
47  #define M_PI 3.1415926535897932385
48 #endif
49 
50 #include <cassert>
51 #ifdef NDEBUG
52 #define DEBUG_XTHREAD 0
53 #else
54 #define DEBUG_XTHREAD 1
55 #endif
56 
57 #if defined __WIN32__ || defined WINDOWS || defined _WIN32
58  #define USE_QTHREAD
59  #define USE_STD_THREAD
60  #include <QThread>
61  #include <thread>
62  DECLSPEC_KAME int mlock(const void *addr, size_t len);
63 #else
64  #include <pthread.h>
65  #define USE_PTHREAD
66 #endif
67 
68 #include <memory>
69 using std::unique_ptr;
70 using std::shared_ptr;
71 using std::weak_ptr;
72 using std::enable_shared_from_this;
73 using std::static_pointer_cast;
74 using std::dynamic_pointer_cast;
75 using std::ref;
76 using std::reference_wrapper;
77 
78 #include <stdio.h>
79 #include <algorithm>
80 #include <string>
81 #include <QString>
82 
83 #if defined(WITH_KDE)
84  #include <klocale.h>
85  #define i18n_noncontext(src) i18n(src)
86 #else
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)
93 #endif
94 
95 class XString : public std::string {
96 using base_type = std::string;
97 public:
98  XString() = default;
99  XString(const XString&) = default;
100  XString(XString&&) noexcept = default;
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);}
106  XString &operator=(const XString&) = default;
107  XString &operator=(XString&&) noexcept = default;
108 };
109 
110 //! Debug printing.
111 #define dbgPrint(msg) dbgPrint_redirected(msg, __FILE__, __LINE__, false)
112 #define gMessagePrint(msg) dbgPrint_redirected(msg, __FILE__, __LINE__, true)
113 DECLSPEC_KAME void
114 dbgPrint_redirected(const XString &str, const char *file, int line, bool force_dump);
115 //! Global Error Message/Printing.
116 #define gErrPrint(msg) gErrPrint_redirected(msg, __FILE__, __LINE__)
117 #define gWarnPrint(msg) gWarnPrint_redirected(msg, __FILE__, __LINE__)
118 DECLSPEC_KAME void
119 gErrPrint_redirected(const XString &str, const char *file, int line);
120 DECLSPEC_KAME void
121 gWarnPrint_redirected(const XString &str, const char *file, int line);
122 
123 #include <stdexcept>
124 //! Base of exception
125 struct DECLSPEC_KAME XKameError : public std::runtime_error {
126  XKameError();
127  virtual ~XKameError() = default;
128 
129  //! errno is read and cleared after a construction
130  XKameError(const XString &s, const char *file, int line);
131  void print();
132  void print(const XString &header);
133  static void print(const XString &msg, const char *file, int line, int errno_);
134  const XString &msg() const;
135  virtual const char* what() const noexcept;
136 private:
137  XString m_msg;
138  const char * m_file;
139  int m_line;
140  int m_errno;
141 };
142 
143 //! If true, Log all dbgPrint().
144 extern bool g_bLogDbgPrint;
145 //! If true, use mlockall MCL_FUTURE.
146 extern bool g_bMLockAlways;
147 //! If true, use mlock.
148 extern bool g_bUseMLock;
149 
150 DECLSPEC_KAME bool isMemLockAvailable() noexcept;
151 
152 //! round value to the nearest 10s. ex. 42.3 to 10, 120 to 100
153 DECLSPEC_KAME double roundlog10(double val);
154 //! round value within demanded precision.
155 //! ex. 38.32, 40 to 30, 0.4234, 0.01 to 0.42
156 DECLSPEC_KAME double setprec(double val, double prec) noexcept;
157 
158 #ifdef _MSC_VER
159  #define snprintf(fmt, len, ...) _snprintf_s(fmt, len, len - 1, __VA_ARGS__)
160 #endif
161 
162 //! convert control characters to visible (ex. \xx).
163 DECLSPEC_KAME XString dumpCString(const char *cstr);
164 
165 //! \sa printf()
166 DECLSPEC_KAME XString formatString(const char *format, ...)
167 #if defined __GNUC__ || defined __clang__
168  __attribute__ ((format(printf,1,2)));
169 #endif
170 ;
171 XString formatString_tr(const char *format_i18n_noop, ...)
172 #if defined __GNUC__ || defined __clang__
173  __attribute__ ((format(printf,1,2)));
174 #endif
175 ;
176 DECLSPEC_KAME XString formatDouble(const char *fmt, double val);
177 //! validator
178 //! throws XKameError
179 //! \sa XValueNode
180 DECLSPEC_KAME void formatDoubleValidator(XString &fmt);
181 
182 #if defined __i386__ || defined __i486__ || defined __i586__ || defined __i686__ || defined __x86_64__
183 struct X86CPUSpec {
184  X86CPUSpec();
185  unsigned int verSSE;
186  bool hasMonitor;
187  unsigned int monitorSizeSmallest;
188  unsigned int monitorSizeLargest;
189 };
190 extern const X86CPUSpec cg_cpuSpec;
191 #endif
192 
193 //---------------------------------------------------------------------------
194 #endif

Generated for KAME4 by  doxygen 1.8.3