X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=include%2Fafb%2Fafb-req-itf.h;h=8f8dc8a95dc7fefe941c5fd8bfc93504325a1b18;hb=ede362db9ea82b85a531849c21582f1692bf0d4d;hp=5116b13311316e0c1706c2936810431f0fb0e914;hpb=69affc2edb055f6cd65fa1d55689272c28446d63;p=src%2Fapp-framework-binder.git diff --git a/include/afb/afb-req-itf.h b/include/afb/afb-req-itf.h index 5116b133..8f8dc8a9 100644 --- a/include/afb/afb-req-itf.h +++ b/include/afb/afb-req-itf.h @@ -25,7 +25,7 @@ #include #include -#include +#include "afb-event-itf.h" /* avoid inclusion of */ struct json_object; @@ -72,6 +72,7 @@ struct afb_req_itf { int (*unsubscribe)(void *closure, struct afb_event event); void (*subcall)(void *closure, const char *api, const char *verb, struct json_object *args, void (*callback)(void*, int, struct json_object*), void *cb_closure); + int (*subcallsync)(void *closure, const char *api, const char *verb, struct json_object *args, struct json_object **result); }; /* @@ -365,6 +366,19 @@ static inline void afb_req_subcall(struct afb_req req, const char *api, const ch req.itf->subcall(req.closure, api, verb, args, callback, closure); } +/* + * Makes a call to the method of name 'api' / 'verb' with the object 'args'. + * This call is made in the context of the request 'req'. + * This call is synchronous, it waits untill completion of the request. + * It returns 0 on an error answer and returns 1 when no error was detected. + * The object pointed by 'result' is filled and must be released by the caller + * after its use by calling 'json_object_put'. + */ +static inline int afb_req_subcall_sync(struct afb_req req, const char *api, const char *verb, struct json_object *args, struct json_object **result) +{ + return req.itf->subcallsync(req.closure, api, verb, args, result); +} + /* internal use */ static inline const char *afb_req_raw(struct afb_req req, size_t *size) {