2016-06-15 23:48:41 +02:00
|
|
|
#ifndef VERIFICATIONREPORTER_H_
|
|
|
|
#define VERIFICATIONREPORTER_H_
|
|
|
|
|
2020-08-13 20:53:35 +02:00
|
|
|
#include "../objectmanager/ObjectManagerIF.h"
|
|
|
|
#include "PusVerificationReport.h"
|
2016-06-15 23:48:41 +02:00
|
|
|
|
2018-07-12 16:29:32 +02:00
|
|
|
namespace Factory{
|
|
|
|
void setStaticFrameworkObjectIds();
|
|
|
|
}
|
|
|
|
|
2016-06-15 23:48:41 +02:00
|
|
|
class VerificationReporter {
|
2018-07-12 16:29:32 +02:00
|
|
|
friend void (Factory::setStaticFrameworkObjectIds)();
|
2016-06-15 23:48:41 +02:00
|
|
|
public:
|
|
|
|
VerificationReporter();
|
|
|
|
virtual ~VerificationReporter();
|
|
|
|
void sendSuccessReport( uint8_t set_report_id, TcPacketBase* current_packet, uint8_t set_step = 0 );
|
|
|
|
void sendSuccessReport(uint8_t set_report_id, uint8_t ackFlags, uint16_t tcPacketId, uint16_t tcSequenceControl, uint8_t set_step = 0);
|
|
|
|
void sendFailureReport( uint8_t report_id, TcPacketBase* current_packet, ReturnValue_t error_code = 0,
|
|
|
|
uint8_t step = 0, uint32_t parameter1 = 0, uint32_t parameter2 = 0 );
|
|
|
|
void sendFailureReport(uint8_t report_id,
|
|
|
|
uint8_t ackFlags, uint16_t tcPacketId, uint16_t tcSequenceControl, ReturnValue_t error_code = 0, uint8_t step = 0,
|
|
|
|
uint32_t parameter1 = 0, uint32_t parameter2 = 0);
|
|
|
|
void initialize();
|
2018-07-12 16:29:32 +02:00
|
|
|
private:
|
|
|
|
static object_id_t messageReceiver;
|
|
|
|
MessageQueueId_t acknowledgeQueue;
|
|
|
|
|
|
|
|
|
2016-06-15 23:48:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* VERIFICATIONREPORTER_H_ */
|