GCC Code Coverage Report


Directory: libs/http_proto/
File: include/boost/http_proto/impl/source.hpp
Date: 2025-01-06 18:34:49
Exec Total Coverage
Lines: 25 25 100.0%
Functions: 2 2 100.0%
Branches: 12 16 75.0%

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/buffers
8 //
9
10 #ifndef BOOST_BUFFERS_IMPL_SOURCE_HPP
11 #define BOOST_BUFFERS_IMPL_SOURCE_HPP
12
13 #include <boost/http_proto/detail/except.hpp>
14 #include <boost/buffers/range.hpp>
15 #include <boost/buffers/type_traits.hpp>
16 #include <boost/assert.hpp>
17
18 namespace boost {
19 namespace http_proto {
20
21 inline
22 auto
23 16468 source::
24 results::
25 operator+=(
26 results const& rv) noexcept ->
27 results&
28 {
29
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 16468 times.
16468 BOOST_ASSERT(! ec.failed());
30
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 16468 times.
16468 BOOST_ASSERT(! finished);
31 16468 ec = rv.ec;
32 16468 bytes += rv.bytes;
33 16468 finished = rv.finished;
34 16468 return *this;
35 }
36
37 //------------------------------------------------
38
39 template<class T>
40 auto
41 5494 source::
42 read_impl(
43 T const& bs) ->
44 results
45 {
46 5494 results rv;
47 5494 constexpr int SmallArraySize = 16;
48 5494 buffers::mutable_buffer tmp[SmallArraySize];
49 5494 auto const tmp_end =
50 tmp + SmallArraySize;
51 5494 auto it = buffers::begin(bs);
52 5494 auto const end_ = buffers::end(bs);
53
2/2
✓ Branch 0 taken 5494 times.
✓ Branch 1 taken 5471 times.
10965 while(it != end_)
54 {
55 5494 auto p = tmp;
56 do
57 {
58 10988 *p++ = *it++;
59 }
60 while(
61
3/4
✓ Branch 0 taken 10988 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 5494 times.
✓ Branch 3 taken 5494 times.
10988 p != tmp_end &&
62 it != end_);
63
1/2
✓ Branch 1 taken 5494 times.
✗ Branch 2 not taken.
5494 rv += on_read(
64 buffers::mutable_buffer_span(
65 5494 tmp, p - tmp));
66
2/2
✓ Branch 1 taken 1 times.
✓ Branch 2 taken 5493 times.
5494 if(rv.ec.failed())
67 1 return rv;
68
2/2
✓ Branch 0 taken 22 times.
✓ Branch 1 taken 5471 times.
5493 if(rv.finished)
69 22 break;
70 }
71 5493 return rv;
72 }
73
74 } // http_proto
75 } // boost
76
77 #endif
78