src/corosio/src/local_endpoint.cpp

91.3% Lines (21/23) 100.0% List of functions (3/3) 70.0% Branches (7/10)
local_endpoint.cpp
f(x) Functions (3)
Line Branch TLA Hits Source Code
1 //
2 // Copyright (c) 2026 Michael Vandeberg
3 //
4 // Distributed under the Boost Software License, Version 1.0. (See accompanying
5 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 //
7 // Official repository: https://github.com/cppalliance/corosio
8 //
9
10 #include <boost/corosio/local_endpoint.hpp>
11 #include <boost/corosio/detail/except.hpp>
12
13 #include <cstring>
14 #include <ostream>
15 #include <system_error>
16
17 namespace boost::corosio {
18
19 45x local_endpoint::local_endpoint(std::string_view path)
20 {
21
2/2
✓ Branch 3 → 4 taken 2 times.
✓ Branch 3 → 6 taken 43 times.
45x if (path.size() > max_path_length)
22 2x detail::throw_system_error(
23 2x std::make_error_code(std::errc::filename_too_long),
24 "local_endpoint");
25 43x std::memcpy(path_, path.data(), path.size());
26 43x len_ = static_cast<std::uint8_t>(path.size());
27 43x }
28
29 26x local_endpoint::local_endpoint(
30 26x std::string_view path, std::error_code& ec) noexcept
31 {
32
2/2
✓ Branch 3 → 4 taken 17 times.
✓ Branch 3 → 6 taken 9 times.
26x if (path.size() > max_path_length)
33 {
34 17x ec = std::make_error_code(std::errc::filename_too_long);
35 17x return;
36 }
37 9x ec = {};
38 9x std::memcpy(path_, path.data(), path.size());
39 9x len_ = static_cast<std::uint8_t>(path.size());
40 }
41
42 std::ostream&
43 2x operator<<(std::ostream& os, local_endpoint const& ep)
44 {
45
2/2
✓ Branch 3 → 4 taken 1 time.
✓ Branch 3 → 5 taken 1 time.
2x if (ep.empty())
46 1x return os;
47
1/2
✗ Branch 6 → 7 not taken.
✓ Branch 6 → 12 taken 1 time.
1x if (ep.is_abstract())
48 {
49 // Skip the leading null byte; print the rest as the name
50 os << "[abstract:"
51 << std::string_view(ep.path_ + 1, ep.len_ - 1)
52 << ']';
53 }
54 else
55 {
56 1x os << ep.path();
57 }
58 1x return os;
59 }
60
61 } // namespace boost::corosio
62