X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-req-itf.h;h=ab72a5cec0b9878577d777d5173837cbdd334e66;hb=c95f72616f59a317f72c58c0e5664992504a48e5;hp=d747d0b881d342c7c9daa1c5207d50a89f6fb99e;hpb=1205c90cccd3144bab24b4b5fd8dcbf0d0e6b570;p=src%2Fapp-framework-binder.git diff --git a/src/afb-req-itf.h b/src/afb-req-itf.h index d747d0b8..ab72a5ce 100644 --- a/src/afb-req-itf.h +++ b/src/afb-req-itf.h @@ -15,11 +15,16 @@ * limitations under the License. */ +struct afb_arg { + const char *name; + const char *value; + size_t size; + int is_file; +}; struct afb_req_itf { - const char *(*argument)(void *data, const char *name); - int (*is_argument_file)(void *data, const char *name); - int (*iterate_arguments)(void *data, int (*iterator)(void *closure, const char *key, const char *value, int isfile), void *closure); + struct afb_arg (*get)(void *data, const char *name); + void (*iterate)(void *data, int (*iterator)(void *closure, struct afb_arg arg), void *closure); }; struct afb_req { @@ -27,21 +32,23 @@ struct afb_req { void *data; }; -static inline const char *afb_req_argument(struct afb_req req, const char *name) +static inline struct afb_arg afb_req_get(struct afb_req req, const char *name) { - return req.itf->argument(req.data, name); + return req.itf->get(req.data, name); } -static inline int afb_req_argument_file(struct afb_req req, const char *name) +static inline const char *afb_req_argument(struct afb_req req, const char *name) { - return req.itf->is_argument_file(req.data, name); + return afb_req_get(req, name).value; } -static inline int afb_req_iterate_arguments(struct afb_req req, int (*iterator)(void *closure, const char *key, const char *value, int isfile), void *closure) +static inline int afb_req_is_argument_file(struct afb_req req, const char *name) { - return req.itf->iterate_arguments(req.data, iterator, closure); + return afb_req_get(req, name).is_file; } - - +static inline void afb_req_iterate(struct afb_req req, int (*iterator)(void *closure, struct afb_arg arg), void *closure) +{ + req.itf->iterate(req.data, iterator, closure); +}