-
Notifications
You must be signed in to change notification settings - Fork 952
Expand file tree
/
Copy pathmqtt_subscribe.hpp
More file actions
101 lines (81 loc) · 2.02 KB
/
mqtt_subscribe.hpp
File metadata and controls
101 lines (81 loc) · 2.02 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#pragma once
#include "mqtt_message.hpp"
namespace acl {
/**
* mqtt message object for the MQTT_SUBSCRIBE type.
*/
class ACL_CPP_API mqtt_subscribe : public mqtt_message {
public:
/**
* constructor for creating MQTT_SUBSCRIBE mqtt message object.
* @see mqtt_message
*/
mqtt_subscribe();
/**
* constructor for creating MQTT_SUBSCRIBE mqtt message object.
* @see mqtt_message
*/
mqtt_subscribe(const mqtt_header& header);
~mqtt_subscribe();
/**
* set message's id
* @param id {unsigned short} should > 0 && <= 65535
* @return {mqtt_subscribe&}
*/
mqtt_subscribe& set_pkt_id(unsigned short id);
/**
* add one topic with its qos.
* @param topic {const char*} the topic of message.
* @param qos {mqtt_qos_t} the qos of the topic.
* @return {mqtt_subscribe&}
*/
mqtt_subscribe& add_topic(const char* topic, mqtt_qos_t qos);
/**
* get the messsage's id.
* @return {unsigned short} should return the value that > 0 && <= 65535.
*/
unsigned short get_pkt_id() const {
return pkt_id_;
}
/**
* get all the topics.
* @return {const std::vector<std::string>&}
*/
const std::vector<std::string>& get_topics() const {
return topics_;
}
/**
* get all the qoses of all topics.
* @return {const std::vector<mqtt_qos_t>&}
*/
const std::vector<mqtt_qos_t>& get_qoses() const {
return qoses_;
}
protected:
// @override
bool to_string(string& out);
// @override
int update(const char* data, int dlen);
// @override
bool finished() const {
return finished_;
}
public:
// used internal to parse mqtt message in streawming mode.
int update_header_var(const char* data, int dlen);
int update_topic_len(const char* data, int dlen);
int update_topic_val(const char* data, int dlen);
int update_topic_qos(const char* data, int dlen);
private:
unsigned short pkt_id_;
char buff_[2];
unsigned dlen_;
unsigned status_;
std::vector<std::string> topics_;
std::vector<mqtt_qos_t> qoses_;
unsigned body_len_;
unsigned nread_;
std::string topic_;
bool finished_;
};
} // namespace acl