GCC Code Coverage Report


Directory: ./
File: libs/capy/include/boost/capy/buffers/copy.hpp
Date: 2026-01-18 18:26:31
Exec Total Coverage
Lines: 35 35 100.0%
Functions: 6 6 100.0%
Branches: 55 85 64.7%

Line Branch Exec Source
1 //
2 // Copyright (c) 2023 Vinnie Falco (vinnie.falco@gmail.com)
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/capy
8 //
9
10 #ifndef BOOST_CAPY_BUFFERS_COPY_HPP
11 #define BOOST_CAPY_BUFFERS_COPY_HPP
12
13 #include <boost/capy/detail/config.hpp>
14 #include <boost/capy/buffers.hpp>
15 #include <cstring>
16 #include <utility>
17
18 namespace boost {
19 namespace capy {
20
21 /** Copy the contents of a buffer sequence into another buffer sequence
22
23 This function copies no more than `at_most` bytes from the constant buffer
24 sequence denoted by `src` into the mutable buffer sequence denoted by `dest`.
25
26 @par Constraints
27 @code
28 MutableBufferSequence<decltype(dest)> &&
29 ConstBufferSequence<decltype(src)>
30 @endcode
31
32 @return The number of bytes actually copied, which will be exactly equal to
33 `std::min( size(dest), size(src), at_most )`.
34
35 @param dest The destination buffer sequence
36
37 @param src The source buffer sequence
38 */
39 constexpr struct copy_mrdocs_workaround_t
40 {
41 template<
42 MutableBufferSequence MutableBufferSequence,
43 ConstBufferSequence ConstBufferSequence>
44 std::size_t
45 305108 operator()(
46 MutableBufferSequence const& dest,
47 ConstBufferSequence const& src,
48 std::size_t at_most = std::size_t(-1)) const noexcept
49 {
50 305108 std::size_t total = 0;
51 305108 std::size_t pos0 = 0;
52 305108 std::size_t pos1 = 0;
53 305108 auto const end0 = end(src);
54 305108 auto const end1 = end(dest);
55 305108 auto it0 = begin(src);
56 305108 auto it1 = begin(dest);
57 305108 while(
58
2/2
✓ Branch 0 taken 1328 times.
✓ Branch 1 taken 682 times.
905175 total < at_most &&
59
5/7
✓ Branch 0 taken 2010 times.
✗ Branch 1 not taken.
✓ Branch 3 taken 905 times.
✗ Branch 4 not taken.
✓ Branch 5 taken 838 times.
✓ Branch 6 taken 596 times.
✓ Branch 2 taken 423 times.
1522773 it0 != end0 &&
60 it1 != end1)
61 {
62 606529 const_buffer b0 = *it0;
63 606529 mutable_buffer b1 = *it1;
64 606529 b0 += pos0;
65 606529 b1 += pos1;
66 std::size_t const amount =
67 1819587 [&]
68 {
69 606529 std::size_t n = b0.size();
70
15/24
✓ Branch 1 taken 338 times.
✓ Branch 2 taken 576975 times.
✓ Branch 4 taken 12281 times.
✓ Branch 5 taken 11935 times.
✓ Branch 7 taken 1898 times.
✓ Branch 8 taken 3071 times.
✗ Branch 10 not taken.
✓ Branch 11 taken 3 times.
✗ Branch 13 not taken.
✓ Branch 14 taken 3 times.
✗ Branch 16 not taken.
✓ Branch 17 taken 3 times.
✗ Branch 19 not taken.
✓ Branch 20 taken 3 times.
✗ Branch 22 not taken.
✓ Branch 23 taken 3 times.
✗ Branch 25 not taken.
✓ Branch 26 taken 2 times.
✗ Branch 28 not taken.
✓ Branch 29 taken 2 times.
✗ Branch 31 not taken.
✓ Branch 32 taken 11 times.
✗ Branch 34 not taken.
✓ Branch 35 taken 1 times.
606529 if( n > b1.size())
71 14517 n = b1.size();
72
14/24
✗ Branch 0 not taken.
✓ Branch 1 taken 577313 times.
✓ Branch 2 taken 3150 times.
✓ Branch 3 taken 21066 times.
✓ Branch 4 taken 1728 times.
✓ Branch 5 taken 3241 times.
✗ Branch 6 not taken.
✓ Branch 7 taken 3 times.
✗ Branch 8 not taken.
✓ Branch 9 taken 3 times.
✗ Branch 10 not taken.
✓ Branch 11 taken 3 times.
✗ Branch 12 not taken.
✓ Branch 13 taken 3 times.
✗ Branch 14 not taken.
✓ Branch 15 taken 3 times.
✗ Branch 16 not taken.
✓ Branch 17 taken 2 times.
✗ Branch 18 not taken.
✓ Branch 19 taken 2 times.
✗ Branch 20 not taken.
✓ Branch 21 taken 11 times.
✗ Branch 22 not taken.
✓ Branch 23 taken 1 times.
606529 if( n > at_most - total)
73 4878 n = at_most - total;
74
15/24
✓ Branch 0 taken 369923 times.
✓ Branch 1 taken 207390 times.
✓ Branch 2 taken 20075 times.
✓ Branch 3 taken 4141 times.
✓ Branch 4 taken 4619 times.
✓ Branch 5 taken 350 times.
✓ Branch 6 taken 3 times.
✗ Branch 7 not taken.
✓ Branch 8 taken 3 times.
✗ Branch 9 not taken.
✓ Branch 10 taken 3 times.
✗ Branch 11 not taken.
✓ Branch 12 taken 3 times.
✗ Branch 13 not taken.
✓ Branch 14 taken 3 times.
✗ Branch 15 not taken.
✓ Branch 16 taken 2 times.
✗ Branch 17 not taken.
✓ Branch 18 taken 2 times.
✗ Branch 19 not taken.
✓ Branch 20 taken 11 times.
✗ Branch 21 not taken.
✓ Branch 22 taken 1 times.
✗ Branch 23 not taken.
606529 if(n != 0)
75 394648 std::memcpy(
76 b1.data(),
77 b0.data(),
78 n);
79 606529 return n;
80 606529 }();
81 606529 total += amount;
82
2/2
✓ Branch 1 taken 372 times.
✓ Branch 2 taken 889 times.
606529 if(amount == b1.size())
83 {
84 18604 ++it1;
85 18604 pos1 = 0;
86 }
87 else
88 {
89 587925 pos1 += amount;
90 }
91
2/2
✓ Branch 1 taken 924 times.
✓ Branch 2 taken 337 times.
606529 if(amount == b0.size())
92 {
93 588550 ++it0;
94 588550 pos0 = 0;
95 }
96 else
97 {
98 17979 pos0 += amount;
99 }
100 }
101 305108 return total;
102 }
103 } copy {};
104
105 } // capy
106 } // boost
107
108 #endif
109