config.hpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. /*
  2. * Copyright Andrey Semashev 2007 - 2015.
  3. * Distributed under the Boost Software License, Version 1.0.
  4. * (See accompanying file LICENSE_1_0.txt or copy at
  5. * http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. /*!
  8. * \file config.hpp
  9. * \author Andrey Semashev
  10. * \date 08.03.2007
  11. *
  12. * \brief This header is the Boost.Log library implementation, see the library documentation
  13. * at http://www.boost.org/doc/libs/release/libs/log/doc/html/index.html. In this file
  14. * internal configuration macros are defined.
  15. */
  16. #ifndef BOOST_LOG_DETAIL_CONFIG_HPP_INCLUDED_
  17. #define BOOST_LOG_DETAIL_CONFIG_HPP_INCLUDED_
  18. // This check must be before any system headers are included, or __MSVCRT_VERSION__ may get defined to 0x0600
  19. #if defined(__MINGW32__) && !defined(__MSVCRT_VERSION__)
  20. // Target MinGW headers to at least MSVC 7.0 runtime by default. This will enable some useful functions.
  21. #define __MSVCRT_VERSION__ 0x0700
  22. #endif
  23. #include <boost/predef/os.h>
  24. // Try including WinAPI config as soon as possible so that any other headers don't include Windows SDK headers
  25. #if defined(BOOST_OS_WINDOWS_AVAILABLE)
  26. #include <boost/detail/winapi/config.hpp>
  27. #endif
  28. #include <limits.h> // To bring in libc macros
  29. #include <boost/config.hpp>
  30. // The library requires dynamic_cast in a few places
  31. #if defined(BOOST_NO_RTTI)
  32. # error Boost.Log: RTTI is required by the library
  33. #endif
  34. #if defined(_MSC_VER) && _MSC_VER >= 1600
  35. # define BOOST_LOG_HAS_PRAGMA_DETECT_MISMATCH
  36. #endif
  37. #if defined(BOOST_LOG_HAS_PRAGMA_DETECT_MISMATCH)
  38. #include <boost/preprocessor/stringize.hpp>
  39. #endif
  40. #if !defined(BOOST_WINDOWS)
  41. # ifndef BOOST_LOG_WITHOUT_DEBUG_OUTPUT
  42. # define BOOST_LOG_WITHOUT_DEBUG_OUTPUT
  43. # endif
  44. # ifndef BOOST_LOG_WITHOUT_EVENT_LOG
  45. # define BOOST_LOG_WITHOUT_EVENT_LOG
  46. # endif
  47. #endif
  48. #ifdef BOOST_HAS_PRAGMA_ONCE
  49. #pragma once
  50. #endif
  51. #if defined(BOOST_MSVC)
  52. // For some reason MSVC 9.0 fails to link the library if static integral constants are defined in cpp
  53. # define BOOST_LOG_BROKEN_STATIC_CONSTANTS_LINKAGE
  54. # if _MSC_VER <= 1310
  55. // MSVC 7.1 sometimes fails to match out-of-class template function definitions with
  56. // their declarations if the return type or arguments of the functions involve typename keyword
  57. // and depend on the template parameters.
  58. # define BOOST_LOG_BROKEN_TEMPLATE_DEFINITION_MATCHING
  59. # endif
  60. # if _MSC_VER <= 1400
  61. // Older MSVC versions reject friend declarations for class template specializations
  62. # define BOOST_LOG_BROKEN_FRIEND_TEMPLATE_SPECIALIZATIONS
  63. # endif
  64. # if _MSC_VER <= 1600
  65. // MSVC up to 10.0 attempts to invoke copy constructor when initializing a const reference from rvalue returned from a function.
  66. // This fails when the returned value cannot be copied (only moved):
  67. //
  68. // class base {};
  69. // class derived : public base { BOOST_MOVABLE_BUT_NOT_COPYABLE(derived) };
  70. // derived foo();
  71. // base const& var = foo(); // attempts to call copy constructor of derived
  72. # define BOOST_LOG_BROKEN_REFERENCE_FROM_RVALUE_INIT
  73. # endif
  74. # if !defined(_STLPORT_VERSION)
  75. // MSVC 9.0 mandates packaging of STL classes, which apparently affects alignment and
  76. // makes alignment_of< T >::value no longer be a power of 2 for types that derive from STL classes.
  77. // This breaks type_with_alignment and everything that relies on it.
  78. // This doesn't happen with non-native STLs, such as STLPort. Strangely, this doesn't show with
  79. // STL classes themselves or most of the user-defined derived classes.
  80. // Not sure if that happens with other MSVC versions.
  81. // See: http://svn.boost.org/trac/boost/ticket/1946
  82. # define BOOST_LOG_BROKEN_STL_ALIGNMENT
  83. # endif
  84. #endif
  85. #if defined(BOOST_INTEL) || defined(__SUNPRO_CC)
  86. // Intel compiler and Sun Studio 12.3 have problems with friend declarations for nested class templates
  87. # define BOOST_LOG_NO_MEMBER_TEMPLATE_FRIENDS
  88. #endif
  89. #if defined(BOOST_MSVC) && BOOST_MSVC <= 1600
  90. // MSVC cannot interpret constant expressions in certain contexts, such as non-type template parameters
  91. # define BOOST_LOG_BROKEN_CONSTANT_EXPRESSIONS
  92. #endif
  93. #if defined(BOOST_NO_CXX11_HDR_CODECVT)
  94. // The compiler does not support std::codecvt<char16_t> and std::codecvt<char32_t> specializations.
  95. // The BOOST_NO_CXX11_HDR_CODECVT means there's no usable <codecvt>, which is slightly different from this macro.
  96. // But in order for <codecvt> to be implemented the std::codecvt specializations have to be implemented as well.
  97. # define BOOST_LOG_NO_CXX11_CODECVT_FACETS
  98. #endif
  99. #if defined(__CYGWIN__)
  100. // Boost.ASIO is broken on Cygwin
  101. # define BOOST_LOG_NO_ASIO
  102. #endif
  103. #if !defined(BOOST_LOG_USE_NATIVE_SYSLOG) && defined(BOOST_LOG_NO_ASIO)
  104. # ifndef BOOST_LOG_WITHOUT_SYSLOG
  105. # define BOOST_LOG_WITHOUT_SYSLOG
  106. # endif
  107. #endif
  108. #if defined(__GNUC__) && (__GNUC__ == 4 && __GNUC_MINOR__ <= 2)
  109. // GCC 4.1 and 4.2 have buggy anonymous namespaces support, which interferes with symbol linkage
  110. # define BOOST_LOG_ANONYMOUS_NAMESPACE namespace anonymous {} using namespace anonymous; namespace anonymous
  111. #else
  112. # define BOOST_LOG_ANONYMOUS_NAMESPACE namespace
  113. #endif
  114. #if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) || (defined(__GNUC__) && (__GNUC__ == 4 && __GNUC_MINOR__ <= 6))
  115. // GCC up to 4.6 (inclusively) did not support expanding template argument packs into non-variadic template arguments
  116. #define BOOST_LOG_NO_CXX11_ARG_PACKS_TO_NON_VARIADIC_ARGS_EXPANSION
  117. #endif
  118. #if defined(_MSC_VER)
  119. # define BOOST_LOG_NO_VTABLE __declspec(novtable)
  120. #elif defined(__GNUC__)
  121. # define BOOST_LOG_NO_VTABLE
  122. #else
  123. # define BOOST_LOG_NO_VTABLE
  124. #endif
  125. // An MS-like compilers' extension that allows to optimize away the needless code
  126. #if defined(_MSC_VER)
  127. # define BOOST_LOG_ASSUME(expr) __assume(expr)
  128. #else
  129. # define BOOST_LOG_ASSUME(expr)
  130. #endif
  131. // The statement marking unreachable branches of code to avoid warnings
  132. #if defined(BOOST_CLANG)
  133. # if __has_builtin(__builtin_unreachable)
  134. # define BOOST_LOG_UNREACHABLE() __builtin_unreachable()
  135. # endif
  136. #elif defined(__GNUC__)
  137. # if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
  138. # define BOOST_LOG_UNREACHABLE() __builtin_unreachable()
  139. # endif
  140. #elif defined(_MSC_VER)
  141. # define BOOST_LOG_UNREACHABLE() __assume(0)
  142. #endif
  143. #if !defined(BOOST_LOG_UNREACHABLE)
  144. # define BOOST_LOG_UNREACHABLE()
  145. # define BOOST_LOG_UNREACHABLE_RETURN(r) return r
  146. #else
  147. # define BOOST_LOG_UNREACHABLE_RETURN(r) BOOST_LOG_UNREACHABLE()
  148. #endif
  149. // Some compilers support a special attribute that shows that a function won't return
  150. #if defined(__GNUC__) || (defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x590)
  151. // GCC and Sun Studio 12 support attribute syntax
  152. # define BOOST_LOG_NORETURN __attribute__((noreturn))
  153. #elif defined (_MSC_VER)
  154. // Microsoft-compatible compilers go here
  155. # define BOOST_LOG_NORETURN __declspec(noreturn)
  156. #else
  157. // The rest compilers might emit bogus warnings about missing return statements
  158. // in functions with non-void return types when throw_exception is used.
  159. # define BOOST_LOG_NORETURN
  160. #endif
  161. // GCC and compatible compilers may require marking types that may alias other types
  162. #if defined(__GNUC__)
  163. # define BOOST_LOG_MAY_ALIAS __attribute__ ((__may_alias__))
  164. #else
  165. # define BOOST_LOG_MAY_ALIAS
  166. #endif
  167. #if !defined(BOOST_LOG_BUILDING_THE_LIB)
  168. // Detect if we're dealing with dll
  169. # if defined(BOOST_LOG_DYN_LINK) || defined(BOOST_ALL_DYN_LINK)
  170. # define BOOST_LOG_DLL
  171. # endif
  172. # if defined(BOOST_LOG_DLL)
  173. # define BOOST_LOG_API BOOST_SYMBOL_IMPORT
  174. # else
  175. # define BOOST_LOG_API
  176. # endif
  177. //
  178. // Automatically link to the correct build variant where possible.
  179. //
  180. # if !defined(BOOST_ALL_NO_LIB)
  181. # if !defined(BOOST_LOG_NO_LIB)
  182. # define BOOST_LIB_NAME boost_log
  183. # if defined(BOOST_LOG_DLL)
  184. # define BOOST_DYN_LINK
  185. # endif
  186. # include <boost/config/auto_link.hpp>
  187. # endif
  188. // In static-library builds compilers ignore auto-link comments from Boost.Log binary to
  189. // other Boost libraries. We explicitly add comments here for other libraries.
  190. // In dynamic-library builds this is not needed.
  191. # if !defined(BOOST_LOG_DLL)
  192. # include <boost/system/config.hpp>
  193. # include <boost/filesystem/config.hpp>
  194. # if !defined(BOOST_DATE_TIME_NO_LIB) && !defined(BOOST_DATE_TIME_SOURCE)
  195. # define BOOST_LIB_NAME boost_date_time
  196. # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_DATE_TIME_DYN_LINK)
  197. # define BOOST_DYN_LINK
  198. # endif
  199. # include <boost/config/auto_link.hpp>
  200. # endif
  201. // Boost.Thread's config is included below, if needed
  202. # endif
  203. # endif // auto-linking disabled
  204. #else // !defined(BOOST_LOG_BUILDING_THE_LIB)
  205. # if defined(BOOST_LOG_DLL)
  206. # define BOOST_LOG_API BOOST_SYMBOL_EXPORT
  207. # else
  208. # define BOOST_LOG_API BOOST_SYMBOL_VISIBLE
  209. # endif
  210. #endif // !defined(BOOST_LOG_BUILDING_THE_LIB)
  211. // By default we provide support for both char and wchar_t
  212. #if !defined(BOOST_LOG_WITHOUT_CHAR)
  213. # define BOOST_LOG_USE_CHAR
  214. #endif
  215. #if !defined(BOOST_LOG_WITHOUT_WCHAR_T)
  216. # define BOOST_LOG_USE_WCHAR_T
  217. #endif
  218. #if !defined(BOOST_LOG_DOXYGEN_PASS)
  219. // Check if multithreading is supported
  220. # if !defined(BOOST_LOG_NO_THREADS) && !defined(BOOST_HAS_THREADS)
  221. # define BOOST_LOG_NO_THREADS
  222. # endif // !defined(BOOST_LOG_NO_THREADS) && !defined(BOOST_HAS_THREADS)
  223. #endif // !defined(BOOST_LOG_DOXYGEN_PASS)
  224. #if !defined(BOOST_LOG_NO_THREADS)
  225. // We need this header to (i) enable auto-linking with Boost.Thread and
  226. // (ii) to bring in configuration macros of Boost.Thread.
  227. # include <boost/thread/detail/config.hpp>
  228. #endif // !defined(BOOST_LOG_NO_THREADS)
  229. #if !defined(BOOST_LOG_NO_THREADS)
  230. # define BOOST_LOG_EXPR_IF_MT(expr) expr
  231. #else
  232. # undef BOOST_LOG_USE_COMPILER_TLS
  233. # define BOOST_LOG_EXPR_IF_MT(expr)
  234. #endif // !defined(BOOST_LOG_NO_THREADS)
  235. #if defined(BOOST_LOG_USE_COMPILER_TLS)
  236. # if defined(__GNUC__) || defined(__SUNPRO_CC)
  237. # define BOOST_LOG_TLS __thread
  238. # elif defined(BOOST_MSVC)
  239. # define BOOST_LOG_TLS __declspec(thread)
  240. # else
  241. # undef BOOST_LOG_USE_COMPILER_TLS
  242. # endif
  243. #endif // defined(BOOST_LOG_USE_COMPILER_TLS)
  244. #ifndef BOOST_LOG_CPU_CACHE_LINE_SIZE
  245. //! The macro defines the CPU cache line size for the target architecture. This is mostly used for optimization.
  246. #define BOOST_LOG_CPU_CACHE_LINE_SIZE 64
  247. #endif
  248. namespace boost {
  249. // Setup namespace name
  250. #if !defined(BOOST_LOG_DOXYGEN_PASS)
  251. # if defined(BOOST_LOG_DLL)
  252. # if defined(BOOST_LOG_NO_THREADS)
  253. # define BOOST_LOG_VERSION_NAMESPACE v2_st
  254. # else
  255. # if defined(BOOST_THREAD_PLATFORM_PTHREAD)
  256. # define BOOST_LOG_VERSION_NAMESPACE v2_mt_posix
  257. # elif defined(BOOST_THREAD_PLATFORM_WIN32)
  258. # if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  259. # define BOOST_LOG_VERSION_NAMESPACE v2_mt_nt6
  260. # else
  261. # define BOOST_LOG_VERSION_NAMESPACE v2_mt_nt5
  262. # endif
  263. # else
  264. # define BOOST_LOG_VERSION_NAMESPACE v2_mt
  265. # endif
  266. # endif // defined(BOOST_LOG_NO_THREADS)
  267. # else
  268. # if defined(BOOST_LOG_NO_THREADS)
  269. # define BOOST_LOG_VERSION_NAMESPACE v2s_st
  270. # else
  271. # if defined(BOOST_THREAD_PLATFORM_PTHREAD)
  272. # define BOOST_LOG_VERSION_NAMESPACE v2s_mt_posix
  273. # elif defined(BOOST_THREAD_PLATFORM_WIN32)
  274. # if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  275. # define BOOST_LOG_VERSION_NAMESPACE v2s_mt_nt6
  276. # else
  277. # define BOOST_LOG_VERSION_NAMESPACE v2s_mt_nt5
  278. # endif
  279. # else
  280. # define BOOST_LOG_VERSION_NAMESPACE v2s_mt
  281. # endif
  282. # endif // defined(BOOST_LOG_NO_THREADS)
  283. # endif // defined(BOOST_LOG_DLL)
  284. namespace log {
  285. # if !defined(BOOST_NO_CXX11_INLINE_NAMESPACES)
  286. inline namespace BOOST_LOG_VERSION_NAMESPACE {}
  287. }
  288. # define BOOST_LOG_OPEN_NAMESPACE namespace log { inline namespace BOOST_LOG_VERSION_NAMESPACE {
  289. # define BOOST_LOG_CLOSE_NAMESPACE }}
  290. # else
  291. namespace BOOST_LOG_VERSION_NAMESPACE {}
  292. using namespace BOOST_LOG_VERSION_NAMESPACE
  293. # if defined(__GNUC__) && (__GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) && !defined(__clang__)
  294. __attribute__((__strong__))
  295. # endif
  296. ;
  297. }
  298. # define BOOST_LOG_OPEN_NAMESPACE namespace log { namespace BOOST_LOG_VERSION_NAMESPACE {
  299. # define BOOST_LOG_CLOSE_NAMESPACE }}
  300. # endif
  301. #else // !defined(BOOST_LOG_DOXYGEN_PASS)
  302. namespace log {}
  303. # define BOOST_LOG_OPEN_NAMESPACE namespace log {
  304. # define BOOST_LOG_CLOSE_NAMESPACE }
  305. #endif // !defined(BOOST_LOG_DOXYGEN_PASS)
  306. #if defined(BOOST_LOG_HAS_PRAGMA_DETECT_MISMATCH)
  307. #pragma detect_mismatch("boost_log_abi", BOOST_PP_STRINGIZE(BOOST_LOG_VERSION_NAMESPACE))
  308. #endif
  309. } // namespace boost
  310. #endif // BOOST_LOG_DETAIL_CONFIG_HPP_INCLUDED_