Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

scope_guard_base.h 3.8KB

7 lat temu
7 lat temu
7 lat temu
7 lat temu
7 lat temu
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * Scope Guard
  3. * Copyright (C) 2017 offa
  4. *
  5. * This file is part of Scope Guard.
  6. *
  7. * Scope Guard is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * Scope Guard is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with Scope Guard. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #pragma once
  21. #include <utility>
  22. #include <type_traits>
  23. namespace sr
  24. {
  25. namespace detail
  26. {
  27. template<class F, class S>
  28. struct is_noexcept_dtor
  29. {
  30. static constexpr bool value = true;
  31. };
  32. template<class EF, class Strategy>
  33. class scope_guard_base : private Strategy
  34. {
  35. public:
  36. template<class EFP,
  37. std::enable_if_t<std::is_constructible<EF, EFP>::value, int> = 0,
  38. std::enable_if_t<(!std::is_lvalue_reference<EFP>::value)
  39. && std::is_nothrow_constructible<EF, EFP>::value, int> = 0
  40. >
  41. explicit scope_guard_base(EFP&& exitFunction) : m_exitFunction(std::move(exitFunction)),
  42. m_execute_on_destruction(true)
  43. {
  44. }
  45. template<class EFP,
  46. std::enable_if_t<std::is_constructible<EF, EFP>::value, int> = 0,
  47. std::enable_if_t<std::is_lvalue_reference<EFP>::value, int> = 0
  48. >
  49. explicit scope_guard_base(EFP&& exitFunction) try : m_exitFunction(exitFunction),
  50. m_execute_on_destruction(true)
  51. {
  52. }
  53. catch( ... )
  54. {
  55. exitFunction();
  56. throw;
  57. }
  58. template<class T = EF,
  59. std::enable_if_t<std::is_nothrow_move_constructible<T>::value, int> = 0
  60. >
  61. scope_guard_base(scope_guard_base&& other) noexcept(std::is_nothrow_move_constructible<T>::value
  62. || std::is_nothrow_copy_constructible<T>::value)
  63. : Strategy(other),
  64. m_exitFunction(std::move(other.m_exitFunction)),
  65. m_execute_on_destruction(other.m_execute_on_destruction)
  66. {
  67. other.release();
  68. }
  69. template<class T = EF,
  70. std::enable_if_t<!std::is_nothrow_move_constructible<T>::value, int> = 0
  71. >
  72. scope_guard_base(scope_guard_base&& other) noexcept(std::is_nothrow_move_constructible<T>::value
  73. || std::is_nothrow_copy_constructible<T>::value)
  74. : Strategy(other),
  75. m_exitFunction(other.m_exitFunction),
  76. m_execute_on_destruction(other.m_execute_on_destruction)
  77. {
  78. other.release();
  79. }
  80. scope_guard_base(const scope_guard_base&) = delete;
  81. ~scope_guard_base() noexcept(is_noexcept_dtor<EF, Strategy>::value)
  82. {
  83. if( (m_execute_on_destruction == true) && (this->should_execute() == true) )
  84. {
  85. m_exitFunction();
  86. }
  87. }
  88. void release() noexcept
  89. {
  90. m_execute_on_destruction = false;
  91. }
  92. scope_guard_base& operator=(const scope_guard_base&) = delete;
  93. scope_guard_base& operator=(scope_guard_base&&) = delete;
  94. private:
  95. EF m_exitFunction;
  96. bool m_execute_on_destruction;
  97. };
  98. }
  99. }