-
Notifications
You must be signed in to change notification settings - Fork 938
/
mqtt_ack.hpp
64 lines (51 loc) · 1.2 KB
/
mqtt_ack.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#pragma once
#include "mqtt_message.hpp"
namespace acl {
/**
* the base class for acking some mqtt message, used by some mqtt message type.
*/
class ACL_CPP_API mqtt_ack : public mqtt_message {
public:
/**
* usually used when build a ack mqtt message.
* @param type {mqtt_type_t}
*/
mqtt_ack(mqtt_type_t type);
/**
* usually used when parsing a ack mqtt messsage.
* @param header {const mqtt_header&} will be copied internal.
*/
mqtt_ack(const mqtt_header& header);
virtual ~mqtt_ack();
/**
* set the mqtt message's id.
* @param id {unsigned short} should > 0 && <= 65535.
*/
void set_pkt_id(unsigned short id);
/**
* get the mqtt message's id
* @return {unsigned short} if some error happened, 0 will be returned.
*/
unsigned short get_pkt_id() const {
return pkt_id_;
}
protected:
// @override
bool to_string(string& out);
// @override
int update(const char* data, int dlen);
// @override
bool finished() const {
return finished_;
}
public:
// for parsing message header in streaming mode.
int update_header_var(const char* data, int dlen);
private:
unsigned short pkt_id_;
char hbuf_[2];
unsigned hlen_;
unsigned status_;
bool finished_;
};
} // namespace acl