| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589 |
- /**************************************************************************/
- /* gdscript_language_protocol.cpp */
- /**************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* https://godotengine.org */
- /**************************************************************************/
- /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
- /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
- /* */
- /* Permission is hereby granted, free of charge, to any person obtaining */
- /* a copy of this software and associated documentation files (the */
- /* "Software"), to deal in the Software without restriction, including */
- /* without limitation the rights to use, copy, modify, merge, publish, */
- /* distribute, sublicense, and/or sell copies of the Software, and to */
- /* permit persons to whom the Software is furnished to do so, subject to */
- /* the following conditions: */
- /* */
- /* The above copyright notice and this permission notice shall be */
- /* included in all copies or substantial portions of the Software. */
- /* */
- /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
- /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
- /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
- /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
- /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
- /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
- /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
- /**************************************************************************/
- #include "gdscript_language_protocol.h"
- #include "core/config/project_settings.h"
- #include "editor/doc/doc_tools.h"
- #include "editor/doc/editor_help.h"
- #include "editor/editor_log.h"
- #include "editor/editor_node.h"
- #include "editor/settings/editor_settings.h"
- #include "modules/gdscript/language_server/godot_lsp.h"
- #define LSP_CLIENT_V(m_ret_val) \
- ERR_FAIL_COND_V(latest_client_id == LSP_NO_CLIENT, m_ret_val); \
- ERR_FAIL_COND_V(!clients.has(latest_client_id), m_ret_val); \
- Ref<LSPeer> client = clients.get(latest_client_id); \
- ERR_FAIL_COND_V(!client.is_valid(), m_ret_val);
- #define LSP_CLIENT \
- ERR_FAIL_COND(latest_client_id == LSP_NO_CLIENT); \
- ERR_FAIL_COND(!clients.has(latest_client_id)); \
- Ref<LSPeer> client = clients.get(latest_client_id); \
- ERR_FAIL_COND(!client.is_valid());
- GDScriptLanguageProtocol *GDScriptLanguageProtocol::singleton = nullptr;
- Error GDScriptLanguageProtocol::LSPeer::handle_data() {
- int read = 0;
- // Read headers
- if (!has_header) {
- while (true) {
- if (req_pos >= LSP_MAX_BUFFER_SIZE) {
- req_pos = 0;
- ERR_FAIL_V_MSG(ERR_OUT_OF_MEMORY, "Response header too big");
- }
- Error err = connection->get_partial_data(&req_buf[req_pos], 1, read);
- if (err != OK) {
- return FAILED;
- } else if (read != 1) { // Busy, wait until next poll
- return ERR_BUSY;
- }
- char *r = (char *)req_buf;
- int l = req_pos;
- // End of headers
- if (l > 3 && r[l] == '\n' && r[l - 1] == '\r' && r[l - 2] == '\n' && r[l - 3] == '\r') {
- r[l - 3] = '\0'; // Null terminate to read string
- String header = String::utf8(r);
- content_length = header.substr(16).to_int();
- has_header = true;
- req_pos = 0;
- break;
- }
- req_pos++;
- }
- }
- if (has_header) {
- while (req_pos < content_length) {
- if (req_pos >= LSP_MAX_BUFFER_SIZE) {
- req_pos = 0;
- has_header = false;
- ERR_FAIL_COND_V_MSG(req_pos >= LSP_MAX_BUFFER_SIZE, ERR_OUT_OF_MEMORY, "Response content too big");
- }
- Error err = connection->get_partial_data(&req_buf[req_pos], 1, read);
- if (err != OK) {
- return FAILED;
- } else if (read != 1) {
- return ERR_BUSY;
- }
- req_pos++;
- }
- // Parse data
- String msg = String::utf8((const char *)req_buf, req_pos);
- // Reset to read again
- req_pos = 0;
- has_header = false;
- // Response
- String output = GDScriptLanguageProtocol::get_singleton()->process_message(msg);
- clear_stale_parsers();
- if (!output.is_empty()) {
- res_queue.push_back(output.utf8());
- }
- }
- return OK;
- }
- Error GDScriptLanguageProtocol::LSPeer::send_data() {
- int sent = 0;
- while (!res_queue.is_empty()) {
- CharString c_res = res_queue[0];
- if (res_sent < c_res.size()) {
- Error err = connection->put_partial_data((const uint8_t *)c_res.get_data() + res_sent, c_res.size() - res_sent - 1, sent);
- if (err != OK) {
- return err;
- }
- res_sent += sent;
- }
- // Response sent
- if (res_sent >= c_res.size() - 1) {
- res_sent = 0;
- res_queue.remove_at(0);
- }
- }
- return OK;
- }
- Error GDScriptLanguageProtocol::on_client_connected() {
- Ref<StreamPeerTCP> tcp_peer = server->take_connection();
- ERR_FAIL_COND_V_MSG(clients.size() >= LSP_MAX_CLIENTS, FAILED, "Max client limits reached");
- Ref<LSPeer> peer = memnew(LSPeer);
- peer->connection = tcp_peer;
- clients.insert(next_client_id, peer);
- next_client_id++;
- EditorNode::get_log()->add_message("[LSP] Connection Taken", EditorLog::MSG_TYPE_EDITOR);
- return OK;
- }
- void GDScriptLanguageProtocol::on_client_disconnected(const int &p_client_id) {
- clients.erase(p_client_id);
- EditorNode::get_log()->add_message("[LSP] Disconnected", EditorLog::MSG_TYPE_EDITOR);
- }
- String GDScriptLanguageProtocol::process_message(const String &p_text) {
- String ret = process_string(p_text);
- if (ret.is_empty()) {
- return ret;
- } else {
- return format_output(ret);
- }
- }
- String GDScriptLanguageProtocol::format_output(const String &p_text) {
- String header = "Content-Length: ";
- CharString charstr = p_text.utf8();
- size_t len = charstr.length();
- header += itos(len);
- header += "\r\n\r\n";
- return header + p_text;
- }
- void GDScriptLanguageProtocol::_bind_methods() {
- ClassDB::bind_method(D_METHOD("initialize", "params"), &GDScriptLanguageProtocol::initialize);
- ClassDB::bind_method(D_METHOD("initialized", "params"), &GDScriptLanguageProtocol::initialized);
- ClassDB::bind_method(D_METHOD("on_client_connected"), &GDScriptLanguageProtocol::on_client_connected);
- ClassDB::bind_method(D_METHOD("on_client_disconnected"), &GDScriptLanguageProtocol::on_client_disconnected);
- ClassDB::bind_method(D_METHOD("notify_client", "method", "params", "client_id"), &GDScriptLanguageProtocol::notify_client, DEFVAL(Variant()), DEFVAL(-1));
- ClassDB::bind_method(D_METHOD("is_smart_resolve_enabled"), &GDScriptLanguageProtocol::is_smart_resolve_enabled);
- ClassDB::bind_method(D_METHOD("get_text_document"), &GDScriptLanguageProtocol::get_text_document);
- ClassDB::bind_method(D_METHOD("get_workspace"), &GDScriptLanguageProtocol::get_workspace);
- ClassDB::bind_method(D_METHOD("is_initialized"), &GDScriptLanguageProtocol::is_initialized);
- }
- Dictionary GDScriptLanguageProtocol::initialize(const Dictionary &p_params) {
- LSP::InitializeResult ret;
- {
- // Warn if the workspace root does not match with the project that is currently open in Godot,
- // since it might lead to unexpected behavior, like wrong warnings about duplicate class names.
- String root;
- Variant root_uri_var = p_params["rootUri"];
- Variant root_var = p_params.get("rootPath", Variant());
- if (root_uri_var.is_string()) {
- root = get_workspace()->get_file_path(root_uri_var);
- } else if (root_var.is_string()) {
- root = root_var;
- }
- if (ProjectSettings::get_singleton()->localize_path(root) != "res://") {
- LSP::ShowMessageParams params{
- LSP::MessageType::Warning,
- "The GDScript Language Server might not work correctly with other projects than the one opened in Godot."
- };
- notify_client("window/showMessage", params.to_json());
- }
- }
- String root_uri = p_params["rootUri"];
- String root = p_params.get("rootPath", "");
- bool is_same_workspace;
- #ifndef WINDOWS_ENABLED
- is_same_workspace = root.to_lower() == workspace->root.to_lower();
- #else
- is_same_workspace = root.replace_char('\\', '/').to_lower() == workspace->root.to_lower();
- #endif
- if (root_uri.length() && is_same_workspace) {
- workspace->root_uri = root_uri;
- } else {
- String r_root = workspace->root;
- r_root = r_root.lstrip("/");
- workspace->root_uri = "file:///" + r_root;
- Dictionary params;
- params["path"] = workspace->root;
- Dictionary request = make_notification("gdscript_client/changeWorkspace", params);
- ERR_FAIL_COND_V_MSG(!clients.has(latest_client_id), ret.to_json(),
- vformat("GDScriptLanguageProtocol: Can't initialize invalid peer '%d'.", latest_client_id));
- Ref<LSPeer> peer = clients.get(latest_client_id);
- if (peer.is_valid()) {
- String msg = Variant(request).to_json_string();
- msg = format_output(msg);
- (*peer)->res_queue.push_back(msg.utf8());
- }
- }
- if (!_initialized) {
- workspace->initialize();
- text_document->initialize();
- _initialized = true;
- }
- return ret.to_json();
- }
- void GDScriptLanguageProtocol::initialized(const Variant &p_params) {
- LSP::GodotCapabilities capabilities;
- DocTools *doc = EditorHelp::get_doc_data();
- for (const KeyValue<String, DocData::ClassDoc> &E : doc->class_list) {
- LSP::GodotNativeClassInfo gdclass;
- gdclass.name = E.value.name;
- gdclass.class_doc = &(E.value);
- if (ClassDB::ClassInfo *ptr = ClassDB::classes.getptr(StringName(E.value.name))) {
- gdclass.class_info = ptr;
- }
- capabilities.native_classes.push_back(gdclass);
- }
- notify_client("gdscript/capabilities", capabilities.to_json());
- }
- void GDScriptLanguageProtocol::poll(int p_limit_usec) {
- uint64_t target_ticks = OS::get_singleton()->get_ticks_usec() + p_limit_usec;
- if (server->is_connection_available()) {
- on_client_connected();
- }
- HashMap<int, Ref<LSPeer>>::Iterator E = clients.begin();
- while (E != clients.end()) {
- Ref<LSPeer> peer = E->value;
- peer->connection->poll();
- StreamPeerTCP::Status status = peer->connection->get_status();
- if (status == StreamPeerTCP::STATUS_NONE || status == StreamPeerTCP::STATUS_ERROR) {
- on_client_disconnected(E->key);
- E = clients.begin();
- continue;
- } else {
- Error err = OK;
- while (peer->connection->get_available_bytes() > 0) {
- latest_client_id = E->key;
- err = peer->handle_data();
- if (err != OK || OS::get_singleton()->get_ticks_usec() >= target_ticks) {
- break;
- }
- }
- if (err != OK && err != ERR_BUSY) {
- on_client_disconnected(E->key);
- E = clients.begin();
- continue;
- }
- err = peer->send_data();
- if (err != OK && err != ERR_BUSY) {
- on_client_disconnected(E->key);
- E = clients.begin();
- continue;
- }
- }
- ++E;
- }
- }
- Error GDScriptLanguageProtocol::start(int p_port, const IPAddress &p_bind_ip) {
- return server->listen(p_port, p_bind_ip);
- }
- void GDScriptLanguageProtocol::stop() {
- for (const KeyValue<int, Ref<LSPeer>> &E : clients) {
- Ref<LSPeer> peer = clients.get(E.key);
- peer->connection->disconnect_from_host();
- }
- server->stop();
- }
- void GDScriptLanguageProtocol::notify_client(const String &p_method, const Variant &p_params, int p_client_id) {
- #ifdef TESTS_ENABLED
- if (clients.is_empty()) {
- return;
- }
- #endif
- if (p_client_id == -1) {
- ERR_FAIL_COND_MSG(latest_client_id == LSP_NO_CLIENT, "GDScript LSP: Can't notify client as none was connected.");
- p_client_id = latest_client_id;
- }
- ERR_FAIL_COND(!clients.has(p_client_id));
- Ref<LSPeer> peer = clients.get(p_client_id);
- ERR_FAIL_COND(peer.is_null());
- Dictionary message = make_notification(p_method, p_params);
- String msg = Variant(message).to_json_string();
- msg = format_output(msg);
- peer->res_queue.push_back(msg.utf8());
- }
- void GDScriptLanguageProtocol::request_client(const String &p_method, const Variant &p_params, int p_client_id) {
- #ifdef TESTS_ENABLED
- if (clients.is_empty()) {
- return;
- }
- #endif
- if (p_client_id == -1) {
- ERR_FAIL_COND_MSG(latest_client_id == LSP_NO_CLIENT, "GDScript LSP: Can't notify client as none was connected.");
- p_client_id = latest_client_id;
- }
- ERR_FAIL_COND(!clients.has(p_client_id));
- Ref<LSPeer> peer = clients.get(p_client_id);
- ERR_FAIL_COND(peer.is_null());
- Dictionary message = make_request(p_method, p_params, next_server_id);
- next_server_id++;
- String msg = Variant(message).to_json_string();
- msg = format_output(msg);
- peer->res_queue.push_back(msg.utf8());
- }
- bool GDScriptLanguageProtocol::is_smart_resolve_enabled() const {
- return bool(_EDITOR_GET("network/language_server/enable_smart_resolve"));
- }
- bool GDScriptLanguageProtocol::is_goto_native_symbols_enabled() const {
- return bool(_EDITOR_GET("network/language_server/show_native_symbols_in_editor"));
- }
- ExtendGDScriptParser *GDScriptLanguageProtocol::LSPeer::parse_script(const String &p_path) {
- remove_cached_parser(p_path);
- String content;
- const LSP::TextDocumentItem *document = managed_files.getptr(p_path);
- if (document == nullptr) {
- if (!p_path.has_extension("gd")) {
- return nullptr;
- }
- Error err;
- content = FileAccess::get_file_as_string(p_path, &err);
- if (err != OK) {
- return nullptr;
- }
- } else {
- if (document->languageId != LSP::LanguageId::GDSCRIPT) {
- return nullptr;
- }
- content = document->text;
- }
- ExtendGDScriptParser *parser = memnew(ExtendGDScriptParser);
- parse_results[p_path] = parser;
- parser->parse(content, p_path);
- if (document != nullptr) {
- GDScriptLanguageProtocol::get_singleton()->get_workspace()->publish_diagnostics(p_path);
- } else {
- // Don't keep cached for further requests since we can't invalidate the cache properly.
- stale_parsers.insert(p_path);
- }
- return parser;
- }
- void GDScriptLanguageProtocol::LSPeer::clear_stale_parsers() {
- while (!stale_parsers.is_empty()) {
- remove_cached_parser(*stale_parsers.begin());
- }
- }
- void GDScriptLanguageProtocol::LSPeer::remove_cached_parser(const String &p_path) {
- HashMap<String, ExtendGDScriptParser *>::Iterator cached = parse_results.find(p_path);
- if (cached) {
- memdelete(cached->value);
- parse_results.remove(cached);
- }
- stale_parsers.erase(p_path);
- }
- ExtendGDScriptParser *GDScriptLanguageProtocol::get_parse_result(const String &p_path) {
- LSP_CLIENT_V(nullptr);
- ExtendGDScriptParser **cached_parser = client->parse_results.getptr(p_path);
- if (cached_parser == nullptr) {
- return client->parse_script(p_path);
- }
- return *cached_parser;
- }
- void GDScriptLanguageProtocol::lsp_did_open(const Dictionary &p_params) {
- LSP_CLIENT;
- LSP::TextDocumentItem document;
- document.load(p_params["textDocument"]);
- // We keep track of non GDScript files that the client owns, but we are not interested in the content.
- if (document.languageId != LSP::LanguageId::GDSCRIPT) {
- document.text = "";
- }
- String path = get_workspace()->get_file_path(document.uri);
- /// An open notification must not be sent more than once without a corresponding close notification send before.
- ERR_FAIL_COND_MSG(client->managed_files.has(path), "LSP: Client is opening already opened file.");
- client->managed_files[path] = document;
- client->parse_script(path);
- }
- void GDScriptLanguageProtocol::lsp_did_change(const Dictionary &p_params) {
- LSP_CLIENT;
- LSP::TextDocumentIdentifier identifier;
- identifier.load(p_params["textDocument"]);
- String path = get_workspace()->get_file_path(identifier.uri);
- LSP::TextDocumentItem *document = client->managed_files.getptr(path);
- /// Before a client can change a text document it must claim ownership of its content using the textDocument/didOpen notification.
- ERR_FAIL_COND_MSG(document == nullptr, "LSP: Client is changing file without opening it.");
- if (document->languageId != LSP::LanguageId::GDSCRIPT) {
- return;
- }
- Array contentChanges = p_params["contentChanges"];
- if (contentChanges.is_empty()) {
- return;
- }
- // We only support TextDocumentSyncKind::Full. So only the last full text is relevant.
- LSP::TextDocumentContentChangeEvent event;
- event.load(contentChanges.back());
- document->text = event.text;
- client->parse_script(path);
- }
- void GDScriptLanguageProtocol::lsp_did_close(const Dictionary &p_params) {
- LSP_CLIENT;
- LSP::TextDocumentIdentifier identifier;
- identifier.load(p_params["textDocument"]);
- String path = get_workspace()->get_file_path(identifier.uri);
- bool was_opened = client->managed_files.erase(path);
- client->remove_cached_parser(path);
- /// A close notification requires a previous open notification to be sent.
- ERR_FAIL_COND_MSG(!was_opened, "LSP: Client is closing file without opening it.");
- }
- void GDScriptLanguageProtocol::resolve_related_symbols(const LSP::TextDocumentPositionParams &p_doc_pos, List<const LSP::DocumentSymbol *> &r_list) {
- LSP_CLIENT;
- String path = workspace->get_file_path(p_doc_pos.textDocument.uri);
- const ExtendGDScriptParser *parser = get_parse_result(path);
- if (!parser) {
- return;
- }
- String symbol_identifier;
- LSP::Range range;
- symbol_identifier = parser->get_identifier_under_position(p_doc_pos.position, range);
- for (const KeyValue<StringName, ClassMembers> &E : workspace->native_members) {
- if (const LSP::DocumentSymbol *const *symbol = E.value.getptr(symbol_identifier)) {
- r_list.push_back(*symbol);
- }
- }
- for (const KeyValue<String, ExtendGDScriptParser *> &E : client->parse_results) {
- const ExtendGDScriptParser *scr = E.value;
- const ClassMembers &members = scr->get_members();
- if (const LSP::DocumentSymbol *const *symbol = members.getptr(symbol_identifier)) {
- r_list.push_back(*symbol);
- }
- for (const KeyValue<String, ClassMembers> &F : scr->get_inner_classes()) {
- const ClassMembers *inner_class = &F.value;
- if (const LSP::DocumentSymbol *const *symbol = inner_class->getptr(symbol_identifier)) {
- r_list.push_back(*symbol);
- }
- }
- }
- }
- GDScriptLanguageProtocol::LSPeer::~LSPeer() {
- while (!parse_results.is_empty()) {
- String path = parse_results.begin()->key;
- remove_cached_parser(path);
- }
- stale_parsers.clear();
- }
- // clang-format off
- #define SET_DOCUMENT_METHOD(m_method) set_method(_STR(textDocument/m_method), callable_mp(text_document.ptr(), &GDScriptTextDocument::m_method))
- #define SET_COMPLETION_METHOD(m_method) set_method(_STR(completionItem/m_method), callable_mp(text_document.ptr(), &GDScriptTextDocument::m_method))
- #define SET_WORKSPACE_METHOD(m_method) set_method(_STR(workspace/m_method), callable_mp(workspace.ptr(), &GDScriptWorkspace::m_method))
- // clang-format on
- GDScriptLanguageProtocol::GDScriptLanguageProtocol() {
- server.instantiate();
- singleton = this;
- workspace.instantiate();
- text_document.instantiate();
- SET_DOCUMENT_METHOD(didOpen);
- SET_DOCUMENT_METHOD(didClose);
- SET_DOCUMENT_METHOD(didChange);
- SET_DOCUMENT_METHOD(willSaveWaitUntil);
- SET_DOCUMENT_METHOD(didSave);
- SET_DOCUMENT_METHOD(documentSymbol);
- SET_DOCUMENT_METHOD(completion);
- SET_DOCUMENT_METHOD(rename);
- SET_DOCUMENT_METHOD(prepareRename);
- SET_DOCUMENT_METHOD(references);
- SET_DOCUMENT_METHOD(foldingRange);
- SET_DOCUMENT_METHOD(codeLens);
- SET_DOCUMENT_METHOD(documentLink);
- SET_DOCUMENT_METHOD(colorPresentation);
- SET_DOCUMENT_METHOD(hover);
- SET_DOCUMENT_METHOD(definition);
- SET_DOCUMENT_METHOD(declaration);
- SET_DOCUMENT_METHOD(signatureHelp);
- SET_DOCUMENT_METHOD(nativeSymbol); // Custom method.
- SET_COMPLETION_METHOD(resolve);
- set_method("initialize", callable_mp(this, &GDScriptLanguageProtocol::initialize));
- set_method("initialized", callable_mp(this, &GDScriptLanguageProtocol::initialized));
- workspace->root = ProjectSettings::get_singleton()->get_resource_path();
- }
- #undef SET_DOCUMENT_METHOD
- #undef SET_COMPLETION_METHOD
- #undef SET_WORKSPACE_METHOD
- #undef LSP_CLIENT
- #undef LSP_CLIENT_V
|