fprime/Svc/FrameAccumulator/FrameAccumulator.hpp
Thomas Boyer-Chammard d0246f148b
Add Framer FPP interface, implement FprimeFramer and adapt ComQueue (#3486)
* Initial FprimeFramer and FprimePacketizer

* Code clarity + set up UTs

* Rework ComQueue and ComStub to use DataWithContext

* Add packets to RefPackets.fppi

* Fix ComQueue tests

* Add hotfix to FileDownlink instead of ComQueue

* Fix cancelPacket as well

* Fix ComQueue UTs by removing hotfix

* Refactor DataWithContext to use an FPP object for context instead of Fw.Buffer

* Touch up testing

* Add docs

* more docs

* More docs

* Rework buffer deallocation pattern to pass-through ComQueue

* Update ComStub UTs

* Restore original FileDownlink.cpp

* Formatting tweak

* Update deprecated getSerializeRepr() calls

* deserialization methods

* Fix spelling

* add cast for safety

* CMakefile change

* Bump ComQueue depth

* Update RPI deployment with new Downlink stack

* Rename comQueueIn port to comPktQueueIn

* Fix comQueueIn to comPktQueueIn change

* Remove legacy Svc.Framer

* Fix CMake UTs

* Fix RPI topology config

* Fix FprimeProtocol.fpp module

* Fix namespacing

* Use const reference for FrameContext port

* Review comments EXCEPT port passback refactor

* Rework ComStub with new ByteStream

* New ByteStream - ComInterface model

* Rework TcpClient / TcpServer with new bytestream

* Adapt UDP component for new ByteStream

* Adapt FrameAccumulator for new ByteStream

* Adapt FprimeFramer for new ByteStream

* Update Ref topology with new ByteStream model

* Remove all legacy deallocates from Drivers; reintroduce DEPRECATED model types

* Fix spelling and include error

* More spelling....

* RPI and RpiDemo fixes

* Fix conversion warning on RPI

* static_cast for short int on RPI

* Standardize port names

* Remove legacy Drv types and merge RECV/SEND enum type, delete StreamCrossover

* Update SDDs

* Update SDDs

* Fix ComInterface <-> Framer interfaction, clarify comments and fix annotations

* Switch ComStub from ASSERT to log failure and return buffer

* Add history size check + clarify test handler overrides

* Fix RPI topology to wire comStub on Uplink

* Rename comm to comDriver in RPI topology

* Update communication adapter interface docs
2025-04-29 16:40:36 -07:00

82 lines
2.8 KiB
C++

// ======================================================================
// \title FrameAccumulator.hpp
// \author mstarch
// \brief hpp file for FrameAccumulator component implementation class
// ======================================================================
#ifndef Svc_FrameAccumulator_HPP
#define Svc_FrameAccumulator_HPP
#include "Fw/Types/MemAllocator.hpp"
#include "Svc/FrameAccumulator/FrameAccumulatorComponentAc.hpp"
#include "Svc/FrameAccumulator/FrameDetector.hpp"
#include "Utils/Types/CircularBuffer.hpp"
namespace Svc {
class FrameAccumulator final : public FrameAccumulatorComponentBase {
public:
// ----------------------------------------------------------------------
// Component construction and destruction
// ----------------------------------------------------------------------
//! \brief Construct FrameAccumulator object
FrameAccumulator(const char* const compName //!< The component name
);
//! \brief Destroy FrameAccumulator object
~FrameAccumulator();
//! \brief configure memory allocation for the circular buffer
//!
//! Takes in parameters used in the Fw::MemAllocator pattern and configures a memory allocation for storing the
//! circular buffer.
void configure(const FrameDetector& detector, //!< Frame detector helper instance
FwEnumStoreType allocationId, //!< Identifier used when dealing with the Fw::MemAllocator
Fw::MemAllocator& allocator, //!< Fw::MemAllocator used to acquire memory
FwSizeType store_size //!< Size to request for circular buffer
);
//! \brief Deallocate internal resources (set up by configure() call)
void cleanup();
PRIVATE:
// ----------------------------------------------------------------------
// Handler implementations for user-defined typed input ports
// ----------------------------------------------------------------------
//! Handler implementation for dataIn
//!
//! Receives raw data from a ByteStreamDriver, ComStub, or other buffer producing component
void dataIn_handler(FwIndexType portNum, //!< The port number
Fw::Buffer& recvBuffer) override;
PRIVATE:
//! \brief process raw buffer
//! \return raw data buffer
void processBuffer(Fw::Buffer& buffer);
//! \brief process circular buffer
void processRing();
//! Circular buffer for storing data
Types::CircularBuffer m_inRing;
//! Pointer to helper class that detects frames
FrameDetector const* m_detector;
//! Memory allocator instance used with deallocating
Fw::MemAllocator* m_memoryAllocator;
//! Memory pointer for allocated memory
U8* m_memory;
//! Identification used with the memory allocator
FwEnumStoreType m_allocatorId;
};
} // namespace Svc
#endif