forked from letscontrolit/ESPEasyPluginPlayground
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_P210_MQTTImport.ino
486 lines (372 loc) · 13.8 KB
/
_P210_MQTTImport.ino
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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
//#######################################################################################################
//#################################### Plugin 210: MQTT Import ##########################################
//#################################### Version 0.4 5-Aug-2016 ###########################################
//## This Version Requires ESPEasy 114+, Core 2.3 and PubSub 2.6 #######
//#######################################################################################################
// This task reads data from the MQTT Import input stream and saves the value
#define PLUGIN_210
#define PLUGIN_ID_210 210
#define PLUGIN_NAME_210 "MQTT Import"
#define PLUGIN_VALUENAME1_210 "Value1"
#define PLUGIN_VALUENAME2_210 "Value2"
#define PLUGIN_VALUENAME3_210 "Value3"
#define PLUGIN_VALUENAME4_210 "Value4"
#define PLUGIN_IMPORT 210 // This is a 'private' function used only by this import module
// Declare a Wifi client for this plugin only
WiFiClient espclient_210;
PubSubClient MQTTclient_210(espclient_210); // Create a new pubsub instance
boolean Plugin_210(byte function, struct EventStruct *event, String& string)
{
boolean success = false;
char deviceTemplate[4][41]; // variable for saving the subscription topics
//
// Generate the MQTT import client name from the system name and a suffix
//
String tmpClientName = "%sysname%-Import";
String ClientName = parseTemplate(tmpClientName, 20);
switch (function)
{
case PLUGIN_DEVICE_ADD:
{
Device[++deviceCount].Number = PLUGIN_ID_210;
Device[deviceCount].Type = SENSOR_TYPE_SWITCH;
Device[deviceCount].VType = SENSOR_TYPE_SINGLE; // This means it has a single pin
Device[deviceCount].Ports = 0;
Device[deviceCount].PullUpOption = false;
Device[deviceCount].InverseLogicOption = false;
Device[deviceCount].FormulaOption = true; // Need this in order to get the decimals option
Device[deviceCount].ValueCount = 4;
Device[deviceCount].SendDataOption = false;
Device[deviceCount].TimerOption=false;
break;
}
case PLUGIN_GET_DEVICENAME:
{
string = F(PLUGIN_NAME_210);
break;
}
case PLUGIN_GET_DEVICEVALUENAMES:
{
strcpy_P(ExtraTaskSettings.TaskDeviceValueNames[0], PSTR(PLUGIN_VALUENAME1_210));
strcpy_P(ExtraTaskSettings.TaskDeviceValueNames[1], PSTR(PLUGIN_VALUENAME2_210));
strcpy_P(ExtraTaskSettings.TaskDeviceValueNames[2], PSTR(PLUGIN_VALUENAME3_210));
strcpy_P(ExtraTaskSettings.TaskDeviceValueNames[3], PSTR(PLUGIN_VALUENAME4_210));
break;
}
case PLUGIN_WEBFORM_LOAD:
{
LoadCustomTaskSettings(event->TaskIndex, (byte*)&deviceTemplate, sizeof(deviceTemplate));
for (byte varNr = 0; varNr < 4; varNr++)
{
string += F("<TR><TD>MQTT Topic ");
string += varNr + 1;
string += F(":<TD><input type='text' size='40' maxlength='40' name='Plugin_210_template");
string += varNr + 1;
string += F("' value='");
string += deviceTemplate[varNr];
string += F("'>");
}
success = true;
break;
}
case PLUGIN_WEBFORM_SAVE:
{
String argName;
for (byte varNr = 0; varNr < 4; varNr++)
{
argName = F("Plugin_210_template");
argName += varNr + 1;
strncpy(deviceTemplate[varNr], WebServer.arg(argName).c_str(), sizeof(deviceTemplate[varNr]));
}
Settings.TaskDeviceID[event->TaskIndex] = 1; // temp fix, needs a dummy value
SaveCustomTaskSettings(event->TaskIndex, (byte*)&deviceTemplate, sizeof(deviceTemplate));
success = true;
break;
}
case PLUGIN_INIT:
{
// When we edit the subscription data from the webserver, the plugin is called again with init.
// In order to resubscribe we have to disconnect and reconnect in order to get rid of any obsolete subscriptions
MQTTclient_210.disconnect();
if (MQTTConnect_210(ClientName))
{
// Subscribe to ALL the topics from ALL instance of this import module
MQTTSubscribe_210();
success = true;
}
else
{
success=false;
}
}
case PLUGIN_TEN_PER_SECOND:
{
MQTTclient_210.loop(); // Listen out for callbacks
success=true;
break;
}
case PLUGIN_ONCE_A_SECOND:
{
// Here we check that the MQTT client is alive.
if (!MQTTclient_210.connected()){
String log = F("IMPT : MQTT 210 Connection lost");
addLog(LOG_LEVEL_ERROR, log);
MQTTclient_210.disconnect();
delay(1000);
if (! MQTTConnect_210(ClientName)){
success=false;
break;
}
MQTTSubscribe_210();
}
success=true;
break;
}
case PLUGIN_READ:
{
// This routine does not output any data and so we do not need to respond to regular read requests
success = false;
break;
}
case PLUGIN_IMPORT:
{
// This is a private option only used by the MQTT 210 callback function
// Get the payload and check it out
String Payload=event->String2;
float floatPayload=string2float(Payload);
LoadTaskSettings(event->TaskIndex);
if (floatPayload == -999){
String log=F("IMPT : Bad Import MQTT Command ");
log+=event->String1;
addLog(LOG_LEVEL_ERROR,log);
log="ERR : Illegal Payload ";
log+=Payload;
log+=" ";
log+=ExtraTaskSettings.TaskDeviceName;
addLog(LOG_LEVEL_INFO,log);
success=false;
break;
}
// Get the Topic and see if it matches any of the subscriptions
String Topic=event->String1;
LoadCustomTaskSettings(event->TaskIndex, (byte*)&deviceTemplate, sizeof(deviceTemplate));
for (byte x = 0; x < 4; x++)
{
String subscriptionTopic = deviceTemplate[x];
subscriptionTopic.trim();
if (subscriptionTopic.length() == 0) continue; // skip blank subscriptions
// Now check if the incoming topic matches one of our subscriptions
if (MQTTCheckSubscription_210(Topic,subscriptionTopic))
{
UserVar[event->BaseVarIndex+x]=floatPayload; // Save the new value
// Log the event
String log =F("IMPT : [");
log += ExtraTaskSettings.TaskDeviceName;
log += F("#");
log += ExtraTaskSettings.TaskDeviceValueNames[x];
log += F("] : ");
log += floatPayload;
addLog(LOG_LEVEL_INFO, log);
// Generate event for rules processing - proposed by TridentTD
if (Settings.UseRules)
{
String RuleEvent = F("");
RuleEvent += ExtraTaskSettings.TaskDeviceName;
RuleEvent += F("#");
RuleEvent += ExtraTaskSettings.TaskDeviceValueNames[x];
RuleEvent += F("=");
RuleEvent += floatPayload;
rulesProcessing(RuleEvent);
}
success = true;
}
}
break;
}
}
return success;
}
boolean MQTTSubscribe_210()
{
// Subscribe to the topics requested by ALL calls to this plugin.
// We do this because if the connection to the broker is lost, we want to resubscribe for all instances.
char deviceTemplate[4][41];
// Loop over all tasks looking for a 210 instance
for (byte y = 0; y < TASKS_MAX; y++)
{
if (Settings.TaskDeviceNumber[y] == 210)
{
LoadCustomTaskSettings(y, (byte*)&deviceTemplate, sizeof(deviceTemplate));
// Now loop over all import variables and subscribe to those that are not blank
for (byte x = 0; x < 4; x++)
{
String subscribeTo = deviceTemplate[x];
if (subscribeTo.length() > 0)
{
if (MQTTclient_210.subscribe(subscribeTo.c_str()))
{
String log = F("IMPT : [");
LoadTaskSettings(y);
log += ExtraTaskSettings.TaskDeviceName;
log += F("#");
log += ExtraTaskSettings.TaskDeviceValueNames[x];
log += F("] subscribed to ");
log += subscribeTo;
addLog(LOG_LEVEL_INFO, log);
}
else
{
String log = F("IMPT : Error subscribing to ");
log += subscribeTo;
addLog(LOG_LEVEL_ERROR, log);
return false;
}
}
}
}
}
return true;
}
//
// handle MQTT messages
//
void mqttcallback_210(char* c_topic, byte* b_payload, unsigned int length)
{
// Here we have incomng MQTT messages from the mqtt import module
String topic = c_topic;
char cpayload[256];
strncpy(cpayload, (char*)b_payload, length);
cpayload[length] = 0;
String payload = cpayload; // convert byte to char string
payload.trim();
byte DeviceIndex = getDeviceIndex(210); // This is the device index of 210 modules -there should be one!
// We generate a temp event structure to pass to the plugins
struct EventStruct TempEvent;
TempEvent.String1 = topic; // This is the topic of the message
TempEvent.String2 = payload; // This is the payload
// Here we loop over all tasks and call each 210 plugin with function PLUGIN_IMPORT
for (byte y = 0; y < TASKS_MAX; y++)
{
if (Settings.TaskDeviceNumber[y] == 210) // if we have found a 210 device, then give it something to think about!
{
TempEvent.TaskIndex = y;
TempEvent.BaseVarIndex = y * VARS_PER_TASK; // This is the index in Uservar where values for this task are stored
Plugin_ptr[DeviceIndex](PLUGIN_IMPORT, &TempEvent, payload);
}
}
}
//
// Make a new client connection to the mqtt broker.
// For some reason this seems to failduring the call in INIT- however it succeeds later during recovery
// It would be nice to understand this....
boolean MQTTConnect_210(String clientid)
{
boolean result = false;
// Do nothing if already connected
if (MQTTclient_210.connected())return true;
IPAddress MQTTBrokerIP(Settings.Controller_IP);
// define stuff for the client - this could also be done in the intial declaration of MQTTclient_210
MQTTclient_210.setServer(MQTTBrokerIP, Settings.ControllerPort);
MQTTclient_210.setCallback(mqttcallback_210);
// Try three times for a connection
for (byte x = 1; x < 4; x++)
{
String log = "";
if ((SecuritySettings.ControllerUser[0] != 0) && (SecuritySettings.ControllerPassword[0] != 0))
result = MQTTclient_210.connect(clientid.c_str(), SecuritySettings.ControllerUser, SecuritySettings.ControllerPassword);
else
result = MQTTclient_210.connect(clientid.c_str());
if (result)
{
log = F("IMPT : Connected to MQTT broker with Client ID=");
log += clientid;
addLog(LOG_LEVEL_INFO, log);
break; // end loop if succesfull
}
else
{
log = F("IMPT : Failed to connect to MQTT broker - attempt ");
log += x;
addLog(LOG_LEVEL_ERROR, log);
}
delay(500);
}
return MQTTclient_210.connected();
}
//
// Check to see if Topic matches the MQTT subscription
//
boolean MQTTCheckSubscription_210(String Topic, String Subscription) {
String tmpTopic = Topic;
String tmpSub = Subscription;
tmpTopic.trim();
tmpSub.trim();
// Get rid of any initial /
if (tmpTopic.substring(0, 1) == "/")tmpTopic = tmpTopic.substring(1);
if (tmpSub.substring(0, 1) == "/")tmpSub = tmpSub.substring(1);
// Add trailing / if required
int lenTopic = tmpTopic.length();
if (tmpTopic.substring(lenTopic - 1, lenTopic) != "/")tmpTopic += F("/");
int lenSub = tmpSub.length();
if (tmpSub.substring(lenSub - 1, lenSub) != "/")tmpSub += F("/");
// Now get first part
int SlashTopic;
int SlashSub;
int count = 0;
String pTopic;
String pSub;
while (count < 10) {
// Get locations of the first /
SlashTopic = tmpTopic.indexOf('/');
SlashSub = tmpSub.indexOf('/');
// If no slashes found then match is OK
// If only one slash found then not OK
if ((SlashTopic == -1) && (SlashSub == -1)) return true;
if ((SlashTopic == -1) && (SlashSub != -1)) return false;
if ((SlashTopic != -1) && (SlashSub == -1)) return false;
// Get the values for the current subtopic
pTopic = tmpTopic.substring(0, SlashTopic);
pSub = tmpSub.substring(0, SlashSub);
// And strip the subtopic from the topic
tmpTopic = tmpTopic.substring(SlashTopic + 1);
tmpSub = tmpSub.substring(SlashSub + 1);
// If the subtopics match then OK - otherwise fail
if (pSub == "#") return true;
if ((pTopic != pSub) && (pSub != "+"))return false;
count = count + 1;
}
return false;
}
// ***************************************************************************
// Convert String to float - returns -999 in case of error
float string2float(String myString) {
int i, len;
float value;
len = myString.length();
char tmp[(len + 1)]; // one extra for the zero termination
byte start = 0;
// Look for decimal point - they can be anywhere but no more than one of them!
int dotIndex = myString.indexOf(".");
//Serial.println(dotIndex);
if (dotIndex != -1)
{
int dotIndex2 = (myString.substring(dotIndex + 1)).indexOf(".");
//Serial.println(dotIndex2);
if (dotIndex2 != -1)return -999.00; // Give error if there is more than one dot
}
if (myString.substring(0, 1) == "-") {
start = 1; //allow a minus in front of string
tmp[i] = '-';
}
for (i = start; i<len; i++)
{
tmp[i] = myString.charAt(i);
if (!isdigit(tmp[i]))
{
if (tmp[i] != '.')return -999;
}
}
tmp[i] = 0;
value = atof(tmp);
return value;
}