exception.hpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  1. //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
  2. //Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef UUID_274DA366004E11DCB1DDFE2E56D89593
  5. #define UUID_274DA366004E11DCB1DDFE2E56D89593
  6. #if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
  7. #pragma GCC system_header
  8. #endif
  9. #if defined(_MSC_VER) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
  10. #pragma warning(push,1)
  11. #endif
  12. namespace
  13. boost
  14. {
  15. namespace
  16. exception_detail
  17. {
  18. template <class T>
  19. class
  20. refcount_ptr
  21. {
  22. public:
  23. refcount_ptr():
  24. px_(0)
  25. {
  26. }
  27. ~refcount_ptr()
  28. {
  29. release();
  30. }
  31. refcount_ptr( refcount_ptr const & x ):
  32. px_(x.px_)
  33. {
  34. add_ref();
  35. }
  36. refcount_ptr &
  37. operator=( refcount_ptr const & x )
  38. {
  39. adopt(x.px_);
  40. return *this;
  41. }
  42. void
  43. adopt( T * px )
  44. {
  45. release();
  46. px_=px;
  47. add_ref();
  48. }
  49. T *
  50. get() const
  51. {
  52. return px_;
  53. }
  54. private:
  55. T * px_;
  56. void
  57. add_ref()
  58. {
  59. if( px_ )
  60. px_->add_ref();
  61. }
  62. void
  63. release()
  64. {
  65. if( px_ && px_->release() )
  66. px_=0;
  67. }
  68. };
  69. }
  70. ////////////////////////////////////////////////////////////////////////
  71. template <class Tag,class T>
  72. class error_info;
  73. typedef error_info<struct throw_function_,char const *> throw_function;
  74. typedef error_info<struct throw_file_,char const *> throw_file;
  75. typedef error_info<struct throw_line_,int> throw_line;
  76. template <>
  77. class
  78. error_info<throw_function_,char const *>
  79. {
  80. public:
  81. typedef char const * value_type;
  82. value_type v_;
  83. explicit
  84. error_info( value_type v ):
  85. v_(v)
  86. {
  87. }
  88. };
  89. template <>
  90. class
  91. error_info<throw_file_,char const *>
  92. {
  93. public:
  94. typedef char const * value_type;
  95. value_type v_;
  96. explicit
  97. error_info( value_type v ):
  98. v_(v)
  99. {
  100. }
  101. };
  102. template <>
  103. class
  104. error_info<throw_line_,int>
  105. {
  106. public:
  107. typedef int value_type;
  108. value_type v_;
  109. explicit
  110. error_info( value_type v ):
  111. v_(v)
  112. {
  113. }
  114. };
  115. #if defined(__GNUC__)
  116. # if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
  117. # pragma GCC visibility push (default)
  118. # endif
  119. #endif
  120. class exception;
  121. #if defined(__GNUC__)
  122. # if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
  123. # pragma GCC visibility pop
  124. # endif
  125. #endif
  126. template <class T>
  127. class shared_ptr;
  128. namespace
  129. exception_detail
  130. {
  131. class error_info_base;
  132. struct type_info_;
  133. struct
  134. error_info_container
  135. {
  136. virtual char const * diagnostic_information( char const * ) const = 0;
  137. virtual shared_ptr<error_info_base> get( type_info_ const & ) const = 0;
  138. virtual void set( shared_ptr<error_info_base> const &, type_info_ const & ) = 0;
  139. virtual void add_ref() const = 0;
  140. virtual bool release() const = 0;
  141. virtual refcount_ptr<exception_detail::error_info_container> clone() const = 0;
  142. protected:
  143. ~error_info_container() throw()
  144. {
  145. }
  146. };
  147. template <class>
  148. struct get_info;
  149. template <>
  150. struct get_info<throw_function>;
  151. template <>
  152. struct get_info<throw_file>;
  153. template <>
  154. struct get_info<throw_line>;
  155. char const * get_diagnostic_information( exception const &, char const * );
  156. void copy_boost_exception( exception *, exception const * );
  157. template <class E,class Tag,class T>
  158. E const & set_info( E const &, error_info<Tag,T> const & );
  159. template <class E>
  160. E const & set_info( E const &, throw_function const & );
  161. template <class E>
  162. E const & set_info( E const &, throw_file const & );
  163. template <class E>
  164. E const & set_info( E const &, throw_line const & );
  165. }
  166. #if defined(__GNUC__)
  167. # if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
  168. # pragma GCC visibility push (default)
  169. # endif
  170. #endif
  171. class
  172. exception
  173. {
  174. //<N3757>
  175. public:
  176. template <class Tag> void set( typename Tag::type const & );
  177. template <class Tag> typename Tag::type const * get() const;
  178. //</N3757>
  179. protected:
  180. exception():
  181. throw_function_(0),
  182. throw_file_(0),
  183. throw_line_(-1)
  184. {
  185. }
  186. #ifdef __HP_aCC
  187. //On HP aCC, this protected copy constructor prevents throwing boost::exception.
  188. //On all other platforms, the same effect is achieved by the pure virtual destructor.
  189. exception( exception const & x ) throw():
  190. data_(x.data_),
  191. throw_function_(x.throw_function_),
  192. throw_file_(x.throw_file_),
  193. throw_line_(x.throw_line_)
  194. {
  195. }
  196. #endif
  197. virtual ~exception() throw()
  198. #ifndef __HP_aCC
  199. = 0 //Workaround for HP aCC, =0 incorrectly leads to link errors.
  200. #endif
  201. ;
  202. #if (defined(__MWERKS__) && __MWERKS__<=0x3207) || (defined(_MSC_VER) && _MSC_VER<=1310)
  203. public:
  204. #else
  205. private:
  206. template <class E>
  207. friend E const & exception_detail::set_info( E const &, throw_function const & );
  208. template <class E>
  209. friend E const & exception_detail::set_info( E const &, throw_file const & );
  210. template <class E>
  211. friend E const & exception_detail::set_info( E const &, throw_line const & );
  212. template <class E,class Tag,class T>
  213. friend E const & exception_detail::set_info( E const &, error_info<Tag,T> const & );
  214. friend char const * exception_detail::get_diagnostic_information( exception const &, char const * );
  215. template <class>
  216. friend struct exception_detail::get_info;
  217. friend struct exception_detail::get_info<throw_function>;
  218. friend struct exception_detail::get_info<throw_file>;
  219. friend struct exception_detail::get_info<throw_line>;
  220. friend void exception_detail::copy_boost_exception( exception *, exception const * );
  221. #endif
  222. mutable exception_detail::refcount_ptr<exception_detail::error_info_container> data_;
  223. mutable char const * throw_function_;
  224. mutable char const * throw_file_;
  225. mutable int throw_line_;
  226. };
  227. #if defined(__GNUC__)
  228. # if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
  229. # pragma GCC visibility pop
  230. # endif
  231. #endif
  232. inline
  233. exception::
  234. ~exception() throw()
  235. {
  236. }
  237. namespace
  238. exception_detail
  239. {
  240. template <class E>
  241. E const &
  242. set_info( E const & x, throw_function const & y )
  243. {
  244. x.throw_function_=y.v_;
  245. return x;
  246. }
  247. template <class E>
  248. E const &
  249. set_info( E const & x, throw_file const & y )
  250. {
  251. x.throw_file_=y.v_;
  252. return x;
  253. }
  254. template <class E>
  255. E const &
  256. set_info( E const & x, throw_line const & y )
  257. {
  258. x.throw_line_=y.v_;
  259. return x;
  260. }
  261. }
  262. ////////////////////////////////////////////////////////////////////////
  263. namespace
  264. exception_detail
  265. {
  266. #if defined(__GNUC__)
  267. # if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
  268. # pragma GCC visibility push (default)
  269. # endif
  270. #endif
  271. template <class T>
  272. struct
  273. error_info_injector:
  274. public T,
  275. public exception
  276. {
  277. explicit
  278. error_info_injector( T const & x ):
  279. T(x)
  280. {
  281. }
  282. ~error_info_injector() throw()
  283. {
  284. }
  285. };
  286. #if defined(__GNUC__)
  287. # if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
  288. # pragma GCC visibility pop
  289. # endif
  290. #endif
  291. struct large_size { char c[256]; };
  292. large_size dispatch_boost_exception( exception const * );
  293. struct small_size { };
  294. small_size dispatch_boost_exception( void const * );
  295. template <class,int>
  296. struct enable_error_info_helper;
  297. template <class T>
  298. struct
  299. enable_error_info_helper<T,sizeof(large_size)>
  300. {
  301. typedef T type;
  302. };
  303. template <class T>
  304. struct
  305. enable_error_info_helper<T,sizeof(small_size)>
  306. {
  307. typedef error_info_injector<T> type;
  308. };
  309. template <class T>
  310. struct
  311. enable_error_info_return_type
  312. {
  313. typedef typename enable_error_info_helper<T,sizeof(exception_detail::dispatch_boost_exception(static_cast<T *>(0)))>::type type;
  314. };
  315. }
  316. template <class T>
  317. inline
  318. typename
  319. exception_detail::enable_error_info_return_type<T>::type
  320. enable_error_info( T const & x )
  321. {
  322. typedef typename exception_detail::enable_error_info_return_type<T>::type rt;
  323. return rt(x);
  324. }
  325. ////////////////////////////////////////////////////////////////////////
  326. namespace
  327. exception_detail
  328. {
  329. #if defined(__GNUC__)
  330. # if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
  331. # pragma GCC visibility push (default)
  332. # endif
  333. #endif
  334. class
  335. clone_base
  336. {
  337. public:
  338. virtual clone_base const * clone() const = 0;
  339. virtual void rethrow() const = 0;
  340. virtual
  341. ~clone_base() throw()
  342. {
  343. }
  344. };
  345. #if defined(__GNUC__)
  346. # if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
  347. # pragma GCC visibility pop
  348. # endif
  349. #endif
  350. inline
  351. void
  352. copy_boost_exception( exception * a, exception const * b )
  353. {
  354. refcount_ptr<error_info_container> data;
  355. if( error_info_container * d=b->data_.get() )
  356. data = d->clone();
  357. a->throw_file_ = b->throw_file_;
  358. a->throw_line_ = b->throw_line_;
  359. a->throw_function_ = b->throw_function_;
  360. a->data_ = data;
  361. }
  362. inline
  363. void
  364. copy_boost_exception( void *, void const * )
  365. {
  366. }
  367. #if defined(__GNUC__)
  368. # if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
  369. # pragma GCC visibility push (default)
  370. # endif
  371. #endif
  372. template <class T>
  373. class
  374. clone_impl:
  375. public T,
  376. public virtual clone_base
  377. {
  378. struct clone_tag { };
  379. clone_impl( clone_impl const & x, clone_tag ):
  380. T(x)
  381. {
  382. copy_boost_exception(this,&x);
  383. }
  384. public:
  385. explicit
  386. clone_impl( T const & x ):
  387. T(x)
  388. {
  389. copy_boost_exception(this,&x);
  390. }
  391. ~clone_impl() throw()
  392. {
  393. }
  394. private:
  395. clone_base const *
  396. clone() const
  397. {
  398. return new clone_impl(*this,clone_tag());
  399. }
  400. void
  401. rethrow() const
  402. {
  403. throw*this;
  404. }
  405. };
  406. }
  407. #if defined(__GNUC__)
  408. # if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
  409. # pragma GCC visibility pop
  410. # endif
  411. #endif
  412. template <class T>
  413. inline
  414. exception_detail::clone_impl<T>
  415. enable_current_exception( T const & x )
  416. {
  417. return exception_detail::clone_impl<T>(x);
  418. }
  419. }
  420. #if defined(_MSC_VER) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
  421. #pragma warning(pop)
  422. #endif
  423. #endif