libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
UnixAddress.hxx
1#pragma once
2
3// Linux
4#include <sys/un.h>
5
6// C++
7#include <string_view>
8
9// cosmos
10#include <cosmos/dso_export.h>
11#include <cosmos/net/SocketAddress.hxx>
12#include <cosmos/utils.hxx>
13
14namespace cosmos {
15
17
52class COSMOS_API UnixAddress :
53 public SocketAddress {
54public: // types
55
58
59public: // functions
60
63 m_addr.sun_family = to_integral(family());
64 m_addr.sun_path[0] = '\0';
65 }
66
68 explicit UnixAddress(const std::string_view path, const Abstract abstract = Abstract{false}) :
69 UnixAddress{} {
70 setPath(path, abstract);
71 }
72
73 SocketFamily family() const override {
74 return SocketFamily::UNIX;
75 }
76
78 size_t size() const override {
79 return BASE_SIZE + m_path_len + 1;
80 }
81
83 size_t maxSize() const override {
84 return sizeof(m_addr);
85 }
86
88
93 size_t maxPathLen() const {
94 return sizeof(m_addr) - BASE_SIZE - 1;
95 }
96
98
104 void setPath(const std::string_view path, const Abstract abstract = Abstract{false});
105
107
112 std::string_view getPath() const {
113 if (isAbstract()) {
114 return std::string_view{m_addr.sun_path + 1, m_path_len};
115 } else {
116 return std::string_view{m_addr.sun_path, m_path_len};
117 }
118 }
119
121
127 std::string label() const;
128
130 bool isAbstract() const {
131 return m_path_len > 1 && m_addr.sun_path[0] == '\0';
132 }
133
135 bool isUnnamed() const {
136 return m_path_len == 0;
137 }
138
139 bool operator==(const UnixAddress &other) const {
140 if (m_path_len != other.m_path_len)
141 return false;
142 if (m_addr.sun_family != other.m_addr.sun_family)
143 return false;
144
145 return std::memcmp(m_addr.sun_path, other.m_addr.sun_path, m_path_len + 1) == 0;
146 }
147
148 bool operator!=(const UnixAddress &other) const {
149 return !(*this == other);
150 }
151
152protected: // functions
153
154 void update(size_t new_length) override;
155
156 sockaddr* basePtr() override {
157 return reinterpret_cast<sockaddr*>(&m_addr);
158 }
159
160 const sockaddr* basePtr() const override {
161 return reinterpret_cast<const sockaddr*>(&m_addr);
162 }
163
164protected: // data
165
166 static constexpr size_t BASE_SIZE = offsetof(struct sockaddr_un, sun_path);
167 sockaddr_un m_addr;
168 size_t m_path_len = 0;
169};
170
171} // end ns
Strong template type to wrap boolean values in a named type.
Definition utils.hxx:50
Base class for all types of socket addresses.
Address type for local UNIX domain sockets.
SocketFamily family() const override
Returns the concrete SocketFamily for the implementation address type.
std::string_view getPath() const
Returns the currently set path.
bool isUnnamed() const
Returns whether this address is currently unnamed (empty).
UnixAddress()
Creates an empty address.
size_t maxPathLen() const
Maximum path length that can be stored in a UnixAddress structure.
sockaddr * basePtr() override
Returns a mutable pointer to the sockaddr* base structure.
bool isAbstract() const
Returns whether currently an abstract path is contained.
size_t size() const override
Returns the size of the structure considering the currently set path length only.
size_t maxSize() const override
Returns the maximum address size without taking into account the currently set path.
UnixAddress(const std::string_view path, const Abstract abstract=Abstract{false})
Creates an address from the given path which can also be abstract.
size_t m_path_len
used bytes in m_addr.sun_path excluding terminator
const sockaddr * basePtr() const override
Returns a const pointer to the sockaddr* base structure.
SocketFamily
A socket's family setting.
Definition types.hxx:37