X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-hook.h;h=8fe30d5b0d82b67854d76b022ff6479c8ebeb856;hb=bb5806063c450da26a38e1915f076723d00df260;hp=85361a68ef4523a36eb564e8843b17c397e587bd;hpb=6f1126ae2c585afc34d0bb06f3763e3a82ee3d37;p=src%2Fapp-framework-binder.git diff --git a/src/afb-hook.h b/src/afb-hook.h index 85361a68..8fe30d5b 100644 --- a/src/afb-hook.h +++ b/src/afb-hook.h @@ -25,6 +25,7 @@ struct afb_event; struct afb_session; struct afb_xreq; struct afb_ditf; +struct afb_svc; struct sd_bus; struct sd_event; @@ -120,7 +121,7 @@ extern void afb_hook_xreq_subcallsync(const struct afb_xreq *xreq, const char *a extern int afb_hook_xreq_subcallsync_result(const struct afb_xreq *xreq, int status, struct json_object *result); /********************************************************* -* section hooking ditf +* section hooking ditf (daemon interface) *********************************************************/ #define afb_hook_flag_ditf_vverbose 0x000001 @@ -176,3 +177,46 @@ extern struct afb_hook_ditf *afb_hook_create_ditf(const char *api, int flags, st extern struct afb_hook_ditf *afb_hook_addref_ditf(struct afb_hook_ditf *hook); extern void afb_hook_unref_ditf(struct afb_hook_ditf *hook); +/********************************************************* +* section hooking svc (service interface) +*********************************************************/ + +#define afb_hook_flag_svc_start_before 0x000001 +#define afb_hook_flag_svc_start_after 0x000002 +#define afb_hook_flag_svc_on_event_before 0x000004 +#define afb_hook_flag_svc_on_event_after 0x000008 +#define afb_hook_flag_svc_call 0x000010 +#define afb_hook_flag_svc_call_result 0x000020 +#define afb_hook_flag_svc_callsync 0x000040 +#define afb_hook_flag_svc_callsync_result 0x000080 + +#define afb_hook_flags_svc_all (afb_hook_flag_svc_start_before|afb_hook_flag_svc_start_after\ + |afb_hook_flag_svc_on_event_before|afb_hook_flag_svc_on_event_after\ + |afb_hook_flag_svc_call|afb_hook_flag_svc_call_result\ + |afb_hook_flag_svc_callsync|afb_hook_flag_svc_callsync_result) + +struct afb_hook_svc_itf { + void (*hook_svc_start_before)(void *closure, const struct afb_svc *svc); + void (*hook_svc_start_after)(void *closure, const struct afb_svc *svc, int status); + void (*hook_svc_on_event_before)(void *closure, const struct afb_svc *svc, const char *event, int eventid, struct json_object *object); + void (*hook_svc_on_event_after)(void *closure, const struct afb_svc *svc, const char *event, int eventid, struct json_object *object); + void (*hook_svc_call)(void *closure, const struct afb_svc *svc, const char *api, const char *verb, struct json_object *args); + void (*hook_svc_call_result)(void *closure, const struct afb_svc *svc, int status, struct json_object *result); + void (*hook_svc_callsync)(void *closure, const struct afb_svc *svc, const char *api, const char *verb, struct json_object *args); + void (*hook_svc_callsync_result)(void *closure, const struct afb_svc *svc, int status, struct json_object *result); +}; + +extern void afb_hook_svc_start_before(const struct afb_svc *svc); +extern int afb_hook_svc_start_after(const struct afb_svc *svc, int status); +extern void afb_hook_svc_on_event_before(const struct afb_svc *svc, const char *event, int eventid, struct json_object *object); +extern void afb_hook_svc_on_event_after(const struct afb_svc *svc, const char *event, int eventid, struct json_object *object); +extern void afb_hook_svc_call(const struct afb_svc *svc, const char *api, const char *verb, struct json_object *args); +extern void afb_hook_svc_call_result(const struct afb_svc *svc, int status, struct json_object *result); +extern void afb_hook_svc_callsync(const struct afb_svc *svc, const char *api, const char *verb, struct json_object *args); +extern int afb_hook_svc_callsync_result(const struct afb_svc *svc, int status, struct json_object *result); + +extern int afb_hook_flags_svc(const char *api); +extern struct afb_hook_svc *afb_hook_create_svc(const char *api, int flags, struct afb_hook_svc_itf *itf, void *closure); +extern struct afb_hook_svc *afb_hook_addref_svc(struct afb_hook_svc *hook); +extern void afb_hook_unref_svc(struct afb_hook_svc *hook); +