types.h
9.06 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
/*
This file is part of FlashMQ (https://www.flashmq.org)
Copyright (C) 2021 Wiebe Cazemier
FlashMQ is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, version 3.
FlashMQ is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public
License along with FlashMQ. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef TYPES_H
#define TYPES_H
#include "stdint.h"
#include <list>
#include <string>
#include <memory>
#include <chrono>
#include <vector>
#include "forward_declarations.h"
enum class PacketType
{
Reserved = 0,
CONNECT = 1,
CONNACK = 2,
PUBLISH = 3,
PUBACK = 4,
PUBREC = 5,
PUBREL = 6,
PUBCOMP = 7,
SUBSCRIBE = 8,
SUBACK = 9,
UNSUBSCRIBE = 10,
UNSUBACK = 11,
PINGREQ = 12,
PINGRESP = 13,
DISCONNECT = 14,
AUTH = 15
};
enum class ProtocolVersion
{
None = 0,
Mqtt31 = 0x03,
Mqtt311 = 0x04,
Mqtt5 = 0x05
};
enum class Mqtt5Properties
{
None = 0,
PayloadFormatIndicator = 1,
MessageExpiryInterval = 2,
ContentType = 3,
ResponseTopic = 8,
CorrelationData = 9,
SubscriptionIdentifier = 11,
SessionExpiryInterval = 17,
AssignedClientIdentifier = 18,
ServerKeepAlive = 19,
AuthenticationMethod = 21,
AuthenticationData = 22,
RequestProblemInformation = 23,
WillDelayInterval = 24,
RequestResponseInformation = 25,
ResponseInformation = 26,
ServerReference = 28,
ReasonString = 31,
ReceiveMaximum = 33,
TopicAliasMaximum = 34,
TopicAlias = 35,
MaximumQoS = 36,
RetainAvailable = 37,
UserProperty = 38,
MaximumPacketSize = 39,
WildcardSubscriptionAvailable = 40,
SubscriptionIdentifierAvailable = 41,
SharedSubscriptionAvailable = 42
};
/**
* @brief The ConnAckReturnCodes enum are for MQTT3
*/
enum class ConnAckReturnCodes
{
Accepted = 0,
UnacceptableProtocolVersion = 1,
ClientIdRejected = 2,
ServerUnavailable = 3,
MalformedUsernameOrPassword = 4,
NotAuthorized = 5
};
/**
* @brief The ReasonCodes enum are for MQTT5.
*/
enum class ReasonCodes
{
Success = 0,
GrantedQoS0 = 0,
GrantedQoS1 = 1,
GrantedQoS2 = 2,
DisconnectWithWill = 4,
NoMatchingSubscribers = 16,
NoSubscriptionExisted = 17,
ContinueAuthentication = 24,
ReAuthenticate = 25,
UnspecifiedError = 128,
MalformedPacket = 129,
ProtocolError = 130,
ImplementationSpecificError = 131,
UnsupportedProtocolVersion = 132,
ClientIdentifierNotValid = 133,
BadUserNameOrPassword = 134,
NotAuthorized = 135,
ServerUnavailable = 136,
ServerBusy = 137,
Banned = 138,
ServerShuttingDown = 139,
BadAuthenticationMethod = 140,
KeepAliveTimeout = 141,
SessionTakenOver = 142,
TopicFilterInvalid = 143,
TopicNameInvalid = 144,
PacketIdentifierInUse = 145,
PacketIdentifierNotFound = 146,
ReceiveMaximumExceeded = 147,
TopicAliasInvalid = 148,
PacketTooLarge = 149,
MessageRateTooHigh = 150,
QuoteExceeded = 151,
AdministrativeAction = 152,
PayloadFormatInvalid = 153,
RetainNotSupported = 154,
QosNotSupported = 155,
UseAnotherServer = 156,
ServerMoved = 157,
SharedSubscriptionsNotSupported = 158,
ConnectionRateExceeded = 159,
MaximumConnectTime = 160,
SubscriptionIdentifiersNotSupported = 161,
WildcardSubscriptionsNotSupported = 162
};
class ConnAck
{
public:
ConnAck(const ProtocolVersion protVersion, ReasonCodes return_code, bool session_present=false);
const ProtocolVersion protocol_version;
uint8_t return_code;
bool session_present = false;
std::shared_ptr<Mqtt5PropertyBuilder> propertyBuilder;
size_t getLengthWithoutFixedHeader() const;
};
class SubAck
{
public:
const ProtocolVersion protocol_version;
const uint16_t packet_id;
std::list<ReasonCodes> responses;
std::shared_ptr<Mqtt5PropertyBuilder> propertyBuilder;
SubAck(const ProtocolVersion protVersion, uint16_t packet_id, const std::list<ReasonCodes> &subs_qos_reponses);
size_t getLengthWithoutFixedHeader() const;
};
class UnsubAck
{
public:
const ProtocolVersion protocol_version;
const uint16_t packet_id;
std::shared_ptr<Mqtt5PropertyBuilder> propertyBuilder;
std::vector<ReasonCodes> reasonCodes;
UnsubAck(const ProtocolVersion protVersion, uint16_t packet_id, const int unsubCount);
size_t getLengthWithoutFixedHeader() const;
};
/**
* @brief The PublishBase class was incepted to have an easy default copy constuctor that doesn't copy all fields.
*/
class PublishBase
{
friend class SessionsAndSubscriptionsDB;
bool hasExpireInfo = false;
std::chrono::time_point<std::chrono::steady_clock> createdAt;
std::chrono::seconds expiresAfter;
public:
std::string client_id;
std::string username;
std::string topic;
std::string payload;
char qos = 0;
bool retain = false; // Note: existing subscribers don't get publishes of retained messages with retain=1. [MQTT-3.3.1-9]
uint16_t topicAlias = 0;
bool skipTopic = false;
std::shared_ptr<Mqtt5PropertyBuilder> propertyBuilder; // Only contains data for sending, not receiving
PublishBase() = default;
PublishBase(const std::string &topic, const std::string &payload, char qos);
size_t getLengthWithoutFixedHeader() const;
void setClientSpecificProperties();
void clearClientSpecificProperties();
void constructPropertyBuilder();
bool hasUserProperties() const;
bool hasExpired() const;
const std::vector<std::pair<std::string, std::string>> *getUserProperties() const;
void setExpireAfter(uint32_t s);
bool getHasExpireInfo() const;
const std::chrono::time_point<std::chrono::steady_clock> getCreatedAt() const;
};
class Publish : public PublishBase
{
std::vector<std::string> subtopics;
public:
Publish() = default;
Publish(const Publish &other);
Publish(const std::string &topic, const std::string &payload, char qos);
const std::vector<std::string> &getSubtopics();
};
class WillPublish : public Publish
{
bool isQueued = false;
std::chrono::time_point<std::chrono::steady_clock> queuedAt;
public:
uint32_t will_delay = 0;
WillPublish() = default;
WillPublish(const Publish &other);
void setQueuedAt();
uint32_t getQueuedAtAge() const;
};
class PubResponse
{
public:
PubResponse(const PubResponse &other) = delete;
PubResponse(const ProtocolVersion protVersion, const PacketType packet_type, ReasonCodes reason_code, uint16_t packet_id);
const PacketType packet_type;
const ProtocolVersion protocol_version;
const ReasonCodes reason_code;
uint16_t packet_id;
uint8_t getLengthIncludingFixedHeader() const;
uint8_t getRemainingLength() const;
bool needsReasonCode() const;
};
class Disconnect
{
public:
ProtocolVersion protocolVersion;
ReasonCodes reasonCode;
std::shared_ptr<Mqtt5PropertyBuilder> propertyBuilder;
Disconnect(const ProtocolVersion protVersion, ReasonCodes reason_code);
size_t getLengthWithoutFixedHeader() const;
};
class Auth
{
public:
ReasonCodes reasonCode;
std::shared_ptr<Mqtt5PropertyBuilder> propertyBuilder;
Auth(ReasonCodes reasonCode, const std::string &authMethod, const std::string &authData);
size_t getLengthWithoutFixedHeader() const;
};
struct Connect
{
const ProtocolVersion protocolVersion;
bool clean_start = true;
std::string clientid;
std::string username;
std::string password;
std::shared_ptr<WillPublish> will;
std::shared_ptr<Mqtt5PropertyBuilder> propertyBuilder;
Connect(ProtocolVersion protocolVersion, const std::string &clientid);
size_t getLengthWithoutFixedHeader() const;
std::string getMagicString() const;
void constructPropertyBuilder();
};
/**
* @brief The Subscribe struct can be used to construct a mqtt packet of type 'subscribe'.
*
* It's rudimentary. Offically you can subscribe to multiple topics at once, but I have no need for that.
*/
struct Subscribe
{
const ProtocolVersion protocolVersion;
uint16_t packetId;
std::string topic;
char qos;
std::shared_ptr<Mqtt5PropertyBuilder> propertyBuilder;
Subscribe(const ProtocolVersion protocolVersion, uint16_t packetId, const std::string &topic, char qos);
size_t getLengthWithoutFixedHeader() const;
};
/**
* @brief The Unsubscribe struct can be used to construct a mqtt packet of type 'unsubscribe'.
*
* It's rudimentary. Offically you can unsubscribe to multiple topics at once, but I have no need for that.
*/
struct Unsubscribe
{
const ProtocolVersion protocolVersion;
uint16_t packetId;
std::string topic;
std::shared_ptr<Mqtt5PropertyBuilder> propertyBuilder;
Unsubscribe(const ProtocolVersion protocolVersion, uint16_t packetId, const std::string &topic);
size_t getLengthWithoutFixedHeader() const;
};
#endif // TYPES_H