some comments for missing doc
This commit is contained in:
parent
e15839b3a6
commit
d8ed5bb1c1
@ -49,14 +49,33 @@ public:
|
|||||||
static const Event AUTO_CATALOGS_SENDING_FAILED = MAKE_EVENT(15, SEVERITY::INFO);//!< Info that the a auto catalog report failed
|
static const Event AUTO_CATALOGS_SENDING_FAILED = MAKE_EVENT(15, SEVERITY::INFO);//!< Info that the a auto catalog report failed
|
||||||
|
|
||||||
virtual ~TmStoreBackendIF() {}
|
virtual ~TmStoreBackendIF() {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* What do I need to implement here ?
|
||||||
|
* @param opCode
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
virtual ReturnValue_t performOperation(uint8_t opCode) = 0;
|
virtual ReturnValue_t performOperation(uint8_t opCode) = 0;
|
||||||
virtual ReturnValue_t initialize() = 0;
|
virtual ReturnValue_t initialize() = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Implement the storage of TM packets to mass memory
|
||||||
|
* @param tmPacket
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
virtual ReturnValue_t storePacket(TmPacketMinimal* tmPacket) = 0;
|
virtual ReturnValue_t storePacket(TmPacketMinimal* tmPacket) = 0;
|
||||||
virtual ReturnValue_t setFetchLimitTime(const timeval* loverLimit, const timeval* upperLimit) = 0;
|
virtual ReturnValue_t setFetchLimitTime(const timeval* loverLimit, const timeval* upperLimit) = 0;
|
||||||
virtual ReturnValue_t setFetchLimitBlocks(uint32_t startAddress, uint32_t endAddress) = 0;
|
virtual ReturnValue_t setFetchLimitBlocks(uint32_t startAddress, uint32_t endAddress) = 0;
|
||||||
virtual ReturnValue_t fetchPackets(bool fromBegin = false) = 0;
|
virtual ReturnValue_t fetchPackets(bool fromBegin = false) = 0;
|
||||||
virtual ReturnValue_t initializeStore(object_id_t dumpTarget) = 0;
|
virtual ReturnValue_t initializeStore(object_id_t dumpTarget) = 0;
|
||||||
virtual ReturnValue_t dumpIndex(store_address_t* storeId) = 0;
|
virtual ReturnValue_t dumpIndex(store_address_t* storeId) = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* TODO: Adapt for file management system?
|
||||||
|
* @param startAddress
|
||||||
|
* @param endAddress
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
virtual ReturnValue_t deleteBlocks(uint32_t startAddress, uint32_t endAddress) = 0;
|
virtual ReturnValue_t deleteBlocks(uint32_t startAddress, uint32_t endAddress) = 0;
|
||||||
virtual ReturnValue_t deleteTime(const timeval* timeUntil,
|
virtual ReturnValue_t deleteTime(const timeval* timeUntil,
|
||||||
uint32_t* deletedPackets) = 0;
|
uint32_t* deletedPackets) = 0;
|
||||||
|
@ -11,6 +11,14 @@ class TmStoreBackendIF;
|
|||||||
class TmStoreFrontendIF {
|
class TmStoreFrontendIF {
|
||||||
public:
|
public:
|
||||||
virtual TmStoreBackendIF* getBackend() const = 0;
|
virtual TmStoreBackendIF* getBackend() const = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* What do I need to implement here?
|
||||||
|
* This is propably used by PUS Service 15 so we should propably check for messages..
|
||||||
|
* Provide base implementation?
|
||||||
|
* @param opCode
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
virtual ReturnValue_t performOperation(uint8_t opCode) = 0;
|
virtual ReturnValue_t performOperation(uint8_t opCode) = 0;
|
||||||
/**
|
/**
|
||||||
* Callback from the back-end to indicate a certain packet was received.
|
* Callback from the back-end to indicate a certain packet was received.
|
||||||
|
Loading…
Reference in New Issue
Block a user