summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Srdinko <msrdinko@alps.cz>2017-02-13 16:34:44 +0100
committerMilan Srdinko <msrdinko@alps.cz>2017-03-17 12:15:13 +0100
commitf7c7e2990d1575a3ff1ae05588602cee5ebc7a9e (patch)
tree5c24516ecb490c2c7373e1a9a66dc7b7580fa37e
parent450de3bc433773d182a0524ebdfe2b7666a4a170 (diff)
WiFi: add event unsubscribe/delete on Wi-Fi disable
Change-Id: I2b3c74fc24b57c6152f105ff7bd8b090d9dad155 Signed-off-by: Milan Srdinko <msrdinko@alps.cz>
-rw-r--r--wifi-api.c37
1 files changed, 32 insertions, 5 deletions
diff --git a/wifi-api.c b/wifi-api.c
index 933a121..02ff106 100644
--- a/wifi-api.c
+++ b/wifi-api.c
@@ -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 */
};