summaryrefslogtreecommitdiff
path: root/modules/gdscript/language_server/gdscript_extend_parser.cpp
diff options
context:
space:
mode:
authorGeequlim <geequlim@gmail.com>2019-06-24 18:25:12 +0800
committergeequlim <geequlim@gmail.com>2019-08-11 13:30:15 +0800
commit76c9e4ceb73b02bd95ab0512e27229516208dc60 (patch)
treeb145ae3a4a837a109943f654bf433e704b7eac74 /modules/gdscript/language_server/gdscript_extend_parser.cpp
parentfa6d6a329c93224b5454b17603284913da0472a3 (diff)
Improved performance for completion and symbol resolvation.
Improved uri and workspace path translatation on windows platform. The smart resolvation is much faster than builtin's in the server side. The smart resolve mode is still disabled as default as the clients might be slow with a planty of completion items.
Diffstat (limited to 'modules/gdscript/language_server/gdscript_extend_parser.cpp')
-rw-r--r--modules/gdscript/language_server/gdscript_extend_parser.cpp92
1 files changed, 23 insertions, 69 deletions
diff --git a/modules/gdscript/language_server/gdscript_extend_parser.cpp b/modules/gdscript/language_server/gdscript_extend_parser.cpp
index 16af7cb92f..a6fbfd3779 100644
--- a/modules/gdscript/language_server/gdscript_extend_parser.cpp
+++ b/modules/gdscript/language_server/gdscript_extend_parser.cpp
@@ -80,9 +80,18 @@ void ExtendGDScriptParser::update_diagnostics() {
}
void ExtendGDScriptParser::update_symbols() {
+
+ members.clear();
+
const GDScriptParser::Node *head = get_parse_tree();
if (const GDScriptParser::ClassNode *gdclass = dynamic_cast<const GDScriptParser::ClassNode *>(head)) {
+
parse_class_symbol(gdclass, class_symbol);
+
+ for (int i = 0; i < class_symbol.children.size(); i++) {
+ const lsp::DocumentSymbol &symbol = class_symbol.children[i];
+ members.set(symbol.name, &symbol);
+ }
}
}
@@ -448,87 +457,32 @@ const lsp::DocumentSymbol *ExtendGDScriptParser::get_symbol_defined_at_line(int
}
const lsp::DocumentSymbol *ExtendGDScriptParser::get_member_symbol(const String &p_name) const {
- const GDScriptParser::Node *head = get_parse_tree();
-
- if (const GDScriptParser::ClassNode *gdclass = dynamic_cast<const GDScriptParser::ClassNode *>(head)) {
-
- if (const Map<StringName, GDScriptParser::ClassNode::Constant>::Element *E = gdclass->constant_expressions.find(p_name)) {
- return get_symbol_defined_at_line(LINE_NUMBER_TO_INDEX(E->get().expression->line));
- }
- for (int i = 0; i < gdclass->subclasses.size(); i++) {
- const ClassNode *m = gdclass->subclasses[i];
- if (m && m->name == p_name) {
- return get_symbol_defined_at_line(LINE_NUMBER_TO_INDEX(m->line));
- }
- }
-
- for (int i = 0; i < gdclass->variables.size(); i++) {
- const GDScriptParser::ClassNode::Member &m = gdclass->variables[i];
- if (m.identifier == p_name) {
- return get_symbol_defined_at_line(LINE_NUMBER_TO_INDEX(m.line));
- }
- }
-
- for (int i = 0; i < gdclass->functions.size(); i++) {
- const GDScriptParser::FunctionNode *m = gdclass->functions[i];
- if (m->name == p_name) {
- return get_symbol_defined_at_line(LINE_NUMBER_TO_INDEX(m->line));
- }
- }
-
- for (int i = 0; i < gdclass->static_functions.size(); i++) {
- const GDScriptParser::FunctionNode *m = gdclass->static_functions[i];
- if (m->name == p_name) {
- return get_symbol_defined_at_line(LINE_NUMBER_TO_INDEX(m->line));
- }
- }
-
- for (int i = 0; i < gdclass->_signals.size(); i++) {
- const GDScriptParser::ClassNode::Signal &m = gdclass->_signals[i];
- if (m.name == p_name) {
- return get_symbol_defined_at_line(LINE_NUMBER_TO_INDEX(m.line));
- }
- }
+ const lsp::DocumentSymbol *const *ptr = members.getptr(p_name);
+ if (ptr) {
+ return *ptr;
}
return NULL;
}
-void ExtendGDScriptParser::dump_member_symbols(Map<String, const lsp::DocumentSymbol *> &r_symbols) {
+const Array &ExtendGDScriptParser::get_member_completions() {
- const GDScriptParser::Node *head = get_parse_tree();
- if (const GDScriptParser::ClassNode *gdclass = dynamic_cast<const GDScriptParser::ClassNode *>(head)) {
+ if (member_completions.empty()) {
- for (const Map<StringName, GDScriptParser::ClassNode::Constant>::Element *E = gdclass->constant_expressions.front(); E; E = E->next()) {
- get_symbol_defined_at_line(LINE_NUMBER_TO_INDEX(E->get().expression->line));
- }
+ const String *name = members.next(NULL);
+ while (name) {
- for (int i = 0; i < gdclass->subclasses.size(); i++) {
- const ClassNode *m = gdclass->subclasses[i];
- r_symbols.insert(JOIN_SYMBOLS(path, m->name), get_symbol_defined_at_line(LINE_NUMBER_TO_INDEX(m->line)));
- }
-
- for (int i = 0; i < gdclass->variables.size(); i++) {
- const GDScriptParser::ClassNode::Member &m = gdclass->variables[i];
- r_symbols.insert(JOIN_SYMBOLS(path, m.identifier), get_symbol_defined_at_line(LINE_NUMBER_TO_INDEX(m.line)));
- }
-
- for (int i = 0; i < gdclass->functions.size(); i++) {
- const GDScriptParser::FunctionNode *m = gdclass->functions[i];
- r_symbols.insert(JOIN_SYMBOLS(path, m->name), get_symbol_defined_at_line(LINE_NUMBER_TO_INDEX(m->line)));
- }
-
- for (int i = 0; i < gdclass->static_functions.size(); i++) {
- const GDScriptParser::FunctionNode *m = gdclass->static_functions[i];
- r_symbols.insert(JOIN_SYMBOLS(path, m->name), get_symbol_defined_at_line(LINE_NUMBER_TO_INDEX(m->line)));
- }
+ const lsp::DocumentSymbol *symbol = members.get(*name);
+ lsp::CompletionItem item = symbol->make_completion_item(false);
+ item.data = JOIN_SYMBOLS(path, *name);
+ member_completions.push_back(item.to_json());
- for (int i = 0; i < gdclass->_signals.size(); i++) {
- const GDScriptParser::ClassNode::Signal &m = gdclass->_signals[i];
- r_symbols.insert(JOIN_SYMBOLS(path, m.name), get_symbol_defined_at_line(LINE_NUMBER_TO_INDEX(m.line)));
+ name = members.next(name);
}
}
+
+ return member_completions;
}
Error ExtendGDScriptParser::parse(const String &p_code, const String &p_path) {