GCC Code Coverage Report


Directory: ./
File: Os/Queue.cpp
Date: 2026-09-03 22:12:29
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 28 times.
✓ Branch 5 taken 28 times.
28 Queue::Queue() : m_name(""), m_depth(0), m_size(0), m_delegate(*QueueInterface::getDelegate(m_handle_storage)) {}
17
18 56 Queue::~Queue() {
19 56 m_delegate.~QueueInterface();
20 56 }
21
22 28 QueueInterface::Status Queue ::create(FwEnumStoreType id,
23 const Fw::ConstStringBase& name,
24 FwSizeType depth,
25 FwSizeType messageSize) {
26 28 FW_ASSERT(&this->m_delegate == reinterpret_cast<QueueInterface*>(&this->m_handle_storage[0]));
27 28 FW_ASSERT(depth > 0);
28 28 FW_ASSERT(messageSize > 0);
29 // Check for previous creation call
30
2/4
✓ Branch 0 taken 28 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 28 times.
28 if (this->m_depth > 0 || this->m_size > 0) {
31 return QueueInterface::Status::ALREADY_CREATED;
32 }
33 28 QueueInterface::Status status = this->m_delegate.create(id, name, depth, messageSize);
34
1/2
✓ Branch 0 taken 28 times.
✗ Branch 1 not taken.
28 if (status == QueueInterface::Status::OP_OK) {
35
1/1
✓ Branch 1 taken 28 times.
28 this->m_name = name;
36 28 this->m_depth = depth;
37 28 this->m_size = messageSize;
38
2/2
✓ Branch 1 taken 28 times.
✓ Branch 4 taken 28 times.
28 ScopeLock lock(Queue::getStaticMutex());
39 28 Queue::s_queueCount++;
40 #if FW_QUEUE_REGISTRATION
41
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 28 times.
28 if (Queue::s_queueRegistry != nullptr) {
42 Queue::s_queueRegistry->registerQueue(this);
43 }
44 #endif
45 28 }
46 28 return status;
47 }
48
49 28 void Queue::teardown() {
50 28 FW_ASSERT(&this->m_delegate == reinterpret_cast<QueueInterface*>(&this->m_handle_storage[0]));
51 28 return this->m_delegate.teardown();
52 }
53
54 6943 QueueInterface::Status Queue::send(const U8* buffer,
55 FwSizeType size,
56 FwQueuePriorityType priority,
57 QueueInterface::BlockingType blockType) {
58 6943 FW_ASSERT(&this->m_delegate == reinterpret_cast<QueueInterface*>(&this->m_handle_storage[0]));
59 6943 FW_ASSERT(buffer != nullptr);
60 // Check if initialized
61
3/4
✓ Branch 0 taken 6943 times.
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 6944 times.
6944 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 6943 times.
6944 else if (size > this->getMessageSize()) {
66 return QueueInterface::Status::SIZE_MISMATCH;
67 }
68 6943 return this->m_delegate.send(buffer, size, priority, blockType);
69 }
70
71 8085 QueueInterface::Status Queue::receive(U8* destination,
72 FwSizeType capacity,
73 QueueInterface::BlockingType blockType,
74 FwSizeType& actualSize,
75 FwQueuePriorityType& priority) {
76 8085 FW_ASSERT(&this->m_delegate == reinterpret_cast<QueueInterface*>(&this->m_handle_storage[0]));
77 8085 FW_ASSERT(destination != nullptr);
78 // Check if initialized
79
3/4
✓ Branch 0 taken 8086 times.
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 8087 times.
8087 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 8088 times.
8087 else if (capacity < this->getMessageSize()) {
84 return QueueInterface::Status::SIZE_MISMATCH;
85 }
86 8088 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 6942 QueueInterface::Status Queue::send(const Fw::LinearBufferBase& message,
105 FwQueuePriorityType priority,
106 QueueInterface::BlockingType blockType) {
107 6942 return this->send(message.getBuffAddr(), message.getSize(), priority, blockType);
108 }
109
110 7849 QueueInterface::Status Queue::receive(Fw::LinearBufferBase& destination,
111 QueueInterface::BlockingType blockType,
112 FwQueuePriorityType& priority) {
113 7849 FwSizeType actualSize = 0;
114
1/1
✓ Branch 1 taken 7847 times.
7849 destination.resetSer(); // Reset the buffer
115 QueueInterface::Status status =
116
3/3
✓ Branch 1 taken 7854 times.
✓ Branch 4 taken 7852 times.
✓ Branch 7 taken 7835 times.
7847 this->receive(destination.getBuffAddrSer(), destination.getCapacity(), blockType, actualSize, priority);
117
2/2
✓ Branch 0 taken 6932 times.
✓ Branch 1 taken 903 times.
7835 if (status == QueueInterface::Status::OP_OK) {
118 Fw::SerializeStatus serializeStatus =
119
1/1
✓ Branch 1 taken 6930 times.
6932 destination.setBuffLen(static_cast<Fw::Serializable::SizeType>(actualSize));
120
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 6930 times.
6930 if (serializeStatus != Fw::SerializeStatus::FW_SERIALIZE_OK) {
121 status = QueueInterface::Status::SIZE_MISMATCH;
122 }
123 }
124 7833 return status;
125 }
126
127 FwSizeType Queue::getDepth() const {
128 return this->m_depth;
129 }
130
131 15001 FwSizeType Queue::getMessageSize() const {
132 15001 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 28 Os::Mutex& Queue::getStaticMutex() {
145
4/7
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 27 times.
✓ Branch 3 taken 1 times.
✗ Branch 4 not taken.
✓ Branch 6 taken 1 times.
✗ Branch 10 not taken.
✗ Branch 11 not taken.
28 static Os::Mutex s_mutex;
146 28 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