diff options
author | Christian Pointner <equinox@helsinki.at> | 2014-03-20 22:55:01 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2014-03-20 22:55:01 (GMT) |
commit | 11f70f400d8f54721ec05c1adfd11915e6c2a905 (patch) | |
tree | 4c461fd755269d7857569be7d1ae3a3084186fcd /switchctl.c | |
parent | b2ee1b990397735b1b537b3d942f9815bb4ab414 (diff) |
added state for heartbeats
Diffstat (limited to 'switchctl.c')
-rw-r--r-- | switchctl.c | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/switchctl.c b/switchctl.c index 2025776..4896f15 100644 --- a/switchctl.c +++ b/switchctl.c @@ -37,11 +37,12 @@ #include "daemon.h" #include "utils.h" - struct state_struct { switchctl_mode_t mode_; switchctl_channel_t channel_master_; switchctl_channel_t channel_standby_; + bool hb_state_master_; + bool hb_state_standby_; }; typedef struct state_struct state_t; @@ -224,6 +225,10 @@ int process_cmd_request(const char* cmd, cmd_id_t cmd_id, const char* param, int send_response(fd, buf[1]); snprintf(buf[1], 30, "Standby Channel: %s", state_.channel_standby_ == CHAN_MAIN ? "Main" : "Music"); send_response(fd, buf[1]); + snprintf(buf[1], 30, "Master Heartbeat: %s", state_.hb_state_master_ ? "present" : "timeout"); + send_response(fd, buf[1]); + snprintf(buf[1], 30, "Standby Heartbeat: %s", state_.hb_state_standby_ ? "present" : "timeout"); + send_response(fd, buf[1]); client_t* client; int listener_cnt = 0; for(client = client_lst; client; client = client->next) @@ -484,14 +489,14 @@ void process_cmd_heartbeat(const char* param, int fd, client_t* client_lst) if(param) { client_t* client = client_find(client_lst, fd); if(client) { - if(client->type == HB_MASTER || client->type == HB_STANDBY) { - log_printf(WARNING, "ignoring heartbeat updates for now!"); - send_response(fd, "EEE: heartbeat: ignoring heartbeat updates for now!"); - // TODO: add support for this - } - else { - log_printf(ERROR, "unable to update heartbeat status: wrong client type"); - send_response(fd, "EEE: heartbeat: wrong client type"); + switch(client->type) { + case HB_MASTER: state_.hb_state_master_ = (param[0] == '1') ? TRUE : FALSE; break; + case HB_STANDBY: state_.hb_state_standby_ = (param[0] == '1') ? TRUE : FALSE; break; + default: { + log_printf(ERROR, "unable to update heartbeat status: wrong client type"); + send_response(fd, "EEE: heartbeat: wrong client type"); + break; + } } } else { @@ -992,6 +997,8 @@ int main(int argc, char* argv[]) state_.mode_ = opt.mode_; state_.channel_master_ = opt.channel_master_; state_.channel_standby_ = opt.channel_standby_; + state_.hb_state_master_ = FALSE; + state_.hb_state_standby_ = FALSE; int switch_fd = 0; for(;;) { |