Fix warnings due to json-c evolution 35/14535/1
authorJosé Bollo <jose.bollo@iot.bzh>
Tue, 19 Jun 2018 16:25:34 +0000 (18:25 +0200)
committerJosé Bollo <jose.bollo@iot.bzh>
Tue, 19 Jun 2018 16:25:34 +0000 (18:25 +0200)
The library json-c now returns size_t instead of
int when querying length of arrays.

Change-Id: Id52bb8e77da12cb01e61e1a7c7f4ae2fcbe4634e
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
bindings/intrinsics/afb-dbus-binding.c
docs/legacy/afb-migration-v1-to-v2.md [moved from docs/afb-migration-v1-to-v2.md with 100% similarity]
src/afb-monitor.c
src/devtools/exprefs.c
src/devtools/genskel.c
src/wrap-json.c

index 51474f6..8f8a886 100644 (file)
@@ -366,7 +366,7 @@ static int packsingle(struct sd_bus_message *msg, const char *signature, struct
                        goto error;
                if (json_object_is_type(item, json_type_array)) {
                        /* Is an array! */
-                       count = json_object_array_length(item);
+                       count = (int)json_object_array_length(item);
                        index = 0;
                        while(index < count) {
                                rc = packsingle(msg, subsig, json_object_array_get_idx(item, index++));
@@ -461,7 +461,7 @@ static int packlist(struct sd_bus_message *msg, const char *signature, struct js
        }
 
        /* iterate over elements */
-       count = json_object_array_length(list);
+       count = (int)json_object_array_length(list);
        index = 0;
        for (;;) {
                /* check state */
index a50e2c6..68da884 100644 (file)
@@ -218,7 +218,7 @@ static struct json_object *get_verbosity(struct json_object *spec)
                        json_object_iter_next(&it);
                }
        } else if (json_object_is_type(spec, json_type_array)) {
-               n = json_object_array_length(spec);
+               n = (int)json_object_array_length(spec);
                for (i = 0 ; i < n ; i++)
                        get_verbosity_of(resu, json_object_get_string(json_object_array_get_idx(spec, i)));
        } else if (json_object_is_type(spec, json_type_string)) {
@@ -280,7 +280,7 @@ static struct json_object *get_apis(struct json_object *spec)
                        json_object_iter_next(&it);
                }
        } else if (json_object_is_type(spec, json_type_array)) {
-               n = json_object_array_length(spec);
+               n = (int)json_object_array_length(spec);
                for (i = 0 ; i < n ; i++)
                        get_one_api(resu, json_object_get_string(json_object_array_get_idx(spec, i)), NULL);
        } else if (json_object_is_type(spec, json_type_string)) {
index 9af4061..4cb13b7 100644 (file)
@@ -136,7 +136,7 @@ struct json_object *expand(struct path path)
        case json_type_array:
                /* expand the values of arrays */
                i = 0;
-               n = json_object_array_length(path.object);
+               n = (int)json_object_array_length(path.object);
                while (i != n) {
                        o = json_object_array_get_idx(path.object, i);
                        x = expand((struct path){ .object = o, .upper = &path });
index 55dd3c1..f5705a2 100644 (file)
@@ -153,7 +153,7 @@ struct json_object *expand_$ref(struct path path)
        case json_type_array:
                /* expand the values of arrays */
                i = 0;
-               n = json_object_array_length(path.object);
+               n = (int)json_object_array_length(path.object);
                while (i != n) {
                        o = json_object_array_get_idx(path.object, i);
                        x = expand_$ref((struct path){ .object = o, .upper = &path });
@@ -290,7 +290,7 @@ void print_perms()
        int i, n;
        const char *fmtstr = cpp ? "\t%s" : "\t{ %s }";
 
-       n = a_perms ? json_object_array_length(a_perms) : 0;
+       n = a_perms ? (int)json_object_array_length(a_perms) : 0;
        if (n) {
                printf("static const struct afb_auth _afb_auths_%s[] = {\n" , capi);
                i = 0;
@@ -322,7 +322,7 @@ struct json_object *new_perm(struct json_object *obj, const char *desc)
                }
 
                /* creates the reference in the structure */
-               asprintf(&b, "&_afb_auths_%s[%d]", capi, json_object_array_length(a_perms));
+               asprintf(&b, "&_afb_auths_%s[%d]", capi, (int)json_object_array_length(a_perms));
                x = json_object_new_string(desc);
                y = json_object_new_string(b);
                json_object_array_add(a_perms, x);
@@ -352,7 +352,7 @@ struct json_object *decl_perm_a(enum optype op, struct json_object *obj)
                opstr = op==And ? "And" : "Or";
        }
        x = NULL;
-       i = n = obj ? json_object_array_length(obj) : 0;
+       i = n = obj ? (int)json_object_array_length(obj) : 0;
        while (i) {
                y = decl_perm(json_object_array_get_idx(obj, --i));
                if (!y)
@@ -438,7 +438,7 @@ int get_session_a(int and, struct json_object *obj)
 {
        int i, n, x, y;
 
-       n = obj ? json_object_array_length(obj) : 0;
+       n = obj ? (int)json_object_array_length(obj) : 0;
        if (n == 0)
                return 0;
 
index e757c36..6e60476 100644 (file)
@@ -948,7 +948,7 @@ static struct json_object *clone_object(struct json_object *object, int subdepth
  */
 static struct json_object *clone_array(struct json_object *array, int subdepth)
 {
-       int n = json_object_array_length(array);
+       int n = (int)json_object_array_length(array);
        struct json_object *r = json_object_new_array();
        while (n) {
                n--;
@@ -1183,8 +1183,8 @@ static int jcmp(struct json_object *x, struct json_object *y, int inc, int sort)
                break;
 
        case json_type_array:
-               nx = json_object_array_length(x);
-               ny = json_object_array_length(y);
+               nx = (int)json_object_array_length(x);
+               ny = (int)json_object_array_length(y);
                r = nx - ny;
                if (r > 0 && inc)
                        r = 0;