gdscript_analyzer.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /**************************************************************************/
  2. /* gdscript_analyzer.h */
  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. #ifndef GDSCRIPT_ANALYZER_H
  31. #define GDSCRIPT_ANALYZER_H
  32. #include "gdscript_cache.h"
  33. #include "gdscript_parser.h"
  34. #include "core/object/object.h"
  35. #include "core/object/ref_counted.h"
  36. #include "core/templates/hash_set.h"
  37. class GDScriptAnalyzer {
  38. GDScriptParser *parser = nullptr;
  39. HashMap<String, Ref<GDScriptParserRef>> depended_parsers;
  40. const GDScriptParser::EnumNode *current_enum = nullptr;
  41. GDScriptParser::LambdaNode *current_lambda = nullptr;
  42. List<GDScriptParser::LambdaNode *> pending_body_resolution_lambdas;
  43. bool static_context = false;
  44. // Tests for detecting invalid overloading of script members
  45. static _FORCE_INLINE_ bool has_member_name_conflict_in_script_class(const StringName &p_name, const GDScriptParser::ClassNode *p_current_class_node, const GDScriptParser::Node *p_member);
  46. static _FORCE_INLINE_ bool has_member_name_conflict_in_native_type(const StringName &p_name, const StringName &p_native_type_string);
  47. Error check_native_member_name_conflict(const StringName &p_member_name, const GDScriptParser::Node *p_member_node, const StringName &p_native_type_string);
  48. Error check_class_member_name_conflict(const GDScriptParser::ClassNode *p_class_node, const StringName &p_member_name, const GDScriptParser::Node *p_member_node);
  49. void get_class_node_current_scope_classes(GDScriptParser::ClassNode *p_node, List<GDScriptParser::ClassNode *> *p_list);
  50. Error resolve_class_inheritance(GDScriptParser::ClassNode *p_class, const GDScriptParser::Node *p_source = nullptr);
  51. Error resolve_class_inheritance(GDScriptParser::ClassNode *p_class, bool p_recursive);
  52. GDScriptParser::DataType resolve_datatype(GDScriptParser::TypeNode *p_type);
  53. void decide_suite_type(GDScriptParser::Node *p_suite, GDScriptParser::Node *p_statement);
  54. void resolve_annotation(GDScriptParser::AnnotationNode *p_annotation);
  55. void resolve_class_member(GDScriptParser::ClassNode *p_class, StringName p_name, const GDScriptParser::Node *p_source = nullptr);
  56. void resolve_class_member(GDScriptParser::ClassNode *p_class, int p_index, const GDScriptParser::Node *p_source = nullptr);
  57. void resolve_class_interface(GDScriptParser::ClassNode *p_class, const GDScriptParser::Node *p_source = nullptr);
  58. void resolve_class_interface(GDScriptParser::ClassNode *p_class, bool p_recursive);
  59. void resolve_class_body(GDScriptParser::ClassNode *p_class, const GDScriptParser::Node *p_source = nullptr);
  60. void resolve_class_body(GDScriptParser::ClassNode *p_class, bool p_recursive);
  61. void resolve_function_signature(GDScriptParser::FunctionNode *p_function, const GDScriptParser::Node *p_source = nullptr, bool p_is_lambda = false);
  62. void resolve_function_body(GDScriptParser::FunctionNode *p_function, bool p_is_lambda = false);
  63. void resolve_node(GDScriptParser::Node *p_node, bool p_is_root = true);
  64. void resolve_suite(GDScriptParser::SuiteNode *p_suite);
  65. void resolve_assignable(GDScriptParser::AssignableNode *p_assignable, const char *p_kind);
  66. void resolve_variable(GDScriptParser::VariableNode *p_variable, bool p_is_local);
  67. void resolve_constant(GDScriptParser::ConstantNode *p_constant, bool p_is_local);
  68. void resolve_parameter(GDScriptParser::ParameterNode *p_parameter);
  69. void resolve_if(GDScriptParser::IfNode *p_if);
  70. void resolve_for(GDScriptParser::ForNode *p_for);
  71. void resolve_while(GDScriptParser::WhileNode *p_while);
  72. void resolve_assert(GDScriptParser::AssertNode *p_assert);
  73. void resolve_match(GDScriptParser::MatchNode *p_match);
  74. void resolve_match_branch(GDScriptParser::MatchBranchNode *p_match_branch, GDScriptParser::ExpressionNode *p_match_test);
  75. void resolve_match_pattern(GDScriptParser::PatternNode *p_match_pattern, GDScriptParser::ExpressionNode *p_match_test);
  76. void resolve_return(GDScriptParser::ReturnNode *p_return);
  77. // Reduction functions.
  78. void reduce_expression(GDScriptParser::ExpressionNode *p_expression, bool p_is_root = false);
  79. void reduce_array(GDScriptParser::ArrayNode *p_array);
  80. void reduce_assignment(GDScriptParser::AssignmentNode *p_assignment);
  81. void reduce_await(GDScriptParser::AwaitNode *p_await);
  82. void reduce_binary_op(GDScriptParser::BinaryOpNode *p_binary_op);
  83. void reduce_call(GDScriptParser::CallNode *p_call, bool p_is_await = false, bool p_is_root = false);
  84. void reduce_cast(GDScriptParser::CastNode *p_cast);
  85. void reduce_dictionary(GDScriptParser::DictionaryNode *p_dictionary);
  86. void reduce_get_node(GDScriptParser::GetNodeNode *p_get_node);
  87. void reduce_identifier(GDScriptParser::IdentifierNode *p_identifier, bool can_be_builtin = false);
  88. void reduce_identifier_from_base(GDScriptParser::IdentifierNode *p_identifier, GDScriptParser::DataType *p_base = nullptr);
  89. void reduce_lambda(GDScriptParser::LambdaNode *p_lambda);
  90. void reduce_literal(GDScriptParser::LiteralNode *p_literal);
  91. void reduce_preload(GDScriptParser::PreloadNode *p_preload);
  92. void reduce_self(GDScriptParser::SelfNode *p_self);
  93. void reduce_subscript(GDScriptParser::SubscriptNode *p_subscript, bool p_can_be_pseudo_type = false);
  94. void reduce_ternary_op(GDScriptParser::TernaryOpNode *p_ternary_op, bool p_is_root = false);
  95. void reduce_type_test(GDScriptParser::TypeTestNode *p_type_test);
  96. void reduce_unary_op(GDScriptParser::UnaryOpNode *p_unary_op);
  97. Variant make_expression_reduced_value(GDScriptParser::ExpressionNode *p_expression, bool &is_reduced);
  98. Variant make_array_reduced_value(GDScriptParser::ArrayNode *p_array, bool &is_reduced);
  99. Variant make_dictionary_reduced_value(GDScriptParser::DictionaryNode *p_dictionary, bool &is_reduced);
  100. Variant make_subscript_reduced_value(GDScriptParser::SubscriptNode *p_subscript, bool &is_reduced);
  101. // Helpers.
  102. Array make_array_from_element_datatype(const GDScriptParser::DataType &p_element_datatype, const GDScriptParser::Node *p_source_node = nullptr);
  103. GDScriptParser::DataType type_from_variant(const Variant &p_value, const GDScriptParser::Node *p_source);
  104. static GDScriptParser::DataType type_from_metatype(const GDScriptParser::DataType &p_meta_type);
  105. GDScriptParser::DataType type_from_property(const PropertyInfo &p_property, bool p_is_arg = false, bool p_is_readonly = false) const;
  106. GDScriptParser::DataType make_global_class_meta_type(const StringName &p_class_name, const GDScriptParser::Node *p_source);
  107. bool get_function_signature(GDScriptParser::Node *p_source, bool p_is_constructor, GDScriptParser::DataType base_type, const StringName &p_function, GDScriptParser::DataType &r_return_type, List<GDScriptParser::DataType> &r_par_types, int &r_default_arg_count, BitField<MethodFlags> &r_method_flags, StringName *r_native_class = nullptr);
  108. bool function_signature_from_info(const MethodInfo &p_info, GDScriptParser::DataType &r_return_type, List<GDScriptParser::DataType> &r_par_types, int &r_default_arg_count, BitField<MethodFlags> &r_method_flags);
  109. void validate_call_arg(const List<GDScriptParser::DataType> &p_par_types, int p_default_args_count, bool p_is_vararg, const GDScriptParser::CallNode *p_call);
  110. void validate_call_arg(const MethodInfo &p_method, const GDScriptParser::CallNode *p_call);
  111. GDScriptParser::DataType get_operation_type(Variant::Operator p_operation, const GDScriptParser::DataType &p_a, const GDScriptParser::DataType &p_b, bool &r_valid, const GDScriptParser::Node *p_source);
  112. GDScriptParser::DataType get_operation_type(Variant::Operator p_operation, const GDScriptParser::DataType &p_a, bool &r_valid, const GDScriptParser::Node *p_source);
  113. void update_const_expression_builtin_type(GDScriptParser::ExpressionNode *p_expression, const GDScriptParser::DataType &p_type, const char *p_usage, bool p_is_cast = false);
  114. void update_array_literal_element_type(GDScriptParser::ArrayNode *p_array, const GDScriptParser::DataType &p_element_type);
  115. bool is_type_compatible(const GDScriptParser::DataType &p_target, const GDScriptParser::DataType &p_source, bool p_allow_implicit_conversion = false, const GDScriptParser::Node *p_source_node = nullptr);
  116. void push_error(const String &p_message, const GDScriptParser::Node *p_origin = nullptr);
  117. void mark_node_unsafe(const GDScriptParser::Node *p_node);
  118. void downgrade_node_type_source(GDScriptParser::Node *p_node);
  119. void mark_lambda_use_self();
  120. void resolve_pending_lambda_bodies();
  121. bool class_exists(const StringName &p_class) const;
  122. Ref<GDScriptParserRef> get_parser_for(const String &p_path);
  123. void reduce_identifier_from_base_set_class(GDScriptParser::IdentifierNode *p_identifier, GDScriptParser::DataType p_identifier_datatype);
  124. #ifdef DEBUG_ENABLED
  125. void is_shadowing(GDScriptParser::IdentifierNode *p_identifier, const String &p_context, const bool p_in_local_scope);
  126. #endif
  127. public:
  128. Error resolve_inheritance();
  129. Error resolve_interface();
  130. Error resolve_body();
  131. Error resolve_dependencies();
  132. Error analyze();
  133. Variant make_variable_default_value(GDScriptParser::VariableNode *p_variable);
  134. const HashMap<String, Ref<GDScriptParserRef>> &get_depended_parsers();
  135. GDScriptAnalyzer(GDScriptParser *p_parser);
  136. };
  137. #endif // GDSCRIPT_ANALYZER_H