info.hpp 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. //Copyright (c) 2006-2010 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_8D22C4CA9CC811DCAA9133D256D89593
  5. #define UUID_8D22C4CA9CC811DCAA9133D256D89593
  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. #include <boost/exception/exception.hpp>
  13. #include <boost/exception/to_string_stub.hpp>
  14. #include <boost/exception/detail/error_info_impl.hpp>
  15. #include <boost/shared_ptr.hpp>
  16. #include <boost/config.hpp>
  17. #include <map>
  18. namespace
  19. boost
  20. {
  21. template <class Tag,class T>
  22. inline
  23. std::string
  24. error_info_name( error_info<Tag,T> const & x )
  25. {
  26. return tag_type_name<Tag>();
  27. }
  28. template <class Tag,class T>
  29. inline
  30. std::string
  31. to_string( error_info<Tag,T> const & x )
  32. {
  33. return '[' + error_info_name(x) + "] = " + to_string_stub(x.value()) + '\n';
  34. }
  35. template <class Tag,class T>
  36. inline
  37. error_info<Tag,T>::
  38. error_info( value_type const & value ):
  39. value_(value)
  40. {
  41. }
  42. template <class Tag,class T>
  43. inline
  44. error_info<Tag,T>::
  45. ~error_info() throw()
  46. {
  47. }
  48. template <class Tag,class T>
  49. inline
  50. std::string
  51. error_info<Tag,T>::
  52. name_value_string() const
  53. {
  54. return to_string_stub(*this);
  55. }
  56. namespace
  57. exception_detail
  58. {
  59. class
  60. error_info_container_impl:
  61. public error_info_container
  62. {
  63. public:
  64. error_info_container_impl():
  65. count_(0)
  66. {
  67. }
  68. ~error_info_container_impl() throw()
  69. {
  70. }
  71. void
  72. set( shared_ptr<error_info_base> const & x, type_info_ const & typeid_ )
  73. {
  74. BOOST_ASSERT(x);
  75. info_[typeid_] = x;
  76. diagnostic_info_str_.clear();
  77. }
  78. shared_ptr<error_info_base>
  79. get( type_info_ const & ti ) const
  80. {
  81. error_info_map::const_iterator i=info_.find(ti);
  82. if( info_.end()!=i )
  83. {
  84. shared_ptr<error_info_base> const & p = i->second;
  85. #ifndef BOOST_NO_RTTI
  86. BOOST_ASSERT( *BOOST_EXCEPTION_DYNAMIC_TYPEID(*p).type_==*ti.type_ );
  87. #endif
  88. return p;
  89. }
  90. return shared_ptr<error_info_base>();
  91. }
  92. char const *
  93. diagnostic_information( char const * header ) const
  94. {
  95. if( header )
  96. {
  97. std::ostringstream tmp;
  98. tmp << header;
  99. for( error_info_map::const_iterator i=info_.begin(),end=info_.end(); i!=end; ++i )
  100. {
  101. error_info_base const & x = *i->second;
  102. tmp << x.name_value_string();
  103. }
  104. tmp.str().swap(diagnostic_info_str_);
  105. }
  106. return diagnostic_info_str_.c_str();
  107. }
  108. private:
  109. friend class boost::exception;
  110. typedef std::map< type_info_, shared_ptr<error_info_base> > error_info_map;
  111. error_info_map info_;
  112. mutable std::string diagnostic_info_str_;
  113. mutable int count_;
  114. error_info_container_impl( error_info_container_impl const & );
  115. error_info_container_impl & operator=( error_info_container const & );
  116. void
  117. add_ref() const
  118. {
  119. ++count_;
  120. }
  121. bool
  122. release() const
  123. {
  124. if( --count_ )
  125. return false;
  126. else
  127. {
  128. delete this;
  129. return true;
  130. }
  131. }
  132. refcount_ptr<error_info_container>
  133. clone() const
  134. {
  135. refcount_ptr<error_info_container> p;
  136. error_info_container_impl * c=new error_info_container_impl;
  137. p.adopt(c);
  138. c->info_ = info_;
  139. return p;
  140. }
  141. };
  142. template <class E,class Tag,class T>
  143. inline
  144. E const &
  145. set_info( E const & x, error_info<Tag,T> const & v )
  146. {
  147. typedef error_info<Tag,T> error_info_tag_t;
  148. shared_ptr<error_info_tag_t> p( new error_info_tag_t(v) );
  149. exception_detail::error_info_container * c=x.data_.get();
  150. if( !c )
  151. x.data_.adopt(c=new exception_detail::error_info_container_impl);
  152. c->set(p,BOOST_EXCEPTION_STATIC_TYPEID(error_info_tag_t));
  153. return x;
  154. }
  155. template <class T>
  156. struct
  157. derives_boost_exception
  158. {
  159. enum e { value = (sizeof(dispatch_boost_exception((T*)0))==sizeof(large_size)) };
  160. };
  161. }
  162. template <class E,class Tag,class T>
  163. inline
  164. typename enable_if<exception_detail::derives_boost_exception<E>,E const &>::type
  165. operator<<( E const & x, error_info<Tag,T> const & v )
  166. {
  167. return exception_detail::set_info(x,v);
  168. }
  169. }
  170. #if defined(_MSC_VER) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
  171. #pragma warning(pop)
  172. #endif
  173. #endif