json.cpp 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  1. /**************************************************************************/
  2. /* json.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "json.h"
  31. #include "core/config/engine.h"
  32. #include "core/string/print_string.h"
  33. const char *JSON::tk_name[TK_MAX] = {
  34. "'{'",
  35. "'}'",
  36. "'['",
  37. "']'",
  38. "identifier",
  39. "string",
  40. "number",
  41. "':'",
  42. "','",
  43. "EOF",
  44. };
  45. String JSON::_make_indent(const String &p_indent, int p_size) {
  46. String indent_text = "";
  47. if (!p_indent.is_empty()) {
  48. for (int i = 0; i < p_size; i++) {
  49. indent_text += p_indent;
  50. }
  51. }
  52. return indent_text;
  53. }
  54. String JSON::_stringify(const Variant &p_var, const String &p_indent, int p_cur_indent, bool p_sort_keys, HashSet<const void *> &p_markers, bool p_full_precision) {
  55. ERR_FAIL_COND_V_MSG(p_cur_indent > Variant::MAX_RECURSION_DEPTH, "...", "JSON structure is too deep. Bailing.");
  56. String colon = ":";
  57. String end_statement = "";
  58. if (!p_indent.is_empty()) {
  59. colon += " ";
  60. end_statement += "\n";
  61. }
  62. switch (p_var.get_type()) {
  63. case Variant::NIL:
  64. return "null";
  65. case Variant::BOOL:
  66. return p_var.operator bool() ? "true" : "false";
  67. case Variant::INT:
  68. return itos(p_var);
  69. case Variant::FLOAT: {
  70. double num = p_var;
  71. if (p_full_precision) {
  72. // Store unreliable digits (17) instead of just reliable
  73. // digits (14) so that the value can be decoded exactly.
  74. return String::num(num, 17 - (int)floor(log10(num)));
  75. } else {
  76. // Store only reliable digits (14) by default.
  77. return String::num(num, 14 - (int)floor(log10(num)));
  78. }
  79. }
  80. case Variant::PACKED_INT32_ARRAY:
  81. case Variant::PACKED_INT64_ARRAY:
  82. case Variant::PACKED_FLOAT32_ARRAY:
  83. case Variant::PACKED_FLOAT64_ARRAY:
  84. case Variant::PACKED_STRING_ARRAY:
  85. case Variant::ARRAY: {
  86. String s = "[";
  87. s += end_statement;
  88. Array a = p_var;
  89. ERR_FAIL_COND_V_MSG(p_markers.has(a.id()), "\"[...]\"", "Converting circular structure to JSON.");
  90. p_markers.insert(a.id());
  91. for (int i = 0; i < a.size(); i++) {
  92. if (i > 0) {
  93. s += ",";
  94. s += end_statement;
  95. }
  96. s += _make_indent(p_indent, p_cur_indent + 1) + _stringify(a[i], p_indent, p_cur_indent + 1, p_sort_keys, p_markers);
  97. }
  98. s += end_statement + _make_indent(p_indent, p_cur_indent) + "]";
  99. p_markers.erase(a.id());
  100. return s;
  101. }
  102. case Variant::DICTIONARY: {
  103. String s = "{";
  104. s += end_statement;
  105. Dictionary d = p_var;
  106. ERR_FAIL_COND_V_MSG(p_markers.has(d.id()), "\"{...}\"", "Converting circular structure to JSON.");
  107. p_markers.insert(d.id());
  108. List<Variant> keys;
  109. d.get_key_list(&keys);
  110. if (p_sort_keys) {
  111. keys.sort();
  112. }
  113. bool first_key = true;
  114. for (const Variant &E : keys) {
  115. if (first_key) {
  116. first_key = false;
  117. } else {
  118. s += ",";
  119. s += end_statement;
  120. }
  121. s += _make_indent(p_indent, p_cur_indent + 1) + _stringify(String(E), p_indent, p_cur_indent + 1, p_sort_keys, p_markers);
  122. s += colon;
  123. s += _stringify(d[E], p_indent, p_cur_indent + 1, p_sort_keys, p_markers);
  124. }
  125. s += end_statement + _make_indent(p_indent, p_cur_indent) + "}";
  126. p_markers.erase(d.id());
  127. return s;
  128. }
  129. default:
  130. return "\"" + String(p_var).json_escape() + "\"";
  131. }
  132. }
  133. Error JSON::_get_token(const char32_t *p_str, int &index, int p_len, Token &r_token, int &line, String &r_err_str) {
  134. while (p_len > 0) {
  135. switch (p_str[index]) {
  136. case '\n': {
  137. line++;
  138. index++;
  139. break;
  140. }
  141. case 0: {
  142. r_token.type = TK_EOF;
  143. return OK;
  144. } break;
  145. case '{': {
  146. r_token.type = TK_CURLY_BRACKET_OPEN;
  147. index++;
  148. return OK;
  149. }
  150. case '}': {
  151. r_token.type = TK_CURLY_BRACKET_CLOSE;
  152. index++;
  153. return OK;
  154. }
  155. case '[': {
  156. r_token.type = TK_BRACKET_OPEN;
  157. index++;
  158. return OK;
  159. }
  160. case ']': {
  161. r_token.type = TK_BRACKET_CLOSE;
  162. index++;
  163. return OK;
  164. }
  165. case ':': {
  166. r_token.type = TK_COLON;
  167. index++;
  168. return OK;
  169. }
  170. case ',': {
  171. r_token.type = TK_COMMA;
  172. index++;
  173. return OK;
  174. }
  175. case '"': {
  176. index++;
  177. String str;
  178. while (true) {
  179. if (p_str[index] == 0) {
  180. r_err_str = "Unterminated String";
  181. return ERR_PARSE_ERROR;
  182. } else if (p_str[index] == '"') {
  183. index++;
  184. break;
  185. } else if (p_str[index] == '\\') {
  186. //escaped characters...
  187. index++;
  188. char32_t next = p_str[index];
  189. if (next == 0) {
  190. r_err_str = "Unterminated String";
  191. return ERR_PARSE_ERROR;
  192. }
  193. char32_t res = 0;
  194. switch (next) {
  195. case 'b':
  196. res = 8;
  197. break;
  198. case 't':
  199. res = 9;
  200. break;
  201. case 'n':
  202. res = 10;
  203. break;
  204. case 'f':
  205. res = 12;
  206. break;
  207. case 'r':
  208. res = 13;
  209. break;
  210. case 'u': {
  211. // hex number
  212. for (int j = 0; j < 4; j++) {
  213. char32_t c = p_str[index + j + 1];
  214. if (c == 0) {
  215. r_err_str = "Unterminated String";
  216. return ERR_PARSE_ERROR;
  217. }
  218. if (!is_hex_digit(c)) {
  219. r_err_str = "Malformed hex constant in string";
  220. return ERR_PARSE_ERROR;
  221. }
  222. char32_t v;
  223. if (is_digit(c)) {
  224. v = c - '0';
  225. } else if (c >= 'a' && c <= 'f') {
  226. v = c - 'a';
  227. v += 10;
  228. } else if (c >= 'A' && c <= 'F') {
  229. v = c - 'A';
  230. v += 10;
  231. } else {
  232. ERR_PRINT("Bug parsing hex constant.");
  233. v = 0;
  234. }
  235. res <<= 4;
  236. res |= v;
  237. }
  238. index += 4; //will add at the end anyway
  239. if ((res & 0xfffffc00) == 0xd800) {
  240. if (p_str[index + 1] != '\\' || p_str[index + 2] != 'u') {
  241. r_err_str = "Invalid UTF-16 sequence in string, unpaired lead surrogate";
  242. return ERR_PARSE_ERROR;
  243. }
  244. index += 2;
  245. char32_t trail = 0;
  246. for (int j = 0; j < 4; j++) {
  247. char32_t c = p_str[index + j + 1];
  248. if (c == 0) {
  249. r_err_str = "Unterminated String";
  250. return ERR_PARSE_ERROR;
  251. }
  252. if (!is_hex_digit(c)) {
  253. r_err_str = "Malformed hex constant in string";
  254. return ERR_PARSE_ERROR;
  255. }
  256. char32_t v;
  257. if (is_digit(c)) {
  258. v = c - '0';
  259. } else if (c >= 'a' && c <= 'f') {
  260. v = c - 'a';
  261. v += 10;
  262. } else if (c >= 'A' && c <= 'F') {
  263. v = c - 'A';
  264. v += 10;
  265. } else {
  266. ERR_PRINT("Bug parsing hex constant.");
  267. v = 0;
  268. }
  269. trail <<= 4;
  270. trail |= v;
  271. }
  272. if ((trail & 0xfffffc00) == 0xdc00) {
  273. res = (res << 10UL) + trail - ((0xd800 << 10UL) + 0xdc00 - 0x10000);
  274. index += 4; //will add at the end anyway
  275. } else {
  276. r_err_str = "Invalid UTF-16 sequence in string, unpaired lead surrogate";
  277. return ERR_PARSE_ERROR;
  278. }
  279. } else if ((res & 0xfffffc00) == 0xdc00) {
  280. r_err_str = "Invalid UTF-16 sequence in string, unpaired trail surrogate";
  281. return ERR_PARSE_ERROR;
  282. }
  283. } break;
  284. default: {
  285. res = next;
  286. } break;
  287. }
  288. str += res;
  289. } else {
  290. if (p_str[index] == '\n') {
  291. line++;
  292. }
  293. str += p_str[index];
  294. }
  295. index++;
  296. }
  297. r_token.type = TK_STRING;
  298. r_token.value = str;
  299. return OK;
  300. } break;
  301. default: {
  302. if (p_str[index] <= 32) {
  303. index++;
  304. break;
  305. }
  306. if (p_str[index] == '-' || is_digit(p_str[index])) {
  307. //a number
  308. const char32_t *rptr;
  309. double number = String::to_float(&p_str[index], &rptr);
  310. index += (rptr - &p_str[index]);
  311. r_token.type = TK_NUMBER;
  312. r_token.value = number;
  313. return OK;
  314. } else if (is_ascii_char(p_str[index])) {
  315. String id;
  316. while (is_ascii_char(p_str[index])) {
  317. id += p_str[index];
  318. index++;
  319. }
  320. r_token.type = TK_IDENTIFIER;
  321. r_token.value = id;
  322. return OK;
  323. } else {
  324. r_err_str = "Unexpected character.";
  325. return ERR_PARSE_ERROR;
  326. }
  327. }
  328. }
  329. }
  330. return ERR_PARSE_ERROR;
  331. }
  332. Error JSON::_parse_value(Variant &value, Token &token, const char32_t *p_str, int &index, int p_len, int &line, int p_depth, String &r_err_str) {
  333. if (p_depth > Variant::MAX_RECURSION_DEPTH) {
  334. r_err_str = "JSON structure is too deep. Bailing.";
  335. return ERR_OUT_OF_MEMORY;
  336. }
  337. if (token.type == TK_CURLY_BRACKET_OPEN) {
  338. Dictionary d;
  339. Error err = _parse_object(d, p_str, index, p_len, line, p_depth + 1, r_err_str);
  340. if (err) {
  341. return err;
  342. }
  343. value = d;
  344. } else if (token.type == TK_BRACKET_OPEN) {
  345. Array a;
  346. Error err = _parse_array(a, p_str, index, p_len, line, p_depth + 1, r_err_str);
  347. if (err) {
  348. return err;
  349. }
  350. value = a;
  351. } else if (token.type == TK_IDENTIFIER) {
  352. String id = token.value;
  353. if (id == "true") {
  354. value = true;
  355. } else if (id == "false") {
  356. value = false;
  357. } else if (id == "null") {
  358. value = Variant();
  359. } else {
  360. r_err_str = "Expected 'true','false' or 'null', got '" + id + "'.";
  361. return ERR_PARSE_ERROR;
  362. }
  363. } else if (token.type == TK_NUMBER) {
  364. value = token.value;
  365. } else if (token.type == TK_STRING) {
  366. value = token.value;
  367. } else {
  368. r_err_str = "Expected value, got " + String(tk_name[token.type]) + ".";
  369. return ERR_PARSE_ERROR;
  370. }
  371. return OK;
  372. }
  373. Error JSON::_parse_array(Array &array, const char32_t *p_str, int &index, int p_len, int &line, int p_depth, String &r_err_str) {
  374. Token token;
  375. bool need_comma = false;
  376. while (index < p_len) {
  377. Error err = _get_token(p_str, index, p_len, token, line, r_err_str);
  378. if (err != OK) {
  379. return err;
  380. }
  381. if (token.type == TK_BRACKET_CLOSE) {
  382. return OK;
  383. }
  384. if (need_comma) {
  385. if (token.type != TK_COMMA) {
  386. r_err_str = "Expected ','";
  387. return ERR_PARSE_ERROR;
  388. } else {
  389. need_comma = false;
  390. continue;
  391. }
  392. }
  393. Variant v;
  394. err = _parse_value(v, token, p_str, index, p_len, line, p_depth, r_err_str);
  395. if (err) {
  396. return err;
  397. }
  398. array.push_back(v);
  399. need_comma = true;
  400. }
  401. r_err_str = "Expected ']'";
  402. return ERR_PARSE_ERROR;
  403. }
  404. Error JSON::_parse_object(Dictionary &object, const char32_t *p_str, int &index, int p_len, int &line, int p_depth, String &r_err_str) {
  405. bool at_key = true;
  406. String key;
  407. Token token;
  408. bool need_comma = false;
  409. while (index < p_len) {
  410. if (at_key) {
  411. Error err = _get_token(p_str, index, p_len, token, line, r_err_str);
  412. if (err != OK) {
  413. return err;
  414. }
  415. if (token.type == TK_CURLY_BRACKET_CLOSE) {
  416. return OK;
  417. }
  418. if (need_comma) {
  419. if (token.type != TK_COMMA) {
  420. r_err_str = "Expected '}' or ','";
  421. return ERR_PARSE_ERROR;
  422. } else {
  423. need_comma = false;
  424. continue;
  425. }
  426. }
  427. if (token.type != TK_STRING) {
  428. r_err_str = "Expected key";
  429. return ERR_PARSE_ERROR;
  430. }
  431. key = token.value;
  432. err = _get_token(p_str, index, p_len, token, line, r_err_str);
  433. if (err != OK) {
  434. return err;
  435. }
  436. if (token.type != TK_COLON) {
  437. r_err_str = "Expected ':'";
  438. return ERR_PARSE_ERROR;
  439. }
  440. at_key = false;
  441. } else {
  442. Error err = _get_token(p_str, index, p_len, token, line, r_err_str);
  443. if (err != OK) {
  444. return err;
  445. }
  446. Variant v;
  447. err = _parse_value(v, token, p_str, index, p_len, line, p_depth, r_err_str);
  448. if (err) {
  449. return err;
  450. }
  451. object[key] = v;
  452. need_comma = true;
  453. at_key = true;
  454. }
  455. }
  456. r_err_str = "Expected '}'";
  457. return ERR_PARSE_ERROR;
  458. }
  459. void JSON::set_data(const Variant &p_data) {
  460. data = p_data;
  461. text.clear();
  462. }
  463. Error JSON::_parse_string(const String &p_json, Variant &r_ret, String &r_err_str, int &r_err_line) {
  464. const char32_t *str = p_json.ptr();
  465. int idx = 0;
  466. int len = p_json.length();
  467. Token token;
  468. r_err_line = 0;
  469. String aux_key;
  470. Error err = _get_token(str, idx, len, token, r_err_line, r_err_str);
  471. if (err) {
  472. return err;
  473. }
  474. err = _parse_value(r_ret, token, str, idx, len, r_err_line, 0, r_err_str);
  475. // Check if EOF is reached
  476. // or it's a type of the next token.
  477. if (err == OK && idx < len) {
  478. err = _get_token(str, idx, len, token, r_err_line, r_err_str);
  479. if (err || token.type != TK_EOF) {
  480. r_err_str = "Expected 'EOF'";
  481. // Reset return value to empty `Variant`
  482. r_ret = Variant();
  483. return ERR_PARSE_ERROR;
  484. }
  485. }
  486. return err;
  487. }
  488. Error JSON::parse(const String &p_json_string, bool p_keep_text) {
  489. Error err = _parse_string(p_json_string, data, err_str, err_line);
  490. if (err == Error::OK) {
  491. err_line = 0;
  492. }
  493. if (p_keep_text) {
  494. text = p_json_string;
  495. }
  496. return err;
  497. }
  498. String JSON::get_parsed_text() const {
  499. return text;
  500. }
  501. String JSON::stringify(const Variant &p_var, const String &p_indent, bool p_sort_keys, bool p_full_precision) {
  502. Ref<JSON> jason;
  503. jason.instantiate();
  504. HashSet<const void *> markers;
  505. return jason->_stringify(p_var, p_indent, 0, p_sort_keys, markers, p_full_precision);
  506. }
  507. Variant JSON::parse_string(const String &p_json_string) {
  508. Ref<JSON> jason;
  509. jason.instantiate();
  510. Error error = jason->parse(p_json_string);
  511. ERR_FAIL_COND_V_MSG(error != Error::OK, Variant(), vformat("Parse JSON failed. Error at line %d: %s", jason->get_error_line(), jason->get_error_message()));
  512. return jason->get_data();
  513. }
  514. void JSON::_bind_methods() {
  515. ClassDB::bind_static_method("JSON", D_METHOD("stringify", "data", "indent", "sort_keys", "full_precision"), &JSON::stringify, DEFVAL(""), DEFVAL(true), DEFVAL(false));
  516. ClassDB::bind_static_method("JSON", D_METHOD("parse_string", "json_string"), &JSON::parse_string);
  517. ClassDB::bind_method(D_METHOD("parse", "json_text", "keep_text"), &JSON::parse, DEFVAL(false));
  518. ClassDB::bind_method(D_METHOD("get_data"), &JSON::get_data);
  519. ClassDB::bind_method(D_METHOD("set_data", "data"), &JSON::set_data);
  520. ClassDB::bind_method(D_METHOD("get_parsed_text"), &JSON::get_parsed_text);
  521. ClassDB::bind_method(D_METHOD("get_error_line"), &JSON::get_error_line);
  522. ClassDB::bind_method(D_METHOD("get_error_message"), &JSON::get_error_message);
  523. ADD_PROPERTY(PropertyInfo(Variant::NIL, "data", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_NIL_IS_VARIANT), "set_data", "get_data"); // Ensures that it can be serialized as binary.
  524. }
  525. ////
  526. ////////////
  527. Ref<Resource> ResourceFormatLoaderJSON::load(const String &p_path, const String &p_original_path, Error *r_error, bool p_use_sub_threads, float *r_progress, CacheMode p_cache_mode) {
  528. if (r_error) {
  529. *r_error = ERR_FILE_CANT_OPEN;
  530. }
  531. if (!FileAccess::exists(p_path)) {
  532. *r_error = ERR_FILE_NOT_FOUND;
  533. return Ref<Resource>();
  534. }
  535. Ref<JSON> json;
  536. json.instantiate();
  537. Error err = json->parse(FileAccess::get_file_as_string(p_path), Engine::get_singleton()->is_editor_hint());
  538. if (err != OK) {
  539. String err_text = "Error parsing JSON file at '" + p_path + "', on line " + itos(json->get_error_line()) + ": " + json->get_error_message();
  540. if (Engine::get_singleton()->is_editor_hint()) {
  541. // If running on editor, still allow opening the JSON so the code editor can edit it.
  542. WARN_PRINT(err_text);
  543. } else {
  544. if (r_error) {
  545. *r_error = err;
  546. }
  547. ERR_PRINT(err_text);
  548. return Ref<Resource>();
  549. }
  550. }
  551. if (r_error) {
  552. *r_error = OK;
  553. }
  554. return json;
  555. }
  556. void ResourceFormatLoaderJSON::get_recognized_extensions(List<String> *p_extensions) const {
  557. p_extensions->push_back("json");
  558. }
  559. bool ResourceFormatLoaderJSON::handles_type(const String &p_type) const {
  560. return (p_type == "JSON");
  561. }
  562. String ResourceFormatLoaderJSON::get_resource_type(const String &p_path) const {
  563. String el = p_path.get_extension().to_lower();
  564. if (el == "json") {
  565. return "JSON";
  566. }
  567. return "";
  568. }
  569. Error ResourceFormatSaverJSON::save(const Ref<Resource> &p_resource, const String &p_path, uint32_t p_flags) {
  570. Ref<JSON> json = p_resource;
  571. ERR_FAIL_COND_V(json.is_null(), ERR_INVALID_PARAMETER);
  572. String source = json->get_parsed_text().is_empty() ? JSON::stringify(json->get_data(), "\t", false, true) : json->get_parsed_text();
  573. Error err;
  574. Ref<FileAccess> file = FileAccess::open(p_path, FileAccess::WRITE, &err);
  575. ERR_FAIL_COND_V_MSG(err, err, "Cannot save json '" + p_path + "'.");
  576. file->store_string(source);
  577. if (file->get_error() != OK && file->get_error() != ERR_FILE_EOF) {
  578. return ERR_CANT_CREATE;
  579. }
  580. return OK;
  581. }
  582. void ResourceFormatSaverJSON::get_recognized_extensions(const Ref<Resource> &p_resource, List<String> *p_extensions) const {
  583. Ref<JSON> json = p_resource;
  584. if (json.is_valid()) {
  585. p_extensions->push_back("json");
  586. }
  587. }
  588. bool ResourceFormatSaverJSON::recognize(const Ref<Resource> &p_resource) const {
  589. return p_resource->get_class_name() == "JSON"; //only json, not inherited
  590. }