/* Proposed SG14 status_code (C) 2018-2019 Niall Douglas (5 commits) File Created: Jun 2018 Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef BOOST_OUTCOME_SYSTEM_ERROR2_ERRORED_STATUS_CODE_HPP #define BOOST_OUTCOME_SYSTEM_ERROR2_ERRORED_STATUS_CODE_HPP #include "generic_code.hpp" #include "status_code_ptr.hpp" BOOST_OUTCOME_SYSTEM_ERROR2_NAMESPACE_BEGIN /*! A `status_code` which is always a failure. The closest equivalent to `std::error_code`, except it cannot be modified, and is templated. Differences from `status_code`: - Never successful (this contract is checked on construction, if fails then it terminates the process). - Is immutable. */ template class errored_status_code : public status_code { using _base = status_code; using _base::clear; using _base::success; void _check() { if(_base::success()) { std::terminate(); } } public: //! The type of the erased error code. using typename _base::value_type; //! The type of a reference to a message string. using typename _base::string_ref; //! Default constructor. errored_status_code() = default; //! Copy constructor. errored_status_code(const errored_status_code &) = default; //! Move constructor. errored_status_code(errored_status_code &&) = default; // NOLINT //! Copy assignment. errored_status_code &operator=(const errored_status_code &) = default; //! Move assignment. errored_status_code &operator=(errored_status_code &&) = default; // NOLINT ~errored_status_code() = default; //! Explicitly construct from any similarly erased status code explicit errored_status_code(const _base &o) noexcept(std::is_nothrow_copy_constructible<_base>::value) : _base(o) { _check(); } //! Explicitly construct from any similarly erased status code explicit errored_status_code(_base &&o) noexcept(std::is_nothrow_move_constructible<_base>::value) : _base(static_cast<_base &&>(o)) { _check(); } /***** KEEP THESE IN SYNC WITH STATUS_CODE *****/ //! Implicit construction from any type where an ADL discovered `make_status_code(T, Args ...)` returns a `status_code`. template ::type, // Safe ADL lookup of make_status_code(), returns void if not found typename std::enable_if::type, errored_status_code>::value // not copy/move of self && !std::is_same::type, in_place_t>::value // not in_place_t && is_status_code::value // ADL makes a status code && std::is_constructible::value, // ADLed status code is compatible bool>::type = true> errored_status_code(T &&v, Args &&... args) noexcept(noexcept(make_status_code(std::declval(), std::declval()...))) // NOLINT : errored_status_code(make_status_code(static_cast(v), static_cast(args)...)) { _check(); } //! Explicit in-place construction. template explicit errored_status_code(in_place_t _, Args &&... args) noexcept(std::is_nothrow_constructible::value) : _base(_, static_cast(args)...) { _check(); } //! Explicit in-place construction from initialiser list. template explicit errored_status_code(in_place_t _, std::initializer_list il, Args &&... args) noexcept(std::is_nothrow_constructible, Args &&...>::value) : _base(_, il, static_cast(args)...) { _check(); } //! Explicit copy construction from a `value_type`. explicit errored_status_code(const value_type &v) noexcept(std::is_nothrow_copy_constructible::value) : _base(v) { _check(); } //! Explicit move construction from a `value_type`. explicit errored_status_code(value_type &&v) noexcept(std::is_nothrow_move_constructible::value) : _base(static_cast(v)) { _check(); } /*! Explicit construction from an erased status code. Available only if `value_type` is trivially destructible and `sizeof(status_code) <= sizeof(status_code>)`. Does not check if domains are equal. */ template ::value, bool>::type = true> explicit errored_status_code(const status_code> &v) noexcept(std::is_nothrow_copy_constructible::value) : errored_status_code(detail::erasure_cast(v.value())) // NOLINT { assert(v.domain() == this->domain()); // NOLINT _check(); } //! Return a const reference to the `value_type`. constexpr const value_type &value() const &noexcept { return this->_value; } }; namespace traits { template struct is_move_relocating> { static constexpr bool value = is_move_relocating::value; }; } // namespace traits template class errored_status_code> : public status_code> { using _base = status_code>; using _base::success; void _check() { if(_base::success()) { std::terminate(); } } public: using value_type = typename _base::value_type; using string_ref = typename _base::string_ref; //! Default construction to empty errored_status_code() = default; //! Copy constructor errored_status_code(const errored_status_code &) = default; //! Move constructor errored_status_code(errored_status_code &&) = default; // NOLINT //! Copy assignment errored_status_code &operator=(const errored_status_code &) = default; //! Move assignment errored_status_code &operator=(errored_status_code &&) = default; // NOLINT ~errored_status_code() = default; //! Explicitly construct from any similarly erased status code explicit errored_status_code(const _base &o) noexcept(std::is_nothrow_copy_constructible<_base>::value) : _base(o) { _check(); } //! Explicitly construct from any similarly erased status code explicit errored_status_code(_base &&o) noexcept(std::is_nothrow_move_constructible<_base>::value) : _base(static_cast<_base &&>(o)) { _check(); } /***** KEEP THESE IN SYNC WITH STATUS_CODE *****/ //! Implicit copy construction from any other status code if its value type is trivially copyable and it would fit into our storage template >::value // && std::is_trivially_copyable::value // && detail::type_erasure_is_safe::value, bool>::type = true> errored_status_code(const status_code &v) noexcept : _base(v) // NOLINT { _check(); } //! Implicit move construction from any other status code if its value type is trivially copyable or move relocating and it would fit into our storage template ::value, bool>::type = true> errored_status_code(status_code &&v) noexcept : _base(static_cast &&>(v)) // NOLINT { _check(); } //! Implicit construction from any type where an ADL discovered `make_status_code(T, Args ...)` returns a `status_code`. template ::type, // Safe ADL lookup of make_status_code(), returns void if not found typename std::enable_if::type, errored_status_code>::value // not copy/move of self && !std::is_same::type, value_type>::value // not copy/move of value type && is_status_code::value // ADL makes a status code && std::is_constructible::value, // ADLed status code is compatible bool>::type = true> errored_status_code(T &&v, Args &&... args) noexcept(noexcept(make_status_code(std::declval(), std::declval()...))) // NOLINT : errored_status_code(make_status_code(static_cast(v), static_cast(args)...)) { _check(); } //! Return the erased `value_type` by value. constexpr value_type value() const noexcept { return this->_value; } }; namespace traits { template struct is_move_relocating>> { static constexpr bool value = true; }; } // namespace traits //! True if the status code's are semantically equal via `equivalent()`. template inline bool operator==(const errored_status_code &a, const errored_status_code &b) noexcept { return a.equivalent(static_cast &>(b)); } //! True if the status code's are semantically equal via `equivalent()`. template inline bool operator==(const status_code &a, const errored_status_code &b) noexcept { return a.equivalent(static_cast &>(b)); } //! True if the status code's are semantically equal via `equivalent()`. template inline bool operator==(const errored_status_code &a, const status_code &b) noexcept { return static_cast &>(a).equivalent(b); } //! True if the status code's are not semantically equal via `equivalent()`. template inline bool operator!=(const errored_status_code &a, const errored_status_code &b) noexcept { return !a.equivalent(static_cast &>(b)); } //! True if the status code's are not semantically equal via `equivalent()`. template inline bool operator!=(const status_code &a, const errored_status_code &b) noexcept { return !a.equivalent(static_cast &>(b)); } //! True if the status code's are not semantically equal via `equivalent()`. template inline bool operator!=(const errored_status_code &a, const status_code &b) noexcept { return !static_cast &>(a).equivalent(b); } //! True if the status code's are semantically equal via `equivalent()` to `make_status_code(T)`. template ::type, // Safe ADL lookup of make_status_code(), returns void if not found typename std::enable_if::value, bool>::type = true> // ADL makes a status code inline bool operator==(const errored_status_code &a, const T &b) { return a.equivalent(make_status_code(b)); } //! True if the status code's are semantically equal via `equivalent()` to `make_status_code(T)`. template ::type, // Safe ADL lookup of make_status_code(), returns void if not found typename std::enable_if::value, bool>::type = true> // ADL makes a status code inline bool operator==(const T &a, const errored_status_code &b) { return b.equivalent(make_status_code(a)); } //! True if the status code's are not semantically equal via `equivalent()` to `make_status_code(T)`. template ::type, // Safe ADL lookup of make_status_code(), returns void if not found typename std::enable_if::value, bool>::type = true> // ADL makes a status code inline bool operator!=(const errored_status_code &a, const T &b) { return !a.equivalent(make_status_code(b)); } //! True if the status code's are semantically equal via `equivalent()` to `make_status_code(T)`. template ::type, // Safe ADL lookup of make_status_code(), returns void if not found typename std::enable_if::value, bool>::type = true> // ADL makes a status code inline bool operator!=(const T &a, const errored_status_code &b) { return !b.equivalent(make_status_code(a)); } namespace detail { template struct is_errored_status_code { static constexpr bool value = false; }; template struct is_errored_status_code> { static constexpr bool value = true; }; template struct is_erased_errored_status_code { static constexpr bool value = false; }; template struct is_erased_errored_status_code>> { static constexpr bool value = true; }; } // namespace detail //! Trait returning true if the type is an errored status code. template struct is_errored_status_code { static constexpr bool value = detail::is_errored_status_code::type>::value || detail::is_erased_errored_status_code::type>::value; }; BOOST_OUTCOME_SYSTEM_ERROR2_NAMESPACE_END #endif