GCC Code Coverage Report


Directory: ./
File: Queue.cpp
Date: 2026-09-23 22:12:21
Exec Total Coverage
Lines: 49 77 63.6%
Functions: 10 17 58.8%
Branches: 29 46 63.0%

Line Branch Exec Source
1 // ======================================================================
2 // \title Os/Queue.cpp
3 // \brief common function implementation for Os::Queue
4 // ======================================================================
5 #include "Os/Queue.hpp"
6 #include "Fw/Types/Assert.hpp"
7 #include "Fw/Types/Serializable.hpp"
8
9 namespace Os {
10
11 FwSizeType Queue::s_queueCount = 0;
12 #if FW_QUEUE_REGISTRATION
13 QueueRegistry* Queue::s_queueRegistry = nullptr;
14 #endif
15
16
2/2
✓ Branch 2 taken 29 times.
✓ Branch 5 taken 29 times.
29 Queue::Queue() : m_name(""), m_depth(0), m_size(0), m_delegate(*QueueInterface::getDelegate(m_handle_storage)) {}
17
18 58 Queue::~Queue() {
19 58 m_delegate.~QueueInterface();
20 58 }
21
22 29 QueueInterface::Status Queue ::create(FwEnumStoreType id,
23 const Fw::ConstStringBase& name,
24 FwSizeType depth,
25 FwSizeType messageSize) {
26 29 FW_ASSERT(&this->m_delegate == reinterpret_cast<QueueInterface*>(&this->m_handle_storage[0]));
27 29 FW_ASSERT(depth > 0);
28 29 FW_ASSERT(messageSize > 0);
29 // Check for previous creation call
30
2/4
✓ Branch 0 taken 29 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 29 times.
29 if (this->m_depth > 0 || this->m_size > 0) {
31 ✗ return QueueInterface::Status::ALREADY_CREATED;
32 }
33 29 QueueInterface::Status status = this->m_delegate.create(id, name, depth, messageSize);
34
1/2
✓ Branch 0 taken 29 times.
✗ Branch 1 not taken.
29 if (status == QueueInterface::Status::OP_OK) {
35
1/1
✓ Branch 1 taken 29 times.
29 this->m_name = name;
36 29 this->m_depth = depth;
37 29 this->m_size = messageSize;
38
2/2
✓ Branch 1 taken 29 times.
✓ Branch 4 taken 29 times.
29 ScopeLock lock(Queue::getStaticMutex());
39 29 Queue::s_queueCount++;
40 #if FW_QUEUE_REGISTRATION
41
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 29 times.
29 if (Queue::s_queueRegistry != nullptr) {
42 ✗ Queue::s_queueRegistry->registerQueue(this);
43 }
44 #endif
45 29 }
46 29 return status;
47 }
48
49 29 void Queue::teardown() {
50 29 FW_ASSERT(&this->m_delegate == reinterpret_cast<QueueInterface*>(&this->m_handle_storage[0]));
51 29 return this->m_delegate.teardown();
52 }
53
54 7583 QueueInterface::Status Queue::send(const U8* buffer,
55 FwSizeType size,
56 FwQueuePriorityType priority,
57 QueueInterface::BlockingType blockType) {
58 7583 FW_ASSERT(&this->m_delegate == reinterpret_cast<QueueInterface*>(&this->m_handle_storage[0]));
59 7583 FW_ASSERT(buffer != nullptr);
60 // Check if initialized
61
3/4
✓ Branch 0 taken 7579 times.
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 7580 times.
7580 if (this->m_depth == 0 || this->m_size == 0) {
62 ✗ return QueueInterface::Status::UNINITIALIZED;
63 }
64 // Check size before proceeding
65
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 7581 times.
7580 else if (size > this->getMessageSize()) {
66 ✗ return QueueInterface::Status::SIZE_MISMATCH;
67 }
68 7581 return this->m_delegate.send(buffer, size, priority, blockType);
69 }
70
71 8761 QueueInterface::Status Queue::receive(U8* destination,
72 FwSizeType capacity,
73 QueueInterface::BlockingType blockType,
74 FwSizeType& actualSize,
75 FwQueuePriorityType& priority) {
76 8761 FW_ASSERT(&this->m_delegate == reinterpret_cast<QueueInterface*>(&this->m_handle_storage[0]));
77 8761 FW_ASSERT(destination != nullptr);
78 // Check if initialized
79
3/4
✓ Branch 0 taken 8762 times.
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 8763 times.
8763 if (this->m_depth == 0 || this->m_size == 0) {
80 ✗ return QueueInterface::Status::UNINITIALIZED;
81 }
82 // Check capacity before proceeding
83
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8757 times.
8763 else if (capacity < this->getMessageSize()) {
84 ✗ return QueueInterface::Status::SIZE_MISMATCH;
85 }
86 8757 return this->m_delegate.receive(destination, capacity, blockType, actualSize, priority);
87 }
88
89 ✗ FwSizeType Queue::getMessagesAvailable() const {
90 ✗ FW_ASSERT(&this->m_delegate == reinterpret_cast<const QueueInterface*>(&this->m_handle_storage[0]));
91 ✗ return this->m_delegate.getMessagesAvailable();
92 }
93
94 ✗ FwSizeType Queue::getMessageHighWaterMark() const {
95 ✗ FW_ASSERT(&this->m_delegate == reinterpret_cast<const QueueInterface*>(&this->m_handle_storage[0]));
96 ✗ return this->m_delegate.getMessageHighWaterMark();
97 }
98
99 ✗ QueueHandle* Queue::getHandle() {
100 ✗ FW_ASSERT(&this->m_delegate == reinterpret_cast<const QueueInterface*>(&this->m_handle_storage[0]));
101 ✗ return this->m_delegate.getHandle();
102 }
103
104 7584 QueueInterface::Status Queue::send(const Fw::LinearBufferBase& message,
105 FwQueuePriorityType priority,
106 QueueInterface::BlockingType blockType) {
107 7584 return this->send(message.getBuffAddr(), message.getSize(), priority, blockType);
108 }
109
110 8523 QueueInterface::Status Queue::receive(Fw::LinearBufferBase& destination,
111 QueueInterface::BlockingType blockType,
112 FwQueuePriorityType& priority) {
113 8523 FwSizeType actualSize = 0;
114
1/1
✓ Branch 1 taken 8525 times.
8523 destination.resetSer(); // Reset the buffer
115 QueueInterface::Status status =
116
3/3
✓ Branch 1 taken 8511 times.
✓ Branch 4 taken 8518 times.
✓ Branch 7 taken 8523 times.
8525 this->receive(destination.getBuffAddrSer(), destination.getCapacity(), blockType, actualSize, priority);
117
2/2
✓ Branch 0 taken 7561 times.
✓ Branch 1 taken 962 times.
8523 if (status == QueueInterface::Status::OP_OK) {
118 Fw::SerializeStatus serializeStatus =
119
1/1
✓ Branch 1 taken 7506 times.
7561 destination.setBuffLen(static_cast<Fw::Serializable::SizeType>(actualSize));
120
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 7506 times.
7506 if (serializeStatus != Fw::SerializeStatus::FW_SERIALIZE_OK) {
121 ✗ status = QueueInterface::Status::SIZE_MISMATCH;
122 }
123 }
124 8468 return status;
125 }
126
127 ✗ FwSizeType Queue::getDepth() const {
128 ✗ return this->m_depth;
129 }
130
131 16332 FwSizeType Queue::getMessageSize() const {
132 16332 return this->m_size;
133 }
134
135 ✗ const QueueString& Queue::getName() const {
136 ✗ return this->m_name;
137 }
138
139 ✗ FwSizeType Queue::getNumQueues() {
140 ✗ ScopeLock lock(Queue::getStaticMutex());
141 ✗ return Queue::s_queueCount;
142 ✗ }
143
144 29 Os::Mutex& Queue::getStaticMutex() {
145
4/7
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 28 times.
✓ Branch 3 taken 1 times.
✗ Branch 4 not taken.
✓ Branch 6 taken 1 times.
✗ Branch 10 not taken.
✗ Branch 11 not taken.
29 static Os::Mutex s_mutex;
146 29 return s_mutex;
147 }
148
149 #if FW_QUEUE_REGISTRATION
150 ✗ void Queue::setRegistry(QueueRegistry* registry) {
151 ✗ ScopeLock lock(Queue::getStaticMutex());
152 ✗ Queue::s_queueRegistry = registry;
153 ✗ }
154 #endif
155
156 } // namespace Os
157