GCC Code Coverage Report


Directory: libs/http_proto/
File: src/sink.cpp
Date: 2025-01-06 18:34:49
Exec Total Coverage
Lines: 14 14 100.0%
Functions: 1 1 100.0%
Branches: 11 12 91.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/http_proto
8 //
9
10 #include <boost/http_proto/sink.hpp>
11
12 namespace boost {
13 namespace http_proto {
14
15 auto
16 20363 sink::
17 on_write(
18 buffers::const_buffer_span bs,
19 bool more) ->
20 results
21 {
22 20363 auto it = bs.begin();
23 20363 auto const end_ = bs.end();
24 20363 results rv;
25
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 20362 times.
20363 if(it == end_)
26 1 return rv;
27 do
28 {
29 40725 buffers::const_buffer b(*it++);
30
1/2
✓ Branch 1 taken 40725 times.
✗ Branch 2 not taken.
40725 rv += on_write(b,
31
4/4
✓ Branch 0 taken 20360 times.
✓ Branch 1 taken 20365 times.
✓ Branch 2 taken 20038 times.
✓ Branch 3 taken 322 times.
40725 it != end_ ||
32 40725 more);
33
2/2
✓ Branch 1 taken 3 times.
✓ Branch 2 taken 40722 times.
40725 if(rv.ec.failed())
34 3 return rv;
35 }
36
2/2
✓ Branch 0 taken 20363 times.
✓ Branch 1 taken 20359 times.
40722 while(it != end_);
37 20359 return rv;
38 }
39
40 } // http_proto
41 } // boost
42