-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathzmosq_client.c
299 lines (235 loc) · 7.43 KB
/
zmosq_client.c
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
/* =========================================================================
zmosq_client - Zmosq client
Copyright (c) the Contributors as noted in the AUTHORS file.
This file is part of the Malamute Project.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
=========================================================================
*/
/*
@header
zmosq_client - Zmosq client
@discuss
@end
*/
#include "zmsq_classes.h"
// Structure of our class
struct _zmosq_client_t {
zactor_t *zmosq_server;
bool mqtt_connected;
char *mqtt_host;
char *mqtt_bindaddress;
int mqtt_port;
int mqtt_keepalive;
zlistx_t *topics;
bool mlm_connected;
char *mlm_host;
char *mlm_stream;
};
// --------------------------------------------------------------------------
// Create a new zmosq_client
zmosq_client_t *
zmosq_client_new (void)
{
zmosq_client_t *self = (zmosq_client_t *) zmalloc (sizeof (zmosq_client_t));
assert (self);
// Initialize class properties here
self->zmosq_server = zactor_new (zmosq_server_actor, NULL);
self->mqtt_connected = false;
self->mqtt_host = strdup ("");
self->mqtt_bindaddress = strdup ("");
self->mqtt_port = -1;
self->mqtt_keepalive = -1;
self->topics = zlistx_new ();
zlistx_set_destructor (self->topics, (czmq_destructor *) zstr_free);
self->mlm_connected = false;
self->mlm_host = strdup ("");
self->mlm_stream = strdup ("");
return self;
}
// --------------------------------------------------------------------------
// Destroy the zmosq_client
void
zmosq_client_destroy (zmosq_client_t **self_p)
{
assert (self_p);
if (*self_p) {
zmosq_client_t *self = *self_p;
// Free class properties here
zactor_destroy (&self->zmosq_server);
zstr_free (&self->mqtt_host);
zstr_free (&self->mqtt_bindaddress);
zlistx_destroy (&self->topics);
zstr_free (&self->mlm_host);
zstr_free (&self->mlm_stream);
// Free object itself
free (self);
*self_p = NULL;
}
}
// --------------------------------------------------------------------------
// Start the zmosq_client
void
zmosq_client_start (zmosq_client_t *self)
{
assert (self);
zstr_sendx (self->zmosq_server, "START", NULL);
}
// --------------------------------------------------------------------------
// Stop the zmosq_client
void
zmosq_client_stop (zmosq_client_t *self)
{
assert (self);
zstr_sendx (self->zmosq_server, "STOP", NULL);
}
// --------------------------------------------------------------------------
// Set verbosity
void
zmosq_client_set_verbose (zmosq_client_t *self)
{
assert (self);
zstr_send (self->zmosq_server, "VERBOSE");
}
// --------------------------------------------------------------------------
// Is client connected to mosquitto broker?
bool
zmosq_client_mqtt_connected (zmosq_client_t *self)
{
assert (self);
return self->mqtt_connected;
}
// --------------------------------------------------------------------------
// Connect client to mosquitto broker
void
zmosq_client_mqtt_connect (zmosq_client_t *self, const char *host, int port, int keepalive, const char *bind_address)
{
assert (self);
assert (host);
assert (bind_address);
zstr_sendx (self->zmosq_server, "CONNECT", host, port, keepalive, bind_address, NULL);
// host
zstr_free (&self->mqtt_host);
self->mqtt_host = strdup (host);
// port
self->mqtt_port = port;
// keepalive
self->mqtt_keepalive = keepalive;
// bindaddress
zstr_free (&self->mqtt_bindaddress);
self->mqtt_bindaddress = strdup (bind_address);
// connected
self->mqtt_connected = true;
}
// --------------------------------------------------------------------------
// Get mosquitto broker's hostname, to which client is connected
const char *
zmosq_client_host (zmosq_client_t *self)
{
assert (self);
return self->mqtt_host;
}
// --------------------------------------------------------------------------
// Get mosquitto broker's port, to which client is connected
int
zmosq_client_port (zmosq_client_t *self)
{
assert (self);
return self->mqtt_port;
}
// --------------------------------------------------------------------------
// Get mosquitto broker's keepalive, to which client is connected
int
zmosq_client_keepalive (zmosq_client_t *self)
{
assert (self);
return self->mqtt_keepalive;
}
// --------------------------------------------------------------------------
// Get mosquitto broker's bindaddress, to which client is connected
const char *
zmosq_client_bindaddress (zmosq_client_t *self)
{
assert (self);
return self->mqtt_bindaddress;
}
// --------------------------------------------------------------------------
// Subscribe to mosquitto broker's topic
void
zmosq_client_subscribe (zmosq_client_t *self, const char *topic)
{
assert (self);
assert (topic);
zlistx_add_end (self->topics, (void *) topic);
zstr_sendx (self->zmosq_server, "SUBSCRIBE", topic, NULL);
}
// --------------------------------------------------------------------------
// Get mosquitto broker's topics to which client is subscribed
zlistx_t *
zmosq_client_topics (zmosq_client_t *self)
{
assert (self);
return zlistx_dup (self->topics);
}
// --------------------------------------------------------------------------
// Is client connected to malamute broker
bool
zmosq_client_mlm_connected (zmosq_client_t *self)
{
assert (self);
return self->mlm_connected;
}
// --------------------------------------------------------------------------
// Connect client to malamute broker
void
zmosq_client_mlm_connect (zmosq_client_t *self, const char *mlm_endpoint)
{
assert (self);
assert (mlm_endpoint);
zstr_sendx (self->zmosq_server, "MLM-CONNECT", mlm_endpoint, NULL);
zstr_free (&self->mlm_host);
self->mlm_host = strdup (mlm_endpoint);
self->mlm_connected = true;
}
// --------------------------------------------------------------------------
// Get malamute broker's hostname to which client is connected
const char *
zmosq_client_mlm_host (zmosq_client_t *self)
{
assert (self);
return self->mlm_host;
}
// --------------------------------------------------------------------------
// Publish to malamute broker's stream
void
zmosq_client_mlm_set_stream (zmosq_client_t *self, const char *stream)
{
assert (self);
assert (stream);
zstr_sendx (self->zmosq_server, "MLM-PUBLISH", "stream", NULL);
zstr_free (&self->mlm_stream);
self->mlm_stream = strdup (stream);
}
// --------------------------------------------------------------------------
// Get malamute broker's stream to which client is publishing
const char *
zmosq_client_mlm_stream (zmosq_client_t *self)
{
assert (self);
return self->mlm_stream;
}
// --------------------------------------------------------------------------
// Self test of this class
void
zmosq_client_test (bool verbose)
{
printf (" * zmosq_client: ");
// @selftest
// Simple create/destroy test
zmosq_client_t *self = zmosq_client_new ();
assert (self);
zmosq_client_destroy (&self);
// @end
printf ("OK\n");
}