]> mj.ucw.cz Git - home-hw.git/blob - ssr/host/burrow-ssrd.c
Revert "Prometheus: Circulation and fan"
[home-hw.git] / ssr / host / burrow-ssrd.c
1 /*
2  *      A MQTT Gateway Daemon for the Solid State Relay module
3  *
4  *      (c) 2018 Martin Mares <mj@ucw.cz>
5  */
6
7 #include <ucw/lib.h>
8 #include <ucw/log.h>
9 #include <ucw/opt.h>
10 #include <ucw/strtonum.h>
11 #include <ucw/unaligned.h>
12
13 #include <stdarg.h>
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <string.h>
17 #include <syslog.h>
18 #include <time.h>
19
20 #include <libusb-1.0/libusb.h>
21 #include <mosquitto.h>
22
23 static struct libusb_context *usb_ctxt;
24 static struct libusb_device_handle *devh;
25
26 static struct mosquitto *mosq;
27
28 static u32 ssr_state;
29
30 void open_device(void)
31 {
32         int err;
33         libusb_device **devlist;
34         ssize_t devn = libusb_get_device_list(usb_ctxt, &devlist);
35         if (devn < 0)
36                 die("Cannot enumerate USB devices: error %d", (int) devn);
37
38         for (ssize_t i=0; i<devn; i++) {
39                 struct libusb_device_descriptor desc;
40                 libusb_device *dev = devlist[i];
41                 if (!libusb_get_device_descriptor(dev, &desc)) {
42                         if (desc.idVendor == 0x4242 && desc.idProduct == 0x0002) {
43                                 msg(L_INFO, "Found SSR module at usb%d.%d", libusb_get_bus_number(dev), libusb_get_device_address(dev));
44
45                                 if (err = libusb_open(dev, &devh))
46                                         die("Cannot open device: error %d", err);
47                                 libusb_reset_device(devh);
48                                 if (err = libusb_claim_interface(devh, 0))
49                                         die("Cannot claim interface: error %d", err);
50
51                                 libusb_free_device_list(devlist, 1);
52                                 return;
53                         }
54                 }
55         }
56
57         libusb_free_device_list(devlist, 1);
58         die("Device not found");
59 }
60
61 static byte req[64], resp[64];
62
63 static int transaction(uint req_len, uint resp_len)
64 {
65         int err, transferred;
66         if (err = libusb_bulk_transfer(devh, 0x01, req, req_len, &transferred, 2000))
67                 die("Transfer failed: error %d\n", err);
68         // printf("Transferred %d bytes\n", transferred);
69
70         int received;
71         if (err = libusb_bulk_transfer(devh, 0x82, resp, 64, &received, 2000))
72                 die("Receive failed: error %d\n", err);
73         // printf("Received %d bytes\n", received);
74
75         if ((uint) received < resp_len)
76                 die("Received short packet (%u out of %u bytes)", received, resp_len);
77
78         if (received >= 4) {
79                 uint status = get_u32_be(resp);
80                 if (status)
81                         die("Received error status %08x", status);
82         }
83
84         return received;
85 }
86
87 static void set_relays(void)
88 {
89         msg(L_INFO, "Setting relays to %02x", ssr_state);
90         put_u32_be(req, 1);
91         put_u32_be(req+4, ssr_state);
92         transaction(8, 4);
93 }
94
95 static void mqtt_publish(const char *topic, const char *fmt, ...)
96 {
97         va_list args;
98         va_start(args, fmt);
99         char m[256];
100         int l = vsnprintf(m, sizeof(m), fmt, args);
101         if (mosquitto_publish(mosq, NULL, topic, l, m, 0, true) != MOSQ_ERR_SUCCESS)
102                 msg(L_ERROR, "Mosquitto: publish failed");
103         va_end(args);
104 }
105
106 static void mqtt_setup(void)
107 {
108         if (mosquitto_subscribe(mosq, NULL, "burrow/loft/#", 1) != MOSQ_ERR_SUCCESS)
109                 die("Mosquitto: subscribe failed");
110
111         mqtt_publish("status/loft-ssr", "ok");
112 }
113
114 static void mqtt_log_callback(struct mosquitto *mosq UNUSED, void *obj UNUSED, int level, const char *message)
115 {
116         // msg(L_INFO, "MQTT(%d): %s", level, message);
117 }
118
119 static void mqtt_msg_callback(struct mosquitto *mosq UNUSED, void *obj UNUSED, const struct mosquitto_message *m)
120 {
121         char val[256];
122         if (m->payloadlen >= sizeof(val) - 1) {
123                 msg(L_ERROR, "Invalid value for topic %s", m->topic);
124                 return;
125         }
126         memcpy(val, m->payload, m->payloadlen);
127         val[m->payloadlen] = 0;
128         msg(L_DEBUG, "MQTT < %s %s", m->topic, val);
129
130         if (!strcmp(m->topic, "burrow/loft/fan")) {
131                 uint x;
132                 const char *err;
133                 if ((err = str_to_uint(&x, val, NULL, 10 | STN_WHOLE)) || x >= 4) {
134                         msg(L_ERROR, "Received invalid fan setting %s: %s", val, err);
135                         x = 0;
136                 }
137                 msg(L_INFO, "Setting fan level to %u", x);
138                 ssr_state &= ~7U;
139                 switch (x) {
140                         case 1:
141                                 ssr_state |= 4;
142                                 break;
143                         case 2:
144                                 ssr_state |= 2;
145                                 break;
146                         case 3:
147                                 ssr_state |= 1;
148                                 break;
149                 }
150                 set_relays();
151         } else if (!strcmp(m->topic, "burrow/loft/circulation")) {
152                 uint x;
153                 const char *err;
154                 if ((err = str_to_uint(&x, val, NULL, 10 | STN_WHOLE)) || x >= 2) {
155                         msg(L_ERROR, "Received invalid circulation setting %s: %s", val, err);
156                         x = 0;
157                 }
158                 msg(L_INFO, "Setting circulation to %u", x);
159                 ssr_state &= ~8U;
160                 if (x)
161                         ssr_state |= 8;
162                 set_relays();
163         }
164 }
165
166 static int use_daemon;
167 static int use_debug;
168
169 static struct opt_section options = {
170         OPT_ITEMS {
171                 OPT_HELP("A daemon for controlling the solid state relay module via MQTT"),
172                 OPT_HELP(""),
173                 OPT_HELP("Options:"),
174                 OPT_BOOL('d', "debug", use_debug, 0, "\tLog debugging messages"),
175                 OPT_BOOL(0, "daemon", use_daemon, 0, "\tDaemonize"),
176                 OPT_HELP_OPTION,
177                 OPT_CONF_OPTIONS,
178                 OPT_END
179         }
180 };
181
182 int main(int argc UNUSED, char **argv)
183 {
184         log_init(argv[0]);
185         opt_parse(&options, argv+1);
186
187         if (use_daemon) {
188                 struct log_stream *ls = log_new_syslog("daemon", LOG_PID);
189                 log_set_default_stream(ls);
190         }
191         if (!use_debug)
192                 log_default_stream()->levels &= ~(1U << L_DEBUG);
193
194         int err;
195         if (err = libusb_init(&usb_ctxt))
196                 die("Cannot initialize libusb: error %d", err);
197         if (use_debug)
198                 libusb_set_debug(usb_ctxt, 3);
199         open_device();
200         set_relays();
201
202         mosquitto_lib_init();
203         mosq = mosquitto_new("ssrd", 1, NULL);
204         if (!mosq)
205                 die("Mosquitto: initialization failed");
206
207         mosquitto_log_callback_set(mosq, mqtt_log_callback);
208         mosquitto_message_callback_set(mosq, mqtt_msg_callback);
209
210         if (mosquitto_will_set(mosq, "status/loft-ssr", 4, "dead", 0, true) != MOSQ_ERR_SUCCESS)
211                 die("Mosquitto: unable to set will");
212
213         if (mosquitto_connect(mosq, "127.0.0.1", 1883, 60) != MOSQ_ERR_SUCCESS)
214                 die("Mosquitto: connect failed");
215
216         mqtt_setup();
217
218         time_t next_run = 0;
219         for (;;) {
220                 time_t now = time(NULL);
221                 if (now < next_run) {
222                         int err = mosquitto_loop(mosq, (next_run - now) * 1000, 1);
223                         if (err == MOSQ_ERR_NO_CONN) {
224                                 err = mosquitto_reconnect(mosq);
225                                 if (err == MOSQ_ERR_SUCCESS)
226                                         mqtt_setup();
227                                 else
228                                         msg(L_ERROR, "Mosquitto: cannot reconnect, error %d", err);
229                         } else if (err != MOSQ_ERR_SUCCESS)
230                                 msg(L_ERROR, "Mosquitto: loop returned error %d", err);
231                         continue;
232                 }
233
234                 next_run = now + 5;
235
236                 put_u32_be(req, 2);
237                 transaction(8, 8);
238                 int t = get_u32_be(resp+4);
239                 msg(L_DEBUG, "Measured raw temperature %d", t);
240
241                 mqtt_publish("burrow/temp/loft", "%.3f %llu", t / 1000., (unsigned long long) now);
242         }
243 }