config.hpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. /*
  2. *
  3. * Copyright (c) 1998-2002
  4. * John Maddock
  5. *
  6. * Use, modification and distribution are subject to the
  7. * Boost Software License, Version 1.0. (See accompanying file
  8. * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. *
  10. */
  11. /*
  12. * LOCATION: see http://www.boost.org for most recent version.
  13. * FILE config.hpp
  14. * VERSION see <boost/version.hpp>
  15. * DESCRIPTION: regex extended config setup.
  16. */
  17. #ifndef BOOST_REGEX_CONFIG_HPP
  18. #define BOOST_REGEX_CONFIG_HPP
  19. /*
  20. * Borland C++ Fix/error check
  21. * this has to go *before* we include any std lib headers:
  22. */
  23. #if defined(__BORLANDC__)
  24. # include <boost/regex/config/borland.hpp>
  25. #endif
  26. #include <boost/version.hpp>
  27. /*****************************************************************************
  28. *
  29. * Include all the headers we need here:
  30. *
  31. ****************************************************************************/
  32. #ifdef __cplusplus
  33. # ifndef BOOST_REGEX_USER_CONFIG
  34. # define BOOST_REGEX_USER_CONFIG <boost/regex/user.hpp>
  35. # endif
  36. # include BOOST_REGEX_USER_CONFIG
  37. # include <boost/config.hpp>
  38. # include <boost/predef.h>
  39. #else
  40. /*
  41. * C build,
  42. * don't include <boost/config.hpp> because that may
  43. * do C++ specific things in future...
  44. */
  45. # include <stdlib.h>
  46. # include <stddef.h>
  47. # ifdef _MSC_VER
  48. # define BOOST_MSVC _MSC_VER
  49. # endif
  50. #endif
  51. /*****************************************************************************
  52. *
  53. * Boilerplate regex config options:
  54. *
  55. ****************************************************************************/
  56. /* Obsolete macro, use BOOST_VERSION instead: */
  57. #define BOOST_RE_VERSION 320
  58. /* fix: */
  59. #if defined(_UNICODE) && !defined(UNICODE)
  60. #define UNICODE
  61. #endif
  62. /*
  63. * Define a macro for the namespace that details are placed in, this includes the Boost
  64. * version number to avoid mismatched header and library versions:
  65. */
  66. #define BOOST_REGEX_DETAIL_NS BOOST_JOIN(re_detail_, BOOST_VERSION)
  67. /*
  68. * Fix for gcc prior to 3.4: std::ctype<wchar_t> doesn't allow
  69. * masks to be combined, for example:
  70. * std::use_facet<std::ctype<wchar_t> >.is(std::ctype_base::lower|std::ctype_base::upper, L'a');
  71. * returns *false*.
  72. */
  73. #ifdef __GLIBCPP__
  74. # define BOOST_REGEX_BUGGY_CTYPE_FACET
  75. #endif
  76. /*
  77. * Intel C++ before 8.0 ends up with unresolved externals unless we turn off
  78. * extern template support:
  79. */
  80. #if defined(BOOST_INTEL) && defined(__cplusplus) && (BOOST_INTEL <= 800)
  81. # define BOOST_REGEX_NO_EXTERNAL_TEMPLATES
  82. #endif
  83. /*
  84. * Visual C++ doesn't support external templates with C++ extensions turned off:
  85. */
  86. #if defined(_MSC_VER) && !defined(_MSC_EXTENSIONS)
  87. # define BOOST_REGEX_NO_EXTERNAL_TEMPLATES
  88. #endif
  89. /*
  90. * Oracle compiler in C++11 mode doesn't like external templates for some reason:
  91. */
  92. #ifdef __SUNPRO_CC
  93. # define BOOST_REGEX_NO_EXTERNAL_TEMPLATES
  94. #endif
  95. /*
  96. * Shared regex lib will crash without this, frankly it looks a lot like a gcc bug:
  97. */
  98. #if defined(__MINGW32__)
  99. # define BOOST_REGEX_NO_EXTERNAL_TEMPLATES
  100. #endif
  101. /*
  102. * If there isn't good enough wide character support then there will
  103. * be no wide character regular expressions:
  104. */
  105. #if (defined(BOOST_NO_CWCHAR) || defined(BOOST_NO_CWCTYPE) || defined(BOOST_NO_STD_WSTRING))
  106. # if !defined(BOOST_NO_WREGEX)
  107. # define BOOST_NO_WREGEX
  108. # endif
  109. #else
  110. # if defined(__sgi) && (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION))
  111. /* STLPort on IRIX is misconfigured: <cwctype> does not compile
  112. * as a temporary fix include <wctype.h> instead and prevent inclusion
  113. * of STLPort version of <cwctype> */
  114. # include <wctype.h>
  115. # define __STLPORT_CWCTYPE
  116. # define _STLP_CWCTYPE
  117. # endif
  118. #ifdef __cplusplus
  119. # include <boost/regex/config/cwchar.hpp>
  120. #endif
  121. #endif
  122. /*
  123. * If Win32 support has been disabled for boost in general, then
  124. * it is for regex in particular:
  125. */
  126. #if defined(BOOST_DISABLE_WIN32) && !defined(BOOST_REGEX_NO_W32)
  127. # define BOOST_REGEX_NO_W32
  128. #endif
  129. /* disable our own file-iterators and mapfiles if we can't
  130. * support them: */
  131. #if defined(_WIN32)
  132. # if defined(BOOST_REGEX_NO_W32) || BOOST_PLAT_WINDOWS_RUNTIME
  133. # define BOOST_REGEX_NO_FILEITER
  134. # endif
  135. #else // defined(_WIN32)
  136. # if !defined(BOOST_HAS_DIRENT_H)
  137. # define BOOST_REGEX_NO_FILEITER
  138. # endif
  139. #endif
  140. /* backwards compatibitity: */
  141. #if defined(BOOST_RE_NO_LIB)
  142. # define BOOST_REGEX_NO_LIB
  143. #endif
  144. #if defined(__GNUC__) && (defined(_WIN32) || defined(__CYGWIN__))
  145. /* gcc on win32 has problems if you include <windows.h>
  146. (sporadically generates bad code). */
  147. # define BOOST_REGEX_NO_W32
  148. #endif
  149. #if defined(__COMO__) && !defined(BOOST_REGEX_NO_W32) && !defined(_MSC_EXTENSIONS)
  150. # define BOOST_REGEX_NO_W32
  151. #endif
  152. /*****************************************************************************
  153. *
  154. * Wide character workarounds:
  155. *
  156. ****************************************************************************/
  157. /*
  158. * define BOOST_REGEX_HAS_OTHER_WCHAR_T when wchar_t is a native type, but the users
  159. * code may be built with wchar_t as unsigned short: basically when we're building
  160. * with MSVC and the /Zc:wchar_t option we place some extra unsigned short versions
  161. * of the non-inline functions in the library, so that users can still link to the lib,
  162. * irrespective of whether their own code is built with /Zc:wchar_t.
  163. * Note that this does NOT WORK with VC10 and VC14 when the C++ locale is in effect as
  164. * the locale's <unsigned short> facets simply do not compile in that case.
  165. * As we default to the C++ locale when compiling for the windows runtime we
  166. * skip in this case aswell.
  167. */
  168. #if defined(__cplusplus) && \
  169. (defined(BOOST_MSVC) || defined(__ICL)) && \
  170. !defined(BOOST_NO_INTRINSIC_WCHAR_T) && \
  171. defined(BOOST_WINDOWS) && \
  172. !defined(__SGI_STL_PORT) && \
  173. !defined(_STLPORT_VERSION) && \
  174. !defined(BOOST_RWSTD_VER) && \
  175. ((_MSC_VER < 1600) || !defined(BOOST_REGEX_USE_CPP_LOCALE)) && \
  176. !BOOST_PLAT_WINDOWS_RUNTIME
  177. # define BOOST_REGEX_HAS_OTHER_WCHAR_T
  178. # ifdef BOOST_MSVC
  179. # pragma warning(push)
  180. # pragma warning(disable : 4251 4231)
  181. # if BOOST_MSVC < 1600
  182. # pragma warning(disable : 4660)
  183. # endif
  184. # endif
  185. # if defined(_DLL) && defined(BOOST_MSVC) && (BOOST_MSVC < 1600)
  186. # include <string>
  187. extern template class __declspec(dllimport) std::basic_string<unsigned short>;
  188. # endif
  189. # ifdef BOOST_MSVC
  190. # pragma warning(pop)
  191. # endif
  192. #endif
  193. /*****************************************************************************
  194. *
  195. * Set up dll import/export options:
  196. *
  197. ****************************************************************************/
  198. #ifndef BOOST_SYMBOL_EXPORT
  199. # define BOOST_SYMBOL_EXPORT
  200. # define BOOST_SYMBOL_IMPORT
  201. #endif
  202. #if (defined(BOOST_REGEX_DYN_LINK) || defined(BOOST_ALL_DYN_LINK)) && !defined(BOOST_REGEX_STATIC_LINK)
  203. # if defined(BOOST_REGEX_SOURCE)
  204. # define BOOST_REGEX_DECL BOOST_SYMBOL_EXPORT
  205. # define BOOST_REGEX_BUILD_DLL
  206. # else
  207. # define BOOST_REGEX_DECL BOOST_SYMBOL_IMPORT
  208. # endif
  209. #else
  210. # define BOOST_REGEX_DECL
  211. #endif
  212. #if !defined(BOOST_REGEX_NO_LIB) && !defined(BOOST_REGEX_SOURCE) && !defined(BOOST_ALL_NO_LIB) && defined(__cplusplus)
  213. # define BOOST_LIB_NAME boost_regex
  214. # if defined(BOOST_REGEX_DYN_LINK) || defined(BOOST_ALL_DYN_LINK)
  215. # define BOOST_DYN_LINK
  216. # endif
  217. # ifdef BOOST_REGEX_DIAG
  218. # define BOOST_LIB_DIAGNOSTIC
  219. # endif
  220. # include <boost/config/auto_link.hpp>
  221. #endif
  222. /*****************************************************************************
  223. *
  224. * Set up function call type:
  225. *
  226. ****************************************************************************/
  227. #if defined(BOOST_MSVC) && defined(_MSC_EXTENSIONS)
  228. #if defined(_DEBUG) || defined(__MSVC_RUNTIME_CHECKS) || defined(_MANAGED) || defined(BOOST_REGEX_NO_FASTCALL)
  229. # define BOOST_REGEX_CALL __cdecl
  230. #else
  231. # define BOOST_REGEX_CALL __fastcall
  232. #endif
  233. # define BOOST_REGEX_CCALL __cdecl
  234. #endif
  235. #if defined(__BORLANDC__) && !defined(BOOST_DISABLE_WIN32)
  236. # define BOOST_REGEX_CALL __fastcall
  237. # define BOOST_REGEX_CCALL __stdcall
  238. #endif
  239. #ifndef BOOST_REGEX_CALL
  240. # define BOOST_REGEX_CALL
  241. #endif
  242. #ifndef BOOST_REGEX_CCALL
  243. #define BOOST_REGEX_CCALL
  244. #endif
  245. /*****************************************************************************
  246. *
  247. * Set up localisation model:
  248. *
  249. ****************************************************************************/
  250. /* backwards compatibility: */
  251. #ifdef BOOST_RE_LOCALE_C
  252. # define BOOST_REGEX_USE_C_LOCALE
  253. #endif
  254. #ifdef BOOST_RE_LOCALE_CPP
  255. # define BOOST_REGEX_USE_CPP_LOCALE
  256. #endif
  257. #if defined(__CYGWIN__)
  258. # define BOOST_REGEX_USE_C_LOCALE
  259. #endif
  260. /* use C++ locale when targeting windows store */
  261. #if BOOST_PLAT_WINDOWS_RUNTIME
  262. # define BOOST_REGEX_USE_CPP_LOCALE
  263. # define BOOST_REGEX_NO_WIN32_LOCALE
  264. #endif
  265. /* Win32 defaults to native Win32 locale: */
  266. #if defined(_WIN32) && \
  267. !defined(BOOST_REGEX_USE_WIN32_LOCALE) && \
  268. !defined(BOOST_REGEX_USE_C_LOCALE) && \
  269. !defined(BOOST_REGEX_USE_CPP_LOCALE) && \
  270. !defined(BOOST_REGEX_NO_W32) && \
  271. !defined(BOOST_REGEX_NO_WIN32_LOCALE)
  272. # define BOOST_REGEX_USE_WIN32_LOCALE
  273. #endif
  274. /* otherwise use C++ locale if supported: */
  275. #if !defined(BOOST_REGEX_USE_WIN32_LOCALE) && !defined(BOOST_REGEX_USE_C_LOCALE) && !defined(BOOST_REGEX_USE_CPP_LOCALE) && !defined(BOOST_NO_STD_LOCALE)
  276. # define BOOST_REGEX_USE_CPP_LOCALE
  277. #endif
  278. /* otherwise use C+ locale: */
  279. #if !defined(BOOST_REGEX_USE_WIN32_LOCALE) && !defined(BOOST_REGEX_USE_C_LOCALE) && !defined(BOOST_REGEX_USE_CPP_LOCALE)
  280. # define BOOST_REGEX_USE_C_LOCALE
  281. #endif
  282. #ifndef BOOST_REGEX_MAX_STATE_COUNT
  283. # define BOOST_REGEX_MAX_STATE_COUNT 100000000
  284. #endif
  285. /*****************************************************************************
  286. *
  287. * Error Handling for exception free compilers:
  288. *
  289. ****************************************************************************/
  290. #ifdef BOOST_NO_EXCEPTIONS
  291. /*
  292. * If there are no exceptions then we must report critical-errors
  293. * the only way we know how; by terminating.
  294. */
  295. #include <stdexcept>
  296. #include <string>
  297. #include <boost/throw_exception.hpp>
  298. # define BOOST_REGEX_NOEH_ASSERT(x)\
  299. if(0 == (x))\
  300. {\
  301. std::string s("Error: critical regex++ failure in: ");\
  302. s.append(#x);\
  303. std::runtime_error e(s);\
  304. boost::throw_exception(e);\
  305. }
  306. #else
  307. /*
  308. * With exceptions then error handling is taken care of and
  309. * there is no need for these checks:
  310. */
  311. # define BOOST_REGEX_NOEH_ASSERT(x)
  312. #endif
  313. /*****************************************************************************
  314. *
  315. * Stack protection under MS Windows:
  316. *
  317. ****************************************************************************/
  318. #if !defined(BOOST_REGEX_NO_W32) && !defined(BOOST_REGEX_V3)
  319. # if(defined(_WIN32) || defined(_WIN64) || defined(_WINCE)) \
  320. && !defined(__GNUC__) \
  321. && !(defined(__BORLANDC__) && (__BORLANDC__ >= 0x600)) \
  322. && !(defined(__MWERKS__) && (__MWERKS__ <= 0x3003))
  323. # define BOOST_REGEX_HAS_MS_STACK_GUARD
  324. # endif
  325. #elif defined(BOOST_REGEX_HAS_MS_STACK_GUARD)
  326. # undef BOOST_REGEX_HAS_MS_STACK_GUARD
  327. #endif
  328. #if defined(__cplusplus) && defined(BOOST_REGEX_HAS_MS_STACK_GUARD)
  329. namespace boost{
  330. namespace BOOST_REGEX_DETAIL_NS{
  331. BOOST_REGEX_DECL void BOOST_REGEX_CALL reset_stack_guard_page();
  332. }
  333. }
  334. #endif
  335. /*****************************************************************************
  336. *
  337. * Algorithm selection and configuration:
  338. *
  339. ****************************************************************************/
  340. #if !defined(BOOST_REGEX_RECURSIVE) && !defined(BOOST_REGEX_NON_RECURSIVE)
  341. # if defined(BOOST_REGEX_HAS_MS_STACK_GUARD) && !defined(_STLP_DEBUG) && !defined(__STL_DEBUG) && !(defined(BOOST_MSVC) && (BOOST_MSVC >= 1400))
  342. # define BOOST_REGEX_RECURSIVE
  343. # else
  344. # define BOOST_REGEX_NON_RECURSIVE
  345. # endif
  346. #endif
  347. #ifdef BOOST_REGEX_NON_RECURSIVE
  348. # ifdef BOOST_REGEX_RECURSIVE
  349. # error "Can't set both BOOST_REGEX_RECURSIVE and BOOST_REGEX_NON_RECURSIVE"
  350. # endif
  351. # ifndef BOOST_REGEX_BLOCKSIZE
  352. # define BOOST_REGEX_BLOCKSIZE 4096
  353. # endif
  354. # if BOOST_REGEX_BLOCKSIZE < 512
  355. # error "BOOST_REGEX_BLOCKSIZE must be at least 512"
  356. # endif
  357. # ifndef BOOST_REGEX_MAX_BLOCKS
  358. # define BOOST_REGEX_MAX_BLOCKS 1024
  359. # endif
  360. # ifdef BOOST_REGEX_HAS_MS_STACK_GUARD
  361. # undef BOOST_REGEX_HAS_MS_STACK_GUARD
  362. # endif
  363. # ifndef BOOST_REGEX_MAX_CACHE_BLOCKS
  364. # define BOOST_REGEX_MAX_CACHE_BLOCKS 16
  365. # endif
  366. #endif
  367. /*****************************************************************************
  368. *
  369. * helper memory allocation functions:
  370. *
  371. ****************************************************************************/
  372. #if defined(__cplusplus) && defined(BOOST_REGEX_NON_RECURSIVE)
  373. namespace boost{ namespace BOOST_REGEX_DETAIL_NS{
  374. BOOST_REGEX_DECL void* BOOST_REGEX_CALL get_mem_block();
  375. BOOST_REGEX_DECL void BOOST_REGEX_CALL put_mem_block(void*);
  376. }} /* namespaces */
  377. #endif
  378. /*****************************************************************************
  379. *
  380. * Diagnostics:
  381. *
  382. ****************************************************************************/
  383. #ifdef BOOST_REGEX_CONFIG_INFO
  384. BOOST_REGEX_DECL void BOOST_REGEX_CALL print_regex_library_info();
  385. #endif
  386. #if defined(BOOST_REGEX_DIAG)
  387. # pragma message ("BOOST_REGEX_DECL" BOOST_STRINGIZE(=BOOST_REGEX_DECL))
  388. # pragma message ("BOOST_REGEX_CALL" BOOST_STRINGIZE(=BOOST_REGEX_CALL))
  389. # pragma message ("BOOST_REGEX_CCALL" BOOST_STRINGIZE(=BOOST_REGEX_CCALL))
  390. #ifdef BOOST_REGEX_USE_C_LOCALE
  391. # pragma message ("Using C locale in regex traits class")
  392. #elif BOOST_REGEX_USE_CPP_LOCALE
  393. # pragma message ("Using C++ locale in regex traits class")
  394. #else
  395. # pragma message ("Using Win32 locale in regex traits class")
  396. #endif
  397. #if defined(BOOST_REGEX_DYN_LINK) || defined(BOOST_ALL_DYN_LINK)
  398. # pragma message ("Dynamic linking enabled")
  399. #endif
  400. #if defined(BOOST_REGEX_NO_LIB) || defined(BOOST_ALL_NO_LIB)
  401. # pragma message ("Auto-linking disabled")
  402. #endif
  403. #ifdef BOOST_REGEX_NO_EXTERNAL_TEMPLATES
  404. # pragma message ("Extern templates disabled")
  405. #endif
  406. #endif
  407. #endif