libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
IPAddress.cxx
1// C++
2#include <cstring>
3
4// Cosmos
5#include <cosmos/error/ApiError.hxx>
6#include <cosmos/error/ResolveError.hxx>
7#include <cosmos/error/RuntimeError.hxx>
8#include <cosmos/net/IPAddress.hxx>
9
10namespace cosmos {
11
13 return const_cast<void*>(static_cast<const IPAddressBase&>(*this).ipAddrPtr());
14}
15
16const void* IPAddressBase::ipAddrPtr() const {
17 if (isV4()) {
18 return &reinterpret_cast<const sockaddr_in*>(basePtr())->sin_addr;
19 } else {
20 return &reinterpret_cast<const sockaddr_in6*>(basePtr())->sin6_addr;
21 }
22}
23
24std::string IPAddressBase::ipAsString() const {
25 std::string ret;
26 ret.resize(64);
27
28 while (!::inet_ntop(
29 to_integral(this->family()),
30 ipAddrPtr(),
31 ret.data(),
32 ret.size())) {
33 if (ret.size() > 512) {
34 cosmos_throw (ApiError("inet_ntop()"));
35 }
36 ret.resize(ret.size() * 2);
37 }
38
39 ret.resize(std::strlen(ret.data()));
40 return ret;
41}
42
44 const auto res = ::inet_pton(
45 to_integral(this->family()),
46 str.raw(),
47 ipAddrPtr());
48
49 if (res < 0) {
50 cosmos_throw (ApiError("inet_pton()"));
51 } else if (res == 0) {
52 cosmos_throw (RuntimeError("inet_pton: bad IP address string"));
53 }
54}
55
56void IPAddressBase::getNameInfo(std::string &host, std::string &service, const NameInfoFlags flags) {
57 getNameInfo(&host, &service, flags);
58}
59
60std::string IPAddressBase::getHostInfo(const NameInfoFlags flags) {
61 std::string ret;
62
63 getNameInfo(&ret, nullptr, flags);
64
65 return ret;
66}
67
69 std::string ret;
70
71 getNameInfo(nullptr, &ret, flags);
72
73 return ret;
74}
75
76void IPAddressBase::getNameInfo(std::string *host, std::string *service, const NameInfoFlags flags) {
77
78 if (host) {
79 host->resize(MAX_HOSTNAME);
80 }
81
82 if (service) {
83 service->resize(MAX_SERVICE);
84 }
85
86 const auto res = ::getnameinfo(
87 this->basePtr(), this->size(),
88 host ? host->data() : nullptr, host ? host->size() : 0,
89 service ? service->data() : nullptr, service ? service->size() : 0,
90 flags.raw());
91
92 if (res != 0) {
93 cosmos_throw (ResolveError(ResolveError::Code{res}));
94 }
95
96 if (host) {
97 host->resize(std::strlen(host->c_str()));
98 }
99
100 if (service) {
101 service->resize(std::strlen(service->c_str()));
102 }
103}
104
105} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
Base class for both IPv4 and IPv6 addresses.
Definition IPAddress.hxx:26
void * ipAddrPtr()
returns a pointer to the in_addr or in6_addr.
Definition IPAddress.cxx:12
void setIpFromString(const SysString str)
Sets the binary IP address from the given string.
Definition IPAddress.cxx:43
std::string getServiceInfo(const NameInfoFlags flags={})
Reverse resolve only the port portion into a service name and return it.
Definition IPAddress.cxx:68
std::string ipAsString() const
Returns a textual representation of the currently set IP.
Definition IPAddress.cxx:24
void getNameInfo(std::string &host, std::string &service, const NameInfoFlags flags={})
Reverse resolve the binary IP address and port into DNS and service names.
Definition IPAddress.cxx:56
std::string getHostInfo(const NameInfoFlags flags={})
Reverse resolve only the IP address portion into a DNS name and return it.
Definition IPAddress.cxx:60
Code
Possible resolve error codes that can be stored in ResolveError.
Exception type for generic runtime errors.
virtual SocketFamily family() const =0
Returns the concrete SocketFamily for the implementation address type.
virtual size_t size() const =0
Returns the size of the socket address in bytes found at basePtr().
virtual sockaddr * basePtr()=0
Returns a mutable pointer to the sockaddr* base structure.
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33