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_GETADDRINFO_CODE_HPP
0032 #define BOOST_OUTCOME_SYSTEM_ERROR2_GETADDRINFO_CODE_HPP
0033
0034 #include "quick_status_code_from_enum.hpp"
0035
0036 #ifdef _WIN32
0037 #error Not available for Microsoft Windows
0038 #else
0039 #include <netdb.h>
0040 #include <sys/socket.h>
0041 #include <sys/types.h>
0042 #endif
0043
0044 BOOST_OUTCOME_SYSTEM_ERROR2_NAMESPACE_BEGIN
0045
0046 class _getaddrinfo_code_domain;
0047
0048 using getaddrinfo_code = status_code<_getaddrinfo_code_domain>;
0049
0050 using getaddrinfo_error = status_error<_getaddrinfo_code_domain>;
0051
0052
0053
0054 class _getaddrinfo_code_domain : public status_code_domain
0055 {
0056 template <class DomainType> friend class status_code;
0057 using _base = status_code_domain;
0058
0059 public:
0060
0061 using value_type = int;
0062 using _base::string_ref;
0063
0064
0065 constexpr explicit _getaddrinfo_code_domain(typename _base::unique_id_type id = 0x5b24b2de470ff7b6) noexcept
0066 : _base(id)
0067 {
0068 }
0069 _getaddrinfo_code_domain(const _getaddrinfo_code_domain &) = default;
0070 _getaddrinfo_code_domain(_getaddrinfo_code_domain &&) = default;
0071 _getaddrinfo_code_domain &operator=(const _getaddrinfo_code_domain &) = default;
0072 _getaddrinfo_code_domain &operator=(_getaddrinfo_code_domain &&) = default;
0073 ~_getaddrinfo_code_domain() = default;
0074
0075
0076 static inline constexpr const _getaddrinfo_code_domain &get();
0077
0078 virtual string_ref name() const noexcept override { return string_ref("getaddrinfo() domain"); }
0079
0080 virtual payload_info_t payload_info() const noexcept override
0081 {
0082 return {sizeof(value_type), sizeof(status_code_domain *) + sizeof(value_type),
0083 (alignof(value_type) > alignof(status_code_domain *)) ? alignof(value_type) : alignof(status_code_domain *)};
0084 }
0085
0086 protected:
0087 virtual bool _do_failure(const status_code<void> &code) const noexcept override
0088 {
0089 assert(code.domain() == *this);
0090 return static_cast<const getaddrinfo_code &>(code).value() != 0;
0091 }
0092 virtual bool _do_equivalent(const status_code<void> &code1, const status_code<void> &code2) const noexcept override
0093 {
0094 assert(code1.domain() == *this);
0095 const auto &c1 = static_cast<const getaddrinfo_code &>(code1);
0096 if(code2.domain() == *this)
0097 {
0098 const auto &c2 = static_cast<const getaddrinfo_code &>(code2);
0099 return c1.value() == c2.value();
0100 }
0101 return false;
0102 }
0103 virtual generic_code _generic_code(const status_code<void> &code) const noexcept override
0104 {
0105 assert(code.domain() == *this);
0106 const auto &c = static_cast<const getaddrinfo_code &>(code);
0107 switch(c.value())
0108 {
0109 #ifdef EAI_ADDRFAMILY
0110 case EAI_ADDRFAMILY:
0111 return errc::no_such_device_or_address;
0112 #endif
0113 case EAI_FAIL:
0114 return errc::io_error;
0115 case EAI_MEMORY:
0116 return errc::not_enough_memory;
0117 #ifdef EAI_NODATA
0118 case EAI_NODATA:
0119 return errc::no_such_device_or_address;
0120 #endif
0121 case EAI_NONAME:
0122 return errc::no_such_device_or_address;
0123 #ifdef EAI_OVERFLOW
0124 case EAI_OVERFLOW:
0125 return errc::argument_list_too_long;
0126 #endif
0127 case EAI_BADFLAGS:
0128 case EAI_SERVICE:
0129 return errc::invalid_argument;
0130 case EAI_FAMILY:
0131 case EAI_SOCKTYPE:
0132 return errc::operation_not_supported;
0133 case EAI_AGAIN:
0134 case EAI_SYSTEM:
0135 return errc::resource_unavailable_try_again;
0136 default:
0137 return errc::unknown;
0138 }
0139 }
0140 virtual string_ref _do_message(const status_code<void> &code) const noexcept override
0141 {
0142 assert(code.domain() == *this);
0143 const auto &c = static_cast<const getaddrinfo_code &>(code);
0144 return string_ref(gai_strerror(c.value()));
0145 }
0146 #if defined(_CPPUNWIND) || defined(__EXCEPTIONS) || defined(BOOST_OUTCOME_STANDARDESE_IS_IN_THE_HOUSE)
0147 BOOST_OUTCOME_SYSTEM_ERROR2_NORETURN virtual void _do_throw_exception(const status_code<void> &code) const override
0148 {
0149 assert(code.domain() == *this);
0150 const auto &c = static_cast<const getaddrinfo_code &>(code);
0151 throw status_error<_getaddrinfo_code_domain>(c);
0152 }
0153 #endif
0154 };
0155
0156 constexpr _getaddrinfo_code_domain getaddrinfo_code_domain;
0157 inline constexpr const _getaddrinfo_code_domain &_getaddrinfo_code_domain::get()
0158 {
0159 return getaddrinfo_code_domain;
0160 }
0161
0162 BOOST_OUTCOME_SYSTEM_ERROR2_NAMESPACE_END
0163
0164 #endif