libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::ResolveError Class Reference

Specialized error type for AddressInfoList resolve errors. More...

#include <ResolveError.hxx>

+ Inheritance diagram for cosmos::ResolveError:

Public Types

enum class  Code : int {
  ADDR_FAMILY = EAI_ADDRFAMILY , AGAIN = EAI_AGAIN , BAD_FLAGS = EAI_BADFLAGS , FAIL = EAI_FAIL ,
  FAMILY = EAI_FAMILY , MEMORY = EAI_MEMORY , NO_DATA = EAI_NODATA , NO_NAME = EAI_NONAME ,
  SERVICE = EAI_SERVICE , SOCKTYPE = EAI_SOCKTYPE , SYSTEM = EAI_SYSTEM , OVERFLOW = EAI_OVERFLOW
}
 Possible resolve error codes that can be stored in ResolveError. More...
 

Public Member Functions

 ResolveError (const Code code)
 Create a ResolveError for the given error code.
 
Code code () const
 Returns the plain resolve error code stored in the exception.
 
Errno systemError () const
 Returns the "other system error" if code() is Code::SYSTEM.
 
std::string_view msg () const
 Returns the plain resolver error message.
 
- Public Member Functions inherited from cosmos::CosmosError
 CosmosError (const std::string_view error_class, const std::string_view fixed_text={})
 
CosmosErrorsetInfo (const char *file, const size_t line, const char *func)
 Set exception context information.
 
const char * what () const override throw ()
 Implementation of the std::exception interface.
 
std::string shortWhat () const
 Returns a shorter description of the error without verbose context.
 
virtual void raise ()=0
 Throw the most specialized type of this object in the inheritance hierarchy.
 

Static Public Member Functions

static std::string_view msg (const Code code)
 

Public Attributes

 COSMOS_ERROR_IMPL
 

Protected Member Functions

void generateMsg () const override
 Append type specific error information to m_msg.
 
- Protected Member Functions inherited from cosmos::CosmosError
void setErrorClass (const std::string_view error_class)
 Allows to override error class to allow simpler implementation of derived types.
 

Protected Attributes

Code m_eai_code
 The plain resolve error code.
 
Errno m_system_errno
 If m_eai_code == Code::EAI_SYSTEM this contains the system error.
 
- Protected Attributes inherited from cosmos::CosmosError
std::string_view m_error_class
 Descriptive, unique error class label.
 
std::string m_msg
 Runtime generated error message.
 
bool m_msg_generated = false
 Whether m_msg has been assembled yet.
 
const char * m_file = nullptr
 
const char * m_func = nullptr
 
size_t m_line = 0
 

Detailed Description

Specialized error type for AddressInfoList resolve errors.

DNS name resolution in Linux APIs uses a separate error reporting mechanism. This error type covers this mechanism.

Definition at line 26 of file ResolveError.hxx.

Member Enumeration Documentation

◆ Code

enum class cosmos::ResolveError::Code : int
strong

Possible resolve error codes that can be stored in ResolveError.

Enumerator
ADDR_FAMILY 

The specified network host does not have any network addresses in the requested family.

AGAIN 

The name server returned a temporary failure indication.

BAD_FLAGS 

Bad AddressHints::Flags encountered.

FAIL 

A permanent failure has been indicated by the nameserver.

FAMILY 

The requested address family is not supported.

MEMORY 

Out of memory.

NO_DATA 

The requested network host exists but has no network address defined.

NO_NAME 

The node or service is not known; or Flags::NUMERIC_SERVICE was specified and service was not a number.

SERVICE 

The requested service is not available for the requested SocketType.

SOCKTYPE 

The requested SocketType is not supported.

SYSTEM 

Other system error, check Errno from systemError().

OVERFLOW 

The buffer pointed to by host or serv was too small (only used in IPAddress::getNameInfo()).

Definition at line 31 of file ResolveError.hxx.

