summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorItamar <itamar8910@gmail.com>2021-01-23 16:54:00 +0200
committerAndreas Kling <kling@serenityos.org>2021-01-27 21:10:57 +0100
commitc85dad2383816166fc170ad283f7011984a88708 (patch)
tree28f3c9f815f4e124350a4de353cd55dd29bea15c
parentc96b6987c42ed14644560e29ba19c33dc0ae0223 (diff)
downloadserenity-c85dad2383816166fc170ad283f7011984a88708.zip
HackStudio: Add parser-based c++ autocomplete engine
-rw-r--r--Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.cpp218
-rw-r--r--Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.h66
2 files changed, 284 insertions, 0 deletions
diff --git a/Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.cpp b/Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.cpp
new file mode 100644
index 0000000000..1696e569b2
--- /dev/null
+++ b/Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.cpp
@@ -0,0 +1,218 @@
+/*
+ * Copyright (c) 2021, Itamar S. <itamar8910@gmail.com>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this
+ * list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
+ * this list of conditions and the following disclaimer in the documentation
+ * and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "ParserAutoComplete.h"
+#include "AK/Assertions.h"
+#include "LibCpp/AST.h"
+#include "LibCpp/Lexer.h"
+#include <AK/HashTable.h>
+#include <LibCpp/Parser.h>
+
+// #define DEBUG_AUTOCOMPLETE
+
+#ifdef AUTOCOMPLETE_VERBOSE
+# define VERBOSE(fmt, ...) dbgln(fmt, ##__VA_ARGS__)
+#else
+# define VERBOSE(fmt, ...) \
+ do { \
+ } while (0)
+#endif
+
+namespace LanguageServers::Cpp {
+
+ParserAutoComplete::ParserAutoComplete(const String& code)
+ : m_code(code)
+ , m_parser(code.view())
+{
+
+ auto root = m_parser.parse();
+#ifdef DEBUG_AUTOCOMPLETE
+ root->dump(0);
+#endif
+}
+
+Vector<GUI::AutocompleteProvider::Entry> ParserAutoComplete::get_suggestions(const GUI::TextPosition& autocomplete_position) const
+{
+ ASSERT(autocomplete_position.column() > 0);
+ Cpp::Position position { autocomplete_position.line(), autocomplete_position.column() - 1 };
+
+ VERBOSE("ParserAutoComplete position {}:{}", position.line, position.column);
+
+ auto node = m_parser.node_at(position);
+ if (!node) {
+ VERBOSE("no node at position {}:{}", position.line, position.column);
+ return {};
+ }
+
+ if (!node->is_identifier()) {
+ if (is_empty_property(*node, position)) {
+ ASSERT(node->is_member_expression());
+ return autocomplete_property((MemberExpression&)(*node), "");
+ }
+ return {};
+ }
+
+ if (is_property(*node)) {
+ return autocomplete_property((MemberExpression&)(*node->parent()), m_parser.text_of_node(*node));
+ }
+
+ return autocomplete_identifier(*node);
+}
+
+Vector<GUI::AutocompleteProvider::Entry> ParserAutoComplete::autocomplete_identifier(const ASTNode& node) const
+{
+ const Cpp::ASTNode* current = &node;
+ NonnullRefPtrVector<Cpp::Declaration> available_declarations;
+ while (current) {
+ available_declarations.append(current->declarations());
+ current = current->parent();
+ }
+ Vector<StringView> available_names;
+ auto add_name = [&available_names](auto& name) {
+ if (name.is_null() || name.is_empty())
+ return;
+ if (!available_names.contains_slow(name))
+ available_names.append(name);
+ };
+ for (auto& decl : available_declarations) {
+ if (decl.start() > node.start())
+ continue;
+
+ if (decl.is_variable_or_parameter_declaration()) {
+ add_name(((Cpp::VariableOrParameterDeclaration&)decl).m_name);
+ }
+ }
+
+ auto partial_text = m_parser.text_of_node(node);
+ Vector<GUI::AutocompleteProvider::Entry> suggestions;
+ for (auto& name : available_names) {
+ if (name.starts_with(partial_text)) {
+ suggestions.append({ name.to_string(), partial_text.length(), GUI::AutocompleteProvider::CompletionKind::Identifier });
+ }
+ }
+ return suggestions;
+}
+
+Vector<GUI::AutocompleteProvider::Entry> ParserAutoComplete::autocomplete_property(const MemberExpression& parent, const StringView partial_text) const
+{
+ auto type = type_of(*parent.m_object);
+ if (type.is_null()) {
+ VERBOSE("Could not infer type of object");
+ return {};
+ }
+
+ VERBOSE("type of object: {}", type);
+
+ Vector<GUI::AutocompleteProvider::Entry> suggestions;
+ for (auto& prop : properties_of_type(type)) {
+ if (prop.name.starts_with(partial_text)) {
+ suggestions.append({ prop.name, partial_text.length(), GUI::AutocompleteProvider::CompletionKind::Identifier });
+ }
+ }
+ return suggestions;
+}
+
+bool ParserAutoComplete::is_property(const ASTNode& node) const
+{
+ if (!node.parent()->is_member_expression())
+ return false;
+
+ auto& parent = (MemberExpression&)(*node.parent());
+ return parent.m_property.ptr() == &node;
+}
+
+bool ParserAutoComplete::is_empty_property(const ASTNode& node, const Position& autocomplete_position) const
+{
+ if (!node.is_member_expression())
+ return false;
+ auto previous_token = m_parser.token_at(autocomplete_position);
+ if (!previous_token.has_value())
+ return false;
+ return previous_token.value().type() == Token::Type::Dot;
+}
+
+String ParserAutoComplete::type_of_property(const Identifier& identifier) const
+{
+ auto& parent = (const MemberExpression&)(*identifier.parent());
+ auto properties = properties_of_type(type_of(*parent.m_object));
+ for (auto& prop : properties) {
+ if (prop.name == identifier.m_name)
+ return prop.type->m_name;
+ }
+ return {};
+}
+
+String ParserAutoComplete::type_of_variable(const Identifier& identifier) const
+{
+ const ASTNode* current = &identifier;
+ while (current) {
+ for (auto& decl : current->declarations()) {
+ if (decl.is_variable_or_parameter_declaration()) {
+ auto& var_or_param = (VariableOrParameterDeclaration&)decl;
+ if (var_or_param.m_name == identifier.m_name) {
+ return var_or_param.m_type->m_name;
+ }
+ }
+ }
+ current = current->parent();
+ }
+ return {};
+}
+
+String ParserAutoComplete::type_of(const Expression& expression) const
+{
+ if (expression.is_member_expression()) {
+ auto& member_expression = (const MemberExpression&)expression;
+ return type_of_property(*member_expression.m_property);
+ }
+ if (!expression.is_identifier()) {
+ ASSERT_NOT_REACHED(); // TODO
+ }
+
+ auto& identifier = (const Identifier&)expression;
+
+ if (is_property(identifier))
+ return type_of_property(identifier);
+
+ return type_of_variable(identifier);
+}
+
+Vector<ParserAutoComplete::PropertyInfo> ParserAutoComplete::properties_of_type(const String& type) const
+{
+ Vector<PropertyInfo> properties;
+ for (auto& decl : m_parser.root_node()->declarations()) {
+ if (!decl.is_struct_or_class())
+ continue;
+ auto& struct_or_class = (StructOrClassDeclaration&)decl;
+ if (struct_or_class.m_name != type)
+ continue;
+ for (auto& member : struct_or_class.m_members) {
+ properties.append({ member.m_name, member.m_type });
+ }
+ }
+ return properties;
+}
+}
diff --git a/Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.h b/Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.h
new file mode 100644
index 0000000000..ea56476104
--- /dev/null
+++ b/Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.h
@@ -0,0 +1,66 @@
+/*
+ * Copyright (c) 2021, Itamar S. <itamar8910@gmail.com>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this
+ * list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
+ * this list of conditions and the following disclaimer in the documentation
+ * and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#pragma once
+
+#include "LibCpp/AST.h"
+#include <AK/String.h>
+#include <AK/Vector.h>
+#include <DevTools/HackStudio/AutoCompleteResponse.h>
+#include <LibCpp/Parser.h>
+#include <LibGUI/TextPosition.h>
+
+namespace LanguageServers::Cpp {
+
+using namespace ::Cpp;
+
+class ParserAutoComplete {
+public:
+ ParserAutoComplete(const String& code);
+
+ Vector<GUI::AutocompleteProvider::Entry> get_suggestions(const GUI::TextPosition& autocomplete_position) const;
+
+private:
+ Vector<GUI::AutocompleteProvider::Entry> autocomplete_property(const MemberExpression&, const StringView partial_text) const;
+ Vector<GUI::AutocompleteProvider::Entry> autocomplete_identifier(const ASTNode&) const;
+ String type_of(const Expression&) const;
+ String type_of_property(const Identifier&) const;
+ String type_of_variable(const Identifier&) const;
+ bool is_property(const ASTNode&) const;
+ bool is_empty_property(const ASTNode&, const Position& autocomplete_position) const;
+
+ struct PropertyInfo {
+ StringView name;
+ RefPtr<Type> type;
+ };
+ Vector<PropertyInfo> properties_of_type(const String& type) const;
+
+private:
+ String m_code;
+ Cpp::Parser m_parser;
+};
+
+}