fsfw/serialize/SerialBufferAdapter.h

66 lines
2.0 KiB
C
Raw Normal View History

#ifndef SERIALBUFFERADAPTER_H_
#define SERIALBUFFERADAPTER_H_
#include <framework/serialize/SerializeIF.h>
#include <framework/serialize/SerializeAdapter.h>
/**
2019-11-02 23:30:12 +01:00
* This adapter provides an interface for SerializeIF to serialize or deserialize
* buffers with no length header but a known size.
*
2020-04-13 16:27:05 +02:00
* Additionally, the buffer length can be serialized too and will be put in
* front of the serialized buffer.
2019-11-02 23:30:12 +01:00
*
* Can be used with SerialLinkedListAdapter by declaring a SerializeElement with
2020-04-13 16:27:05 +02:00
* SerialElement<SerialBufferAdapter<bufferLengthType(will be uint8_t mostly)>>.
* Right now, the SerialBufferAdapter must always
* be initialized with the buffer and size !
2019-11-02 23:30:12 +01:00
*
* \ingroup serialize
*/
2020-04-05 15:30:31 +02:00
template<typename count_t>
class SerialBufferAdapter: public SerializeIF {
public:
2020-04-05 15:30:31 +02:00
/**
* Constructor for constant uint8_t buffer. Length field can be serialized optionally.
* Type of length can be supplied as template type.
* @param buffer
* @param bufferLength
* @param serializeLength
*/
2020-04-13 16:27:05 +02:00
SerialBufferAdapter(const void* buffer, count_t bufferLength,
bool serializeLength = false);
/**
2020-04-13 16:27:05 +02:00
* Constructor for non-constant uint8_t buffer.
* Length field can be serialized optionally.
* Type of length can be supplied as template type.
* @param buffer
* @param bufferLength
2020-04-13 16:27:05 +02:00
* @param serializeLength Length field will be serialized with size count_t
*/
2020-04-05 15:30:31 +02:00
SerialBufferAdapter(void* buffer, count_t bufferLength, bool serializeLength = false);
virtual ~SerialBufferAdapter();
virtual ReturnValue_t serialize(uint8_t** buffer, size_t* size,
const size_t max_size, bool bigEndian) const;
virtual size_t getSerializedSize() const;
virtual ReturnValue_t deSerialize(const uint8_t** buffer, ssize_t* size,
bool bigEndian);
uint8_t * getBuffer();
const uint8_t * getConstBuffer();
2020-04-05 15:30:31 +02:00
void setBuffer(void* buffer_, count_t bufferLength_);
private:
2020-04-07 22:16:43 +02:00
bool serializeLength = false;
const uint8_t *constBuffer = nullptr;
2020-04-05 15:30:31 +02:00
uint8_t *m_buffer = nullptr;
2020-04-07 22:16:43 +02:00
count_t bufferLength = 0;
};
#endif /* SERIALBUFFERADAPTER_H_ */