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 #ifndef DECLSPEC_KAME
21  #define DECLSPEC_KAME
22 #endif
23 #ifndef DECLSPEC_MODULE
24  #define DECLSPEC_MODULE
25 #endif
26 #ifndef DECLSPEC_SHARED
27  #define DECLSPEC_SHARED
28 #endif
29 
30 #ifdef HAVE_CONFIG_H
31 #include <config.h>
32 #endif
33 
34 #if defined __WIN32__ || defined WINDOWS || defined _WIN32
35  #define USE_QTHREAD
36  #define USE_STD_THREAD
37  #include <QThread>
38  #include <thread>
39 #else
40  #include <pthread.h>
41  #define USE_PTHREAD
42 #endif
43 
44 #include <cassert>
45 #ifdef NDEBUG
46 #define DEBUG_XTHREAD 0
47 #else
48 #define DEBUG_XTHREAD 1
49 #endif
50 
51 #include <memory>
52 using std::unique_ptr;
53 using std::shared_ptr;
54 using std::weak_ptr;
55 using std::enable_shared_from_this;
56 using std::static_pointer_cast;
57 using std::dynamic_pointer_cast;
58 using std::ref;
59 using std::reference_wrapper;
60 #include <algorithm>
61 #include <math.h>
62 #include <stdio.h>
63 
64 #if defined __i386__ || defined __i486__ || defined __i586__ || defined __i686__ || defined __x86_64__
65 struct X86CPUSpec {
66  X86CPUSpec();
67  unsigned int verSSE;
68  bool hasMonitor;
69  unsigned int monitorSizeSmallest;
70  unsigned int monitorSizeLargest;
71 };
72 extern const X86CPUSpec cg_cpuSpec;
73 #endif
74 
75 #include <string>
76 typedef std::string XString;
77 #include <stdexcept>
78 //! Base of exception
79 struct XKameError : public std::runtime_error {
80  virtual ~XKameError() throw() {}
81  //! errno is read and cleared after a construction
82  XKameError(const XString &s, const char *file, int line);
83  void print();
84  void print(const XString &header);
85  static void print(const XString &msg, const char *file, int line, int errno_);
86  const XString &msg() const;
87  virtual const char* what() const throw();
88 private:
89  const XString m_msg;
90  const char *const m_file;
91  const int m_line;
92  const int m_errno;
93 };
94 
95 
96 //! Debug printing.
97 #define dbgPrint(msg) dbgPrint_redirected(msg, __FILE__, __LINE__)
98 void
99 dbgPrint_redirected(const XString &str, const char *file, int line);
100 //! Global Error Message/Printing.
101 #define gErrPrint(msg) gErrPrint_redirected(msg, __FILE__, __LINE__)
102 #define gWarnPrint(msg) gWarnPrint_redirected(msg, __FILE__, __LINE__)
103 void
104 gErrPrint_redirected(const XString &str, const char *file, int line);
105 void
106 gWarnPrint_redirected(const XString &str, const char *file, int line);
107 
108 //! If true, use mlockall MCL_FUTURE.
109 extern bool g_bMLockAlways;
110 //! If true, use mlock.
111 extern bool g_bUseMLock;
112 
113 inline bool isMemLockAvailable() {return g_bUseMLock;}
114 
115 //---------------------------------------------------------------------------
116 #endif

Generated for KAME4 by  doxygen 1.8.3