gdscript_text_document.cpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. /**************************************************************************/
  2. /* gdscript_text_document.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 "gdscript_text_document.h"
  31. #include "../gdscript.h"
  32. #include "gdscript_extend_parser.h"
  33. #include "gdscript_language_protocol.h"
  34. #include "core/os/os.h"
  35. #include "editor/editor_settings.h"
  36. #include "editor/plugins/script_text_editor.h"
  37. #include "servers/display_server.h"
  38. void GDScriptTextDocument::_bind_methods() {
  39. ClassDB::bind_method(D_METHOD("didOpen"), &GDScriptTextDocument::didOpen);
  40. ClassDB::bind_method(D_METHOD("didClose"), &GDScriptTextDocument::didClose);
  41. ClassDB::bind_method(D_METHOD("didChange"), &GDScriptTextDocument::didChange);
  42. ClassDB::bind_method(D_METHOD("willSaveWaitUntil"), &GDScriptTextDocument::willSaveWaitUntil);
  43. ClassDB::bind_method(D_METHOD("didSave"), &GDScriptTextDocument::didSave);
  44. ClassDB::bind_method(D_METHOD("nativeSymbol"), &GDScriptTextDocument::nativeSymbol);
  45. ClassDB::bind_method(D_METHOD("documentSymbol"), &GDScriptTextDocument::documentSymbol);
  46. ClassDB::bind_method(D_METHOD("completion"), &GDScriptTextDocument::completion);
  47. ClassDB::bind_method(D_METHOD("resolve"), &GDScriptTextDocument::resolve);
  48. ClassDB::bind_method(D_METHOD("rename"), &GDScriptTextDocument::rename);
  49. ClassDB::bind_method(D_METHOD("prepareRename"), &GDScriptTextDocument::prepareRename);
  50. ClassDB::bind_method(D_METHOD("references"), &GDScriptTextDocument::references);
  51. ClassDB::bind_method(D_METHOD("foldingRange"), &GDScriptTextDocument::foldingRange);
  52. ClassDB::bind_method(D_METHOD("codeLens"), &GDScriptTextDocument::codeLens);
  53. ClassDB::bind_method(D_METHOD("documentLink"), &GDScriptTextDocument::documentLink);
  54. ClassDB::bind_method(D_METHOD("colorPresentation"), &GDScriptTextDocument::colorPresentation);
  55. ClassDB::bind_method(D_METHOD("hover"), &GDScriptTextDocument::hover);
  56. ClassDB::bind_method(D_METHOD("definition"), &GDScriptTextDocument::definition);
  57. ClassDB::bind_method(D_METHOD("declaration"), &GDScriptTextDocument::declaration);
  58. ClassDB::bind_method(D_METHOD("signatureHelp"), &GDScriptTextDocument::signatureHelp);
  59. ClassDB::bind_method(D_METHOD("show_native_symbol_in_editor"), &GDScriptTextDocument::show_native_symbol_in_editor);
  60. }
  61. void GDScriptTextDocument::didOpen(const Variant &p_param) {
  62. lsp::TextDocumentItem doc = load_document_item(p_param);
  63. sync_script_content(doc.uri, doc.text);
  64. }
  65. void GDScriptTextDocument::didClose(const Variant &p_param) {
  66. // Left empty on purpose. Godot does nothing special on closing a document,
  67. // but it satisfies LSP clients that require didClose be implemented.
  68. }
  69. void GDScriptTextDocument::didChange(const Variant &p_param) {
  70. lsp::TextDocumentItem doc = load_document_item(p_param);
  71. Dictionary dict = p_param;
  72. Array contentChanges = dict["contentChanges"];
  73. for (int i = 0; i < contentChanges.size(); ++i) {
  74. lsp::TextDocumentContentChangeEvent evt;
  75. evt.load(contentChanges[i]);
  76. doc.text = evt.text;
  77. }
  78. sync_script_content(doc.uri, doc.text);
  79. }
  80. void GDScriptTextDocument::willSaveWaitUntil(const Variant &p_param) {
  81. lsp::TextDocumentItem doc = load_document_item(p_param);
  82. String path = GDScriptLanguageProtocol::get_singleton()->get_workspace()->get_file_path(doc.uri);
  83. Ref<Script> scr = ResourceLoader::load(path);
  84. if (scr.is_valid()) {
  85. ScriptEditor::get_singleton()->clear_docs_from_script(scr);
  86. }
  87. }
  88. void GDScriptTextDocument::didSave(const Variant &p_param) {
  89. lsp::TextDocumentItem doc = load_document_item(p_param);
  90. Dictionary dict = p_param;
  91. String text = dict["text"];
  92. sync_script_content(doc.uri, text);
  93. String path = GDScriptLanguageProtocol::get_singleton()->get_workspace()->get_file_path(doc.uri);
  94. Ref<GDScript> scr = ResourceLoader::load(path);
  95. if (scr.is_valid() && (scr->load_source_code(path) == OK)) {
  96. if (scr->is_tool()) {
  97. scr->get_language()->reload_tool_script(scr, true);
  98. } else {
  99. scr->reload(true);
  100. }
  101. scr->update_exports();
  102. ScriptEditor::get_singleton()->reload_scripts(true);
  103. ScriptEditor::get_singleton()->update_docs_from_script(scr);
  104. ScriptEditor::get_singleton()->trigger_live_script_reload(scr->get_path());
  105. }
  106. }
  107. lsp::TextDocumentItem GDScriptTextDocument::load_document_item(const Variant &p_param) {
  108. lsp::TextDocumentItem doc;
  109. Dictionary params = p_param;
  110. doc.load(params["textDocument"]);
  111. return doc;
  112. }
  113. void GDScriptTextDocument::notify_client_show_symbol(const lsp::DocumentSymbol *symbol) {
  114. ERR_FAIL_NULL(symbol);
  115. GDScriptLanguageProtocol::get_singleton()->notify_client("gdscript/show_native_symbol", symbol->to_json(true));
  116. }
  117. void GDScriptTextDocument::initialize() {
  118. if (GDScriptLanguageProtocol::get_singleton()->is_smart_resolve_enabled()) {
  119. for (const KeyValue<StringName, ClassMembers> &E : GDScriptLanguageProtocol::get_singleton()->get_workspace()->native_members) {
  120. const ClassMembers &members = E.value;
  121. for (const KeyValue<String, const lsp::DocumentSymbol *> &F : members) {
  122. const lsp::DocumentSymbol *symbol = members.get(F.key);
  123. lsp::CompletionItem item = symbol->make_completion_item();
  124. item.data = JOIN_SYMBOLS(String(E.key), F.key);
  125. native_member_completions.push_back(item.to_json());
  126. }
  127. }
  128. }
  129. }
  130. Variant GDScriptTextDocument::nativeSymbol(const Dictionary &p_params) {
  131. Variant ret;
  132. lsp::NativeSymbolInspectParams params;
  133. params.load(p_params);
  134. if (const lsp::DocumentSymbol *symbol = GDScriptLanguageProtocol::get_singleton()->get_workspace()->resolve_native_symbol(params)) {
  135. ret = symbol->to_json(true);
  136. notify_client_show_symbol(symbol);
  137. }
  138. return ret;
  139. }
  140. Array GDScriptTextDocument::documentSymbol(const Dictionary &p_params) {
  141. Dictionary params = p_params["textDocument"];
  142. String uri = params["uri"];
  143. String path = GDScriptLanguageProtocol::get_singleton()->get_workspace()->get_file_path(uri);
  144. Array arr;
  145. if (HashMap<String, ExtendGDScriptParser *>::ConstIterator parser = GDScriptLanguageProtocol::get_singleton()->get_workspace()->scripts.find(path)) {
  146. lsp::DocumentSymbol symbol = parser->value->get_symbols();
  147. arr.push_back(symbol.to_json(true));
  148. }
  149. return arr;
  150. }
  151. Array GDScriptTextDocument::completion(const Dictionary &p_params) {
  152. Array arr;
  153. lsp::CompletionParams params;
  154. params.load(p_params);
  155. Dictionary request_data = params.to_json();
  156. List<ScriptLanguage::CodeCompletionOption> options;
  157. GDScriptLanguageProtocol::get_singleton()->get_workspace()->completion(params, &options);
  158. if (!options.is_empty()) {
  159. int i = 0;
  160. arr.resize(options.size());
  161. for (const ScriptLanguage::CodeCompletionOption &option : options) {
  162. lsp::CompletionItem item;
  163. item.label = option.display;
  164. item.data = request_data;
  165. item.insertText = option.insert_text;
  166. switch (option.kind) {
  167. case ScriptLanguage::CODE_COMPLETION_KIND_ENUM:
  168. item.kind = lsp::CompletionItemKind::Enum;
  169. break;
  170. case ScriptLanguage::CODE_COMPLETION_KIND_CLASS:
  171. item.kind = lsp::CompletionItemKind::Class;
  172. break;
  173. case ScriptLanguage::CODE_COMPLETION_KIND_MEMBER:
  174. item.kind = lsp::CompletionItemKind::Property;
  175. break;
  176. case ScriptLanguage::CODE_COMPLETION_KIND_FUNCTION:
  177. item.kind = lsp::CompletionItemKind::Method;
  178. break;
  179. case ScriptLanguage::CODE_COMPLETION_KIND_SIGNAL:
  180. item.kind = lsp::CompletionItemKind::Event;
  181. break;
  182. case ScriptLanguage::CODE_COMPLETION_KIND_CONSTANT:
  183. item.kind = lsp::CompletionItemKind::Constant;
  184. break;
  185. case ScriptLanguage::CODE_COMPLETION_KIND_VARIABLE:
  186. item.kind = lsp::CompletionItemKind::Variable;
  187. break;
  188. case ScriptLanguage::CODE_COMPLETION_KIND_FILE_PATH:
  189. item.kind = lsp::CompletionItemKind::File;
  190. break;
  191. case ScriptLanguage::CODE_COMPLETION_KIND_NODE_PATH:
  192. item.kind = lsp::CompletionItemKind::Snippet;
  193. break;
  194. case ScriptLanguage::CODE_COMPLETION_KIND_PLAIN_TEXT:
  195. item.kind = lsp::CompletionItemKind::Text;
  196. break;
  197. default: {
  198. }
  199. }
  200. arr[i] = item.to_json();
  201. i++;
  202. }
  203. }
  204. return arr;
  205. }
  206. Dictionary GDScriptTextDocument::rename(const Dictionary &p_params) {
  207. lsp::TextDocumentPositionParams params;
  208. params.load(p_params);
  209. String new_name = p_params["newName"];
  210. return GDScriptLanguageProtocol::get_singleton()->get_workspace()->rename(params, new_name);
  211. }
  212. Variant GDScriptTextDocument::prepareRename(const Dictionary &p_params) {
  213. lsp::TextDocumentPositionParams params;
  214. params.load(p_params);
  215. lsp::DocumentSymbol symbol;
  216. lsp::Range range;
  217. if (GDScriptLanguageProtocol::get_singleton()->get_workspace()->can_rename(params, symbol, range)) {
  218. return Variant(range.to_json());
  219. }
  220. // `null` -> rename not valid at current location.
  221. return Variant();
  222. }
  223. Array GDScriptTextDocument::references(const Dictionary &p_params) {
  224. Array res;
  225. lsp::ReferenceParams params;
  226. params.load(p_params);
  227. const lsp::DocumentSymbol *symbol = GDScriptLanguageProtocol::get_singleton()->get_workspace()->resolve_symbol(params);
  228. if (symbol) {
  229. Vector<lsp::Location> usages = GDScriptLanguageProtocol::get_singleton()->get_workspace()->find_all_usages(*symbol);
  230. res.resize(usages.size());
  231. int declaration_adjustment = 0;
  232. for (int i = 0; i < usages.size(); i++) {
  233. lsp::Location usage = usages[i];
  234. if (!params.context.includeDeclaration && usage.range == symbol->range) {
  235. declaration_adjustment++;
  236. continue;
  237. }
  238. res[i - declaration_adjustment] = usages[i].to_json();
  239. }
  240. if (declaration_adjustment > 0) {
  241. res.resize(res.size() - declaration_adjustment);
  242. }
  243. }
  244. return res;
  245. }
  246. Dictionary GDScriptTextDocument::resolve(const Dictionary &p_params) {
  247. lsp::CompletionItem item;
  248. item.load(p_params);
  249. lsp::CompletionParams params;
  250. Variant data = p_params["data"];
  251. const lsp::DocumentSymbol *symbol = nullptr;
  252. if (data.get_type() == Variant::DICTIONARY) {
  253. params.load(p_params["data"]);
  254. symbol = GDScriptLanguageProtocol::get_singleton()->get_workspace()->resolve_symbol(params, item.label, item.kind == lsp::CompletionItemKind::Method || item.kind == lsp::CompletionItemKind::Function);
  255. } else if (data.is_string()) {
  256. String query = data;
  257. Vector<String> param_symbols = query.split(SYMBOL_SEPERATOR, false);
  258. if (param_symbols.size() >= 2) {
  259. StringName class_name = param_symbols[0];
  260. const String &member_name = param_symbols[param_symbols.size() - 1];
  261. String inner_class_name;
  262. if (param_symbols.size() >= 3) {
  263. inner_class_name = param_symbols[1];
  264. }
  265. if (const ClassMembers *members = GDScriptLanguageProtocol::get_singleton()->get_workspace()->native_members.getptr(class_name)) {
  266. if (const lsp::DocumentSymbol *const *member = members->getptr(member_name)) {
  267. symbol = *member;
  268. }
  269. }
  270. if (!symbol) {
  271. if (HashMap<String, ExtendGDScriptParser *>::ConstIterator E = GDScriptLanguageProtocol::get_singleton()->get_workspace()->scripts.find(class_name)) {
  272. symbol = E->value->get_member_symbol(member_name, inner_class_name);
  273. }
  274. }
  275. }
  276. }
  277. if (symbol) {
  278. item.documentation = symbol->render();
  279. }
  280. if (item.kind == lsp::CompletionItemKind::Event) {
  281. if (params.context.triggerKind == lsp::CompletionTriggerKind::TriggerCharacter && (params.context.triggerCharacter == "(")) {
  282. const String quote_style = EDITOR_GET("text_editor/completion/use_single_quotes") ? "'" : "\"";
  283. item.insertText = item.label.quote(quote_style);
  284. }
  285. }
  286. if (item.kind == lsp::CompletionItemKind::Method) {
  287. bool is_trigger_character = params.context.triggerKind == lsp::CompletionTriggerKind::TriggerCharacter;
  288. bool is_quote_character = params.context.triggerCharacter == "\"" || params.context.triggerCharacter == "'";
  289. if (is_trigger_character && is_quote_character && item.insertText.is_quoted()) {
  290. item.insertText = item.insertText.unquote();
  291. }
  292. }
  293. return item.to_json(true);
  294. }
  295. Array GDScriptTextDocument::foldingRange(const Dictionary &p_params) {
  296. Array arr;
  297. return arr;
  298. }
  299. Array GDScriptTextDocument::codeLens(const Dictionary &p_params) {
  300. Array arr;
  301. return arr;
  302. }
  303. Array GDScriptTextDocument::documentLink(const Dictionary &p_params) {
  304. Array ret;
  305. lsp::DocumentLinkParams params;
  306. params.load(p_params);
  307. List<lsp::DocumentLink> links;
  308. GDScriptLanguageProtocol::get_singleton()->get_workspace()->resolve_document_links(params.textDocument.uri, links);
  309. for (const lsp::DocumentLink &E : links) {
  310. ret.push_back(E.to_json());
  311. }
  312. return ret;
  313. }
  314. Array GDScriptTextDocument::colorPresentation(const Dictionary &p_params) {
  315. Array arr;
  316. return arr;
  317. }
  318. Variant GDScriptTextDocument::hover(const Dictionary &p_params) {
  319. lsp::TextDocumentPositionParams params;
  320. params.load(p_params);
  321. const lsp::DocumentSymbol *symbol = GDScriptLanguageProtocol::get_singleton()->get_workspace()->resolve_symbol(params);
  322. if (symbol) {
  323. lsp::Hover hover;
  324. hover.contents = symbol->render();
  325. hover.range.start = params.position;
  326. hover.range.end = params.position;
  327. return hover.to_json();
  328. } else if (GDScriptLanguageProtocol::get_singleton()->is_smart_resolve_enabled()) {
  329. Dictionary ret;
  330. Array contents;
  331. List<const lsp::DocumentSymbol *> list;
  332. GDScriptLanguageProtocol::get_singleton()->get_workspace()->resolve_related_symbols(params, list);
  333. for (const lsp::DocumentSymbol *&E : list) {
  334. if (const lsp::DocumentSymbol *s = E) {
  335. contents.push_back(s->render().value);
  336. }
  337. }
  338. ret["contents"] = contents;
  339. return ret;
  340. }
  341. return Variant();
  342. }
  343. Array GDScriptTextDocument::definition(const Dictionary &p_params) {
  344. lsp::TextDocumentPositionParams params;
  345. params.load(p_params);
  346. List<const lsp::DocumentSymbol *> symbols;
  347. Array arr = find_symbols(params, symbols);
  348. return arr;
  349. }
  350. Variant GDScriptTextDocument::declaration(const Dictionary &p_params) {
  351. lsp::TextDocumentPositionParams params;
  352. params.load(p_params);
  353. List<const lsp::DocumentSymbol *> symbols;
  354. Array arr = find_symbols(params, symbols);
  355. if (arr.is_empty() && !symbols.is_empty() && !symbols.front()->get()->native_class.is_empty()) { // Find a native symbol
  356. const lsp::DocumentSymbol *symbol = symbols.front()->get();
  357. if (GDScriptLanguageProtocol::get_singleton()->is_goto_native_symbols_enabled()) {
  358. String id;
  359. switch (symbol->kind) {
  360. case lsp::SymbolKind::Class:
  361. id = "class_name:" + symbol->name;
  362. break;
  363. case lsp::SymbolKind::Constant:
  364. id = "class_constant:" + symbol->native_class + ":" + symbol->name;
  365. break;
  366. case lsp::SymbolKind::Property:
  367. case lsp::SymbolKind::Variable:
  368. id = "class_property:" + symbol->native_class + ":" + symbol->name;
  369. break;
  370. case lsp::SymbolKind::Enum:
  371. id = "class_enum:" + symbol->native_class + ":" + symbol->name;
  372. break;
  373. case lsp::SymbolKind::Method:
  374. case lsp::SymbolKind::Function:
  375. id = "class_method:" + symbol->native_class + ":" + symbol->name;
  376. break;
  377. default:
  378. id = "class_global:" + symbol->native_class + ":" + symbol->name;
  379. break;
  380. }
  381. callable_mp(this, &GDScriptTextDocument::show_native_symbol_in_editor).call_deferred(id);
  382. } else {
  383. notify_client_show_symbol(symbol);
  384. }
  385. }
  386. return arr;
  387. }
  388. Variant GDScriptTextDocument::signatureHelp(const Dictionary &p_params) {
  389. Variant ret;
  390. lsp::TextDocumentPositionParams params;
  391. params.load(p_params);
  392. lsp::SignatureHelp s;
  393. if (OK == GDScriptLanguageProtocol::get_singleton()->get_workspace()->resolve_signature(params, s)) {
  394. ret = s.to_json();
  395. }
  396. return ret;
  397. }
  398. GDScriptTextDocument::GDScriptTextDocument() {
  399. file_checker = FileAccess::create(FileAccess::ACCESS_RESOURCES);
  400. }
  401. void GDScriptTextDocument::sync_script_content(const String &p_path, const String &p_content) {
  402. String path = GDScriptLanguageProtocol::get_singleton()->get_workspace()->get_file_path(p_path);
  403. GDScriptLanguageProtocol::get_singleton()->get_workspace()->parse_script(path, p_content);
  404. }
  405. void GDScriptTextDocument::show_native_symbol_in_editor(const String &p_symbol_id) {
  406. callable_mp(ScriptEditor::get_singleton(), &ScriptEditor::goto_help).call_deferred(p_symbol_id);
  407. DisplayServer::get_singleton()->window_move_to_foreground();
  408. }
  409. Array GDScriptTextDocument::find_symbols(const lsp::TextDocumentPositionParams &p_location, List<const lsp::DocumentSymbol *> &r_list) {
  410. Array arr;
  411. const lsp::DocumentSymbol *symbol = GDScriptLanguageProtocol::get_singleton()->get_workspace()->resolve_symbol(p_location);
  412. if (symbol) {
  413. lsp::Location location;
  414. location.uri = symbol->uri;
  415. location.range = symbol->selectionRange;
  416. const String &path = GDScriptLanguageProtocol::get_singleton()->get_workspace()->get_file_path(symbol->uri);
  417. if (file_checker->file_exists(path)) {
  418. arr.push_back(location.to_json());
  419. }
  420. r_list.push_back(symbol);
  421. } else if (GDScriptLanguageProtocol::get_singleton()->is_smart_resolve_enabled()) {
  422. List<const lsp::DocumentSymbol *> list;
  423. GDScriptLanguageProtocol::get_singleton()->get_workspace()->resolve_related_symbols(p_location, list);
  424. for (const lsp::DocumentSymbol *&E : list) {
  425. if (const lsp::DocumentSymbol *s = E) {
  426. if (!s->uri.is_empty()) {
  427. lsp::Location location;
  428. location.uri = s->uri;
  429. location.range = s->selectionRange;
  430. arr.push_back(location.to_json());
  431. r_list.push_back(s);
  432. }
  433. }
  434. }
  435. }
  436. return arr;
  437. }