選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

117 行
3.4KB

  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::detail
  24. {
  25. // From P0550
  26. template<class T>
  27. using remove_cvref = std::remove_cv_t<std::remove_reference_t<T>>;
  28. template<class T>
  29. using remove_cvref_t = typename remove_cvref<T>::type;
  30. template<class F, class S>
  31. struct is_noexcept_dtor
  32. {
  33. static constexpr bool value = true;
  34. };
  35. template<class F, class S>
  36. constexpr bool is_noexcept_dtor_v = is_noexcept_dtor<F, S>::value;
  37. template<class EF, class Strategy>
  38. class scope_guard_base : private Strategy
  39. {
  40. public:
  41. template<class EFP,
  42. std::enable_if_t<std::is_constructible_v<EF, EFP>, int> = 0,
  43. std::enable_if_t<(!std::is_lvalue_reference_v<EFP>)
  44. && std::is_nothrow_constructible_v<EF, EFP>, int> = 0
  45. >
  46. explicit scope_guard_base(EFP&& exitFunction) noexcept(std::is_nothrow_constructible_v<EF, EFP>)
  47. : m_exitfunction(std::move(exitFunction)),
  48. m_execute_on_destruction(true)
  49. {
  50. }
  51. template<class EFP,
  52. std::enable_if_t<std::is_constructible_v<EF, EFP>, int> = 0,
  53. std::enable_if_t<std::is_lvalue_reference_v<EFP>, int> = 0
  54. >
  55. explicit scope_guard_base(EFP&& exitFunction) try : m_exitfunction(exitFunction),
  56. m_execute_on_destruction(true)
  57. {
  58. }
  59. catch( ... )
  60. {
  61. exitFunction();
  62. throw;
  63. }
  64. scope_guard_base(scope_guard_base&& other) noexcept(std::is_nothrow_move_constructible_v<EF>
  65. || std::is_nothrow_copy_constructible_v<EF>)
  66. : Strategy(other),
  67. m_exitfunction(std::move_if_noexcept(other.m_exitfunction)),
  68. m_execute_on_destruction(other.m_execute_on_destruction)
  69. {
  70. other.release();
  71. }
  72. scope_guard_base(const scope_guard_base&) = delete;
  73. ~scope_guard_base() noexcept(is_noexcept_dtor_v<EF, Strategy>)
  74. {
  75. if( (m_execute_on_destruction == true) && (this->should_execute() == true) )
  76. {
  77. m_exitfunction();
  78. }
  79. }
  80. void release() noexcept
  81. {
  82. m_execute_on_destruction = false;
  83. }
  84. scope_guard_base& operator=(const scope_guard_base&) = delete;
  85. scope_guard_base& operator=(scope_guard_base&&) = delete;
  86. private:
  87. EF m_exitfunction;
  88. bool m_execute_on_destruction;
  89. };
  90. }