10#include <cosmos/dso_export.h>
11#include <cosmos/net/SocketAddress.hxx>
12#include <cosmos/utils.hxx>
63 m_addr.sun_family = to_integral(family());
64 m_addr.sun_path[0] =
'\0';
70 setPath(path, abstract);
74 return SocketFamily::UNIX;
78 size_t size()
const override {
79 return BASE_SIZE + m_path_len + 1;
84 return sizeof(m_addr);
94 return sizeof(m_addr) - BASE_SIZE - 1;
104 void setPath(
const std::string_view path,
const Abstract abstract = Abstract{
false});
114 return std::string_view{m_addr.sun_path + 1, m_path_len};
116 return std::string_view{m_addr.sun_path, m_path_len};
127 std::string label()
const;
131 return m_path_len > 1 && m_addr.sun_path[0] ==
'\0';
136 return m_path_len == 0;
142 if (m_addr.sun_family != other.m_addr.sun_family)
145 return std::memcmp(m_addr.sun_path, other.m_addr.sun_path, m_path_len + 1) == 0;
148 bool operator!=(
const UnixAddress &other)
const {
149 return !(*
this == other);
154 void update(
size_t new_length)
override;
157 return reinterpret_cast<sockaddr*
>(&m_addr);
161 return reinterpret_cast<const sockaddr*
>(&m_addr);
166 static constexpr size_t BASE_SIZE = offsetof(
struct sockaddr_un, sun_path);
168 size_t m_path_len = 0;
Strong template type to wrap boolean values in a named type.
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.