You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#ifndef MESSAGE_HPP
|
|
|
|
#define MESSAGE_HPP
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <stddef.h> // size_t
|
|
|
|
|
|
|
|
/** Append msgParts with buildMessage() to m_buffer.
|
|
|
|
* Call onMessageReady() if the length of the buffer equals the value from
|
|
|
|
* getExpectedLength().
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Message
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
Message() : m_buffer() {};
|
|
|
|
virtual ~Message() {};
|
|
|
|
|
|
|
|
virtual bool buildMessage( const void *msgPart,
|
|
|
|
const size_t msgLen ) = 0;
|
|
|
|
virtual void onMessageReady() = 0;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual size_t getExpectedLength() = 0;
|
|
|
|
|
|
|
|
/// @todo shall i use dinamic array?
|
|
|
|
std::string m_buffer;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // MESSAGE_HPP
|