eive-obsw/mission/tmtc/DirectTmSinkIF.h

35 lines
1.1 KiB
C
Raw Normal View History

2023-03-09 12:20:13 +01:00
#ifndef MISSION_TMTC_DIRECTTMSINKIF_H_
#define MISSION_TMTC_DIRECTTMSINKIF_H_
#include <cstddef>
2023-03-10 19:01:31 +01:00
#include "eive/resultClassIds.h"
2023-03-09 12:20:13 +01:00
#include "fsfw/retval.h"
class DirectTmSinkIF {
public:
virtual ~DirectTmSinkIF() = default;
2023-03-10 19:01:31 +01:00
static constexpr uint8_t CLASS_ID = CLASS_ID::TM_SINK;
static constexpr ReturnValue_t IS_BUSY = returnvalue::makeCode(CLASS_ID, 0);
2023-10-13 09:20:51 +02:00
static constexpr ReturnValue_t PARTIALLY_WRITTEN = returnvalue::makeCode(CLASS_ID, 1);
2023-03-10 19:01:31 +01:00
2023-03-09 12:20:13 +01:00
/**
2023-03-10 19:01:31 +01:00
* @brief Implements the functionality to write to a TM sink directly
2023-03-09 12:20:13 +01:00
*
* @param data Pointer to buffer holding the data to write
* @param size Number of bytes to write
2023-03-10 19:01:31 +01:00
* @return returnvalue::OK on success, returnvalue::FAILED on failure, IS_BUSY
2023-10-13 09:20:51 +02:00
* if the TM sink is busy, PARTIALLY_WRITTEN if only a portion of the bytes could be
* written.
2023-03-09 12:20:13 +01:00
*/
2023-10-13 09:20:51 +02:00
virtual ReturnValue_t write(const uint8_t* data, size_t size, size_t& writtenSize) = 0;
2023-10-13 15:10:52 +02:00
virtual ReturnValue_t advanceWrite(size_t& writtenSize) = 0;
2023-03-10 18:04:04 +01:00
virtual bool isBusy() const = 0;
2023-03-09 12:20:13 +01:00
};
#endif /* MISSION_TMTC_DIRECTTMSINKIF_H_ */