json_array.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600
  1. /*
  2. * File: json_array.c
  3. * Author: Arthur Brandao
  4. *
  5. * Created on 24 novembre 2018
  6. */
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <math.h>
  10. #include "json.h"
  11. /* --- Fonctions privées parser --- */
  12. /**
  13. * Compte le nombre valeur
  14. * @param char* La chaine JSON
  15. * @return int Le nombre de valeur
  16. */
  17. int val_counter(char* json) {
  18. char* tmp = json + 1;
  19. int nbElt = 0;
  20. boolean empty = true;
  21. //Parours la chaine
  22. while (*tmp != ']' && *tmp) {
  23. //printf("%c\n", *tmp);
  24. fflush(stdout);
  25. //Si on croise autre chose que du vide
  26. if (empty && *tmp != ' ' && *tmp != ']') {
  27. empty = false;
  28. } //Si on croise un tableau ou un objet
  29. else if (*tmp == '[' || *tmp == '{') {
  30. //Saute
  31. int jump;
  32. if (*tmp == '{') {
  33. jump = skip_object(tmp);
  34. } else {
  35. jump = skip_array(tmp);
  36. }
  37. tmp += jump;
  38. //Si se termine mal
  39. if (!*tmp) {
  40. return JSON_ERROR;
  41. }
  42. } //On compte les ',' separatrice
  43. else if (*tmp == ',') {
  44. nbElt++;
  45. }
  46. tmp++;
  47. }
  48. //Si non vide
  49. if (!empty) {
  50. nbElt++;
  51. }
  52. //Retourne le nombre d'element trouvé
  53. return nbElt;
  54. }
  55. /**
  56. * Extraction d'une valeur
  57. * @param JsonParser* La structure pour sauvegarder l'extraction
  58. * @param int La position dans la structure
  59. * @param char* La chaine json
  60. * @return int JSON_ERROR ou le nombre de caractère de la valeur
  61. */
  62. int parse_array_val(JsonArray* this, int index, char* json) {
  63. //Declaration variable
  64. int compteur = 0;
  65. //Regarde le type de valeur
  66. switch (*json) {
  67. //String
  68. case '"':
  69. //Cherche le guillement de fin
  70. json++;
  71. while (*json && *json != '"') {
  72. json++;
  73. compteur++;
  74. }
  75. //Si json mal formé
  76. if (!*json) {
  77. return JSON_ERROR;
  78. }
  79. //Setup les infos
  80. this->parser->val[index] = json - compteur;
  81. this->parser->val_length[index] = compteur;
  82. this->parser->type[index] = JSON_STRING;
  83. break;
  84. //Boolean
  85. case 't':
  86. compteur = 4;
  87. this->parser->val[index] = json;
  88. this->parser->val_length[index] = compteur;
  89. this->parser->type[index] = JSON_BOOLEAN;
  90. break;
  91. case 'f':
  92. compteur = 5;
  93. this->parser->val[index] = json;
  94. this->parser->val_length[index] = compteur;
  95. this->parser->type[index] = JSON_BOOLEAN;
  96. break;
  97. //Nombre
  98. case '-':
  99. case '0':
  100. case '1':
  101. case '2':
  102. case '3':
  103. case '4':
  104. case '5':
  105. case '6':
  106. case '7':
  107. case '8':
  108. case '9':
  109. //Cherche espace de fin ou fin json ou suite json
  110. while (*json && *json != ' ' && *json != ']' && *json != ',') {
  111. json++;
  112. compteur++;
  113. }
  114. //Si json mal formé
  115. if (!*json) {
  116. return JSON_ERROR;
  117. }
  118. //Setup les infos
  119. this->parser->val[index] = json - compteur;
  120. this->parser->val_length[index] = compteur;
  121. this->parser->type[index] = JSON_NUMBER;
  122. break;
  123. //Tableau
  124. case '[':
  125. compteur = skip_array(json) + 1;
  126. this->parser->val[index] = json;
  127. this->parser->val_length[index] = compteur;
  128. this->parser->type[index] = JSON_ARRAY;
  129. break;
  130. //Objet
  131. case '{':
  132. compteur = skip_object(json) + 1;
  133. this->parser->val[index] = json;
  134. this->parser->val_length[index] = compteur;
  135. this->parser->type[index] = JSON_OBJECT;
  136. break;
  137. //Autre
  138. default:
  139. return JSON_ERROR;
  140. }
  141. //Retour
  142. return ++compteur;
  143. }
  144. /* --- Fonctions publiques parser --- */
  145. void ini_array_parser(JsonArray* this) {
  146. //Initialisation en mode encoder
  147. this->mode = JSON_ARRAY_PARSER;
  148. this->parser = malloc(sizeof (JsonArrayParser));
  149. }
  150. int json_parse_array(JsonArray* this, char* json) {
  151. int length, jump, index = 0, compteur = 1;
  152. //Verification
  153. if (this->mode != JSON_ARRAY_PARSER) {
  154. return JSON_ERROR;
  155. }
  156. if (json[0] != '[') {
  157. return JSON_ERROR;
  158. }
  159. //Compte le nombre d'éléments
  160. this->parser->length = val_counter(json);
  161. if (this->parser->length == JSON_ERROR) {
  162. return JSON_ERROR;
  163. }
  164. length = strlen(json) + 1;
  165. this->parser->str = malloc(sizeof (char) * length);
  166. memset(this->parser->str, 0, length);
  167. strncpy(this->parser->str, json, length - 1);
  168. //Si vide
  169. if (this->parser->length == 0) {
  170. return 0;
  171. }
  172. //Initialisation
  173. this->parser->val = malloc(sizeof (char*) * this->parser->length);
  174. this->parser->val_length = malloc(sizeof (int) * this->parser->length);
  175. this->parser->type = malloc(sizeof (int) * this->parser->length);
  176. //Sinon on parse les valeurs
  177. json++;
  178. while (*json != ']' && *json) {
  179. if (*json != ' ' && *json != ',') {
  180. jump = parse_array_val(this, index, this->parser->str + compteur);
  181. if (jump == JSON_ERROR) {
  182. clean_json_array(this);
  183. return JSON_ERROR;
  184. }
  185. json += jump;
  186. compteur += jump;
  187. index++;
  188. }
  189. json++;
  190. compteur++;
  191. }
  192. //Retourne le nombre d'element
  193. return this->parser->length;
  194. }
  195. int get_array_length(JsonArray* this) {
  196. //Verification
  197. if (this->mode != JSON_ARRAY_PARSER) {
  198. return JSON_ERROR;
  199. }
  200. //Retour
  201. return this->parser->length;
  202. }
  203. int get_array_type(JsonArray* this, int index) {
  204. //Verification
  205. if (this->mode != JSON_ARRAY_PARSER) {
  206. return JSON_ERROR;
  207. }
  208. if (index < 0 || index >= this->parser->length) {
  209. return JSON_ERROR;
  210. }
  211. //Retourne le type
  212. return this->parser->type[index];
  213. }
  214. char* get_array_index(JsonArray* this, int index) {
  215. //Verification
  216. if (this->mode != JSON_ARRAY_PARSER) {
  217. return NULL;
  218. }
  219. if (index < 0 || index >= this->parser->length) {
  220. return NULL;
  221. }
  222. //Creation string d'accueil
  223. char* val;
  224. val = malloc((this->parser->val_length[index] + 1) * sizeof (char)); //+1 pour \0
  225. memset(val, 0, this->parser->val_length[index] + 1);
  226. //Copie valeur
  227. strncpy(val, this->parser->val[index], this->parser->val_length[index]);
  228. //Retour
  229. return val;
  230. }
  231. char* get_array_value(JsonArray* this, int index) {
  232. //Verification
  233. if (this->mode != JSON_ARRAY_PARSER) {
  234. return NULL;
  235. }
  236. if (index < 0 || index >= this->parser->length) {
  237. return NULL;
  238. }
  239. //Retour
  240. return get_array_index(this, index);
  241. }
  242. char* get_array_string(JsonArray* this, int index) {
  243. //Verification
  244. if (this->mode != JSON_ARRAY_PARSER) {
  245. return NULL;
  246. }
  247. if (index < 0 || index >= this->parser->length) {
  248. return NULL;
  249. }
  250. //Retour
  251. if (this->parser->type[index] != JSON_STRING) {
  252. return NULL;
  253. }
  254. return get_array_index(this, index);
  255. }
  256. double get_array_number(JsonArray* this, int index) {
  257. //Verification
  258. if (this->mode != JSON_ARRAY_PARSER) {
  259. return JSON_ERROR;
  260. }
  261. if (index < 0 || index >= this->parser->length) {
  262. return JSON_ERROR;
  263. }
  264. //Retour
  265. if (this->parser->type[index] != JSON_NUMBER) {
  266. return JSON_ERROR;
  267. }
  268. char* val;
  269. val = get_array_index(this, index);
  270. double res;
  271. res = atof(val);
  272. free(val);
  273. return res;
  274. }
  275. int get_array_integer(JsonArray* this, int index) {
  276. //Verification
  277. if (this->mode != JSON_ARRAY_PARSER) {
  278. return JSON_ERROR;
  279. }
  280. if (index < 0 || index >= this->parser->length) {
  281. return JSON_ERROR;
  282. }
  283. //Retour
  284. if (this->parser->type[index] != JSON_NUMBER) {
  285. return JSON_ERROR;
  286. }
  287. char* val;
  288. val = get_array_index(this, index);
  289. int res;
  290. res = atoi(val);
  291. free(val);
  292. return res;
  293. }
  294. boolean get_array_boolean(JsonArray* this, int index) {
  295. //Verification
  296. if (this->mode != JSON_ARRAY_PARSER) {
  297. return false;
  298. }
  299. if (index < 0 || index >= this->parser->length) {
  300. return false;
  301. }
  302. //Verif type
  303. if (this->parser->type[index] != JSON_BOOLEAN) {
  304. return false;
  305. }
  306. //Recup valeur
  307. char* val;
  308. val = get_array_index(this, index);
  309. //Cast et retour
  310. if (val[0] == 't') {
  311. return true;
  312. }
  313. return false;
  314. }
  315. JsonArray* get_array_array(JsonArray* this, int index) {
  316. //Verification
  317. if (this->mode != JSON_ARRAY_PARSER) {
  318. return NULL;
  319. }
  320. if (index < 0 || index >= this->parser->length) {
  321. return NULL;
  322. }
  323. //Verif type
  324. if (this->parser->type[index] != JSON_ARRAY) {
  325. return NULL;
  326. }
  327. //Recup valeur
  328. char* val;
  329. val = get_array_index(this, index);
  330. //Parse
  331. JsonArray* json;
  332. json = malloc(sizeof (JsonArray));
  333. ini_array_parser(json);
  334. if (json_parse_array(json, val) == JSON_ERROR) {
  335. return NULL;
  336. }
  337. //Retour JSON utilisable
  338. free(val);
  339. return json;
  340. }
  341. JsonParser* get_array_object(JsonArray* this, int index) {
  342. //Verification
  343. if (this->mode != JSON_ARRAY_PARSER) {
  344. return NULL;
  345. }
  346. if (index < 0 || index >= this->parser->length) {
  347. return NULL;
  348. }
  349. //Verif type
  350. if (this->parser->type[index] != JSON_OBJECT) {
  351. return NULL;
  352. }
  353. //Recup valeur
  354. char* val;
  355. val = get_array_index(this, index);
  356. //Parse
  357. JsonParser* json;
  358. json = malloc(sizeof (JsonParser));
  359. if (json_parse(json, val) == JSON_ERROR) {
  360. return NULL;
  361. }
  362. //Retour JSON utilisable
  363. free(val);
  364. return json;
  365. }
  366. /* --- Fonctions publiques encoder --- */
  367. void ini_array_encoder(JsonArray* this) {
  368. this->mode = JSON_ARRAY_ENCODER;
  369. this->encoder = malloc(sizeof(JsonEncoder));
  370. this->encoder->max = JSON_MAX_SIZE;
  371. this->encoder->pos = 1;
  372. memset(this->encoder->json, 0, this->encoder->max);
  373. this->encoder->json[0] = '[';
  374. }
  375. boolean add_array_value(JsonArray* this, char* str) {
  376. //Verification
  377. if (this->mode != JSON_ARRAY_ENCODER) {
  378. return false;
  379. }
  380. //Verif que l'on ne depasse pas (on retire 1 pour garder un \0 et on retire 1 autre pour pouvoir mettre ])
  381. if(this->encoder->pos + strlen(str) >= this->encoder->max - 2){
  382. return false;
  383. }
  384. //Ajoute
  385. for(int i = 0; i < strlen(str); i++){
  386. this->encoder->json[this->encoder->pos++] = str[i];
  387. }
  388. return true;
  389. }
  390. boolean add_array_string(JsonArray* this, char* val) {
  391. //Verification
  392. if (this->mode != JSON_ARRAY_ENCODER) {
  393. return false;
  394. }
  395. int length = strlen(val) + 2 + 2; //val + 2 guillemet + ", "
  396. //Verif que l'on ne depasse pas
  397. if(this->encoder->pos + length >= this->encoder->max - 2){
  398. return false;
  399. }
  400. //Ajoute
  401. if(this->encoder->pos != 1){
  402. //Si pas 1er valeur on ajoute un separateur
  403. this->encoder->json[this->encoder->pos++] = ',';
  404. this->encoder->json[this->encoder->pos++] = ' ';
  405. }
  406. this->encoder->json[this->encoder->pos++] = '"';
  407. for(int i = 0; i < strlen(val); i++){
  408. this->encoder->json[this->encoder->pos++] = val[i];
  409. }
  410. this->encoder->json[this->encoder->pos++] = '"';
  411. return true;
  412. }
  413. boolean add_array_number(JsonArray* this, double ndigit, int val) {
  414. //Verification
  415. if (this->mode != JSON_ARRAY_ENCODER) {
  416. return false;
  417. }
  418. //Double en string
  419. char nombre[20];
  420. memset(nombre, 0, 20);
  421. ftoa(val, nombre, ndigit);
  422. //Creation chaine
  423. int length = strlen(nombre) + 2; //val + ", "
  424. //Verif que l'on ne depasse pas
  425. if(this->encoder->pos + length >= this->encoder->max - 2){
  426. return false;
  427. }
  428. //Ajoute
  429. if(this->encoder->pos != 1){
  430. //Si pas 1er valeur on ajoute un separateur
  431. this->encoder->json[this->encoder->pos++] = ',';
  432. this->encoder->json[this->encoder->pos++] = ' ';
  433. }
  434. for(int i = 0; i < strlen(nombre); i++){
  435. this->encoder->json[this->encoder->pos++] = nombre[i];
  436. }
  437. return true;
  438. }
  439. boolean add_array_integer(JsonArray* this, int val) {
  440. //Verification
  441. if (this->mode != JSON_ARRAY_ENCODER) {
  442. return false;
  443. }
  444. //Int en string
  445. char nombre[20];
  446. memset(nombre, 0, 20);
  447. snprintf(nombre, 20, "%d", val);
  448. //Creation chaine
  449. int length = strlen(nombre) + 2; //val + ", "
  450. //Verif que l'on ne depasse pas
  451. if(this->encoder->pos + length >= this->encoder->max - 2){
  452. return false;
  453. }
  454. //Ajoute
  455. if(this->encoder->pos != 1){
  456. //Si pas 1er valeur on ajoute un separateur
  457. this->encoder->json[this->encoder->pos++] = ',';
  458. this->encoder->json[this->encoder->pos++] = ' ';
  459. }
  460. for(int i = 0; i < strlen(nombre); i++){
  461. this->encoder->json[this->encoder->pos++] = nombre[i];
  462. }
  463. return true;
  464. }
  465. boolean add_array_boolean(JsonArray* this, boolean val) {
  466. //Verification
  467. if (this->mode != JSON_ARRAY_ENCODER) {
  468. return false;
  469. }
  470. //On determine le boolean
  471. char bool[6];
  472. memset(bool, 0, 6);
  473. if (val) {
  474. strncpy(bool, "true", 4);
  475. } else {
  476. strncpy(bool, "false", 5);
  477. }
  478. //Creation chaine
  479. int length = strlen(bool) + 2; //val + ", "
  480. //Verif que l'on ne depasse pas
  481. if(this->encoder->pos + length >= this->encoder->max - 2){
  482. return false;
  483. }
  484. //Ajoute
  485. if(this->encoder->pos != 1){
  486. //Si pas 1er valeur on ajoute un separateur
  487. this->encoder->json[this->encoder->pos++] = ',';
  488. this->encoder->json[this->encoder->pos++] = ' ';
  489. }
  490. for(int i = 0; i < strlen(bool); i++){
  491. this->encoder->json[this->encoder->pos++] = bool[i];
  492. }
  493. return true;
  494. }
  495. boolean add_array_array(JsonArray* this, JsonArray* val) {
  496. //Verification
  497. if (this->mode != JSON_ARRAY_ENCODER) {
  498. return false;
  499. }
  500. //Recup json
  501. char* json = json_encode_array(val);
  502. //Creation chaine
  503. int length = strlen(json) + 2; //val + ", "
  504. //Verif que l'on ne depasse pas
  505. if(this->encoder->pos + length >= this->encoder->max - 2){
  506. return false;
  507. }
  508. //Ajoute
  509. if(this->encoder->pos != 1){
  510. //Si pas 1er valeur on ajoute un separateur
  511. this->encoder->json[this->encoder->pos++] = ',';
  512. this->encoder->json[this->encoder->pos++] = ' ';
  513. }
  514. for(int i = 0; i < strlen(json); i++){
  515. this->encoder->json[this->encoder->pos++] = json[i];
  516. }
  517. //Nettoayge
  518. free(json);
  519. return true;
  520. }
  521. boolean add_array_object(JsonArray* this, JsonEncoder* val) {
  522. //Verification
  523. if (this->mode != JSON_ARRAY_ENCODER) {
  524. return false;
  525. }
  526. //Recup json
  527. char* json = json_encode(val);
  528. //Creation chaine
  529. int length = strlen(json) + 2; //val + ", "
  530. //Verif que l'on ne depasse pas
  531. if(this->encoder->pos + length >= this->encoder->max - 2){
  532. return false;
  533. }
  534. //Ajoute
  535. if(this->encoder->pos != 1){
  536. //Si pas 1er valeur on ajoute un separateur
  537. this->encoder->json[this->encoder->pos++] = ',';
  538. this->encoder->json[this->encoder->pos++] = ' ';
  539. }
  540. for(int i = 0; i < strlen(json); i++){
  541. this->encoder->json[this->encoder->pos++] = json[i];
  542. }
  543. //Nettoayge
  544. free(json);
  545. return true;
  546. }
  547. char* json_encode_array(JsonArray* this) {
  548. char* json;
  549. //Ajoute } fin
  550. this->encoder->json[this->encoder->pos] = ']';
  551. //Creation chaine
  552. json = malloc(sizeof(char) * (this->encoder->pos + 2));
  553. memset(json, 0, this->encoder->pos + 2);
  554. strncpy(json, this->encoder->json, this->encoder->pos + 1);
  555. //Retourne
  556. return json;
  557. }
  558. /* --- Fonctions publiques --- */
  559. void clean_json_array(JsonArray* this) {
  560. if (this->mode == JSON_ARRAY_ENCODER) {
  561. free(this->encoder);
  562. ini_array_encoder(this);
  563. } else {
  564. //Parser
  565. free(this->parser->type);
  566. free(this->parser->val_length);
  567. free(this->parser->val);
  568. free(this->parser->str);
  569. free(this->parser);
  570. }
  571. this->mode = -1;
  572. }