X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-evt.h;h=9071b32a96ce6f4f0b5e5449a40780d84f8ad1e9;hb=170aef20bc3a59d5139c2eff8794d9ba4c83a2e5;hp=8e10254650c136b55f6883cbcb68fcbb5a0b313a;hpb=7e0abe76db7b90369429bf387d7aad0fb5a42328;p=src%2Fapp-framework-binder.git diff --git a/src/afb-evt.h b/src/afb-evt.h index 8e102546..9071b32a 100644 --- a/src/afb-evt.h +++ b/src/afb-evt.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 "IoT.bzh" + * Copyright (C) 2016, 2017 "IoT.bzh" * Author: José Bollo * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -18,11 +18,19 @@ #pragma once struct afb_event; -struct AFB_clientCtx; - +struct afb_session; +struct json_object; struct afb_evt_listener; -extern struct afb_evt_listener *afb_evt_listener_create(void (*send)(void *closure, const char *event, struct json_object *object), void *closure); +struct afb_evt_itf +{ + void (*push)(void *closure, const char *event, int eventid, struct json_object *object); + void (*broadcast)(void *closure, const char *event, int eventid, struct json_object *object); + void (*add)(void *closure, const char *event, int eventid); + void (*remove)(void *closure, const char *event, int eventid); +}; + +extern struct afb_evt_listener *afb_evt_listener_create(const struct afb_evt_itf *itf, void *closure); extern int afb_evt_broadcast(const char *event, struct json_object *object); @@ -30,7 +38,13 @@ extern struct afb_evt_listener *afb_evt_listener_addref(struct afb_evt_listener extern void afb_evt_listener_unref(struct afb_evt_listener *listener); extern struct afb_event afb_evt_create_event(const char *name); +extern const char *afb_evt_event_name(struct afb_event event); +extern int afb_evt_event_id(struct afb_event event); + +extern int afb_evt_push(struct afb_event event, struct json_object *object); +extern int afb_evt_unhooked_push(struct afb_event event, struct json_object *object); extern int afb_evt_add_watch(struct afb_evt_listener *listener, struct afb_event event); extern int afb_evt_remove_watch(struct afb_evt_listener *listener, struct afb_event event); +extern void afb_evt_update_hooks();