libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
ResolveError.hxx
1#pragma once
2
3// Linux
4#include <netdb.h>
5
6// C++
7#include <iosfwd>
8#include <string_view>
9
10// cosmos
11#include <cosmos/error/CosmosError.hxx>
12#include <cosmos/error/errno.hxx>
13
14// see errno.hxx for the reason for this
15#ifdef NO_DATA
16# undef NO_DATA
17#endif
18
19namespace cosmos {
20
22
26class COSMOS_API ResolveError :
27 public CosmosError {
28public: // types
29
31 enum class Code : int {
33 ADDR_FAMILY = EAI_ADDRFAMILY,
35 AGAIN = EAI_AGAIN,
37 BAD_FLAGS = EAI_BADFLAGS,
39 FAIL = EAI_FAIL,
41 FAMILY = EAI_FAMILY,
43 MEMORY = EAI_MEMORY,
45 NO_DATA = EAI_NODATA,
47 NO_NAME = EAI_NONAME,
49 SERVICE = EAI_SERVICE,
51 SOCKTYPE = EAI_SOCKTYPE,
53 SYSTEM = EAI_SYSTEM,
55 OVERFLOW = EAI_OVERFLOW,
56 };
57
58public: // functions
59
61
65 explicit ResolveError(const Code code);
66
68 Code code() const {
69 return m_eai_code;
70 }
71
73
77 return m_system_errno;
78 }
79
81 std::string_view msg() const { return msg(m_eai_code); }
82
83 static std::string_view msg(const Code code);
84
86
87protected: // functions
88
89 void generateMsg() const override;
90
91protected: // data
92
97};
98
99} // end ns
100
101COSMOS_API std::ostream& operator<<(std::ostream &o, const cosmos::ResolveError::Code code);
Base class for libcosmos exceptions.
Specialized error type for AddressInfoList resolve errors.
Errno systemError() const
Returns the "other system error" if code() is Code::SYSTEM.
Errno m_system_errno
If m_eai_code == Code::EAI_SYSTEM this contains the system error.
Code m_eai_code
The plain resolve error code.
Code
Possible resolve error codes that can be stored in ResolveError.
std::string_view msg() const
Returns the plain resolver error message.
Code code() const
Returns the plain resolve error code stored in the exception.
Errno
Strong enum type representing errno error constants.
Definition errno.hxx:29
@ OVERFLOW
value too large to be stored in data type
@ AGAIN
resource unavailable, try again (e.g. non-blocking I/O)
@ NO_DATA
no message available
#define COSMOS_ERROR_IMPL
Use this in each type derived from CosmosError to apply mandatory overrides.
Definition macros.hxx:30