GCC Code Coverage Report


Directory: cvmfs/
File: cvmfs/ring_buffer.cc
Date: 2026-03-15 02:35:27
Exec Total Coverage
Lines: 59 59 100.0%
Branches: 12 14 85.7%

Line Branch Exec Source
1 /**
2 * This file is part of the CernVM File System.
3 */
4
5 #include "ring_buffer.h"
6
7 #include <algorithm>
8 #include <cassert>
9 #include <cstdlib>
10 #include <cstring>
11
12 #include "util/smalloc.h"
13
14 const RingBuffer::ObjectHandle_t RingBuffer::kInvalidObjectHandle = size_t(-1);
15
16
17 172 RingBuffer::RingBuffer(size_t total_size)
18 172 : total_size_(total_size)
19 172 , free_space_(total_size)
20 172 , front_(0)
21 172 , back_(0)
22 172 , buffer_(reinterpret_cast<unsigned char *>(sxmmap(total_size_))) {
23
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 172 times.
172 assert(total_size_ >= sizeof(size_t));
24 172 }
25
26
27 172 RingBuffer::~RingBuffer() { sxunmap(buffer_, total_size_); }
28
29
30 90262 void RingBuffer::Put(const void *data, size_t size) {
31 90262 const size_t size_head = std::min(size, total_size_ - front_);
32
2/2
✓ Branch 0 taken 90217 times.
✓ Branch 1 taken 45 times.
90262 if (size_head > 0)
33 90217 memcpy(buffer_ + front_, data, size_head);
34
35
2/2
✓ Branch 0 taken 15255 times.
✓ Branch 1 taken 75007 times.
90262 if (size_head < size) {
36 15255 const size_t size_tail = size - size_head;
37 15255 memcpy(buffer_, reinterpret_cast<const unsigned char *>(data) + size_head,
38 size_tail);
39 }
40
41 90262 front_ = (front_ + size) % total_size_;
42 90262 free_space_ -= size;
43 90262 }
44
45
46 4670812 void RingBuffer::Get(size_t from, size_t size, void *to) const {
47 4670812 const size_t size_head = std::min(size, total_size_ - from);
48
2/2
✓ Branch 0 taken 4452382 times.
✓ Branch 1 taken 218430 times.
4670812 if (size_head > 0)
49 4452382 memcpy(to, buffer_ + from, size_head);
50
51
2/2
✓ Branch 0 taken 392355 times.
✓ Branch 1 taken 4278457 times.
4670812 if (size_head < size) {
52 392355 const size_t size_tail = size - size_head;
53 392355 memcpy(reinterpret_cast<unsigned char *>(to) + size_head, buffer_,
54 size_tail);
55 }
56 4670812 }
57
58
59 89910 void RingBuffer::Shrink(size_t by) {
60 89910 back_ = (back_ + by) % total_size_;
61 89910 free_space_ += by;
62 89910 }
63
64
65 134861 size_t RingBuffer::GetObjectSize(ObjectHandle_t handle) const {
66 size_t size_tag;
67 134861 Get(handle, sizeof(size_tag), &size_tag);
68
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 134861 times.
134861 assert(size_tag <= total_size_);
69 134861 return size_tag;
70 }
71
72
73 45176 RingBuffer::ObjectHandle_t RingBuffer::PushFront(const void *obj, size_t size) {
74 45176 size_t size_tag = size;
75 45176 size += sizeof(size_tag);
76
2/2
✓ Branch 0 taken 45 times.
✓ Branch 1 taken 45131 times.
45176 if (size > free_space_) {
77 45 return kInvalidObjectHandle;
78 }
79
80 45131 const ObjectHandle_t result = front_;
81
82 45131 Put(&size_tag, sizeof(size_tag));
83 45131 Put(obj, size_tag);
84
85 45131 return result;
86 }
87
88
89 44955 RingBuffer::ObjectHandle_t RingBuffer::RemoveBack() {
90 44955 const ObjectHandle_t result = back_;
91
92 44955 const size_t size_tag = GetObjectSize(result);
93 44955 Shrink(sizeof(size_tag));
94 44955 Shrink(size_tag);
95
96 44955 return result;
97 }
98
99
100 44910 void RingBuffer::CopyObject(ObjectHandle_t handle, void *to) const {
101 44910 const size_t size_tag = GetObjectSize(handle);
102 44910 const ObjectHandle_t object = (handle + sizeof(size_tag)) % total_size_;
103 44910 Get(object, size_tag, to);
104 44910 }
105
106
107 4491041 void RingBuffer::CopySlice(ObjectHandle_t handle, size_t size, size_t offset,
108 void *to) const {
109 4491041 const ObjectHandle_t begin = (handle + sizeof(size_t) + offset) % total_size_;
110 4491041 Get(begin, size, to);
111 4491041 }
112