Adds APIs related to connectivity 56/157356/3
authorEunyoung Lee <ey928.lee@samsung.com>
Tue, 24 Oct 2017 08:32:13 +0000 (17:32 +0900)
committerEunyoung Lee <ey928.lee@samsung.com>
Tue, 24 Oct 2017 09:25:07 +0000 (18:25 +0900)
Change-Id: I791b706aef3f9e513bf2929daad65a3febe0a55c

inc/connectivity.h
lib/libperipheralio.so
src/connectivity.c
src/controller.c

index b88f83a..3f9025a 100644 (file)
@@ -79,4 +79,14 @@ extern int connectivity_notify_int(connectivity_resource_s *resource_info, const
  */
 extern int connectivity_notify_double(connectivity_resource_s *resource_info, const char *key, double value);
 
+/**
+ * @brief Notifies specific clients that resource's attributes have changed with string value.
+ * @param[in] resource_info A structure containing information about connectivity resource
+ * @param[in] key A new key to be added into attributes
+ * @param[in] value A string value to be added into attributes
+ * @return 0 on success, otherwise a negative error value
+ * @see If key is already exists, current value will be replaced with new value.
+ */
+extern int connectivity_notify_string(connectivity_resource_s *resource_info, const char *key, char *value);
+
 #endif /* __POSITION_FINDER_CONNECTIVITY_H__ */
index 5d69c2b..618c38b 100755 (executable)
Binary files a/lib/libperipheralio.so and b/lib/libperipheralio.so differ
index c5585b9..7be7b32 100644 (file)
@@ -169,6 +169,9 @@ static iotcon_representation_h _create_representation_with_double(connectivity_r
        ret = iotcon_attributes_add_str(attributes, PATH, resource_info->path);
        goto_if(IOTCON_ERROR_NONE != ret, error);
 
+       ret = iotcon_attributes_add_str(attributes, "Hash", "1");
+       goto_if(IOTCON_ERROR_NONE != ret, error);
+
        ret = iotcon_attributes_add_double(attributes, key, value);
        goto_if(IOTCON_ERROR_NONE != ret, error);
 
@@ -186,6 +189,45 @@ error:
        return NULL;
 }
 
+static iotcon_representation_h _create_representation_with_string(connectivity_resource_s *resource_info, const char *key, char *value)
+{
+       iotcon_attributes_h attributes = NULL;
+       iotcon_representation_h representation = NULL;
+       char *uri_path = NULL;
+       int ret = -1;
+
+       ret = iotcon_resource_get_uri_path(resource_info->res, &uri_path);
+       retv_if(IOTCON_ERROR_NONE != ret, NULL);
+
+       ret = iotcon_representation_create(&representation);
+       retv_if(IOTCON_ERROR_NONE != ret, NULL);
+
+       ret = iotcon_attributes_create(&attributes);
+       goto_if(IOTCON_ERROR_NONE != ret, error);
+
+       ret = iotcon_representation_set_uri_path(representation, uri_path);
+       goto_if(IOTCON_ERROR_NONE != ret, error);
+
+       ret = iotcon_attributes_add_str(attributes, PATH, resource_info->path);
+       goto_if(IOTCON_ERROR_NONE != ret, error);
+
+       ret = iotcon_attributes_add_str(attributes, key, value);
+       goto_if(IOTCON_ERROR_NONE != ret, error);
+
+       ret = iotcon_representation_set_attributes(representation, attributes);
+       goto_if(IOTCON_ERROR_NONE != ret, error);
+
+       iotcon_attributes_destroy(attributes);
+
+       return representation;
+
+error:
+       if (attributes) iotcon_attributes_destroy(attributes);
+       if (representation) iotcon_representation_destroy(representation);
+
+       return NULL;
+}
+
 static void _print_iotcon_error(int err_no)
 {
        switch (err_no) {
@@ -262,7 +304,7 @@ int connectivity_notify_double(connectivity_resource_s *resource_info, const cha
        retv_if(!resource_info, -1);
        retv_if(!resource_info->observers, -1);
 
-       _D("Notify the value [%f]\n", value);
+       _D("Notify the value [%.2lf]", value);
 
        representation = _create_representation_with_double(resource_info, key, value);
        retv_if(!representation, -1);
@@ -279,6 +321,31 @@ int connectivity_notify_double(connectivity_resource_s *resource_info, const cha
        return 0;
 }
 
+int connectivity_notify_string(connectivity_resource_s *resource_info, const char *key, char *value)
+{
+       iotcon_representation_h representation;
+       int ret = -1;
+
+       retv_if(!resource_info, -1);
+       retv_if(!resource_info->observers, -1);
+
+       _D("Notify the value [%s]", value);
+
+       representation = _create_representation_with_string(resource_info, key, value);
+       retv_if(!representation, -1);
+
+       ret = iotcon_resource_notify(resource_info->res, representation, resource_info->observers, IOTCON_QOS_LOW);
+       if (IOTCON_ERROR_NONE != ret) {
+               _I("There are some troubles for notifying value[%d]", ret);
+               _print_iotcon_error(ret);
+               return -1;
+       }
+
+       _destroy_representation(representation);
+
+       return 0;
+}
+
 static bool _query_cb(const char *key, const char *value, void *user_data)
 {
        _D("Key : [%s], Value : [%s]", key, value);
index 086f873..053dbc1 100644 (file)
@@ -82,7 +82,6 @@ static Eina_Bool _control_sensors_cb(void *data)
 static bool service_app_create(void *data)
 {
        app_data *ad = data;
-       int ret = -1;
        const char *path = NULL;
 
        /**
@@ -145,7 +144,7 @@ static void service_app_terminate(void *data)
 
 static void service_app_control(app_control_h app_control, void *data)
 {
-       // Todo: add your code here.
+       /*APP_CONTROL*/
 }
 
 static void service_app_lang_changed(app_event_info_h event_info, void *user_data)