GCC Code Coverage Report


Directory: ./
File: Svc/DpWriter/DpWriter.cpp
Date: 2026-09-23 21:11:01
Exec Total Coverage
Lines: 127 127 100.0%
Functions: 10 10 100.0%
Branches: 109 112 97.3%

Line Branch Exec Source
1 // ======================================================================
2 // \title DpWriter.cpp
3 // \author bocchino
4 // \brief cpp file for DpWriter component implementation class
5 // ======================================================================
6
7 #include "Svc/DpWriter/DpWriter.hpp"
8 #include "Fw/Com/ComPacket.hpp"
9 #include "Fw/FPrimeBasicTypes.hpp"
10 #include "Fw/Types/FileNameString.hpp"
11 #include "Fw/Types/Serializable.hpp"
12 #include "Os/File.hpp"
13 #include "Utils/Hash/Hash.hpp"
14 #include "config/DpCfg.hpp"
15
16 namespace Svc {
17
18 // ----------------------------------------------------------------------
19 // Construction, initialization, and destruction
20 // ----------------------------------------------------------------------
21
22
1/1
✓ Branch 31 taken 22 times.
22 DpWriter::DpWriter(const char* const compName) : DpWriterComponentBase(compName), m_dpFileNamePrefix() {}
23
24 44 DpWriter::~DpWriter() {}
25
26 1 void DpWriter::configure(const Fw::ConstStringBase& dpFileNamePrefix) {
27 1 this->m_dpFileNamePrefix = dpFileNamePrefix;
28 1 }
29
30 // ----------------------------------------------------------------------
31 // Handler implementations for user-defined typed input ports
32 // ----------------------------------------------------------------------
33
34 6042 void DpWriter::bufferSendIn_handler(const FwIndexType portNum, Fw::Buffer& buffer) {
35 6042 Fw::Success::T status = Fw::Success::SUCCESS;
36 // Update num buffers received
37 6042 ++this->m_numBuffersReceived;
38 // Check that the buffer is valid
39
3/3
✓ Branch 4 taken 6042 times.
✓ Branch 6 taken 951 times.
✓ Branch 7 taken 5091 times.
6042 if (!buffer.isValid()) {
40
1/1
✓ Branch 5 taken 951 times.
951 this->log_WARNING_HI_InvalidBuffer();
41 951 status = Fw::Success::FAILURE;
42 }
43 // Check that the buffer is large enough to hold a data product packet
44
1/1
✓ Branch 4 taken 6042 times.
6042 const FwSizeType bufferSize = buffer.getSize();
45
2/2
✓ Branch 0 taken 5091 times.
✓ Branch 1 taken 951 times.
6042 if (status == Fw::Success::SUCCESS) {
46
2/2
✓ Branch 0 taken 930 times.
✓ Branch 1 taken 4161 times.
5091 if (bufferSize < Fw::DpContainer::MIN_PACKET_SIZE) {
47
1/1
✓ Branch 5 taken 930 times.
930 this->log_WARNING_HI_BufferTooSmallForPacket(static_cast<U32>(bufferSize),
48 Fw::DpContainer::MIN_PACKET_SIZE);
49
50 930 status = Fw::Success::FAILURE;
51 }
52 }
53 // Set up the container and check that the header hash is valid
54
1/1
✓ Branch 2 taken 6042 times.
6042 Fw::DpContainer container;
55
2/2
✓ Branch 0 taken 4161 times.
✓ Branch 1 taken 1881 times.
6042 if (status == Fw::Success::SUCCESS) {
56
1/1
✓ Branch 3 taken 4161 times.
4161 container.setBuffer(buffer);
57
1/1
✓ Branch 2 taken 4161 times.
4161 Utils::HashBuffer storedHash;
58
1/1
✓ Branch 2 taken 4161 times.
4161 Utils::HashBuffer computedHash;
59
1/1
✓ Branch 2 taken 4161 times.
4161 status = container.checkHeaderHash(storedHash, computedHash);
60
2/2
✓ Branch 0 taken 912 times.
✓ Branch 1 taken 3249 times.
4161 if (status != Fw::Success::SUCCESS) {
61
3/3
✓ Branch 5 taken 912 times.
✓ Branch 9 taken 912 times.
✓ Branch 12 taken 912 times.
1824 this->log_WARNING_HI_InvalidHeaderHash(static_cast<U32>(bufferSize), storedHash.asBigEndianU32(),
62 912 computedHash.asBigEndianU32());
63 }
64 4161 }
65 // Deserialize the packet header
66
2/2
✓ Branch 0 taken 3249 times.
✓ Branch 1 taken 2793 times.
6042 if (status == Fw::Success::SUCCESS) {
67
1/1
✓ Branch 4 taken 3249 times.
3249 status = this->deserializePacketHeader(buffer, container);
68 }
69 // Check that the packet size fits in the buffer
70
2/2
✓ Branch 0 taken 2242 times.
✓ Branch 1 taken 3800 times.
6042 if (status == Fw::Success::SUCCESS) {
71
1/1
✓ Branch 2 taken 2242 times.
2242 const FwSizeType packetSize = container.getPacketSize();
72
2/2
✓ Branch 0 taken 1013 times.
✓ Branch 1 taken 1229 times.
2242 if (bufferSize < packetSize) {
73
1/1
✓ Branch 5 taken 1013 times.
1013 this->log_WARNING_HI_BufferTooSmallForData(static_cast<U32>(bufferSize), static_cast<U32>(packetSize));
74 1013 status = Fw::Success::FAILURE;
75 }
76 }
77 // Perform the requested processing
78
2/2
✓ Branch 0 taken 1229 times.
✓ Branch 1 taken 4813 times.
6042 if (status == Fw::Success::SUCCESS) {
79
1/1
✓ Branch 4 taken 1229 times.
1229 this->performProcessing(container);
80 }
81 // Construct the file name
82
1/1
✓ Branch 2 taken 6042 times.
6042 Fw::FileNameString fileName;
83
2/2
✓ Branch 0 taken 1229 times.
✓ Branch 1 taken 4813 times.
6042 if (status == Fw::Success::SUCCESS) {
84 1229 const FwDpIdType containerId = container.getId();
85
1/1
✓ Branch 2 taken 1229 times.
1229 const Fw::Time timeTag = container.getTimeTag();
86
3/3
✓ Branch 2 taken 1229 times.
✓ Branch 5 taken 1229 times.
✓ Branch 14 taken 1229 times.
3687 const Fw::FormatStatus formatStatus = fileName.format(DP_FILENAME_FORMAT, this->m_dpFileNamePrefix.toChar(),
87 2458 containerId, timeTag.getSeconds(), timeTag.getUSeconds());
88
2/2
✓ Branch 0 taken 11 times.
✓ Branch 1 taken 1218 times.
1229 if (formatStatus != Fw::FormatStatus::SUCCESS) {
89
2/2
✓ Branch 6 taken 11 times.
✓ Branch 10 taken 11 times.
11 this->log_WARNING_HI_FileNameFormatError(static_cast<Fw::StringFormatStatus::T>(formatStatus));
90 11 status = Fw::Success::FAILURE;
91 }
92 1229 }
93 // Calculate and populate the file data checksum
94
2/2
✓ Branch 0 taken 1218 times.
✓ Branch 1 taken 4824 times.
6042 if (status == Fw::Success::SUCCESS) {
95
1/1
✓ Branch 2 taken 1218 times.
1218 container.updateDataHash();
96 }
97 // Write the file
98 6042 FwSizeType fileSize = 0;
99
2/2
✓ Branch 0 taken 1218 times.
✓ Branch 1 taken 4824 times.
6042 if (status == Fw::Success::SUCCESS) {
100
1/1
✓ Branch 4 taken 1218 times.
1218 status = this->writeFile(container, fileName, fileSize);
101 }
102 // Send the DpWritten notification on the path matching the input port
103
2/2
✓ Branch 0 taken 454 times.
✓ Branch 1 taken 5588 times.
6042 if (status == Fw::Success::SUCCESS) {
104
1/1
✓ Branch 4 taken 454 times.
454 this->sendNotification(portNum, container, fileName, fileSize);
105 }
106 // Return the buffer on the path matching the input port
107
3/3
✓ Branch 4 taken 6042 times.
✓ Branch 6 taken 5091 times.
✓ Branch 7 taken 951 times.
6042 if (buffer.isValid()) {
108
1/1
✓ Branch 5 taken 5091 times.
5091 this->deallocBufferSendOut_out(portNum, buffer);
109 }
110 // Update the error count
111
2/2
✓ Branch 0 taken 5588 times.
✓ Branch 1 taken 454 times.
6042 if (status != Fw::Success::SUCCESS) {
112 5588 this->m_numErrors++;
113 }
114 12084 }
115
116 996 void DpWriter::schedIn_handler(const FwIndexType portNum, U32 context) {
117 // portNum and context are not used
118 (void)portNum;
119 (void)context;
120 // Write telemetry
121
2/2
✓ Branch 6 taken 996 times.
✓ Branch 13 taken 996 times.
996 this->tlmWrite_NumBuffersReceived(this->m_numBuffersReceived);
122
2/2
✓ Branch 6 taken 996 times.
✓ Branch 13 taken 996 times.
996 this->tlmWrite_NumBytesWritten(this->m_numBytesWritten);
123
2/2
✓ Branch 6 taken 996 times.
✓ Branch 13 taken 996 times.
996 this->tlmWrite_NumSuccessfulWrites(this->m_numSuccessfulWrites);
124
2/2
✓ Branch 6 taken 996 times.
✓ Branch 13 taken 996 times.
996 this->tlmWrite_NumFailedWrites(this->m_numFailedWrites);
125
2/2
✓ Branch 6 taken 996 times.
✓ Branch 13 taken 996 times.
996 this->tlmWrite_NumErrors(this->m_numErrors);
126 996 }
127
128 // ----------------------------------------------------------------------
129 // Handler implementations for commands
130 // ----------------------------------------------------------------------
131
132 976 void DpWriter::CLEAR_EVENT_THROTTLE_cmdHandler(FwOpcodeType opCode, U32 cmdSeq) {
133 // opCode and cmdSeq are not used
134 (void)opCode;
135 (void)cmdSeq;
136 // Clear throttling
137 976 this->log_WARNING_HI_BufferTooSmallForData_ThrottleClear();
138 976 this->log_WARNING_HI_BufferTooSmallForPacket_ThrottleClear();
139 976 this->log_WARNING_HI_FileOpenError_ThrottleClear();
140 976 this->log_WARNING_HI_FileWriteError_ThrottleClear();
141 976 this->log_WARNING_HI_InvalidBuffer_ThrottleClear();
142 976 this->log_WARNING_HI_InvalidHeaderHash_ThrottleClear();
143 976 this->log_WARNING_HI_InvalidHeader_ThrottleClear();
144 // Return command response
145
2/2
✓ Branch 6 taken 976 times.
✓ Branch 9 taken 976 times.
976 this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK);
146 976 }
147
148 // ----------------------------------------------------------------------
149 // Private helper functions
150 // ----------------------------------------------------------------------
151
152 3249 Fw::Success::T DpWriter::deserializePacketHeader(Fw::Buffer& buffer, Fw::DpContainer& container) {
153 3249 Fw::Success::T status = Fw::Success::SUCCESS;
154 3249 container.setBuffer(buffer);
155 3249 const Fw::SerializeStatus serialStatus = container.deserializeHeader();
156
2/2
✓ Branch 0 taken 1007 times.
✓ Branch 1 taken 2242 times.
3249 if (serialStatus != Fw::FW_SERIALIZE_OK) {
157 1007 this->log_WARNING_HI_InvalidHeader(static_cast<U32>(buffer.getSize()), static_cast<U32>(serialStatus));
158 1007 status = Fw::Success::FAILURE;
159 }
160 3249 return status;
161 }
162
163 1229 void DpWriter::performProcessing(Fw::DpContainer& container) {
164 // Get the buffer
165
1/1
✓ Branch 2 taken 1229 times.
1229 Fw::Buffer buffer = container.getBuffer();
166 // Get the bit mask for the processing types
167 1229 const Fw::DpCfg::ProcType::SerialType procTypes = container.getProcTypes();
168 // Do the processing
169 1229 bool did_process = false;
170
2/2
✓ Branch 0 taken 6145 times.
✓ Branch 1 taken 1229 times.
7374 for (FwIndexType portNum = 0; portNum < NUM_PROCBUFFERSENDOUT_OUTPUT_PORTS; ++portNum) {
171
3/4
✗ Branch 0 not taken.
✓ Branch 1 taken 6145 times.
✓ Branch 2 taken 2283 times.
✓ Branch 3 taken 3862 times.
6145 if ((procTypes & (1 << portNum)) != 0) {
172
1/1
✓ Branch 5 taken 2283 times.
2283 this->procBufferSendOut_out(portNum, buffer);
173 2283 did_process = true;
174 }
175 }
176
177
2/2
✓ Branch 0 taken 1171 times.
✓ Branch 1 taken 58 times.
1229 if (did_process) {
178 // Updated DpContainer object state with the returned value in the
179 // container buffer
180
1/1
✓ Branch 4 taken 1171 times.
1171 Fw::SerializeStatus stat = container.deserializeHeader();
181 1171 FW_ASSERT(stat == Fw::FW_SERIALIZE_OK, stat);
182
183 // Check that the buffer size is compatible with the packet size in
184 // the container header
185 1171 FW_ASSERT(container.getPacketSize() <= buffer.getSize(),
186 static_cast<FwAssertArgType>(container.getPacketSize()),
187 static_cast<FwAssertArgType>(buffer.getSize()));
188
189 // Re-compute and serialize the container header into the buffer
190
1/1
✓ Branch 4 taken 1171 times.
1171 container.updateHeaderHash();
191
1/1
✓ Branch 4 taken 1171 times.
1171 container.serializeHeader();
192
193 // Shrink internal Fw::Buffer
194
1/1
✓ Branch 4 taken 1171 times.
1171 container.shrinkBufferSize();
195 }
196 2458 }
197
198 1218 Fw::Success::T DpWriter::writeFile(const Fw::DpContainer& container,
199 const Fw::FileNameString& fileName,
200 FwSizeType& fileSize) {
201 1218 Fw::Success::T status = Fw::Success::SUCCESS;
202 // Get the buffer
203
1/1
✓ Branch 2 taken 1218 times.
1218 Fw::Buffer buffer = container.getBuffer();
204 // Get the file size
205
1/1
✓ Branch 4 taken 1218 times.
1218 fileSize = container.getPacketSize();
206 // Open the file
207
1/1
✓ Branch 2 taken 1218 times.
1218 Os::File file;
208
1/1
✓ Branch 6 taken 1218 times.
1218 Os::File::Status fileStatus = file.open(fileName.toChar(), Os::File::OPEN_CREATE);
209
2/2
✓ Branch 0 taken 517 times.
✓ Branch 1 taken 701 times.
1218 if (fileStatus != Os::File::OP_OK) {
210
1/1
✓ Branch 8 taken 517 times.
517 this->log_WARNING_HI_FileOpenError(static_cast<U32>(fileStatus), fileName);
211 517 status = Fw::Success::FAILURE;
212 }
213 // Write the file
214
2/2
✓ Branch 0 taken 701 times.
✓ Branch 1 taken 517 times.
1218 if (status == Fw::Success::SUCCESS) {
215 // Set write size to file size
216 // On entry to the write call, this is the number of bytes to write
217 // On return from the write call, this is the number of bytes written
218 701 FwSizeType writeSize = static_cast<FwSizeType>(fileSize);
219
2/2
✓ Branch 3 taken 701 times.
✓ Branch 6 taken 701 times.
701 fileStatus = file.write(buffer.getData(), writeSize);
220 // If a successful write occurred, then update the number of bytes written
221
2/2
✓ Branch 0 taken 454 times.
✓ Branch 1 taken 247 times.
701 if (fileStatus == Os::File::OP_OK) {
222 454 this->m_numBytesWritten += static_cast<U64>(writeSize);
223 }
224
3/4
✓ Branch 0 taken 454 times.
✓ Branch 1 taken 247 times.
✓ Branch 3 taken 454 times.
✗ Branch 4 not taken.
701 if ((fileStatus == Os::File::OP_OK) and (writeSize == static_cast<FwSizeType>(fileSize))) {
225 // If the write status is success, and the number of bytes written
226 // is the expected number, then record the success
227
1/1
✓ Branch 8 taken 454 times.
454 this->log_ACTIVITY_LO_FileWritten(static_cast<U32>(writeSize), fileName);
228 } else {
229 // Otherwise record the failure
230 247 this->log_WARNING_HI_FileWriteError(static_cast<U32>(fileStatus), static_cast<U32>(writeSize),
231
1/1
✓ Branch 2 taken 247 times.
247 static_cast<U32>(fileSize), fileName);
232 247 status = Fw::Success::FAILURE;
233 }
234 }
235 // Update the count of successful or failed writes
236
2/2
✓ Branch 0 taken 454 times.
✓ Branch 1 taken 764 times.
1218 if (status == Fw::Success::SUCCESS) {
237 454 this->m_numSuccessfulWrites++;
238 } else {
239 764 this->m_numFailedWrites++;
240 }
241 // Return the status
242 1218 return status;
243 1218 }
244
245 454 void DpWriter::sendNotification(FwIndexType portNum,
246 const Fw::DpContainer& container,
247 const Fw::FileNameString& fileName,
248 FwSizeType fileSize) {
249
1/2
✓ Branch 5 taken 454 times.
✗ Branch 6 not taken.
454 if (isConnected_dpWrittenOut_OutputPort(portNum)) {
250 // Get the priority
251 454 const FwDpPriorityType priority = container.getPriority();
252 454 this->dpWrittenOut_out(portNum, fileName, priority, fileSize);
253 }
254 454 }
255
256 } // end namespace Svc
257