libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
UnixAddress.cxx
1// cosmos
2#include <cosmos/error/RuntimeError.hxx>
3#include <cosmos/net/UnixAddress.hxx>
4
5namespace cosmos {
6
7void UnixAddress::setPath(const std::string_view path, const Abstract abstract) {
8
9 if (path.size() > maxPathLen()) {
10 cosmos_throw( RuntimeError("UNIX address path too long") );
11 }
12
13 char *ptr = m_addr.sun_path;
14
15 if (abstract) {
16 *ptr = '\0';
17 ptr++;
18 }
19
20 std::memcpy(ptr, path.data(), path.size());
21
22 if (!abstract) {
23 ptr[path.size()] = '\0';
24 }
25
26 m_path_len = path.size();
27}
28
29void UnixAddress::update(size_t new_length) {
30 if (new_length < BASE_SIZE) {
31 m_addr.sun_family = to_integral(family());
32 m_path_len = 0;
33 cosmos_throw( RuntimeError("short address on update") );
34 }
35
36 new_length -= BASE_SIZE;
37
38 // we don't count the null terminator (leading for abstract path, or
39 // trailing for regular path).
40 new_length--;
41
42 m_path_len = new_length;
43}
44
45std::string UnixAddress::label() const {
46 if (isUnnamed()) {
47 return "<unnamed>";
48 } else if(isAbstract()) {
49 std::string ret;
50 ret.push_back('@');
51 ret.append(getPath().begin() + 1, m_path_len);
52 return ret;
53 } else {
54 return std::string{getPath()};
55 }
56}
57
58} // end ns
Strong template type to wrap boolean values in a named type.
Definition utils.hxx:50
Exception type for generic runtime errors.
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).
void update(size_t new_length) override
Update the address structure after it has been filled in by the kernel.
size_t maxPathLen() const
Maximum path length that can be stored in a UnixAddress structure.
bool isAbstract() const
Returns whether currently an abstract path is contained.
void setPath(const std::string_view path, const Abstract abstract=Abstract{false})
Sets a new path for the address.
size_t m_path_len
used bytes in m_addr.sun_path excluding terminator
std::string label() const
Returns a human readable label for the contained path.