deconstruct_ptr.hpp 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. // DEPRECATED in favor of adl_postconstruct and adl_predestruct with
  2. // deconstruct<T>().
  3. // A factory function for creating a shared_ptr that enhances the plain
  4. // shared_ptr constructors by adding support for postconstructors
  5. // and predestructors through the boost::signals2::postconstructible and
  6. // boost::signals2::predestructible base classes.
  7. //
  8. // Copyright Frank Mori Hess 2007-2008.
  9. //
  10. // Use, modification and
  11. // distribution is subject to the Boost Software License, Version
  12. // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  13. // http://www.boost.org/LICENSE_1_0.txt)
  14. #ifndef BOOST_SIGNALS2_DECONSTRUCT_PTR_HPP
  15. #define BOOST_SIGNALS2_DECONSTRUCT_PTR_HPP
  16. #include <boost/assert.hpp>
  17. #include <boost/checked_delete.hpp>
  18. #include <boost/signals2/postconstructible.hpp>
  19. #include <boost/signals2/predestructible.hpp>
  20. #include <boost/shared_ptr.hpp>
  21. namespace boost
  22. {
  23. namespace signals2
  24. {
  25. namespace detail
  26. {
  27. inline void do_postconstruct(const postconstructible *ptr)
  28. {
  29. postconstructible *nonconst_ptr = const_cast<postconstructible*>(ptr);
  30. nonconst_ptr->postconstruct();
  31. }
  32. inline void do_postconstruct(...)
  33. {
  34. }
  35. inline void do_predestruct(...)
  36. {
  37. }
  38. inline void do_predestruct(const predestructible *ptr)
  39. {
  40. try
  41. {
  42. predestructible *nonconst_ptr = const_cast<predestructible*>(ptr);
  43. nonconst_ptr->predestruct();
  44. }
  45. catch(...)
  46. {
  47. BOOST_ASSERT(false);
  48. }
  49. }
  50. }
  51. template<typename T> class predestructing_deleter
  52. {
  53. public:
  54. void operator()(const T *ptr) const
  55. {
  56. detail::do_predestruct(ptr);
  57. checked_delete(ptr);
  58. }
  59. };
  60. template<typename T>
  61. shared_ptr<T> deconstruct_ptr(T *ptr)
  62. {
  63. if(ptr == 0) return shared_ptr<T>(ptr);
  64. shared_ptr<T> shared(ptr, boost::signals2::predestructing_deleter<T>());
  65. detail::do_postconstruct(ptr);
  66. return shared;
  67. }
  68. template<typename T, typename D>
  69. shared_ptr<T> deconstruct_ptr(T *ptr, D deleter)
  70. {
  71. shared_ptr<T> shared(ptr, deleter);
  72. if(ptr == 0) return shared;
  73. detail::do_postconstruct(ptr);
  74. return shared;
  75. }
  76. }
  77. }
  78. #endif // BOOST_SIGNALS2_DECONSTRUCT_PTR_HPP