aboutsummaryrefslogtreecommitdiff
path: root/json
diff options
context:
space:
mode:
authorjacopo grandi <jak.sk8@hotmail.it>2021-02-19 18:30:53 +0100
committerjacopo grandi <jak.sk8@hotmail.it>2021-02-19 18:30:53 +0100
commit5126638d46398579c26d3c7bd908fe17b8508b13 (patch)
treefbb9e981187f32bf78dc521ff538ea31de9c0019 /json
parent5f0fce4191309e9526b7109a0d87c092ce6a4193 (diff)
battery calc and unstable levels
Diffstat (limited to 'json')
-rw-r--r--json/jsonparse.c122
-rw-r--r--json/jsonparse.h19
2 files changed, 9 insertions, 132 deletions
diff --git a/json/jsonparse.c b/json/jsonparse.c
index 6cfae2e..34587b5 100644
--- a/json/jsonparse.c
+++ b/json/jsonparse.c
@@ -22,6 +22,10 @@ void json_parse_array(char *json, void *temp, jsmntok_t *t, int r, char type) {
int8_t *p = (int8_t*)(intptr_t)temp+sizeof(int8_t)*i;
*p = atoi(val);
}
+ if (type == 'f') {
+ float *p = (float*)(intptr_t)temp+sizeof(float)*i;
+ *p = atof(val);
+ }
}
}
}
@@ -35,10 +39,13 @@ void json_dump_array (char *str, void *arr, int len, char type) {
cur = strlen(str);
}
if (type == 'c') {
- printf("%d\n", ((int8_t*)(intptr_t)(arr))[i]);
sprintf(str+cur, "%d", ((int8_t*)(intptr_t)(arr))[i]);
cur = strlen(str);
}
+ if (type == 'f') {
+ sprintf(str+cur, "%f", ((float*)(intptr_t)(arr))[i]);
+ cur = strlen(str);
+ }
if (i < len-1) {
sprintf(str+cur, ", "); cur = strlen(str);
}
@@ -53,115 +60,4 @@ int json_parse_subtokens (char *json, jsmntok_t *t, int r, int i) {
else { break; }
}
return rt;
-}
-
-/* DEPRECATED TRIALS, delete after backup
-// parses a <str, int> pair set with a set of already parsed tokens
-int json_parse_dict_ci_init (char *json,
- pair_ci *dict, jsmntok_t *t, int r) {
- int obj_i = 0, dict_i = -1;
- for (int i=0; i<r; i++) {
- if (t[i].type == JSMN_OBJECT) {
- dict_i ++;
- obj_i = 0;
- }
- if (t[i].type == JSMN_STRING) {
- if (obj_i == 0) {
- substr_token(json, dict[dict_i].key, t+i);
- } else if (obj_i == 1) {
- char ts[13]; substr_token(json, ts, t+i);
- dict[dict_i].i = atoi(ts);
- }
- obj_i++;
- }
- }
- return dict_i+1;
-}
-
-// parses a <str, int> pair set with a set of already parsed tokens
-int json_parse_dict_cf_init (char *json,
- pair_cf *dict, jsmntok_t *t, int r) {
- int obj_i = 0, dict_i = -1;
- for (int i=0; i<r; i++) {
- if (t[i].type == JSMN_OBJECT) {
- dict_i ++;
- obj_i = 0;
- }
- if (t[i].type == JSMN_STRING) {
- if (obj_i == 0) {
- substr_token(json, dict[dict_i].key, t+i);
- } else if (obj_i == 1) {
- char ts[13]; substr_token(json, ts, t+i);
- dict[dict_i].i = atof(ts);
- }
- obj_i++;
- }
- }
- return dict_i+1;
-}
-
-
-// parses a <str, int> pair set
-int json_parse_dict_ci (char *json, pair_ci *dict) {
- jsmn_parser p; jsmn_init(&p);
- jsmntok_t t[MAXTOKENS];
- int r = jsmn_parse(&p, json, strlen(json), t, MAXTOKENS);
- json_parse_dict_ci_init(json, dict, t, r);
-}
-
-// parses a <str, float> pair set
-int json_parse_dict_cf (char *json, pair_cf *dict) {
- jsmn_parser p; jsmn_init(&p);
- jsmntok_t t[MAXTOKENS];
- int r = jsmn_parse(&p, json, strlen(json), t, MAXTOKENS);
- json_parse_dict_cf_init(json, dict, t, r);
-}
-
-
-
-// parses a list of objects which are lists of pairs <str, int>
-int json_parse_list_ci (char *json, list_ci *list) {
- jsmn_parser p; jsmn_init(&p);
- jsmntok_t t[MAXTOKENS];
- int r = jsmn_parse(&p, json, strlen(json), t, MAXTOKENS);
- int list_i = 0;
- for (int i=1; i<r; i++) { // i=1: ignore outer []
- if (t[i].type == JSMN_ARRAY) {
- int rt = 0;
- for (int j=i; j<r; j++) {
- if (t[j].start < t[i].end) { rt ++; }
- else { break; }
- }
- int len = json_parse_dict_ci_init(
- json, list[list_i].pairs, t+i, rt);
- list[list_i].len = len;
- list_i ++;
- i += rt-1;
- }
- }
- return list_i;
-}
-
-// parses a list of objects which are lists of pairs <str, float>
-int json_parse_list_cf (char *json, list_cf *list) {
- jsmn_parser p; jsmn_init(&p);
- jsmntok_t t[MAXTOKENS];
- int r = jsmn_parse(&p, json, strlen(json), t, MAXTOKENS);
- int list_i = 0;
- for (int i=1; i<r; i++) { // i=1: ignore outer []
- if (t[i].type == JSMN_ARRAY) {
- int rt = 0;
- for (int j=i; j<r; j++) {
- if (t[j].start < t[i].end) { rt ++; }
- else { break; }
- }
- int len = json_parse_dict_cf_init(
- json, list[list_i].pairs, t+i, rt);
- list[list_i].len = len;
- list_i ++;
- i += rt-1;
- }
- }
- return list_i;
-}
-*/ \ No newline at end of file
+} \ No newline at end of file
diff --git a/json/jsonparse.h b/json/jsonparse.h
index 2186154..87a8960 100644
--- a/json/jsonparse.h
+++ b/json/jsonparse.h
@@ -12,24 +12,5 @@ void json_parse_array(char *json, void *temp, jsmntok_t *t, int r, char type);
void json_dump_array (char *str, void *arr, int len, char type);
int json_parse_subtokens (char *json, jsmntok_t *t, int r, int i);
-/*
-typedef struct { char key[32]; int i; } pair_ci;
-typedef struct { char key[32]; float i; } pair_cf;
-
-
-int json_parse_dict_ci_init (char *json, pair_ci *dict, jsmntok_t *t, int r);
-int json_parse_dict_cf_init (char *json, pair_cf *dict, jsmntok_t *t, int r);
-int json_parse_dict_ci (char *json, pair_ci *dict);
-int json_parse_dict_cf (char *json, pair_cf *dict);
-
-#define MAXLISTLEN 64
-#define MAXOBJLEN 32
-
-typedef struct { pair_ci pairs[MAXOBJLEN]; int len; } list_ci;
-typedef struct { pair_cf pairs[MAXOBJLEN]; int len; } list_cf;
-
-int json_parse_list_ci (char *json, list_ci *list);
-int json_parse_list_cf (char *json, list_cf *list);
-*/
#endif \ No newline at end of file