31 : 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 };
@ OVERFLOW
The buffer pointed to by host or serv was too small (only used in IPAddress::getNameInfo()).
@ SOCKTYPE
The requested SocketType is not supported.
@ BAD_FLAGS
Bad AddressHints::Flags encountered.
@ FAMILY
The requested address family is not supported.
@ AGAIN
The name server returned a temporary failure indication.
@ ADDR_FAMILY
The specified network host does not have any network addresses in the requested family.
@ NO_NAME
The node or service is not known; or Flags::NUMERIC_SERVICE was specified and service was not a numbe...
@ FAIL
A permanent failure has been indicated by the nameserver.
@ NO_DATA
The requested network host exists but has no network address defined.
@ SERVICE
The requested service is not available for the requested SocketType.
@ SYSTEM
Other system error, check Errno from systemError().

Constructor & Destructor Documentation

◆ ResolveError()

cosmos::ResolveError::ResolveError ( const Code code)
explicit

Create a ResolveError for the given error code.

If code is Code::SYSTEM then the current Errno will also be stored in the exception.

Definition at line 35 of file ResolveError.cxx.

35 :
36 CosmosError{"ResolveError"},
38 m_system_errno{code == Code::SYSTEM ? get_errno() : Errno::NO_ERROR} {
39}
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 code() const
Returns the plain resolve error code stored in the exception.
Errno
Strong enum type representing errno error constants.
Definition errno.hxx:29
Errno get_errno()
Wrapper that returns the Errno strongly typed representation of the current errno
Definition errno.hxx:111

Member Function Documentation

◆ code()

Code cosmos::ResolveError::code ( ) const
inline

Returns the plain resolve error code stored in the exception.

Definition at line 68 of file ResolveError.hxx.

68 {
69 return m_eai_code;
70 }

◆ generateMsg()

void cosmos::ResolveError::generateMsg ( ) const
overrideprotectedvirtual

Append type specific error information to m_msg.

This function is called by the implementation when error specific information needs to be appended to the m_msg string.

At entry into this function m_msg can already contain data that must not be discarded.

This function will be called at most once during the lifetime of an object, and only if the error message actually needs to be generated due to a call to what().

Reimplemented from cosmos::CosmosError.

Definition at line 47 of file ResolveError.cxx.

47 {
48 std::stringstream ss;
49 ss << m_eai_code;
50
51 if (m_eai_code == Code::SYSTEM) {
52 ss << " (errno = " << m_system_errno << ")";
53 }
54
55 m_msg += ss.str();
56}
std::string m_msg
Runtime generated error message.

◆ msg() [1/2]

std::string_view cosmos::ResolveError::msg ( ) const
inline

Returns the plain resolver error message.

Definition at line 81 of file ResolveError.hxx.

81{ return msg(m_eai_code); }
std::string_view msg() const
Returns the plain resolver error message.

◆ msg() [2/2]

std::string_view cosmos::ResolveError::msg ( const Code code)
static

This returns a statically allocated string so we can use string_view here.

Definition at line 41 of file ResolveError.cxx.

41 {
44 return gai_strerror(to_integral(code));
45}

◆ systemError()

Errno cosmos::ResolveError::systemError ( ) const
inline

Returns the "other system error" if code() is Code::SYSTEM.

If there is no system error then Errno::NO_ERROR is returned.

Definition at line 76 of file ResolveError.hxx.

76 {
77 return m_system_errno;
78 }

Member Data Documentation

◆ COSMOS_ERROR_IMPL

cosmos::ResolveError::COSMOS_ERROR_IMPL

Definition at line 85 of file ResolveError.hxx.

◆ m_eai_code

Code cosmos::ResolveError::m_eai_code
protected

The plain resolve error code.

Definition at line 94 of file ResolveError.hxx.

◆ m_system_errno

Errno cosmos::ResolveError::m_system_errno
protected

If m_eai_code == Code::EAI_SYSTEM this contains the system error.

Definition at line 96 of file ResolveError.hxx.


The documentation for this class was generated from the following files: