scope_exit.hpp 53 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415
  1. // Copyright (C) 2006-2009, 2012 Alexander Nasonov
  2. // Copyright (C) 2012 Lorenzo Caminiti
  3. // Distributed under the Boost Software License, Version 1.0
  4. // (see accompanying file LICENSE_1_0.txt or a copy at
  5. // http://www.boost.org/LICENSE_1_0.txt)
  6. // Home at http://www.boost.org/libs/scope_exit
  7. #ifndef FILE_boost_scope_exit_hpp_INCLUDED
  8. #define FILE_boost_scope_exit_hpp_INCLUDED
  9. #ifndef DOXYGEN
  10. #include <boost/detail/workaround.hpp>
  11. #include <boost/mpl/assert.hpp>
  12. #include <boost/mpl/int.hpp>
  13. #include <boost/utility/enable_if.hpp>
  14. #include <boost/function.hpp>
  15. #include <boost/typeof/typeof.hpp>
  16. #include <boost/config.hpp>
  17. #include <boost/preprocessor/cat.hpp>
  18. #include <boost/preprocessor/control/iif.hpp>
  19. #include <boost/preprocessor/control/expr_iif.hpp>
  20. #include <boost/preprocessor/comparison/equal.hpp>
  21. #include <boost/preprocessor/logical/bitor.hpp>
  22. #include <boost/preprocessor/logical/bitand.hpp>
  23. #include <boost/preprocessor/facilities/empty.hpp>
  24. #include <boost/preprocessor/facilities/is_empty.hpp>
  25. #include <boost/preprocessor/facilities/identity.hpp>
  26. #include <boost/preprocessor/punctuation/comma_if.hpp>
  27. #include <boost/preprocessor/punctuation/paren_if.hpp>
  28. #include <boost/preprocessor/seq/cat.hpp>
  29. #include <boost/preprocessor/seq/size.hpp>
  30. #include <boost/preprocessor/seq/to_tuple.hpp>
  31. #include <boost/preprocessor/tuple/elem.hpp>
  32. #include <boost/preprocessor/tuple/eat.hpp>
  33. #include <boost/preprocessor/tuple/to_list.hpp>
  34. #include <boost/preprocessor/list/append.hpp>
  35. #include <boost/preprocessor/list/fold_left.hpp>
  36. #include <boost/preprocessor/list/enum.hpp>
  37. #include <boost/preprocessor/list/adt.hpp>
  38. #include <boost/preprocessor/list/for_each_i.hpp>
  39. #include <boost/preprocessor/detail/is_unary.hpp>
  40. // PRIVATE/PROTECTED //
  41. // NOTE: AUX prefix and aux namespace mark "private" symbols that shall be used
  42. // only within this library; DETAIL prefix and detail namespace mark "protected"
  43. // symbols that can be used by other Boost libraries but not outside Boost.
  44. // WARNING: BOOST_SCOPE_EXIT_AUX_GCC also used by some regression test.
  45. #if defined(__GNUC__) && !defined(BOOST_INTEL)
  46. # define BOOST_SCOPE_EXIT_AUX_GCC (__GNUC__ * 100 + __GNUC_MINOR__)
  47. #else
  48. # define BOOST_SCOPE_EXIT_AUX_GCC 0
  49. #endif
  50. #if BOOST_WORKAROUND(BOOST_SCOPE_EXIT_AUX_GCC, BOOST_TESTED_AT(413))
  51. # define BOOST_SCOPE_EXIT_AUX_TPL_GCC_WORKAROUND_01 1
  52. #else
  53. # define BOOST_SCOPE_EXIT_AUX_TPL_GCC_WORKAROUND_01 0
  54. #endif
  55. #if BOOST_MSVC
  56. # define BOOST_SCOPE_EXIT_AUX_TYPEOF_THIS_MSVC_WORKAROUND_01 1
  57. #else
  58. # define BOOST_SCOPE_EXIT_AUX_TYPEOF_THIS_MSVC_WORKAROUND_01 0
  59. #endif
  60. // MSVC has problems expanding __LINE__ so use (the non standard) __COUNTER__.
  61. #ifdef BOOST_MSVC
  62. # define BOOST_SCOPE_EXIT_AUX_PP_LINE_COUNTER __COUNTER__
  63. #else
  64. # define BOOST_SCOPE_EXIT_AUX_PP_LINE_COUNTER __LINE__
  65. #endif
  66. // Preprocessor "keyword" detection.
  67. // These are not a local macros, do not #undefine them (these are used by the
  68. // ..._BACK macros below).
  69. #define this_BOOST_SCOPE_EXIT_AUX_PP_KEYWORD_THISUNDERSCORE_IS (1) /* unary */
  70. #define void_BOOST_SCOPE_EXIT_AUX_PP_KEYWORD_VOID_IS (1) /* unary */
  71. #define BOOST_SCOPE_EXIT_AUX_PP_KEYWORD_IS_BACK_(token, checking_postfix) \
  72. BOOST_PP_IS_UNARY(BOOST_PP_CAT(token, checking_postfix))
  73. #define BOOST_SCOPE_EXIT_AUX_PP_KEYWORD_IS_THISUNDERSCORE_BACK(token) \
  74. BOOST_SCOPE_EXIT_AUX_PP_KEYWORD_IS_BACK_(token, \
  75. BOOST_SCOPE_EXIT_AUX_PP_KEYWORD_THISUNDERSCORE_IS)
  76. #define BOOST_SCOPE_EXIT_AUX_PP_KEYWORD_IS_VOID_BACK(token) \
  77. BOOST_SCOPE_EXIT_AUX_PP_KEYWORD_IS_BACK_(token, \
  78. _BOOST_SCOPE_EXIT_AUX_PP_KEYWORD_VOID_IS)
  79. // Preprocessor "void-list".
  80. // NOTE: Empty list must always be represented as void (which is also a way to
  81. // specify no function parameter) and it can never be empty because (1)
  82. // IS_EMPTY(&var) fails (because of the leading non alphanumeric symbol) and
  83. // (2) some compilers (MSVC) fail to correctly pass empty macro parameters
  84. // even if they support variadic macros. Therefore, always using void to
  85. // represent is more portable.
  86. // Argument: (token1)...
  87. #define BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_FROM_SEQ_(unused, seq) \
  88. BOOST_PP_TUPLE_TO_LIST(BOOST_PP_SEQ_SIZE(seq), BOOST_PP_SEQ_TO_TUPLE(seq))
  89. // Token: void | token1
  90. #define BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_HANDLE_VOID_( \
  91. is_void_macro, token) \
  92. BOOST_PP_IIF(is_void_macro(token), \
  93. BOOST_PP_NIL \
  94. , \
  95. (token, BOOST_PP_NIL) \
  96. )
  97. // Token: (a)(b)... | empty | void | token
  98. #define BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_HANDLE_SEQ_( \
  99. is_void_macro, token) \
  100. BOOST_PP_IIF(BOOST_PP_IS_UNARY(token), /* unary paren (a)... */ \
  101. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_FROM_SEQ_ \
  102. , \
  103. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_HANDLE_VOID_ \
  104. )(is_void_macro, token)
  105. #define BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_NEVER_(tokens) \
  106. 0 /* void check always returns false */
  107. #ifdef BOOST_NO_CXX11_VARIADIC_MACROS
  108. #define BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_(is_void_macro, seq) \
  109. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_HANDLE_SEQ_(is_void_macro, seq)
  110. // Expand `void | (a)(b)...` to pp-list `NIL | (a, (b, NIL))`.
  111. #define BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST(sign) \
  112. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_( \
  113. BOOST_SCOPE_EXIT_AUX_PP_KEYWORD_IS_VOID_BACK, sign)
  114. // Expand `(a)(b)...` to pp-list `(a, (b, NIL))`.
  115. #define BOOST_SCOPE_EXIT_AUX_PP_NON_VOID_LIST(seq) \
  116. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_( \
  117. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_NEVER_, seq)
  118. #else // VARIADICS
  119. // FUTURE: Replace this with BOOST_PP_VARIADIC_SIZE when and if
  120. // BOOST_PP_VARIAIDCS detection will match !BOOST_NO_CXX11_VARIADIC_MACROS (for
  121. // now Boost.Preprocessor and Boost.Config disagree on detecting compiler
  122. // variadic support while this VARIADIC_SIZE works on compilers not detected by
  123. // PP).
  124. #if BOOST_MSVC
  125. # define BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_VARIADIC_SIZE_(...) \
  126. BOOST_PP_CAT(BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_VARIADIC_SIZE_I_(__VA_ARGS__, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1,),)
  127. #else // MSVC
  128. # define BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_VARIADIC_SIZE_(...) \
  129. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_VARIADIC_SIZE_I_(__VA_ARGS__, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1,)
  130. #endif // MSVC
  131. #define BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_VARIADIC_SIZE_I_(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11, e12, e13, e14, e15, e16, e17, e18, e19, e20, e21, e22, e23, e24, e25, e26, e27, e28, e29, e30, e31, e32, e33, e34, e35, e36, e37, e38, e39, e40, e41, e42, e43, e44, e45, e46, e47, e48, e49, e50, e51, e52, e53, e54, e55, e56, e57, e58, e59, e60, e61, e62, e63, size, ...) size
  132. // Argument: token1, ...
  133. #define BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_FROM_VARIADIC_(unused, ...) \
  134. BOOST_PP_TUPLE_TO_LIST( \
  135. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_VARIADIC_SIZE_( \
  136. __VA_ARGS__), (__VA_ARGS__))
  137. #define BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_(is_void_macro, ...) \
  138. BOOST_PP_IIF(BOOST_PP_EQUAL( \
  139. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_VARIADIC_SIZE_( \
  140. __VA_ARGS__), 1), \
  141. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_HANDLE_SEQ_ \
  142. , \
  143. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_FROM_VARIADIC_ \
  144. )(is_void_macro, __VA_ARGS__)
  145. // Expand `void | (a)(b)... | a, b, ...` to pp-list `NIL | (a, (b, NIL))`.
  146. #define BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST(...) \
  147. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_( \
  148. BOOST_SCOPE_EXIT_AUX_PP_KEYWORD_IS_VOID_BACK, __VA_ARGS__)
  149. // Expand `(a)(b)... | a, b, ...` to pp-list `(a, (b, NIL))`.
  150. #define BOOST_SCOPE_EXIT_AUX_PP_NON_VOID_LIST(...) \
  151. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_( \
  152. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST_NEVER_, __VA_ARGS__)
  153. #endif // VARIADICS
  154. // Steven Watanabe's trick with a modification suggested by Kim Barrett
  155. namespace boost { namespace scope_exit { namespace detail {
  156. // Type of a local BOOST_SCOPE_EXIT_AUX_ARGS variable.
  157. // First use in a local scope will declare the BOOST_SCOPE_EXIT_AUX_ARGS
  158. // variable, subsequent uses will be resolved as two comparisons
  159. // (cmp1 with 0 and cmp2 with BOOST_SCOPE_EXIT_AUX_ARGS).
  160. template<int Dummy = 0>
  161. struct declared
  162. {
  163. void* value;
  164. static int const cmp2 = 0;
  165. friend void operator>(int, declared const&) {}
  166. };
  167. struct undeclared { declared<> dummy[2]; };
  168. template<int> struct resolve;
  169. template<>
  170. struct resolve<sizeof(declared<>)>
  171. {
  172. static const int cmp1 = 0;
  173. };
  174. template<>
  175. struct resolve<sizeof(undeclared)>
  176. {
  177. template<int>
  178. struct cmp1
  179. {
  180. static int const cmp2 = 0;
  181. };
  182. };
  183. typedef void (*ref_tag)(int&);
  184. typedef void (*val_tag)(int );
  185. template<class T, class Tag> struct member;
  186. template<class T>
  187. struct member<T,ref_tag>
  188. {
  189. T& value;
  190. #if !BOOST_SCOPE_EXIT_AUX_TPL_GCC_WORKAROUND_01
  191. member(T& ref) : value(ref) {}
  192. #endif
  193. };
  194. template<class T>
  195. struct member<T,val_tag>
  196. {
  197. T value;
  198. #if !BOOST_SCOPE_EXIT_AUX_TPL_GCC_WORKAROUND_01
  199. member(T& val) : value(val) {}
  200. #endif
  201. };
  202. template<class T> inline T& deref(T* p, ref_tag) { return *p; }
  203. template<class T> inline T& deref(T& r, val_tag) { return r; }
  204. template<class T>
  205. struct wrapper
  206. {
  207. typedef T type;
  208. };
  209. template<class T> wrapper<T> wrap(T&);
  210. } } } // namespace
  211. #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
  212. BOOST_TYPEOF_REGISTER_TEMPLATE(boost::scope_exit::detail::wrapper, 1)
  213. #define BOOST_SCOPE_EXIT_AUX_ARGS boost_scope_exit_aux_args
  214. extern boost::scope_exit::detail::undeclared BOOST_SCOPE_EXIT_AUX_ARGS;
  215. #define BOOST_SCOPE_EXIT_AUX_GUARD(id) \
  216. BOOST_PP_CAT(boost_se_guard_, id)
  217. #define BOOST_SCOPE_EXIT_AUX_GUARD_T(id) \
  218. BOOST_PP_CAT(boost_se_guard_t_, id)
  219. #define BOOST_SCOPE_EXIT_AUX_PARAMS(id) \
  220. BOOST_PP_CAT(boost_se_params_, id)
  221. #define BOOST_SCOPE_EXIT_AUX_THIS_T(id) \
  222. BOOST_PP_CAT(boost_se_this_t_, id)
  223. #define BOOST_SCOPE_EXIT_AUX_THIS_CAPTURE_T(id) \
  224. BOOST_PP_CAT(boost_se_this_capture_t_, id)
  225. #define BOOST_SCOPE_EXIT_DETAIL_PARAMS_T(id) \
  226. BOOST_PP_CAT(boost_se_params_t_, id)
  227. #define BOOST_SCOPE_EXIT_DETAIL_TAG(id, i) \
  228. BOOST_PP_SEQ_CAT( (boost_se_tag_)(i)(_)(id) )
  229. #define BOOST_SCOPE_EXIT_DETAIL_PARAM_THIS(id) \
  230. BOOST_PP_SEQ_CAT( (boost_se_param_this_)(id) )
  231. #define BOOST_SCOPE_EXIT_DETAIL_PARAM(id, i, var) \
  232. BOOST_PP_SEQ_CAT( (boost_se_param_)(i)(_)(id) )
  233. #define BOOST_SCOPE_EXIT_DETAIL_PARAM_T(id, i, var) \
  234. BOOST_PP_SEQ_CAT( (boost_se_param_t_)(i)(_)(id) )
  235. #define BOOST_SCOPE_EXIT_DETAIL_CAPTURE_T(id, i, var) \
  236. BOOST_PP_SEQ_CAT( (boost_se_capture_t_)(i)(_)(id) )
  237. #define BOOST_SCOPE_EXIT_AUX_WRAPPED(id, i) \
  238. BOOST_PP_SEQ_CAT( (boost_se_wrapped_t_)(i)(_)(id) )
  239. #define BOOST_SCOPE_EXIT_AUX_DEREF(id, i, var) \
  240. ::boost::scope_exit::detail::deref(var, \
  241. static_cast<BOOST_SCOPE_EXIT_DETAIL_TAG(id, i)>(0))
  242. #define BOOST_SCOPE_EXIT_AUX_MEMBER(r, id, i, var) \
  243. ::boost::scope_exit::detail::member< \
  244. BOOST_SCOPE_EXIT_DETAIL_PARAM_T(id, i, var), \
  245. BOOST_SCOPE_EXIT_DETAIL_TAG(id, i) \
  246. > BOOST_SCOPE_EXIT_DETAIL_PARAM(id, i, var);
  247. #define BOOST_SCOPE_EXIT_AUX_ARG_DECL(r, id_ty, i, var) \
  248. BOOST_PP_COMMA_IF(i) \
  249. BOOST_PP_TUPLE_ELEM(2, 1, id_ty) \
  250. BOOST_SCOPE_EXIT_DETAIL_PARAMS_T(BOOST_PP_TUPLE_ELEM(2, 0, id_ty)):: \
  251. BOOST_SCOPE_EXIT_DETAIL_PARAM_T(BOOST_PP_TUPLE_ELEM(2, 0, id_ty), \
  252. i, var) \
  253. var
  254. #define BOOST_SCOPE_EXIT_AUX_ARG(r, id, i, var) \
  255. BOOST_PP_COMMA_IF(i) \
  256. boost_se_params_->BOOST_SCOPE_EXIT_DETAIL_PARAM(id, i, var).value
  257. #define BOOST_SCOPE_EXIT_DETAIL_TAG_DECL(r, id, i, var) \
  258. typedef void (*BOOST_SCOPE_EXIT_DETAIL_TAG(id, i))(int var);
  259. // Adam Butcher's workaround to deduce `this` type on MSVC revision < 10.
  260. // Boost.Typeof for VC71's typeid-based workaround does not work to determine
  261. // `this` type due to error C2355 being incorrectly reported. The typical
  262. // avoidance strategy implemented below is to make an indirect compile-time
  263. // constant by assigning an enum and use that as type-index-- this only works
  264. // with the sizeof() approach and not with the typeid() approach. Lorenzo
  265. // Caminiti extended this approach to work in type-of emulation mode. This code
  266. // is very similar (and somewhat of a duplication) of the code in
  267. // boost/typeof/msvc/typeof_impl.hpp). However, this code cannot be integrated
  268. // into Boost.Typeof because its final API has to be a `typedef ...` and it
  269. // cannot be a `typeof(...)`.
  270. #if BOOST_SCOPE_EXIT_AUX_TYPEOF_THIS_MSVC_WORKAROUND_01
  271. #include <boost/config.hpp>
  272. #include <boost/detail/workaround.hpp>
  273. #include <boost/mpl/int.hpp>
  274. #include <boost/type_traits/is_function.hpp>
  275. #include <boost/utility/enable_if.hpp>
  276. #if defined(BOOST_MSVC)
  277. # include <typeinfo>
  278. #endif
  279. namespace boost { namespace scope_exit { namespace aux {
  280. namespace msvc_typeof_this {
  281. // compile-time constant code
  282. #if defined(BOOST_MSVC) && defined(_MSC_EXTENSIONS)
  283. template<int N> struct the_counter;
  284. template<typename T,int N = 5 /* for similarity */>
  285. struct encode_counter {
  286. __if_exists(the_counter<N + 256>) {
  287. BOOST_STATIC_CONSTANT(unsigned,
  288. count=(encode_counter<T,N + 257>::count));
  289. }
  290. __if_not_exists(the_counter<N + 256>) {
  291. __if_exists(the_counter<N + 64>) {
  292. BOOST_STATIC_CONSTANT(unsigned,
  293. count=(encode_counter<T,N + 65>::count));
  294. }
  295. __if_not_exists(the_counter<N + 64>) {
  296. __if_exists(the_counter<N + 16>) {
  297. BOOST_STATIC_CONSTANT(unsigned,
  298. count=(encode_counter<T,N + 17>::count));
  299. }
  300. __if_not_exists(the_counter<N + 16>) {
  301. __if_exists(the_counter<N + 4>) {
  302. BOOST_STATIC_CONSTANT(unsigned,
  303. count=(encode_counter<T,N + 5>::count));
  304. }
  305. __if_not_exists(the_counter<N + 4>) {
  306. __if_exists(the_counter<N>) {
  307. BOOST_STATIC_CONSTANT(unsigned,
  308. count=(encode_counter<T,N + 1>::count));
  309. }
  310. __if_not_exists(the_counter<N>) {
  311. BOOST_STATIC_CONSTANT(unsigned,count=N);
  312. typedef the_counter<N> type;
  313. }
  314. }
  315. }
  316. }
  317. }
  318. };
  319. #else // compile-time constant code
  320. template<int N> struct encode_counter : encode_counter<N - 1> {};
  321. template<> struct encode_counter<0> {};
  322. #endif // compile-time constant code
  323. #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) // type-of code
  324. struct msvc_extract_type_default_param {};
  325. template<typename ID, typename T = msvc_extract_type_default_param>
  326. struct msvc_extract_type;
  327. template<typename ID>
  328. struct msvc_extract_type<ID, msvc_extract_type_default_param> {
  329. template<bool>
  330. struct id2type_impl;
  331. typedef id2type_impl<true> id2type;
  332. };
  333. template<typename ID, typename T>
  334. struct msvc_extract_type
  335. : msvc_extract_type<ID, msvc_extract_type_default_param> {
  336. template<>
  337. struct id2type_impl<true> { // VC8.0 specific bug-feature.
  338. typedef T type;
  339. };
  340. template<bool>
  341. struct id2type_impl;
  342. typedef id2type_impl<true> id2type;
  343. };
  344. template<typename T, typename ID>
  345. struct msvc_register_type : msvc_extract_type<ID, T> {};
  346. #else // type-of code
  347. template<typename ID>
  348. struct msvc_extract_type {
  349. struct id2type;
  350. };
  351. template<typename T, typename ID>
  352. struct msvc_register_type : msvc_extract_type<ID> {
  353. typedef msvc_extract_type<ID> base_type;
  354. struct base_type::id2type { // This uses nice VC6.5 and VC7.1 bug-features.
  355. typedef T type;
  356. };
  357. };
  358. #endif // typeof code
  359. template<int Id>
  360. struct msvc_typeid_wrapper {
  361. typedef typename msvc_extract_type<boost::mpl::int_<Id>
  362. >::id2type id2type;
  363. typedef typename id2type::type type;
  364. };
  365. template<>
  366. struct msvc_typeid_wrapper<4> {
  367. typedef msvc_typeid_wrapper<4> type;
  368. };
  369. template<typename T>
  370. struct encode_type {
  371. BOOST_STATIC_CONSTANT(unsigned, value = encode_counter<T>::count);
  372. typedef typename msvc_register_type<T,
  373. boost::mpl::int_<value> >::id2type type;
  374. BOOST_STATIC_CONSTANT(unsigned, next = value + 1);
  375. };
  376. template<class T>
  377. struct sizer {
  378. typedef char(*type)[encode_type<T>::value];
  379. };
  380. template<typename T>
  381. typename boost::disable_if<
  382. typename boost::is_function<T>::type
  383. , typename sizer<T>::type
  384. >::type encode_start(T const&);
  385. template<typename T>
  386. typename boost::enable_if<
  387. typename boost::is_function<T>::type
  388. , typename sizer<T>::type
  389. >::type encode_start(T&);
  390. template<typename Organizer, typename T>
  391. msvc_register_type<T, Organizer> typeof_register_type(const T&,
  392. Organizer* = 0);
  393. } } } } // namespace
  394. #define BOOST_SCOPE_EXIT_AUX_TYPEDEF_TYPEOF_THIS_INDEX_(id) \
  395. BOOST_PP_CAT(boost_se_thistype_index_, id)
  396. #define BOOST_SCOPE_EXIT_DETAIL_TYPEDEF_TYPEOF_THIS(id, ty, new_type) \
  397. /* unfortunately, we need to go via this enum which causes this to be */ \
  398. /* a typedef construct and not a typeof (so this code cannot be */ \
  399. /* integrated into Boost.Typeof) */ \
  400. enum { \
  401. BOOST_SCOPE_EXIT_AUX_TYPEDEF_TYPEOF_THIS_INDEX_(id) = sizeof( \
  402. *::boost::scope_exit::aux::msvc_typeof_this::encode_start(this)) \
  403. }; \
  404. typedef \
  405. ty ::boost::scope_exit::aux::msvc_typeof_this::msvc_typeid_wrapper< \
  406. BOOST_SCOPE_EXIT_AUX_TYPEDEF_TYPEOF_THIS_INDEX_(id) \
  407. >::type \
  408. new_type \
  409. ;
  410. #else // TYPEOF_THIS_MSVC_WORKAROUND
  411. #define BOOST_SCOPE_EXIT_DETAIL_TYPEDEF_TYPEOF_THIS(id, ty, new_type) \
  412. typedef /* trailing `EMPTY()` handles empty `ty` */ \
  413. BOOST_PP_IIF(BOOST_PP_IS_EMPTY(ty BOOST_PP_EMPTY()), \
  414. BOOST_TYPEOF \
  415. , \
  416. BOOST_TYPEOF_TPL \
  417. )(this) \
  418. new_type \
  419. ;
  420. #endif // TYPEOF_THIS_MSVC_WORKAROUND
  421. #if BOOST_SCOPE_EXIT_AUX_TPL_GCC_WORKAROUND_01
  422. #define BOOST_SCOPE_EXIT_AUX_PARAMS_T_CTOR(id, ty, captures, has_this) \
  423. /* expand to nothing */
  424. #define BOOST_SCOPE_EXIT_DETAIL_PARAM_INIT(r, id, i, var) \
  425. BOOST_PP_COMMA_IF(i) { BOOST_SCOPE_EXIT_AUX_DEREF(id, i, var) }
  426. #define BOOST_SCOPE_EXIT_AUX_PARAMS_INIT(id, captures, has_this) \
  427. BOOST_PP_EXPR_IIF(BOOST_PP_BITOR(has_this, \
  428. BOOST_PP_LIST_IS_CONS(captures)), \
  429. = { \
  430. ) \
  431. BOOST_PP_LIST_FOR_EACH_I(BOOST_SCOPE_EXIT_DETAIL_PARAM_INIT, id, captures) \
  432. BOOST_PP_COMMA_IF(BOOST_PP_BITAND(BOOST_PP_LIST_IS_CONS(captures), \
  433. has_this)) \
  434. BOOST_PP_EXPR_IIF(has_this, this) /* no extra {...} needed here */ \
  435. BOOST_PP_EXPR_IIF(BOOST_PP_BITOR(has_this, \
  436. BOOST_PP_LIST_IS_CONS(captures)), \
  437. } /* trailing `;` will be added by the caller */ \
  438. )
  439. #else // TPL_GCC_WORKAROUND
  440. #define BOOST_SCOPE_EXIT_AUX_CTOR_ARG(r, id, i, var) \
  441. BOOST_PP_COMMA_IF(i) \
  442. BOOST_SCOPE_EXIT_DETAIL_PARAM_T(id, i, var) & BOOST_PP_CAT(a, i)
  443. #define BOOST_SCOPE_EXIT_AUX_MEMBER_INIT(r, id, i, var) \
  444. BOOST_PP_COMMA_IF(i) \
  445. BOOST_SCOPE_EXIT_DETAIL_PARAM(id, i, var) ( BOOST_PP_CAT(a, i) )
  446. #define BOOST_SCOPE_EXIT_AUX_CTOR_ARG_THIS_NAME(id) \
  447. BOOST_PP_CAT(boost_se_this_arg_, id)
  448. #define BOOST_SCOPE_EXIT_AUX_CTOR_ARG_THIS(id, ty, comma01) \
  449. BOOST_PP_COMMA_IF(comma01) \
  450. ty BOOST_SCOPE_EXIT_DETAIL_PARAMS_T(id)::BOOST_SCOPE_EXIT_AUX_THIS_T(id) \
  451. BOOST_SCOPE_EXIT_AUX_CTOR_ARG_THIS_NAME(id) /* ptr so no & */
  452. #define BOOST_SCOPE_EXIT_AUX_MEMBER_THIS_INIT(id, comma01) \
  453. BOOST_PP_COMMA_IF(comma01) \
  454. BOOST_SCOPE_EXIT_DETAIL_PARAM_THIS(id)( \
  455. BOOST_SCOPE_EXIT_AUX_CTOR_ARG_THIS_NAME(id))
  456. #define BOOST_SCOPE_EXIT_AUX_PARAMS_T_CTOR(id, ty, captures, has_this) \
  457. BOOST_SCOPE_EXIT_DETAIL_PARAMS_T(id)( \
  458. BOOST_PP_LIST_FOR_EACH_I(BOOST_SCOPE_EXIT_AUX_CTOR_ARG, id, captures) \
  459. BOOST_PP_IIF(has_this, \
  460. BOOST_SCOPE_EXIT_AUX_CTOR_ARG_THIS \
  461. , \
  462. BOOST_PP_TUPLE_EAT(3) \
  463. )(id, ty, BOOST_PP_LIST_IS_CONS(captures)) \
  464. ) \
  465. BOOST_PP_EXPR_IIF(BOOST_PP_BITOR(BOOST_PP_LIST_IS_CONS(captures), \
  466. has_this), \
  467. : \
  468. ) \
  469. BOOST_PP_LIST_FOR_EACH_I(BOOST_SCOPE_EXIT_AUX_MEMBER_INIT, id, \
  470. captures) \
  471. BOOST_PP_IIF(has_this, \
  472. BOOST_SCOPE_EXIT_AUX_MEMBER_THIS_INIT \
  473. , \
  474. BOOST_PP_TUPLE_EAT(2) \
  475. )(id, BOOST_PP_LIST_IS_CONS(captures)) \
  476. {}
  477. #define BOOST_SCOPE_EXIT_DETAIL_PARAM_INIT(r, id, i, var) \
  478. BOOST_PP_COMMA_IF(i) BOOST_SCOPE_EXIT_AUX_DEREF(id,i,var)
  479. #define BOOST_SCOPE_EXIT_AUX_PARAMS_INIT(id, captures, has_this) \
  480. BOOST_PP_LPAREN_IF(BOOST_PP_BITOR(has_this, \
  481. BOOST_PP_LIST_IS_CONS(captures))) \
  482. BOOST_PP_LIST_FOR_EACH_I(BOOST_SCOPE_EXIT_DETAIL_PARAM_INIT, id, captures) \
  483. BOOST_PP_COMMA_IF(BOOST_PP_BITAND(BOOST_PP_LIST_IS_CONS(captures), \
  484. has_this)) \
  485. BOOST_PP_EXPR_IIF(has_this, this) \
  486. BOOST_PP_RPAREN_IF(BOOST_PP_BITOR(has_this, \
  487. BOOST_PP_LIST_IS_CONS(captures)))
  488. #endif // TPL_GCC_WORKAROUND
  489. #if defined(BOOST_TYPEOF_EMULATION)
  490. #define BOOST_SCOPE_EXIT_DETAIL_CAPTURE_DECL(r, id_ty, i, var) \
  491. struct BOOST_SCOPE_EXIT_AUX_WRAPPED(BOOST_PP_TUPLE_ELEM(2, 0, id_ty), i) \
  492. /* no need to use TYPEOF_TPL here because it's within inheritance */ \
  493. : BOOST_TYPEOF(::boost::scope_exit::detail::wrap( \
  494. BOOST_SCOPE_EXIT_AUX_DEREF(BOOST_PP_TUPLE_ELEM(2, 0, id_ty), \
  495. i, var))) \
  496. {}; \
  497. typedef BOOST_PP_TUPLE_ELEM(2, 1, id_ty) \
  498. BOOST_SCOPE_EXIT_AUX_WRAPPED(BOOST_PP_TUPLE_ELEM(2, 0, id_ty), i)::type\
  499. BOOST_SCOPE_EXIT_DETAIL_CAPTURE_T(BOOST_PP_TUPLE_ELEM(2, 0, id_ty), \
  500. i, var) \
  501. ;
  502. #elif defined(BOOST_INTEL)
  503. #define BOOST_SCOPE_EXIT_DETAIL_CAPTURE_DECL(r, id_ty, i, var) \
  504. typedef \
  505. /* no TYPEOF_TPL here because uses TYPEOF_KEYWORD directly */ \
  506. BOOST_TYPEOF_KEYWORD(BOOST_SCOPE_EXIT_AUX_DEREF( \
  507. BOOST_PP_TUPLE_ELEM(2, 0, id_ty), i, var)) \
  508. BOOST_SCOPE_EXIT_DETAIL_CAPTURE_T(BOOST_PP_TUPLE_ELEM(2, 0, id_ty), \
  509. i, var) \
  510. ;
  511. #else
  512. #define BOOST_SCOPE_EXIT_DETAIL_CAPTURE_DECL(r, id_ty, i, var) \
  513. typedef \
  514. /* no need to use TYPEOF_TPL here because it's a typedef */ \
  515. BOOST_TYPEOF(::boost::scope_exit::detail::wrap( \
  516. BOOST_SCOPE_EXIT_AUX_DEREF(BOOST_PP_TUPLE_ELEM(2, 0, id_ty), \
  517. i, var))) \
  518. BOOST_SCOPE_EXIT_AUX_WRAPPED(BOOST_PP_TUPLE_ELEM(2, 0, id_ty), i) \
  519. ; \
  520. typedef BOOST_PP_TUPLE_ELEM(2, 1, id_ty) \
  521. BOOST_SCOPE_EXIT_AUX_WRAPPED(BOOST_PP_TUPLE_ELEM(2, 0, id_ty), i)::type\
  522. BOOST_SCOPE_EXIT_DETAIL_CAPTURE_T(BOOST_PP_TUPLE_ELEM(2, 0, id_ty), \
  523. i, var) \
  524. ;
  525. #endif
  526. #define BOOST_SCOPE_EXIT_DETAIL_PARAM_DECL(r, id_ty, i, var) \
  527. typedef \
  528. BOOST_SCOPE_EXIT_DETAIL_CAPTURE_T(BOOST_PP_TUPLE_ELEM(2, 0, id_ty), \
  529. i, var) \
  530. BOOST_SCOPE_EXIT_DETAIL_PARAM_T(BOOST_PP_TUPLE_ELEM(2, 0, id_ty), \
  531. i, var) \
  532. ;
  533. // Traits.
  534. #define BOOST_SCOPE_EXIT_AUX_TRAITS_OP_CAPTURE(d, captures, this01, capture) \
  535. (BOOST_PP_LIST_APPEND(captures, (capture, BOOST_PP_NIL)), this01)
  536. #define BOOST_SCOPE_EXIT_AUX_TRAITS_OP_THIS(d, captures, this01, this_) \
  537. (captures, 1 /* has this (note, no error if multiple this_) */)
  538. #define BOOST_SCOPE_EXIT_AUX_TRAITS_OP(d, captures_this, capture) \
  539. BOOST_PP_IIF(BOOST_SCOPE_EXIT_AUX_PP_KEYWORD_IS_THISUNDERSCORE_BACK(\
  540. capture), \
  541. BOOST_SCOPE_EXIT_AUX_TRAITS_OP_THIS \
  542. , \
  543. BOOST_SCOPE_EXIT_AUX_TRAITS_OP_CAPTURE \
  544. )(d, BOOST_PP_TUPLE_ELEM(2, 0, captures_this), \
  545. BOOST_PP_TUPLE_ELEM(2, 1, captures_this), capture)
  546. // ref_val: & | =
  547. #define BOOST_SCOPE_EXIT_AUX_TRAITS_ALL_OP(ref_val, traits) \
  548. ( \
  549. BOOST_PP_LIST_APPEND((ref_val, BOOST_PP_NIL), \
  550. BOOST_SCOPE_EXIT_AUX_TRAITS_CAPTURES(traits)) \
  551. , \
  552. BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits) \
  553. )
  554. #define BOOST_SCOPE_EXIT_AUX_TRAITS(captures) \
  555. BOOST_PP_LIST_FOLD_LEFT(BOOST_SCOPE_EXIT_AUX_TRAITS_OP, \
  556. (BOOST_PP_NIL, 0), captures)
  557. #define BOOST_SCOPE_EXIT_AUX_TRAITS_ALL(captures) \
  558. BOOST_SCOPE_EXIT_AUX_TRAITS_ALL_OP(BOOST_PP_LIST_FIRST(captures), \
  559. BOOST_SCOPE_EXIT_AUX_TRAITS(BOOST_PP_LIST_REST(captures)))
  560. #define BOOST_SCOPE_EXIT_AUX_TRAITS_CAPTURES(traits) \
  561. BOOST_PP_TUPLE_ELEM(2, 0, traits)
  562. #define BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits) \
  563. BOOST_PP_TUPLE_ELEM(2, 1, traits)
  564. #ifndef BOOST_NO_CXX11_LAMBDAS
  565. namespace boost { namespace scope_exit { namespace aux {
  566. template<typename This = void>
  567. struct guard { // With object `this_` (for backward compatibility).
  568. explicit guard(This _this) : this_(_this) {}
  569. ~guard() { if(f_) f_(this_); }
  570. template<typename Lambda>
  571. void operator=(Lambda f) { f_ = f; }
  572. private:
  573. This this_;
  574. boost::function<void (This)> f_;
  575. };
  576. template<>
  577. struct guard<void> { // Without object `this_` (could capture `this` directly).
  578. ~guard() { if(f_) f_(); }
  579. template<typename Lambda>
  580. void operator=(Lambda f) { f_ = f; }
  581. private:
  582. boost::function<void (void)> f_;
  583. };
  584. } } } // namespace
  585. #define BOOST_SCOPE_EXIT_AUX_LAMBDA_PARAMS(id) \
  586. BOOST_PP_CAT(boost_se_lambda_params_, id)
  587. #define BOOST_SCOPE_EXIT_AUX_LAMBDA_THIS_CAPTURE_TYPE(id) \
  588. BOOST_PP_CAT(boost_se_lambda_this_t_, id)
  589. #define BOOST_SCOPE_EXIT_AUX_LAMBDA_THIS_PARAM_TYPE(id) \
  590. BOOST_PP_CAT(boost_se_lambda_this_capture_t_, id)
  591. #define BOOST_SCOPE_EXIT_AUX_LAMBDA_THIS_TYPE(id, ty) \
  592. ty BOOST_SCOPE_EXIT_AUX_LAMBDA_PARAMS(id):: \
  593. BOOST_SCOPE_EXIT_AUX_LAMBDA_THIS_PARAM_TYPE(id)
  594. // Precondition: HAS_THIS(traits).
  595. #define BOOST_SCOPE_EXIT_AUX_LAMBDA_THIS_TYPEDEFS(id, ty, traits) \
  596. BOOST_SCOPE_EXIT_DETAIL_TYPEDEF_TYPEOF_THIS(id, ty, \
  597. BOOST_SCOPE_EXIT_AUX_LAMBDA_THIS_CAPTURE_TYPE(id)) \
  598. /* capture type for workaround GCC internal error (even on later C++11) */ \
  599. struct BOOST_SCOPE_EXIT_AUX_LAMBDA_PARAMS(id) { \
  600. typedef BOOST_SCOPE_EXIT_AUX_LAMBDA_THIS_CAPTURE_TYPE(id) \
  601. BOOST_SCOPE_EXIT_AUX_LAMBDA_THIS_PARAM_TYPE(id); \
  602. };
  603. #define BOOST_SCOPE_EXIT_AUX_IMPL_LAMBDA(id, ty, traits) \
  604. BOOST_PP_IIF(BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits), \
  605. /* no need for TYPEDEF THIS MSVC workaround on C++11 */ \
  606. BOOST_SCOPE_EXIT_AUX_LAMBDA_THIS_TYPEDEFS \
  607. , \
  608. BOOST_PP_TUPLE_EAT(3) \
  609. )(id, ty, traits) \
  610. ::boost::scope_exit::aux::guard< \
  611. BOOST_PP_IIF(BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits), \
  612. BOOST_SCOPE_EXIT_AUX_LAMBDA_THIS_TYPE \
  613. , \
  614. BOOST_PP_TUPLE_EAT(2) \
  615. )(id, ty) \
  616. > BOOST_SCOPE_EXIT_AUX_GUARD(id) \
  617. BOOST_PP_EXPR_IIF(BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits), \
  618. (this) \
  619. ) \
  620. ; \
  621. BOOST_SCOPE_EXIT_AUX_GUARD(id) = [ \
  622. BOOST_PP_LIST_ENUM(BOOST_SCOPE_EXIT_AUX_TRAITS_CAPTURES(traits)) \
  623. ]( \
  624. BOOST_PP_IIF(BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits), \
  625. BOOST_SCOPE_EXIT_AUX_LAMBDA_THIS_TYPE \
  626. , \
  627. BOOST_PP_TUPLE_EAT(2) \
  628. )(id, ty) \
  629. BOOST_PP_EXPR_IIF(BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits), this_) \
  630. ) mutable /* can change value captures (as with SCOPE_EXIT) */ -> void
  631. #endif // Lambdas.
  632. #if defined(BOOST_SCOPE_EXIT_CONFIG_USE_LAMBDAS) && \
  633. !defined(BOOST_NO_CXX11_LAMBDAS) // Use lambda for SCOPE_EXIT (not just _ALL).
  634. #define BOOST_SCOPE_EXIT_AUX_IMPL(id, ty, traits) \
  635. BOOST_SCOPE_EXIT_AUX_IMPL_LAMBDA(id, ty, traits)
  636. #else // Not using lambdas.
  637. // ty: EMPTY() | typename
  638. #define BOOST_SCOPE_EXIT_AUX_IMPL(id, ty, traits) \
  639. BOOST_PP_LIST_FOR_EACH_I(BOOST_SCOPE_EXIT_DETAIL_TAG_DECL, id, \
  640. BOOST_SCOPE_EXIT_AUX_TRAITS_CAPTURES(traits)) \
  641. BOOST_PP_LIST_FOR_EACH_I(BOOST_SCOPE_EXIT_DETAIL_CAPTURE_DECL, (id, ty), \
  642. BOOST_SCOPE_EXIT_AUX_TRAITS_CAPTURES(traits)) \
  643. BOOST_PP_IIF(BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits), \
  644. BOOST_SCOPE_EXIT_DETAIL_TYPEDEF_TYPEOF_THIS \
  645. , \
  646. BOOST_PP_TUPLE_EAT(3) \
  647. )(id, ty, BOOST_SCOPE_EXIT_AUX_THIS_CAPTURE_T(id)) \
  648. struct BOOST_SCOPE_EXIT_DETAIL_PARAMS_T(id) { \
  649. /* interim capture types to workaround internal errors on old GCC */ \
  650. BOOST_PP_LIST_FOR_EACH_I(BOOST_SCOPE_EXIT_DETAIL_PARAM_DECL, (id, ty), \
  651. BOOST_SCOPE_EXIT_AUX_TRAITS_CAPTURES(traits)) \
  652. BOOST_PP_EXPR_IIF(BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits), \
  653. typedef BOOST_SCOPE_EXIT_AUX_THIS_CAPTURE_T(id) \
  654. BOOST_SCOPE_EXIT_AUX_THIS_T(id) ; \
  655. ) \
  656. BOOST_PP_LIST_FOR_EACH_I(BOOST_SCOPE_EXIT_AUX_MEMBER, id, \
  657. BOOST_SCOPE_EXIT_AUX_TRAITS_CAPTURES(traits)) \
  658. BOOST_PP_EXPR_IIF(BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits), \
  659. BOOST_SCOPE_EXIT_AUX_THIS_T(id) \
  660. BOOST_SCOPE_EXIT_DETAIL_PARAM_THIS(id) ; \
  661. ) \
  662. BOOST_SCOPE_EXIT_AUX_PARAMS_T_CTOR(id, ty, \
  663. BOOST_SCOPE_EXIT_AUX_TRAITS_CAPTURES(traits), \
  664. BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits)) \
  665. } BOOST_SCOPE_EXIT_AUX_PARAMS(id) \
  666. BOOST_SCOPE_EXIT_AUX_PARAMS_INIT(id, \
  667. BOOST_SCOPE_EXIT_AUX_TRAITS_CAPTURES(traits), \
  668. BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits)) \
  669. ; \
  670. ::boost::scope_exit::detail::declared< \
  671. ::boost::scope_exit::detail::resolve< \
  672. sizeof(BOOST_SCOPE_EXIT_AUX_ARGS) \
  673. >::cmp1<0>::cmp2 \
  674. > BOOST_SCOPE_EXIT_AUX_ARGS; \
  675. BOOST_SCOPE_EXIT_AUX_ARGS.value = &BOOST_SCOPE_EXIT_AUX_PARAMS(id); \
  676. struct BOOST_SCOPE_EXIT_AUX_GUARD_T(id) { \
  677. BOOST_SCOPE_EXIT_DETAIL_PARAMS_T(id)* boost_se_params_; \
  678. BOOST_SCOPE_EXIT_AUX_GUARD_T(id) (void* boost_se_params) \
  679. : boost_se_params_( \
  680. (BOOST_SCOPE_EXIT_DETAIL_PARAMS_T(id)*)boost_se_params) \
  681. {} \
  682. ~BOOST_SCOPE_EXIT_AUX_GUARD_T(id)() { \
  683. boost_se_body( \
  684. BOOST_PP_LIST_FOR_EACH_I(BOOST_SCOPE_EXIT_AUX_ARG, id, \
  685. BOOST_SCOPE_EXIT_AUX_TRAITS_CAPTURES(traits)) \
  686. BOOST_PP_COMMA_IF(BOOST_PP_BITAND(BOOST_PP_LIST_IS_CONS( \
  687. BOOST_SCOPE_EXIT_AUX_TRAITS_CAPTURES(traits)), \
  688. BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits))) \
  689. BOOST_PP_EXPR_IIF(BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS( \
  690. traits), \
  691. boost_se_params_->BOOST_SCOPE_EXIT_DETAIL_PARAM_THIS(id) \
  692. ) \
  693. ); \
  694. } \
  695. static void boost_se_body( \
  696. BOOST_PP_LIST_FOR_EACH_I(BOOST_SCOPE_EXIT_AUX_ARG_DECL, (id, ty), \
  697. BOOST_SCOPE_EXIT_AUX_TRAITS_CAPTURES(traits)) \
  698. BOOST_PP_COMMA_IF(BOOST_PP_BITAND(BOOST_PP_LIST_IS_CONS( \
  699. BOOST_SCOPE_EXIT_AUX_TRAITS_CAPTURES(traits)), \
  700. BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits))) \
  701. BOOST_PP_EXPR_IIF(BOOST_SCOPE_EXIT_AUX_TRAITS_HAS_THIS(traits), \
  702. ty BOOST_SCOPE_EXIT_DETAIL_PARAMS_T(id):: \
  703. BOOST_SCOPE_EXIT_AUX_THIS_T(id) this_ \
  704. ) \
  705. )
  706. #endif // Using lambdas.
  707. // PUBLIC //
  708. #if defined(BOOST_NO_CXX11_VARIADIC_MACROS) // No variadic macros (sequences only).
  709. # define BOOST_SCOPE_EXIT_ID(id, void_or_seq) \
  710. BOOST_SCOPE_EXIT_AUX_IMPL(id, BOOST_PP_EMPTY(), \
  711. BOOST_SCOPE_EXIT_AUX_TRAITS( \
  712. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST(void_or_seq)))
  713. # define BOOST_SCOPE_EXIT_ID_TPL(id, void_or_seq) \
  714. BOOST_SCOPE_EXIT_AUX_IMPL(id, typename, \
  715. BOOST_SCOPE_EXIT_AUX_TRAITS( \
  716. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST(void_or_seq)))
  717. # define BOOST_SCOPE_EXIT(void_or_seq) \
  718. BOOST_SCOPE_EXIT_ID(BOOST_SCOPE_EXIT_AUX_PP_LINE_COUNTER, \
  719. void_or_seq)
  720. # define BOOST_SCOPE_EXIT_TPL(void_or_seq) \
  721. BOOST_SCOPE_EXIT_ID_TPL(BOOST_SCOPE_EXIT_AUX_PP_LINE_COUNTER, \
  722. void_or_seq)
  723. # if !defined(BOOST_NO_CXX11_LAMBDAS)
  724. # define BOOST_SCOPE_EXIT_ALL_ID(id, seq) \
  725. BOOST_SCOPE_EXIT_AUX_IMPL_LAMBDA(id, \
  726. /* C++11 allows to use typename outside templates so */ \
  727. /* always typename here and no need for ..._ALL_TPL */ \
  728. /* (if a C++11 compiler does not implement this use of */ \
  729. /* typename, always use `this` instead of `this_`) */ \
  730. typename, \
  731. BOOST_SCOPE_EXIT_AUX_TRAITS_ALL( \
  732. BOOST_SCOPE_EXIT_AUX_PP_NON_VOID_LIST(seq)))
  733. # define BOOST_SCOPE_EXIT_ALL(seq) \
  734. BOOST_SCOPE_EXIT_ALL_ID( \
  735. BOOST_SCOPE_EXIT_AUX_PP_LINE_COUNTER, seq)
  736. # endif
  737. #else // Variadic macros (both sequences and variadic tuples).
  738. # define BOOST_SCOPE_EXIT_ID(id, ...) \
  739. BOOST_SCOPE_EXIT_AUX_IMPL(id, BOOST_PP_EMPTY(), \
  740. BOOST_SCOPE_EXIT_AUX_TRAITS( \
  741. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST(__VA_ARGS__)))
  742. # define BOOST_SCOPE_EXIT_ID_TPL(id, ...) \
  743. BOOST_SCOPE_EXIT_AUX_IMPL(id, typename, \
  744. BOOST_SCOPE_EXIT_AUX_TRAITS( \
  745. BOOST_SCOPE_EXIT_AUX_PP_VOID_LIST(__VA_ARGS__)))
  746. # define BOOST_SCOPE_EXIT(...) \
  747. BOOST_SCOPE_EXIT_ID(BOOST_SCOPE_EXIT_AUX_PP_LINE_COUNTER, \
  748. __VA_ARGS__)
  749. # define BOOST_SCOPE_EXIT_TPL(...) \
  750. BOOST_SCOPE_EXIT_ID_TPL(BOOST_SCOPE_EXIT_AUX_PP_LINE_COUNTER, \
  751. __VA_ARGS__)
  752. # if !defined(BOOST_NO_CXX11_LAMBDAS)
  753. # define BOOST_SCOPE_EXIT_ALL_ID(id, ...) \
  754. BOOST_SCOPE_EXIT_AUX_IMPL_LAMBDA(id, \
  755. /* C++11 allows to use typename outside templates so */ \
  756. /* always typename here and no need for ..._ALL_TPL */ \
  757. /* (if a C++11 compiler does not implement this use of */ \
  758. /* typename, always use `this` instead of `this_`) */ \
  759. typename, \
  760. BOOST_SCOPE_EXIT_AUX_TRAITS_ALL( \
  761. BOOST_SCOPE_EXIT_AUX_PP_NON_VOID_LIST( \
  762. __VA_ARGS__)))
  763. # define BOOST_SCOPE_EXIT_ALL(...) \
  764. BOOST_SCOPE_EXIT_ALL_ID( \
  765. BOOST_SCOPE_EXIT_AUX_PP_LINE_COUNTER, __VA_ARGS__)
  766. # endif
  767. #endif // Variadics.
  768. #if defined(BOOST_SCOPE_EXIT_CONFIG_USE_LAMBDAS) && \
  769. !defined(BOOST_NO_CXX11_LAMBDAS) // Use lambdas for SCOPE_EXIT (not just ALL).
  770. # define BOOST_SCOPE_EXIT_END_ID(id) \
  771. ; /* lambdas ended with just `;` */
  772. #else // Not using lambdas.
  773. # define BOOST_SCOPE_EXIT_END_ID(id) \
  774. } BOOST_SCOPE_EXIT_AUX_GUARD(id)(BOOST_SCOPE_EXIT_AUX_ARGS.value);
  775. #endif // Using lambdas.
  776. #define BOOST_SCOPE_EXIT_END \
  777. BOOST_SCOPE_EXIT_END_ID(BOOST_SCOPE_EXIT_AUX_PP_LINE_COUNTER)
  778. // DOCUMENTATION //
  779. #else // DOXYGEN
  780. /** @file
  781. @brief Scope exits allow to execute arbitrary code when the enclosing scope
  782. exits.
  783. */
  784. /**
  785. @brief This macro declares a scope exit.
  786. The scope exit declaration schedules the execution of the scope exit body at
  787. the exit of the enclosing scope:
  788. @code
  789. { // Some local scope.
  790. ...
  791. BOOST_SCOPE_EXIT(capture_list) {
  792. ... // Body code.
  793. } BOOST_SCOPE_EXIT_END
  794. ...
  795. }
  796. @endcode
  797. The enclosing scope must be local.
  798. If multiple scope exits are declared within the same enclosing scope, the scope
  799. exit bodies are executed in the reversed order of their declarations.
  800. Note how the end of the scope exit body must be marked by
  801. @RefMacro{BOOST_SCOPE_EXIT_END}.
  802. @Params
  803. @Param{capture_list,
  804. On compilers that support variadic macros (see also Boost.Config
  805. <c>BOOST_NO_CXX11_VARIADIC_MACROS</c>)\, the capture list syntax is defined by the
  806. following grammar:
  807. @code
  808. capture_list:
  809. void | capture_tuple | capture_sequence
  810. capture_tuple:
  811. capture\, capture\, ...
  812. capture_sequence:
  813. (capture) (capture) ...
  814. capture:
  815. [&]variable | this_
  816. @endcode
  817. On compilers that do not support variadic macros\, <c>capture_tuple</c> cannot
  818. be used:
  819. @code
  820. capture_list:
  821. void | capture_sequence
  822. @endcode
  823. Furthermore\, if @RefMacro{BOOST_SCOPE_EXIT_CONFIG_USE_LAMBDAS} is defined on
  824. C++11 compilers that support lambda functions (i.e.\, Boost.Config's <c>BOOST_NO_CXX11_LAMBDAS</c> is not defined) then a semicolon <c>;</c> can be used instead of
  825. @RefMacro{BOOST_SCOPE_EXIT_END} and <c>this</c> can be used instead of
  826. <c>this_</c>:
  827. @code
  828. capture:
  829. [&]variable | this_ | this
  830. @endcode
  831. (Lexical conventions: <c>token1 | token2</c> means either <c>token1</c> or
  832. <c>token2</c>; <c>[token]</c> means either <c>token</c> or nothing;
  833. <c>{expression}</c> means the tokens resulting from the expression.)
  834. }
  835. @EndParams
  836. Note that on compilers that support variadic macros (most of moder compliers
  837. and all C++11 compilers), the capture list can be specified as a
  838. comma-separated list of tokens (this is the preferred syntax).
  839. However, on all compilers the same macro @RefMacro{BOOST_SCOPE_EXIT} also
  840. allows to specify the capture list as a Boost.Preprocessor sequence of tokens
  841. (for supporting compilers without variadic macros and for backward compatibility with older versions of this library).
  842. The name <c>variable</c> of each captured variable must be a valid name in the
  843. enclosing scope and it must appear exactly once in the capture list.
  844. If a capture starts with the ampersand sign <c>&</c>, the corresponding
  845. variable will be available by reference within the scope exit body; otherwise,
  846. a copy of the variable will be made at the point of the scope exit declaration
  847. and that copy will be available inside the scope exit body (in this case, the
  848. variable's type must be <c>CopyConstructible</c>).
  849. From within a member function, the object <c>this</c> can be captured using the
  850. special name <c>this_</c> in both the capture list and the scope exit body
  851. (using <c>this</c> instead of <c>this_</c> in the scope exit body leads to
  852. undefined behaviour).
  853. It is possible to capture no variable by specifying the capture list as
  854. <c>void</c> (regardless of variadic macro support).
  855. Only variables listed in the capture list, static variables, <c>extern</c>
  856. variables, global variables, functions, and enumerations from the enclosing
  857. scope can be used inside the scope exit body.
  858. On various GCC versions the special macro @RefMacro{BOOST_SCOPE_EXIT_TPL} must
  859. be used instead of @RefMacro{BOOST_SCOPE_EXIT} within templates (to maximize
  860. portability, it is recommended to always use @RefMacro{BOOST_SCOPE_EXIT_TPL}
  861. within templates).
  862. On C++11, it is possible capture all variables in scope without listing their
  863. names one-by-one using the macro @RefMacro{BOOST_SCOPE_EXIT_ALL}.
  864. In general, the special macro @RefMacro{BOOST_SCOPE_EXIT_ID} must be used
  865. instead of @RefMacro{BOOST_SCOPE_EXIT} when it is necessary to expand multiple
  866. scope exit declarations on the same line.
  867. @Warning The implementation executes the scope exit body within a destructor
  868. thus the scope exit body must never throw in order to comply with STL exception
  869. safety requirements.
  870. @Note The implementation uses Boost.Typeof to automatically deduce the types of
  871. the captured variables.
  872. In order to compile code in type-of emulation mode, all types must be properly
  873. registered with Boost.Typeof (see the
  874. @RefSect{getting_started, Getting Started} section).
  875. @See @RefSect{tutorial, Tutorial} section,
  876. @RefSect{getting_started, Getting Started} section,
  877. @RefSect{no_variadic_macros, No Variadic Macros} section,
  878. @RefMacro{BOOST_SCOPE_EXIT_TPL}, @RefMacro{BOOST_SCOPE_EXIT_ALL},
  879. @RefMacro{BOOST_SCOPE_EXIT_END}, @RefMacro{BOOST_SCOPE_EXIT_ID}.
  880. */
  881. #define BOOST_SCOPE_EXIT(capture_list)
  882. /**
  883. @brief This macro is a workaround for various versions of GCC to declare scope
  884. exits within templates.
  885. Various versions of the GCC compiler do not compile @RefMacro{BOOST_SCOPE_EXIT}
  886. inside function templates.
  887. As a workaround, @RefMacro{BOOST_SCOPE_EXIT_TPL} should be used instead of
  888. @RefMacro{BOOST_SCOPE_EXIT} in these cases:
  889. @code
  890. { // Some local scope.
  891. ...
  892. BOOST_SCOPE_EXIT_TPL(capture_list) {
  893. ... // Body code.
  894. } BOOST_SCOPE_EXIT_END
  895. ...
  896. }
  897. @endcode
  898. The syntax of @RefMacro{BOOST_SCOPE_EXIT_TPL} is the exact same as the one of
  899. @RefMacro{BOOST_SCOPE_EXIT} (see @RefMacro{BOOST_SCOPE_EXIT} for more
  900. information).
  901. On C++11 compilers, @RefMacro{BOOST_SCOPE_EXIT_TPL} is not needed because
  902. @RefMacro{BOOST_SCOPE_EXIT} always compiles on GCC versions that support C++11.
  903. However, @RefMacro{BOOST_SCOPE_EXIT_TPL} is still provided on C++11 so to write code that is portable between C++03 and C++11 compilers.
  904. It is recommended to always use @RefMacro{BOOST_SCOPE_EXIT_TPL} within
  905. templates so to maximize portability.
  906. In general, the special macro @RefMacro{BOOST_SCOPE_EXIT_ID_TPL} must be used
  907. instead of @RefMacro{BOOST_SCOPE_EXIT_TPL} when it is necessary to expand
  908. multiple scope exit declarations on the same line within templates.
  909. @Note The issue in compiling scope exit declarations that some GCC versions
  910. have is illustrated by the following code (see also
  911. <a href="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37920">GCC bug 37920</a>):
  912. @code
  913. template<class T>
  914. void f(T const& x) {
  915. int i = 0;
  916. struct local {
  917. typedef __typeof__(i) typeof_i;
  918. typedef __typeof__(x) typeof_x;
  919. };
  920. typedef local::typeof_i i_type;
  921. typedef local::typeof_x x_type;
  922. }
  923. int main(void) { f(0); }
  924. @endcode
  925. This can be fixed by adding <c>typename</c> in front of <c>local::typeof_i</c>
  926. and <c>local::typeof_x</c> (which is the approach followed by the
  927. implementation of the @RefMacro{BOOST_SCOPE_EXIT_TPL} macro).
  928. @Note Although @RefMacro{BOOST_SCOPE_EXIT_TPL} has the same suffix as
  929. <c>BOOST_TYPEOF_TPL</c>, it does not follow the Boost.Typeof convention.
  930. @See @RefSect{tutorial, Tutorial} section, @RefMacro{BOOST_SCOPE_EXIT},
  931. @RefMacro{BOOST_SCOPE_EXIT_END}, @RefMacro{BOOST_SCOPE_EXIT_ID_TPL}.
  932. */
  933. #define BOOST_SCOPE_EXIT_TPL(capture_list)
  934. /**
  935. @brief This macro allows to expand multiple scope exit declarations on the same
  936. line.
  937. This macro is equivalent to @RefMacro{BOOST_SCOPE_EXIT} but it can be expanded
  938. multiple times on the same line if different identifiers <c>id</c> are provided
  939. for each expansion (see @RefMacro{BOOST_SCOPE_EXIT} for more information).
  940. @Params
  941. @Param{id,
  942. A unique identifier token which can be concatenated by the preprocessor
  943. (<c>__LINE__</c>\, <c>scope_exit_number_1_on_line_123</c>\, a combination of
  944. alphanumeric tokens\, etc).
  945. }
  946. @Param{capture_list,
  947. Same as the <c>capture_list</c> parameter of the @RefMacro{BOOST_SCOPE_EXIT}
  948. macro.
  949. }
  950. @EndParams
  951. @Note This macro can be useful when the scope exit macros are expanded
  952. within user-defined macros (because nested macros expand on the same line).
  953. On some compilers (e.g., MSVC which supports the non standard
  954. <c>__COUNTER__</c> macro) it might not be necessary to use this macro but
  955. the use of this macro is always necessary to ensure portability when expanding
  956. multiple scope exit declarations on the same line.
  957. @See @RefSect{tutorial, Tutorial} section, @RefMacro{BOOST_SCOPE_EXIT},
  958. @RefMacro{BOOST_SCOPE_EXIT_END_ID}, @RefMacro{BOOST_SCOPE_EXIT_ALL_ID},
  959. @RefMacro{BOOST_SCOPE_EXIT_ID_TPL}.
  960. */
  961. #define BOOST_SCOPE_EXIT_ID(id, capture_list)
  962. /**
  963. @brief This macro is required to expand multiple scope exit declarations on the
  964. same line within templates on various versions of GCC.
  965. This macro is equivalent to @RefMacro{BOOST_SCOPE_EXIT_TPL} but it can be
  966. expanded multiple times on the same line if different identifiers <c>id</c> are
  967. provided for each expansion (see @RefMacro{BOOST_SCOPE_EXIT_TPL} for more
  968. information).
  969. As with @RefMacro{BOOST_SCOPE_EXIT_TPL}, it is recommended to always use this
  970. macro when expanding scope exits multiple times on the same line within
  971. templates.
  972. @Params
  973. @Param{id,
  974. A unique identifier token which can be concatenated by the preprocessor
  975. (<c>__LINE__</c>\, <c>scope_exit_number_1_on_line_123</c>\, a combination of
  976. alphanumeric tokens\, etc).
  977. }
  978. @Param{capture_list,
  979. Same as the <c>capture_list</c> parameter of the
  980. @RefMacro{BOOST_SCOPE_EXIT_TPL} macro.
  981. }
  982. @EndParams
  983. @Note This macro can be useful when the scope exit macros are expanded
  984. within user-defined macros (because nested macros expand on the same line).
  985. On some compilers (e.g., MSVC which supports the non standard
  986. <c>__COUNTER__</c> macro) it might not be necessary to use this macro but
  987. the use of this macro is always necessary to ensure portability when expanding
  988. multiple scope exit declarations on the same line.
  989. @See @RefSect{tutorial, Tutorial} section, @RefMacro{BOOST_SCOPE_EXIT_TPL},
  990. @RefMacro{BOOST_SCOPE_EXIT_END_ID}, @RefMacro{BOOST_SCOPE_EXIT_ID},
  991. @RefMacro{BOOST_SCOPE_EXIT_ALL_ID}.
  992. */
  993. #define BOOST_SCOPE_EXIT_ID_TPL(id, capture_list)
  994. /**
  995. @brief This macro declares a scope exit that captures all variables in scope
  996. (C++11 only).
  997. This macro accepts a capture list starting with either <c>&</c> or <c>=</c> to capture all variables in scope by reference or value respectively (following the same syntax of C++11 lambdas).
  998. A part from that, this macro works like @RefMacro{BOOST_SCOPE_EXIT} (see @RefMacro{BOOST_SCOPE_EXIT} for more information):
  999. @code
  1000. { // Some local scope.
  1001. ...
  1002. BOOST_SCOPE_EXIT_ALL(capture_list) { // C++11 only.
  1003. ... // Body code.
  1004. }; // Use `;` instead of `BOOST_SCOPE_EXIT_END` (C++11 only).
  1005. ...
  1006. }
  1007. @endcode
  1008. Note how the end of the scope exit body declared by this macro must be marked
  1009. by a semi-column <c>;</c> (and not by @RefMacro{BOOST_SCOPE_EXIT_END}).
  1010. @Warning This macro is only available on C++11 compilers (specifically, on
  1011. C++11 compilers that do not define the Boost.Config <c>BOOST_NO_CXX11_LAMBDAS</c>
  1012. macro).
  1013. It is not defined on non-C++11 compilers so its use on non-C++11 compilers will generate a compiler error.
  1014. @Params
  1015. @Param{capture_list,
  1016. On compilers that support variadic macros (see also Boost.Config
  1017. <c>BOOST_NO_CXX11_VARIADIC_MACROS</c>)\, the capture list syntax is defined by the
  1018. following grammar:
  1019. @code
  1020. capture_list:
  1021. capture_tuple | capture_sequence
  1022. capture_tuple:
  1023. {& | =} [\, capture\, capture\, ...]
  1024. capture_sequence:
  1025. {(&) | (=)} [(capture) (capture) ...]
  1026. capture:
  1027. [&]variable | this_
  1028. @endcode
  1029. On compilers that do not support variadic macros\, <c>capture_tuple</c> cannot
  1030. be used:
  1031. @code
  1032. capture_list:
  1033. void | capture_sequence
  1034. @endcode
  1035. Furthermore\, on C++11 compilers that support the use of <c>typename</c>
  1036. outside templates\, also <c>this</c> can be used to capture the object at member
  1037. function scope:
  1038. @code
  1039. capture:
  1040. [&]variable | this_ | this
  1041. @endcode
  1042. (Lexical conventions: <c>token1 | token2</c> means either <c>token1</c> or
  1043. <c>token2</c>; <c>[token]</c> means either <c>token</c> or nothing;
  1044. <c>{expression}</c> means the token resulting from the expression.)
  1045. }
  1046. @EndParams
  1047. Note that on compilers with variadic macro support (which should be all C++11
  1048. compilers), the capture list can be specified as a comma-separated list.
  1049. On all compilers, the same macro @RefMacro{BOOST_SCOPE_EXIT_ALL} also allows to
  1050. specify the capture list as a Boost.Preprocessor sequence.
  1051. The capture list must always contain at least the leading <c>&</c> or <c>=</c>
  1052. so it can never be <c>void</c> (<c>BOOST_SCOPE_EXIT(void)</c> should be used
  1053. to program scope exits with an empty capture list).
  1054. In general, the special macro @RefMacro{BOOST_SCOPE_EXIT_ALL_ID} must be used
  1055. instead of @RefMacro{BOOST_SCOPE_EXIT_ALL} when it is necessary to expand
  1056. multiple scope exit declarations on the same line.
  1057. @Warning This macro capture list follows the exact same syntax of C++11 lambda
  1058. captures which is unfortunately different from the syntax of
  1059. @RefMacro{BOOST_SCOPE_EXIT} captures (unless programmers define the
  1060. @RefMacro{BOOST_SCOPE_EXIT_CONFIG_USE_LAMBDAS} macro).
  1061. For example, like C++11 lambda functions, @RefMacro{BOOST_SCOPE_EXIT_ALL}
  1062. requires to capture data members by capturing the object <c>this</c> while
  1063. @RefMacro{BOOST_SCOPE_EXIT} allows to capture data members directly and without
  1064. capturing the object.
  1065. @Warning The implementation executes the scope exit body within a destructor
  1066. thus the scope exit body must never throw in order to comply with STL exception
  1067. safety requirements.
  1068. @Note This macro can always be used also within templates (so there is no need
  1069. for a <c>BOOST_SCOPE_EXIT_ALL_TPL</c> macro).
  1070. @See @RefSect{tutorial, Tutorial} section,
  1071. @RefSect{no_variadic_macros, No Variadic Macros} section,
  1072. @RefMacro{BOOST_SCOPE_EXIT}, @RefMacro{BOOST_SCOPE_EXIT_ALL_ID}.
  1073. */
  1074. #define BOOST_SCOPE_EXIT_ALL(capture_list)
  1075. /**
  1076. @brief This macro allows to expand on the same line multiple scope exits that
  1077. capture all variables in scope (C++11 only).
  1078. This macro is equivalent to @RefMacro{BOOST_SCOPE_EXIT_ALL} but it can be
  1079. expanded multiple times on the same line if different identifiers <c>id</c> are
  1080. provided for each expansion (see @RefMacro{BOOST_SCOPE_EXIT_ALL} for more
  1081. information).
  1082. As with @RefMacro{BOOST_SCOPE_EXIT_ALL}, this macro is only available on C++11
  1083. compilers (specifically, on C++11 compilers that do not define the
  1084. Boost.Config <c>BOOST_NO_CXX11_LAMBDAS</c> macro).
  1085. @Params
  1086. @Param{id,
  1087. A unique identifier token which can be concatenated by the preprocessor
  1088. (<c>__LINE__</c>\, <c>scope_exit_number_1_on_line_123</c>\, a combination of
  1089. alphanumeric tokens\, etc).
  1090. }
  1091. @Param{capture_list,
  1092. Same as the <c>capture_list</c> parameter of the
  1093. @RefMacro{BOOST_SCOPE_EXIT_ALL} macro.
  1094. }
  1095. @EndParams
  1096. @Note This macro can be useful when the scope exit macros are expanded
  1097. within user-defined macros (because nested macros expand on the same line).
  1098. On some compilers (e.g., MSVC which supports the non standard
  1099. <c>__COUNTER__</c> macro) it might not be necessary to use this macro but
  1100. the use of this macro is always necessary to ensure portability when expanding
  1101. multiple scope exit declarations on the same line.
  1102. @See @RefSect{tutorial, Tutorial} section, @RefMacro{BOOST_SCOPE_EXIT_ALL},
  1103. @RefMacro{BOOST_SCOPE_EXIT_ID}.
  1104. */
  1105. #define BOOST_SCOPE_EXIT_ALL_ID(id, capture_list)
  1106. /**
  1107. @brief This macro marks the end of a scope exit body.
  1108. This macro must follow the closing curly bracket <c>}</c> that ends the body of
  1109. either @RefMacro{BOOST_SCOPE_EXIT} or @RefMacro{BOOST_SCOPE_EXIT_TPL}:
  1110. @code
  1111. { // Some local scope.
  1112. ...
  1113. BOOST_SCOPE_EXIT(capture_list) {
  1114. ... // Body code.
  1115. } BOOST_SCOPE_EXIT_END
  1116. ...
  1117. }
  1118. @endcode
  1119. In general, the special macro @RefMacro{BOOST_SCOPE_EXIT_END_ID} must be used
  1120. instead of @RefMacro{BOOST_SCOPE_EXIT_END} when it is necessary to expand
  1121. multiple scope exit bodies on the same line.
  1122. @Note If programmers define the @RefMacro{BOOST_SCOPE_EXIT_CONFIG_USE_LAMBDAS}
  1123. macro on C++11 compilers, a semicolon <c>;</c> can be used instead of this
  1124. macro.
  1125. However, to maximize portability, it is recommended to always use
  1126. @RefMacro{BOOST_SCOPE_EXIT_END}.
  1127. @See @RefSect{tutorial, Tutorial} section, @RefMacro{BOOST_SCOPE_EXIT},
  1128. @RefMacro{BOOST_SCOPE_EXIT_TPL}, @RefMacro{BOOST_SCOPE_EXIT_END_ID}.
  1129. */
  1130. #define BOOST_SCOPE_EXIT_END
  1131. /**
  1132. @brief This macro allows to terminate multiple scope exit bodies on the same
  1133. line.
  1134. This macro is equivalent to @RefMacro{BOOST_SCOPE_EXIT_END} but it can be
  1135. expanded multiple times on the same line if different identifiers <c>id</c> are
  1136. provided for each expansion (see @RefMacro{BOOST_SCOPE_EXIT_END} for more
  1137. information).
  1138. @Params
  1139. @Param{id,
  1140. A unique identifier token which can be concatenated by the preprocessor
  1141. (<c>__LINE__</c>\, <c>scope_exit_number_1_on_line_123</c>\, a combination of
  1142. alphanumeric tokens\, etc).
  1143. }
  1144. @EndParams
  1145. @Note This macro can be useful when the scope exit macros are expanded
  1146. within user-defined macros (because macros all expand on the same line).
  1147. On some compilers (e.g., MSVC which supports the non standard
  1148. <c>__COUNTER__</c> macro) it might not be necessary to use this macro but
  1149. the use of this macro is always necessary to ensure portability when expanding
  1150. multiple scope exit macros on the same line (because this library can only
  1151. portably use <c>__LINE__</c> to internally generate unique identifiers).
  1152. @See @RefMacro{BOOST_SCOPE_EXIT_ID}, @RefMacro{BOOST_SCOPE_EXIT_ID_TPL},
  1153. @RefMacro{BOOST_SCOPE_EXIT_END}.
  1154. */
  1155. #define BOOST_SCOPE_EXIT_END_ID(id)
  1156. /**
  1157. @brief Force to use C++11 lambda functions to implement scope exits.
  1158. If programmers define this configuration macro on a C++11 compiler for which
  1159. the Boost.Config macro <c>BOOST_NO_CXX11_LAMBDAS</c> is not defined, the
  1160. @RefMacro{BOOST_SCOPE_EXIT} and @RefMacro{BOOST_SCOPE_EXIT_TPL} macros will use
  1161. C++11 lambda functions to declare scope exits.
  1162. By default this macro is not defined.
  1163. @Warning When scope exits are implemented using lambda functions, the syntax of
  1164. the capture list follows the exact same syntax of C++11 lambda captures
  1165. which is in general different from the legacy capture syntax of this library.
  1166. For example, C++11 lambdas require to capture data members by capturing the
  1167. object <c>this</c> while this library always allowed to capture data members
  1168. directly.
  1169. Therefore, when this configuration macro is defined,
  1170. @RefMacro{BOOST_SCOPE_EXIT} and @RefMacro{BOOST_SCOPE_EXIT_TPL} are no longer
  1171. backward compatible (and this is why this macro is not defined by default).
  1172. A semicolon <c>;</c> can be used instead of @RefMacro{BOOST_SCOPE_EXIT_END}
  1173. when this configuration macro is defined (but it is recommended to always use
  1174. @RefMacro{BOOST_SCOPE_EXIT_END} so to maximize portability).
  1175. @Note This configuration macro does not control the definition of
  1176. @RefMacro{BOOST_SCOPE_EXIT_ALL} which is always and automatically defined on
  1177. compilers that support C++11 lambda functions.
  1178. @See @RefMacro{BOOST_SCOPE_EXIT}, @RefMacro{BOOST_SCOPE_EXIT_TPL},
  1179. @RefMacro{BOOST_SCOPE_EXIT_END}.
  1180. */
  1181. #define BOOST_SCOPE_EXIT_CONFIG_USE_LAMBDAS
  1182. #endif // DOXYGEN
  1183. #endif // #ifndef FILE_boost_scope_exit_hpp_INCLUDED