diff options
author | Milan Srdinko <msrdinko@alps.cz> | 2017-02-13 16:34:44 +0100 |
---|---|---|
committer | Milan Srdinko <msrdinko@alps.cz> | 2017-03-17 12:15:13 +0100 |
commit | f7c7e2990d1575a3ff1ae05588602cee5ebc7a9e (patch) | |
tree | 5c24516ecb490c2c7373e1a9a66dc7b7580fa37e /wifi-api.c | |
parent | 450de3bc433773d182a0524ebdfe2b7666a4a170 (diff) |
WiFi: add event unsubscribe/delete on Wi-Fi disable
Change-Id: I2b3c74fc24b57c6152f105ff7bd8b090d9dad155
Signed-off-by: Milan Srdinko <msrdinko@alps.cz>
Diffstat (limited to 'wifi-api.c')
-rw-r--r-- | wifi-api.c | 37 |
1 files changed, 32 insertions, 5 deletions
@@ -585,6 +585,18 @@ static void eventadd (struct afb_req request) afb_req_success(request, NULL, NULL); } +static void eventdel (struct afb_req request) +{ + const char *tag = afb_req_value(request, "tag"); + + if (tag == NULL) + afb_req_fail(request, "failed", "bad arguments"); + else if (0 != event_del(tag)) + afb_req_fail(request, "failed", "deletion error"); + else + afb_req_success(request, NULL, NULL); +} + static int event_subscribe(struct afb_req request, const char *tag) { struct event *e; @@ -592,6 +604,13 @@ static int event_subscribe(struct afb_req request, const char *tag) return e ? afb_req_subscribe(request, e->event) : -1; } +static int event_unsubscribe(struct afb_req request, const char *tag) +{ + struct event *e; + e = event_get(tag); + return e ? afb_req_unsubscribe(request, e->event) : -1; +} + static void eventsub (struct afb_req request) { const char *tag = afb_req_value(request, "tag"); @@ -604,6 +623,17 @@ static void eventsub (struct afb_req request) afb_req_success(request, NULL, NULL); } +static void eventunsub (struct afb_req request) +{ + const char *tag = afb_req_value(request, "tag"); + + if (tag == NULL) + afb_req_fail(request, "failed", "bad arguments"); + else if (0 != event_unsubscribe(request, tag)) + afb_req_fail(request, "failed", "unsubscription error"); + else + afb_req_success(request, NULL, NULL); +} /* @@ -623,11 +653,8 @@ static const struct afb_verb_desc_v1 binding_verbs[] = { { .name = "eventadd", .session = AFB_SESSION_NONE, .callback = eventadd, .info ="adds the event of 'name' for the 'tag'"}, { .name = "eventsub", .session = AFB_SESSION_NONE, .callback = eventsub, .info ="unsubscribes to the event of 'tag'"}, { .name = "eventpush", .session = AFB_SESSION_NONE, .callback = eventpush, .info ="pushes the event of 'tag' with the 'data'"}, - - - - - +{ .name = "eventunsub", .session = AFB_SESSION_NONE, .callback = eventunsub, .info ="unsubscribes to the event of 'tag'"}, +{ .name = "eventdel", .session = AFB_SESSION_NONE, .callback = eventdel, .info ="deletes the event of 'tag'"}, { .name = NULL } /* marker for end of the array */ }; |