File indexing completed on 2025-04-04 08:33:21
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031 #ifndef BOOST_OUTCOME_SYSTEM_ERROR2_ERRORED_STATUS_CODE_HPP
0032 #define BOOST_OUTCOME_SYSTEM_ERROR2_ERRORED_STATUS_CODE_HPP
0033
0034 #include "quick_status_code_from_enum.hpp"
0035
0036 BOOST_OUTCOME_SYSTEM_ERROR2_NAMESPACE_BEGIN
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047 template <class DomainType> class errored_status_code : public status_code<DomainType>
0048 {
0049 using _base = status_code<DomainType>;
0050 using _base::clear;
0051 using _base::success;
0052
0053 void _check()
0054 {
0055 if(_base::success())
0056 {
0057 std::terminate();
0058 }
0059 }
0060
0061 public:
0062
0063 using typename _base::domain_type;
0064
0065 using typename _base::value_type;
0066
0067 using typename _base::string_ref;
0068
0069
0070 errored_status_code() = default;
0071
0072 errored_status_code(const errored_status_code &) = default;
0073
0074 errored_status_code(errored_status_code &&) = default;
0075
0076 errored_status_code &operator=(const errored_status_code &) = default;
0077
0078 errored_status_code &operator=(errored_status_code &&) = default;
0079 ~errored_status_code() = default;
0080
0081
0082 explicit errored_status_code(const _base &o) noexcept(std::is_nothrow_copy_constructible<_base>::value)
0083 : _base(o)
0084 {
0085 _check();
0086 }
0087
0088 explicit errored_status_code(_base &&o) noexcept(std::is_nothrow_move_constructible<_base>::value)
0089 : _base(static_cast<_base &&>(o))
0090 {
0091 _check();
0092 }
0093
0094
0095
0096 BOOST_OUTCOME_SYSTEM_ERROR2_TEMPLATE(
0097 class T, class... Args,
0098 class MakeStatusCodeResult =
0099 typename detail::safe_get_make_status_code_result<T, Args...>::type)
0100 BOOST_OUTCOME_SYSTEM_ERROR2_TREQUIRES(BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(!std::is_same<typename std::decay<T>::type, errored_status_code>::value
0101 && !std::is_same<typename std::decay<T>::type, in_place_t>::value
0102 && is_status_code<MakeStatusCodeResult>::value
0103 && std::is_constructible<errored_status_code, MakeStatusCodeResult>::value))
0104 errored_status_code(T &&v, Args &&...args) noexcept(noexcept(make_status_code(std::declval<T>(), std::declval<Args>()...)))
0105 : errored_status_code(make_status_code(static_cast<T &&>(v), static_cast<Args &&>(args)...))
0106 {
0107 _check();
0108 }
0109
0110
0111 BOOST_OUTCOME_SYSTEM_ERROR2_TEMPLATE(class Enum,
0112 class QuickStatusCodeType = typename quick_status_code_from_enum<Enum>::code_type)
0113 BOOST_OUTCOME_SYSTEM_ERROR2_TREQUIRES(BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(std::is_constructible<errored_status_code, QuickStatusCodeType>::value))
0114 errored_status_code(Enum &&v) noexcept(std::is_nothrow_constructible<errored_status_code, QuickStatusCodeType>::value)
0115 : errored_status_code(QuickStatusCodeType(static_cast<Enum &&>(v)))
0116 {
0117 _check();
0118 }
0119
0120 template <class... Args>
0121 explicit errored_status_code(in_place_t _, Args &&...args) noexcept(std::is_nothrow_constructible<value_type, Args &&...>::value)
0122 : _base(_, static_cast<Args &&>(args)...)
0123 {
0124 _check();
0125 }
0126
0127 template <class T, class... Args>
0128 explicit errored_status_code(in_place_t _, std::initializer_list<T> il,
0129 Args &&...args) noexcept(std::is_nothrow_constructible<value_type, std::initializer_list<T>, Args &&...>::value)
0130 : _base(_, il, static_cast<Args &&>(args)...)
0131 {
0132 _check();
0133 }
0134
0135 explicit errored_status_code(const value_type &v) noexcept(std::is_nothrow_copy_constructible<value_type>::value)
0136 : _base(v)
0137 {
0138 _check();
0139 }
0140
0141 explicit errored_status_code(value_type &&v) noexcept(std::is_nothrow_move_constructible<value_type>::value)
0142 : _base(static_cast<value_type &&>(v))
0143 {
0144 _check();
0145 }
0146
0147
0148
0149
0150 BOOST_OUTCOME_SYSTEM_ERROR2_TEMPLATE(class ErasedType)
0151 BOOST_OUTCOME_SYSTEM_ERROR2_TREQUIRES(BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(detail::domain_value_type_erasure_is_safe<domain_type, detail::erased<ErasedType>>::value))
0152 explicit errored_status_code(const status_code<detail::erased<ErasedType>> &v) noexcept(std::is_nothrow_copy_constructible<value_type>::value)
0153 : errored_status_code(detail::erasure_cast<value_type>(v.value()))
0154 {
0155 assert(v.domain() == this->domain());
0156 _check();
0157 }
0158
0159
0160 constexpr bool success() const noexcept { return false; }
0161
0162 constexpr const value_type &value() const & noexcept { return this->_value; }
0163 };
0164
0165 namespace traits
0166 {
0167 template <class DomainType> struct is_move_bitcopying<errored_status_code<DomainType>>
0168 {
0169 static constexpr bool value = is_move_bitcopying<typename DomainType::value_type>::value;
0170 };
0171 }
0172
0173 template <class ErasedType> class errored_status_code<detail::erased<ErasedType>> : public status_code<detail::erased<ErasedType>>
0174 {
0175 using _base = status_code<detail::erased<ErasedType>>;
0176 using _base::success;
0177
0178 void _check()
0179 {
0180 if(_base::success())
0181 {
0182 std::terminate();
0183 }
0184 }
0185
0186 public:
0187 using domain_type = typename _base::domain_type;
0188 using value_type = typename _base::value_type;
0189 using string_ref = typename _base::string_ref;
0190
0191
0192 errored_status_code() = default;
0193
0194 errored_status_code(const errored_status_code &) = default;
0195
0196 errored_status_code(errored_status_code &&) = default;
0197
0198 errored_status_code &operator=(const errored_status_code &) = default;
0199
0200 errored_status_code &operator=(errored_status_code &&) = default;
0201 ~errored_status_code() = default;
0202
0203
0204 explicit errored_status_code(const _base &o) noexcept(std::is_nothrow_copy_constructible<_base>::value)
0205 : _base(o)
0206 {
0207 _check();
0208 }
0209
0210 explicit errored_status_code(_base &&o) noexcept(std::is_nothrow_move_constructible<_base>::value)
0211 : _base(static_cast<_base &&>(o))
0212 {
0213 _check();
0214 }
0215
0216
0217
0218
0219 BOOST_OUTCOME_SYSTEM_ERROR2_TEMPLATE(class DomainType)
0220 BOOST_OUTCOME_SYSTEM_ERROR2_TREQUIRES(BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(detail::domain_value_type_erasure_is_safe<detail::erased<ErasedType>, DomainType>::value),
0221 BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(!detail::is_erased_status_code<status_code<typename std::decay<DomainType>::type>>::value))
0222 errored_status_code(const status_code<DomainType> &v) noexcept
0223 : _base(v)
0224 {
0225 _check();
0226 }
0227
0228
0229 BOOST_OUTCOME_SYSTEM_ERROR2_TEMPLATE(class DomainType)
0230 BOOST_OUTCOME_SYSTEM_ERROR2_TREQUIRES(BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(detail::domain_value_type_erasure_is_safe<detail::erased<ErasedType>, DomainType>::value),
0231 BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(!detail::is_erased_status_code<status_code<typename std::decay<DomainType>::type>>::value))
0232 errored_status_code(const errored_status_code<DomainType> &v) noexcept
0233 : _base(static_cast<const status_code<DomainType> &>(v))
0234 {
0235 _check();
0236 }
0237
0238 BOOST_OUTCOME_SYSTEM_ERROR2_TEMPLATE(class DomainType)
0239 BOOST_OUTCOME_SYSTEM_ERROR2_TREQUIRES(BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(detail::domain_value_type_erasure_is_safe<detail::erased<ErasedType>, DomainType>::value))
0240 errored_status_code(status_code<DomainType> &&v) noexcept
0241 : _base(static_cast<status_code<DomainType> &&>(v))
0242 {
0243 _check();
0244 }
0245
0246 BOOST_OUTCOME_SYSTEM_ERROR2_TEMPLATE(class DomainType)
0247 BOOST_OUTCOME_SYSTEM_ERROR2_TREQUIRES(BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(detail::domain_value_type_erasure_is_safe<detail::erased<ErasedType>, DomainType>::value))
0248 errored_status_code(errored_status_code<DomainType> &&v) noexcept
0249 : _base(static_cast<status_code<DomainType> &&>(v))
0250 {
0251 _check();
0252 }
0253
0254 BOOST_OUTCOME_SYSTEM_ERROR2_TEMPLATE(
0255 class T, class... Args,
0256 class MakeStatusCodeResult =
0257 typename detail::safe_get_make_status_code_result<T, Args...>::type)
0258 BOOST_OUTCOME_SYSTEM_ERROR2_TREQUIRES(BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(!std::is_same<typename std::decay<T>::type, errored_status_code>::value
0259 && !std::is_same<typename std::decay<T>::type, value_type>::value
0260 && is_status_code<MakeStatusCodeResult>::value
0261 && std::is_constructible<errored_status_code, MakeStatusCodeResult>::value))
0262 errored_status_code(T &&v, Args &&...args) noexcept(noexcept(make_status_code(std::declval<T>(), std::declval<Args>()...)))
0263 : errored_status_code(make_status_code(static_cast<T &&>(v), static_cast<Args &&>(args)...))
0264 {
0265 _check();
0266 }
0267
0268 BOOST_OUTCOME_SYSTEM_ERROR2_TEMPLATE(class Enum,
0269 class QuickStatusCodeType = typename quick_status_code_from_enum<Enum>::code_type)
0270 BOOST_OUTCOME_SYSTEM_ERROR2_TREQUIRES(BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(std::is_constructible<errored_status_code, QuickStatusCodeType>::value))
0271 errored_status_code(Enum &&v) noexcept(std::is_nothrow_constructible<errored_status_code, QuickStatusCodeType>::value)
0272 : errored_status_code(QuickStatusCodeType(static_cast<Enum &&>(v)))
0273 {
0274 _check();
0275 }
0276 #if defined(_CPPUNWIND) || defined(__EXCEPTIONS) || defined(BOOST_OUTCOME_STANDARDESE_IS_IN_THE_HOUSE)
0277
0278
0279 explicit errored_status_code(in_place_t _, const status_code<void> &v)
0280 : _base(_, v)
0281 {
0282 _check();
0283 }
0284 #endif
0285
0286
0287 constexpr bool success() const noexcept { return false; }
0288
0289 constexpr value_type value() const noexcept { return this->_value; }
0290 };
0291
0292
0293
0294 template <class ErasedType> using erased_errored_status_code = errored_status_code<detail::erased<ErasedType>>;
0295
0296
0297 namespace traits
0298 {
0299 template <class ErasedType> struct is_move_bitcopying<errored_status_code<detail::erased<ErasedType>>>
0300 {
0301 static constexpr bool value = true;
0302 };
0303 }
0304
0305
0306
0307 template <class DomainType1, class DomainType2>
0308 inline bool operator==(const errored_status_code<DomainType1> &a, const errored_status_code<DomainType2> &b) noexcept
0309 {
0310 return a.equivalent(static_cast<const status_code<DomainType2> &>(b));
0311 }
0312
0313 template <class DomainType1, class DomainType2> inline bool operator==(const status_code<DomainType1> &a, const errored_status_code<DomainType2> &b) noexcept
0314 {
0315 return a.equivalent(static_cast<const status_code<DomainType2> &>(b));
0316 }
0317
0318 template <class DomainType1, class DomainType2> inline bool operator==(const errored_status_code<DomainType1> &a, const status_code<DomainType2> &b) noexcept
0319 {
0320 return static_cast<const status_code<DomainType1> &>(a).equivalent(b);
0321 }
0322
0323 template <class DomainType1, class DomainType2>
0324 inline bool operator!=(const errored_status_code<DomainType1> &a, const errored_status_code<DomainType2> &b) noexcept
0325 {
0326 return !a.equivalent(static_cast<const status_code<DomainType2> &>(b));
0327 }
0328
0329 template <class DomainType1, class DomainType2> inline bool operator!=(const status_code<DomainType1> &a, const errored_status_code<DomainType2> &b) noexcept
0330 {
0331 return !a.equivalent(static_cast<const status_code<DomainType2> &>(b));
0332 }
0333
0334 template <class DomainType1, class DomainType2> inline bool operator!=(const errored_status_code<DomainType1> &a, const status_code<DomainType2> &b) noexcept
0335 {
0336 return !static_cast<const status_code<DomainType1> &>(a).equivalent(b);
0337 }
0338
0339 BOOST_OUTCOME_SYSTEM_ERROR2_TEMPLATE(class DomainType1, class T,
0340 class MakeStatusCodeResult =
0341 typename detail::safe_get_make_status_code_result<const T &>::type)
0342 BOOST_OUTCOME_SYSTEM_ERROR2_TREQUIRES(BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(is_status_code<MakeStatusCodeResult>::value))
0343 inline bool operator==(const errored_status_code<DomainType1> &a, const T &b)
0344 {
0345 return a.equivalent(make_status_code(b));
0346 }
0347
0348 BOOST_OUTCOME_SYSTEM_ERROR2_TEMPLATE(class T, class DomainType1,
0349 class MakeStatusCodeResult =
0350 typename detail::safe_get_make_status_code_result<const T &>::type)
0351 BOOST_OUTCOME_SYSTEM_ERROR2_TREQUIRES(BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(is_status_code<MakeStatusCodeResult>::value))
0352 inline bool operator==(const T &a, const errored_status_code<DomainType1> &b)
0353 {
0354 return b.equivalent(make_status_code(a));
0355 }
0356
0357 BOOST_OUTCOME_SYSTEM_ERROR2_TEMPLATE(class DomainType1, class T,
0358 class MakeStatusCodeResult =
0359 typename detail::safe_get_make_status_code_result<const T &>::type)
0360 BOOST_OUTCOME_SYSTEM_ERROR2_TREQUIRES(BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(is_status_code<MakeStatusCodeResult>::value))
0361 inline bool operator!=(const errored_status_code<DomainType1> &a, const T &b)
0362 {
0363 return !a.equivalent(make_status_code(b));
0364 }
0365
0366 BOOST_OUTCOME_SYSTEM_ERROR2_TEMPLATE(class T, class DomainType1,
0367 class MakeStatusCodeResult =
0368 typename detail::safe_get_make_status_code_result<const T &>::type)
0369 BOOST_OUTCOME_SYSTEM_ERROR2_TREQUIRES(BOOST_OUTCOME_SYSTEM_ERROR2_TPRED(is_status_code<MakeStatusCodeResult>::value))
0370 inline bool operator!=(const T &a, const errored_status_code<DomainType1> &b)
0371 {
0372 return !b.equivalent(make_status_code(a));
0373 }
0374
0375 template <class DomainType1, class T,
0376 class QuickStatusCodeType = typename quick_status_code_from_enum<T>::code_type
0377 >
0378 inline bool operator==(const errored_status_code<DomainType1> &a, const T &b)
0379 {
0380 return a.equivalent(QuickStatusCodeType(b));
0381 }
0382
0383 template <class T, class DomainType1,
0384 class QuickStatusCodeType = typename quick_status_code_from_enum<T>::code_type
0385 >
0386 inline bool operator==(const T &a, const errored_status_code<DomainType1> &b)
0387 {
0388 return b.equivalent(QuickStatusCodeType(a));
0389 }
0390
0391 template <class DomainType1, class T,
0392 class QuickStatusCodeType = typename quick_status_code_from_enum<T>::code_type
0393 >
0394 inline bool operator!=(const errored_status_code<DomainType1> &a, const T &b)
0395 {
0396 return !a.equivalent(QuickStatusCodeType(b));
0397 }
0398
0399 template <class T, class DomainType1,
0400 class QuickStatusCodeType = typename quick_status_code_from_enum<T>::code_type
0401 >
0402 inline bool operator!=(const T &a, const errored_status_code<DomainType1> &b)
0403 {
0404 return !b.equivalent(QuickStatusCodeType(a));
0405 }
0406
0407
0408 namespace detail
0409 {
0410 template <class T> struct is_errored_status_code
0411 {
0412 static constexpr bool value = false;
0413 };
0414 template <class T> struct is_errored_status_code<errored_status_code<T>>
0415 {
0416 static constexpr bool value = true;
0417 };
0418 template <class T> struct is_erased_errored_status_code
0419 {
0420 static constexpr bool value = false;
0421 };
0422 template <class T> struct is_erased_errored_status_code<errored_status_code<erased<T>>>
0423 {
0424 static constexpr bool value = true;
0425 };
0426 }
0427
0428
0429 template <class T> struct is_errored_status_code
0430 {
0431 static constexpr bool value =
0432 detail::is_errored_status_code<typename std::decay<T>::type>::value || detail::is_erased_errored_status_code<typename std::decay<T>::type>::value;
0433 };
0434
0435
0436 BOOST_OUTCOME_SYSTEM_ERROR2_NAMESPACE_END
0437
0438 #endif