72 lines
2.5 KiB
C
72 lines
2.5 KiB
C
|
/**
|
||
|
* @file PoolRawAccessHelper.h
|
||
|
*
|
||
|
* @date 22.12.2019
|
||
|
*/
|
||
|
|
||
|
#ifndef FRAMEWORK_DATAPOOL_POOLRAWACCESSHELPER_H_
|
||
|
#define FRAMEWORK_DATAPOOL_POOLRAWACCESSHELPER_H_
|
||
|
|
||
|
#include <framework/returnvalues/HasReturnvaluesIF.h>
|
||
|
#include <framework/datapool/DataSet.h>
|
||
|
|
||
|
/**
|
||
|
* @brief This helper function simplifies accessing data pool entries
|
||
|
* via PoolRawAccess
|
||
|
* @details Can be used for a Housekeeping Service
|
||
|
* like PUS Service 3 if the type of the datapool entries is unknown.
|
||
|
* The provided dataset is serialized into a provided buffer automatically.
|
||
|
*/
|
||
|
class PoolRawAccessHelper: public HasReturnvaluesIF {
|
||
|
public:
|
||
|
/**
|
||
|
* Call this constructor if a dataset needs to be serialized via
|
||
|
* Pool Raw Access
|
||
|
* @param dataSet_ This dataset will be used to perform thread-safe reading
|
||
|
* @param poolIdBuffer_ A buffer of uint32_t pool IDs
|
||
|
* @param numberOfParameters_ The number of parameters / pool IDs
|
||
|
*/
|
||
|
PoolRawAccessHelper(DataSet * dataSet_, const uint8_t * poolIdBuffer_,
|
||
|
uint8_t numberOfParameters_);
|
||
|
virtual ~PoolRawAccessHelper();
|
||
|
|
||
|
/**
|
||
|
* Serialize the datapool entries derived from the pool ID buffer
|
||
|
* directly into a provided buffer
|
||
|
* @param [out] buffer
|
||
|
* @param [out] size Size of the serialized buffer
|
||
|
* @param max_size
|
||
|
* @param bigEndian
|
||
|
* @return @c RETURN_OK On success
|
||
|
* @c RETURN_FAILED on failure
|
||
|
*/
|
||
|
ReturnValue_t serialize(uint8_t ** buffer, uint32_t * size,
|
||
|
const uint32_t max_size, bool bigEndian);
|
||
|
|
||
|
/**
|
||
|
* Serializes data pool entries into provided buffer with the validity mask buffer
|
||
|
* at the end of the buffer. Every bit of the validity mask denotes
|
||
|
* the validity of a corresponding data pool entry from left to right.
|
||
|
* @param [out] buffer
|
||
|
* @param [out] size Size of the serialized buffer plus size
|
||
|
* of the validity mask
|
||
|
* @return @c RETURN_OK On success
|
||
|
* @c RETURN_FAILED on failure
|
||
|
*/
|
||
|
ReturnValue_t serializeWithValidityMask(uint8_t ** buffer, uint32_t * size,
|
||
|
const uint32_t max_size, bool bigEndian);
|
||
|
|
||
|
|
||
|
private:
|
||
|
DataSet * dataSet;
|
||
|
const uint8_t * poolIdBuffer;
|
||
|
uint8_t numberOfParameters;
|
||
|
|
||
|
void serializeCurrentPoolEntryIntoBuffer(const uint8_t ** pPoolIdBuffer,uint8_t ** buffer,
|
||
|
int32_t * remainingParameters, uint32_t * hkDataSize,const uint32_t max_size,
|
||
|
bool bigEndian, bool withValidMask);
|
||
|
uint8_t bitSetter(uint8_t byte, uint8_t position, bool value);
|
||
|
};
|
||
|
|
||
|
#endif /* FRAMEWORK_DATAPOOL_POOLRAWACCESSHELPER_H_ */
|