X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-hreq.c;h=9c6309123fd891d33f38b64e0b7bff69ae49d685;hb=197626868aaf84e9a68e8e7e5397ef1c6883a0f1;hp=69403f65ad1ada3f2d488d95646d04bb94448507;hpb=a88ecb472d5a82c80b0ccf8f0ef1594ec0d6c878;p=src%2Fapp-framework-binder.git diff --git a/src/afb-hreq.c b/src/afb-hreq.c index 69403f65..9c630912 100644 --- a/src/afb-hreq.c +++ b/src/afb-hreq.c @@ -33,12 +33,12 @@ #endif #include "afb-method.h" -#include +#include #include "afb-msg-json.h" #include "afb-context.h" #include "afb-hreq.h" -#include "afb-subcall.h" #include "afb-session.h" +#include "afb-cred.h" #include "verbose.h" #include "locale-root.h" @@ -72,19 +72,18 @@ struct hreq_data { char *path; /* path of the file saved */ }; -static struct json_object *req_json(struct afb_hreq *hreq); -static struct afb_arg req_get(struct afb_hreq *hreq, const char *name); -static void req_fail(struct afb_hreq *hreq, const char *status, const char *info); -static void req_success(struct afb_hreq *hreq, json_object *obj, const char *info); - -static void afb_hreq_destroy(struct afb_hreq *hreq); +static struct json_object *req_json(struct afb_xreq *xreq); +static struct afb_arg req_get(struct afb_xreq *xreq, const char *name); +static void req_fail(struct afb_xreq *xreq, const char *status, const char *info); +static void req_success(struct afb_xreq *xreq, json_object *obj, const char *info); +static void req_destroy(struct afb_xreq *xreq); const struct afb_xreq_query_itf afb_hreq_xreq_query_itf = { - .json = (void*)req_json, - .get = (void*)req_get, - .success = (void*)req_success, - .fail = (void*)req_fail, - .unref = (void*)afb_hreq_destroy + .json = req_json, + .get = req_get, + .success = req_success, + .fail = req_fail, + .unref = req_destroy }; static struct hreq_data *get_data(struct afb_hreq *hreq, const char *key, int create) @@ -299,8 +298,9 @@ static const char *mimetype_fd_name(int fd, const char *filename) return result; } -static void afb_hreq_destroy(struct afb_hreq *hreq) +static void req_destroy(struct afb_xreq *xreq) { + struct afb_hreq *hreq = CONTAINER_OF_XREQ(struct afb_hreq, xreq); struct hreq_data *data; if (hreq->postform != NULL) @@ -319,6 +319,7 @@ static void afb_hreq_destroy(struct afb_hreq *hreq) json_object_put(hreq->json); free((char*)hreq->xreq.api); free((char*)hreq->xreq.verb); + afb_cred_unref(hreq->xreq.cred); free(hreq); } @@ -820,9 +821,10 @@ int afb_hreq_post_add_file(struct afb_hreq *hreq, const char *key, const char *f return !size; } -static struct afb_arg req_get(struct afb_hreq *hreq, const char *name) +static struct afb_arg req_get(struct afb_xreq *xreq, const char *name) { const char *value; + struct afb_hreq *hreq = CONTAINER_OF_XREQ(struct afb_hreq, xreq); struct hreq_data *hdat = get_data(hreq, name, 0); if (hdat) return (struct afb_arg){ @@ -845,10 +847,11 @@ static int _iterargs_(struct json_object *obj, enum MHD_ValueKind kind, const ch return 1; } -static struct json_object *req_json(struct afb_hreq *hreq) +static struct json_object *req_json(struct afb_xreq *xreq) { struct hreq_data *hdat; struct json_object *obj, *val; + struct afb_hreq *hreq = CONTAINER_OF_XREQ(struct afb_hreq, xreq); obj = hreq->json; if (obj == NULL) { @@ -896,26 +899,31 @@ static void req_reply(struct afb_hreq *hreq, unsigned retcode, const char *statu afb_hreq_reply(hreq, retcode, response, NULL); } -static void req_fail(struct afb_hreq *hreq, const char *status, const char *info) +static void req_fail(struct afb_xreq *xreq, const char *status, const char *info) { + struct afb_hreq *hreq = CONTAINER_OF_XREQ(struct afb_hreq, xreq); req_reply(hreq, MHD_HTTP_OK, status, info, NULL); } -static void req_success(struct afb_hreq *hreq, json_object *obj, const char *info) +static void req_success(struct afb_xreq *xreq, json_object *obj, const char *info) { + struct afb_hreq *hreq = CONTAINER_OF_XREQ(struct afb_hreq, xreq); req_reply(hreq, MHD_HTTP_OK, "success", info, obj); } -int afb_hreq_init_req_call(struct afb_hreq *hreq, const char *api, size_t lenapi, const char *verb, size_t lenverb) +void afb_hreq_call(struct afb_hreq *hreq, struct afb_apiset *apiset, const char *api, size_t lenapi, const char *verb, size_t lenverb) { hreq->xreq.api = strndup(api, lenapi); hreq->xreq.verb = strndup(verb, lenverb); if (hreq->xreq.api == NULL || hreq->xreq.verb == NULL) { ERROR("Out of memory"); - errno = ENOMEM; - return -1; + afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR); + } else if (afb_hreq_init_context(hreq) < 0) { + afb_hreq_reply_error(hreq, MHD_HTTP_INTERNAL_SERVER_ERROR); + } else { + afb_xreq_addref(&hreq->xreq); /* TODO check if needed */ + afb_xreq_process(&hreq->xreq, apiset); } - return afb_hreq_init_context(hreq); } int afb_hreq_init_context(struct afb_hreq *hreq) @@ -973,9 +981,7 @@ struct afb_hreq *afb_hreq_create() struct afb_hreq *hreq = calloc(1, sizeof *hreq); if (hreq) { /* init the request */ - hreq->xreq.refcount = 1; - hreq->xreq.query = hreq; - hreq->xreq.queryitf = &afb_hreq_xreq_query_itf; + afb_xreq_init(&hreq->xreq, &afb_hreq_xreq_query_itf); hreq->reqid = ++global_reqids; } return hreq;