Improves naming of session's module
[src/app-framework-binder.git] / src / afb-api-dbus.c
index 53bc2dc..4a5a4f1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015, 2016 "IoT.bzh"
+ * Copyright (C) 2015, 2016, 2017 "IoT.bzh"
  * Author José Bollo <jose.bollo@iot.bzh>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -30,7 +30,7 @@
 
 #include "afb-common.h"
 
-#include "session.h"
+#include "afb-session.h"
 #include "afb-msg-json.h"
 #include "afb-apis.h"
 #include "afb-api-so.h"
@@ -340,7 +340,7 @@ static void api_dbus_client_call(struct api_dbus *api, struct afb_req req, struc
 
        rc = sd_bus_message_append(msg, "ssu",
                        afb_req_raw(req, &size),
-                       ctxClientGetUuid(context->session),
+                       afb_session_uuid(context->session),
                        (uint32_t)context->flags);
        if (rc < 0)
                goto error;
@@ -724,7 +724,7 @@ static void afb_api_dbus_server_listener_free(struct listener *listener)
        free(listener);
 }
 
-static struct listener *afb_api_dbus_server_listerner_get(struct api_dbus *api, const char *sender, struct AFB_clientCtx *session)
+static struct listener *afb_api_dbus_server_listerner_get(struct api_dbus *api, const char *sender, struct afb_session *session)
 {
        int rc;
        struct listener *listener;
@@ -736,7 +736,7 @@ static struct listener *afb_api_dbus_server_listerner_get(struct api_dbus *api,
                return NULL;
 
        /* retrieves the stored listener */
-       listener = ctxClientCookieGet(session, destination);
+       listener = afb_session_get_cookie(session, destination);
        if (listener != NULL) {
                /* found */
                afb_api_dbus_server_destination_unref(destination);
@@ -751,7 +751,7 @@ static struct listener *afb_api_dbus_server_listerner_get(struct api_dbus *api,
                listener->destination = destination;
                listener->listener = afb_evt_listener_create(&evt_push_itf, destination);
                if (listener->listener != NULL) {
-                       rc = ctxClientCookieSet(session, destination, listener, (void*)afb_api_dbus_server_listener_free);
+                       rc = afb_session_set_cookie(session, destination, listener, (void*)afb_api_dbus_server_listener_free);
                        if (rc == 0)
                                return listener;
                        afb_evt_listener_unref(listener->listener);
@@ -799,7 +799,7 @@ static struct json_object *dbus_req_json(struct dbus_req *dreq)
 {
        if (dreq->json == NULL) {
                dreq->json = json_tokener_parse(dreq->request);
-               if (dreq->json == NULL) {
+               if (dreq->json == NULL && strcmp(dreq->request, "null")) {
                        /* lazy error detection of json request. Is it to improve? */
                        dreq->json = json_object_new_string(dreq->request);
                }
@@ -937,6 +937,7 @@ static void afb_api_dbus_server_event_push(void *closure, const char *event, int
 {
        const char *data = json_object_to_json_string_ext(object, JSON_C_TO_STRING_PLAIN);
        afb_api_dbus_server_event_send(closure, '!', event, eventid, data, 0);
+       json_object_put(object);
 }
 
 static void afb_api_dbus_server_event_broadcast(void *closure, const char *event, int eventid, struct json_object *object)
@@ -962,7 +963,7 @@ static int api_dbus_server_on_object_called(sd_bus_message *message, void *userd
        struct api_dbus *api = userdata;
        struct afb_req areq;
        uint32_t flags;
-       struct AFB_clientCtx *session;
+       struct afb_session *session;
        struct listener *listener;
 
        /* check the interface */