]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/outcome/policy/base.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / outcome / policy / base.hpp
CommitLineData
92f5a8d4
TL
1/* Policies for result and outcome
2(C) 2017-2019 Niall Douglas <http://www.nedproductions.biz/> (6 commits) and Andrzej KrzemieĊ„ski <akrzemi1@gmail.com> (1 commit)
3File Created: Oct 2017
4
5
6Boost Software License - Version 1.0 - August 17th, 2003
7
8Permission is hereby granted, free of charge, to any person or organization
9obtaining a copy of the software and accompanying documentation covered by
10this license (the "Software") to use, reproduce, display, distribute,
11execute, and transmit the Software, and to prepare derivative works of the
12Software, and to permit third-parties to whom the Software is furnished to
13do so, all subject to the following:
14
15The copyright notices in the Software and this entire statement, including
16the above license grant, this restriction and the following disclaimer,
17must be included in all copies of the Software, in whole or in part, and
18all derivative works of the Software, unless such copies or derivative
19works are solely in the form of machine-executable object code generated by
20a source language processor.
21
22THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
25SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
26FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
27ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28DEALINGS IN THE SOFTWARE.
29*/
30
31#ifndef BOOST_OUTCOME_POLICY_BASE_HPP
32#define BOOST_OUTCOME_POLICY_BASE_HPP
33
34#include "../config.hpp"
35
36#include <cassert>
37
38BOOST_OUTCOME_V2_NAMESPACE_EXPORT_BEGIN
39
40namespace policy
41{
42 /*! AWAITING HUGO JSON CONVERSION TOOL
43SIGNATURE NOT RECOGNISED
44*/
45 struct base
46 {
47 protected:
48 template <class Impl>
49 static constexpr
50#ifdef _MSC_VER
51 __declspec(noreturn)
52#elif defined(__GNUC__) || defined(__clang__)
53 __attribute__((noreturn))
54#endif
55 void _ub(Impl && /*unused*/)
56 {
57 assert(false); // NOLINT
58#if defined(__GNUC__) || defined(__clang__)
59 __builtin_unreachable();
60#elif defined(_MSC_VER)
61 __assume(0);
62#endif
63 }
64
65 template <class Impl> static constexpr bool _has_value(Impl &&self) noexcept { return (self._state._status & BOOST_OUTCOME_V2_NAMESPACE::detail::status_have_value) != 0; }
66 template <class Impl> static constexpr bool _has_error(Impl &&self) noexcept { return (self._state._status & BOOST_OUTCOME_V2_NAMESPACE::detail::status_have_error) != 0; }
67 template <class Impl> static constexpr bool _has_exception(Impl &&self) noexcept { return (self._state._status & BOOST_OUTCOME_V2_NAMESPACE::detail::status_have_exception) != 0; }
68 template <class Impl> static constexpr bool _has_error_is_errno(Impl &&self) noexcept { return (self._state._status & BOOST_OUTCOME_V2_NAMESPACE::detail::status_error_is_errno) != 0; }
69
70 template <class Impl> static constexpr void _set_has_value(Impl &&self, bool v) noexcept { v ? self._state._status |= BOOST_OUTCOME_V2_NAMESPACE::detail::status_have_value : self._state._status &= ~BOOST_OUTCOME_V2_NAMESPACE::detail::status_have_value; }
71 template <class Impl> static constexpr void _set_has_error(Impl &&self, bool v) noexcept { v ? self._state._status |= BOOST_OUTCOME_V2_NAMESPACE::detail::status_have_error : self._state._status &= ~BOOST_OUTCOME_V2_NAMESPACE::detail::status_have_error; }
72 template <class Impl> static constexpr void _set_has_exception(Impl &&self, bool v) noexcept { v ? self._state._status |= BOOST_OUTCOME_V2_NAMESPACE::detail::status_have_exception : self._state._status &= ~BOOST_OUTCOME_V2_NAMESPACE::detail::status_have_exception; }
73 template <class Impl> static constexpr void _set_has_error_is_errno(Impl &&self, bool v) noexcept { v ? self._state._status |= BOOST_OUTCOME_V2_NAMESPACE::detail::status_error_is_errno : self._state._status &= ~BOOST_OUTCOME_V2_NAMESPACE::detail::status_error_is_errno; }
74
75 template <class Impl> static constexpr auto &&_value(Impl &&self) noexcept { return static_cast<Impl &&>(self)._state._value; }
76 template <class Impl> static constexpr auto &&_error(Impl &&self) noexcept { return static_cast<Impl &&>(self)._error; }
77
78 public:
79 template <class R, class S, class P, class NoValuePolicy, class Impl> static inline constexpr auto &&_exception(Impl &&self) noexcept;
80
81 template <class Impl> static constexpr void narrow_value_check(Impl &&self) noexcept
82 {
83 if(!_has_value(self))
84 {
85 _ub(self);
86 }
87 }
88 template <class Impl> static constexpr void narrow_error_check(Impl &&self) noexcept
89 {
90 if(!_has_error(self))
91 {
92 _ub(self);
93 }
94 }
95 template <class Impl> static constexpr void narrow_exception_check(Impl &&self) noexcept
96 {
97 if(!_has_exception(self))
98 {
99 _ub(self);
100 }
101 }
102 };
103} // namespace policy
104
105BOOST_OUTCOME_V2_NAMESPACE_END
106
107#endif