json_parser.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. /*
  2. * File: json_parser.c
  3. * Author: Arthur Brandao
  4. *
  5. * Created on 28 octobre 2018
  6. */
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include "json.h"
  10. /* --- Fonctions privées --- */
  11. /**
  12. * Compte le nombre de clef d'une chaine json
  13. * @param char* La chaine json
  14. * @return int Le nombre de clef
  15. */
  16. int key_counter(char* json){
  17. //Declaration variable
  18. int compteur = 0;
  19. boolean key = true;
  20. //On parcours la chaine une 1er fois pour compter le nombre de clef
  21. while (*json && *json != '}') {
  22. //Si on trouve le debut d'une clef
  23. if (*json == '"' && key) {
  24. compteur++;
  25. key = false;
  26. }
  27. //Si on tombe sur un autre objet json
  28. else if (*json == '{' && !key) {
  29. json += skip_object(json);
  30. }
  31. //Si on tombe sur un tableau
  32. else if (*json == '[' && !key) {
  33. json += skip_array(json);
  34. }
  35. //Si on trouve un separateur de valeur
  36. else if (*json == ',' && !key) {
  37. //Le prochain element est une clefS
  38. key = true;
  39. }
  40. json++;
  41. }
  42. //Retour
  43. return compteur;
  44. }
  45. /**
  46. * Extraction d'une clef
  47. * @param JsonParser* La structure pour sauvegarder l'extraction
  48. * @param int La position dans la structure
  49. * @param char* La chaine json
  50. * @return int JSON_ERROR ou le nombre de caractère de la clef
  51. */
  52. int parse_key(JsonParser* this, int index, char* json) {
  53. //Declaration variable
  54. int compteur = 0;
  55. //On parcours jusqu'a la fin de la clef
  56. json++;
  57. while (*json && *json != '"') {
  58. json++;
  59. compteur++;
  60. }
  61. //Si json mal formé
  62. if (!*json) {
  63. return JSON_ERROR;
  64. }
  65. //Setup les infos
  66. this->key[index] = json - compteur;
  67. this->key_length[index] = compteur;
  68. //Sinon retourne ok
  69. return ++compteur;
  70. }
  71. /**
  72. * Extraction d'une valeur
  73. * @param JsonParser* La structure pour sauvegarder l'extraction
  74. * @param int La position dans la structure
  75. * @param char* La chaine json
  76. * @return int JSON_ERROR ou le nombre de caractère de la valeur
  77. */
  78. int parse_val(JsonParser* this, int index, char* json){
  79. //Declaration variable
  80. int compteur = 0;
  81. //Regarde le type de valeur
  82. switch(*json){
  83. //String
  84. case '"':
  85. //Cherche le guillement de fin
  86. json++;
  87. while (*json && *json != '"') {
  88. json++;
  89. compteur++;
  90. }
  91. //Si json mal formé
  92. if (!*json) {
  93. return JSON_ERROR;
  94. }
  95. //Setup les infos
  96. this->val[index] = json - compteur;
  97. this->val_length[index] = compteur;
  98. this->type[index] = JSON_STRING;
  99. break;
  100. //Boolean
  101. case 't':
  102. compteur = 3;
  103. this->val[index] = json;
  104. this->val_length[index] = compteur + 1;
  105. this->type[index] = JSON_BOOLEAN;
  106. break;
  107. case 'f':
  108. compteur = 4;
  109. this->val[index] = json;
  110. this->val_length[index] = compteur + 1;
  111. this->type[index] = JSON_BOOLEAN;
  112. break;
  113. //Nombre
  114. case '-':
  115. case '0':
  116. case '1':
  117. case '2':
  118. case '3':
  119. case '4':
  120. case '5':
  121. case '6':
  122. case '7':
  123. case '8':
  124. case '9':
  125. //Cherche espace de fin ou fin json ou suite json
  126. while (*json && *json != ' ' && *json != '}' && *json != ',') {
  127. json++;
  128. compteur++;
  129. }
  130. //Si json mal formé
  131. if (!*json) {
  132. return JSON_ERROR;
  133. }
  134. //Setup les infos
  135. this->val[index] = json - compteur;
  136. this->val_length[index] = compteur;
  137. this->type[index] = JSON_NUMBER;
  138. break;
  139. //Tableau
  140. case '[':
  141. compteur = skip_array(json) + 1;
  142. this->val[index] = json;
  143. this->val_length[index] = compteur;
  144. this->type[index] = JSON_ARRAY;
  145. break;
  146. //Objet
  147. case '{':
  148. compteur = skip_object(json) + 1;
  149. this->val[index] = json;
  150. this->val_length[index] = compteur;
  151. this->type[index] = JSON_OBJECT;
  152. break;
  153. //Autre
  154. default:
  155. return JSON_ERROR;
  156. }
  157. //Retour
  158. return ++compteur;
  159. }
  160. /**
  161. * Erreur lors du la procedure de parse
  162. * Supprime la structure et retourne un code d'erreur
  163. * @param JsonParser* structure traitée pendant l'erreur
  164. * @return int JSON_ERROR
  165. */
  166. int parse_error(JsonParser* this){
  167. clean_json_parser(this);
  168. return JSON_ERROR;
  169. }
  170. /**
  171. * Cherche l'index d'une clef
  172. * @param JsonParser* La structure initialisé par json_parse
  173. * @param char* La clef à rechercher
  174. * @return int La position
  175. */
  176. int search_index(JsonParser* this, char* key){
  177. int length = strlen(key);
  178. //Cherche la clef
  179. for(int i = 0; i < this->elt; i++){
  180. if(strncmp(this->key[i], key, length) == 0){
  181. return i;
  182. }
  183. }
  184. //Si rien trouver
  185. return JSON_ERROR;
  186. }
  187. /* --- Fonctions publiques --- */
  188. int skip_object(char* json) {
  189. int compteur = 1;
  190. json++;
  191. //On compte le nombre caractere à sauter
  192. while (*json && *json != '}') {
  193. //Si on trouve un autre objet dans l'objet
  194. if (*json == '{') {
  195. int jump = skip_object(json);
  196. json += jump;
  197. compteur += jump;
  198. }
  199. compteur++;
  200. json++;
  201. }
  202. return compteur;
  203. }
  204. int skip_array(char* json) {
  205. int compteur = 1;
  206. json++;
  207. //On compte le nombre caractere à sauter
  208. while (*json && *json != ']') {
  209. //Si on trouve un autre objet dans l'objet
  210. if (*json == '[') {
  211. int jump = skip_array(json);
  212. json += jump;
  213. compteur += jump;
  214. }
  215. json++;
  216. compteur++;
  217. }
  218. return compteur;
  219. }
  220. int json_parse(JsonParser* this, char* json) {
  221. //Declaration variable
  222. char* tmp;
  223. int temp, compteur;
  224. boolean key = true;
  225. //Compte le nombre de clef
  226. compteur = key_counter(json);
  227. //Allocation de la taille des tableaux
  228. this->str = malloc(strlen(json) * sizeof (char));
  229. strcpy(this->str, json);
  230. this->elt = compteur;
  231. this->key = malloc(compteur * sizeof (char*));
  232. this->key_length = malloc(compteur * sizeof (int));
  233. this->val = malloc(compteur * sizeof (char*));
  234. this->val_length = malloc(compteur * sizeof (int));
  235. this->type = malloc(compteur * sizeof (int));
  236. //On reparcours le tableau pour parser
  237. tmp = this->str;
  238. compteur = 0;
  239. while (*tmp && *tmp != '}') {
  240. //Si on trouve une clef
  241. if (*tmp == '"') {
  242. //Lecture clef de la clef
  243. if((temp = parse_key(this, compteur, tmp)) == JSON_ERROR){ return parse_error(this); }
  244. tmp += temp;
  245. key = false;
  246. }
  247. //Si on trouve une valeur
  248. else if(*tmp == ':'){
  249. //Si pas de claf avant
  250. if(key){ return parse_error(this); }
  251. //Saute les espaces
  252. tmp++;
  253. while(*tmp == ' ') { tmp++; }
  254. //Lecture valeur
  255. if((temp = parse_val(this, compteur, tmp)) == JSON_ERROR){ return parse_error(this); }
  256. tmp += temp;
  257. key = true;
  258. compteur++;
  259. }
  260. tmp++;
  261. }
  262. //Si on s'arrete sur une clef
  263. if(!key){
  264. return parse_error(this);
  265. }
  266. //Sinon ok
  267. return JSON_OK;
  268. }
  269. char* key_index(JsonParser* this, int index){
  270. //Index incorrect
  271. if(index < 0 || index >= this->elt){
  272. return NULL;
  273. }
  274. //Creation string d'accueil
  275. char* val;
  276. val = malloc((this->key_length[index] + 1) * sizeof(char)); //+1 pour \0
  277. memset(val, 0, this->key_length[index] + 1);
  278. //Copie valeur
  279. strncpy(val, this->key[index], this->key_length[index]);
  280. //Retour
  281. return val;
  282. }
  283. char* get_index(JsonParser* this, int index){
  284. //Index incorrect
  285. if(index < 0 || index >= this->elt){
  286. return NULL;
  287. }
  288. //Creation string d'accueil
  289. char* val;
  290. val = malloc((this->val_length[index] +1) * sizeof(char)); //+1 pour \0
  291. memset(val, 0, this->val_length[index] + 1);
  292. //Copie valeur
  293. strncpy(val, this->val[index], this->val_length[index]);
  294. //Retour
  295. return val;
  296. }
  297. int get_pos(JsonParser* this, char* key){
  298. //Recup index
  299. int index;
  300. if((index = search_index(this, key)) == JSON_ERROR){
  301. return JSON_ERROR;
  302. }
  303. return index;
  304. }
  305. int get_type(JsonParser* this, char* key){
  306. //Recup index
  307. int index;
  308. if((index = search_index(this, key)) == JSON_ERROR){
  309. return JSON_ERROR;
  310. }
  311. return this->type[index];
  312. }
  313. char* get_value(JsonParser* this, char* key){
  314. //Recup index
  315. int index;
  316. if((index = search_index(this, key)) == JSON_ERROR){
  317. return NULL;
  318. }
  319. return get_index(this, index);
  320. }
  321. char* get_string(JsonParser* this, char* key){
  322. //Recup index
  323. int index;
  324. if((index = search_index(this, key)) == JSON_ERROR){
  325. return NULL;
  326. }
  327. //Verif type
  328. if(this->type[index] != JSON_STRING){
  329. return NULL;
  330. }
  331. return get_index(this, index);
  332. }
  333. double get_number(JsonParser* this, char* key){
  334. //Recup index
  335. int index;
  336. if((index = search_index(this, key)) == JSON_ERROR){
  337. return JSON_ERROR;
  338. }
  339. //Verif type
  340. if(this->type[index] != JSON_NUMBER){
  341. return JSON_ERROR;
  342. }
  343. //Recup valeur
  344. char* val;
  345. val = get_index(this, index);
  346. //Cast et retoure
  347. double res;
  348. res = atof(val);
  349. free(val);
  350. return res;
  351. }
  352. int get_integer(JsonParser* this, char* key){
  353. //Recup index
  354. int index;
  355. if((index = search_index(this, key)) == JSON_ERROR){
  356. return JSON_ERROR;
  357. }
  358. //Verif type
  359. if(this->type[index] != JSON_NUMBER){
  360. return JSON_ERROR;
  361. }
  362. //Recup valeur
  363. char* val;
  364. val = get_index(this, index);
  365. //Cast et retoure
  366. int res;
  367. res = atoi(val);
  368. free(val);
  369. return res;
  370. }
  371. boolean get_boolean(JsonParser* this, char* key){
  372. //Recup index
  373. int index;
  374. if((index = search_index(this, key)) == JSON_ERROR){
  375. return false;
  376. }
  377. //Verif type
  378. if(this->type[index] != JSON_BOOLEAN){
  379. return false;
  380. }
  381. //Recup valeur
  382. char* val;
  383. val = get_index(this, index);
  384. //Cast et retoure
  385. if(val[0] == 't'){
  386. return true;
  387. }
  388. return false;
  389. }
  390. JsonArray* get_array(JsonParser* this, char* key){
  391. //Recup index
  392. int index;
  393. if((index = search_index(this, key)) == JSON_ERROR){
  394. return NULL;
  395. }
  396. //Verif type
  397. if(this->type[index] != JSON_ARRAY){
  398. return NULL;
  399. }
  400. //Recup valeur
  401. char* val;
  402. val = get_index(this, index);
  403. //Parse
  404. JsonArray* json;
  405. json = malloc(sizeof(JsonArray));
  406. ini_array_parser(json);
  407. if(json_parse_array(json, val) == JSON_ERROR){
  408. return NULL;
  409. }
  410. //Retour JSON utilisable
  411. free(val);
  412. return json;
  413. }
  414. JsonParser* get_object(JsonParser* this, char* key){
  415. //Recup index
  416. int index;
  417. if((index = search_index(this, key)) == JSON_ERROR){
  418. return NULL;
  419. }
  420. //Verif type
  421. if(this->type[index] != JSON_OBJECT){
  422. return NULL;
  423. }
  424. //Recup valeur
  425. char* val;
  426. val = get_index(this, index);
  427. //Parse
  428. JsonParser* json;
  429. json = malloc(sizeof(JsonParser));
  430. if(json_parse(json, val) == JSON_ERROR){
  431. return NULL;
  432. }
  433. //Retour JSON utilisable
  434. free(val);
  435. return json;
  436. }
  437. void clean_json_parser(JsonParser* this) {
  438. free(this->key);
  439. free(this->key_length);
  440. free(this->val);
  441. free(this->val_length);
  442. free(this->type);
  443. free(this->str);
  444. }