| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  gdscript_workspace.h                                                  */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         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.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2019-06-14 22:38:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef GDSCRIPT_WORKSPACE_H
 | 
					
						
							|  |  |  | #define GDSCRIPT_WORKSPACE_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "../gdscript_parser.h"
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/variant/variant.h"
 | 
					
						
							| 
									
										
										
										
											2020-02-24 21:01:27 -03:00
										 |  |  | #include "editor/editor_file_system.h"
 | 
					
						
							| 
									
										
										
										
											2019-06-14 22:38:54 +08:00
										 |  |  | #include "gdscript_extend_parser.h"
 | 
					
						
							| 
									
										
										
										
											2022-07-23 23:41:51 +02:00
										 |  |  | #include "godot_lsp.h"
 | 
					
						
							| 
									
										
										
										
											2019-06-14 22:38:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-04 18:03:15 +02:00
										 |  |  | class GDScriptWorkspace : public RefCounted { | 
					
						
							|  |  |  | 	GDCLASS(GDScriptWorkspace, RefCounted); | 
					
						
							| 
									
										
										
										
											2019-06-14 22:38:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-24 21:01:27 -03:00
										 |  |  | private: | 
					
						
							|  |  |  | 	void _get_owners(EditorFileSystemDirectory *efsd, String p_path, List<String> &owners); | 
					
						
							| 
									
										
										
										
											2020-02-29 15:53:30 -03:00
										 |  |  | 	Node *_get_owner_scene_node(String p_path); | 
					
						
							| 
									
										
										
										
											2020-02-24 21:01:27 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-14 22:38:54 +08:00
										 |  |  | protected: | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 	void remove_cache_parser(const String &p_path); | 
					
						
							| 
									
										
										
										
											2019-06-23 01:48:31 +08:00
										 |  |  | 	bool initialized = false; | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 	HashMap<StringName, lsp::DocumentSymbol> native_symbols; | 
					
						
							| 
									
										
										
										
											2019-06-23 01:48:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	const lsp::DocumentSymbol *get_native_symbol(const String &p_class, const String &p_member = "") const; | 
					
						
							|  |  |  | 	const lsp::DocumentSymbol *get_script_symbol(const String &p_path) const; | 
					
						
							| 
									
										
										
										
											2021-04-27 12:53:55 -04:00
										 |  |  | 	const lsp::DocumentSymbol *get_parameter_symbol(const lsp::DocumentSymbol *p_parent, const String &symbol_identifier); | 
					
						
							|  |  |  | 	const lsp::DocumentSymbol *get_local_symbol(const ExtendGDScriptParser *p_parser, const String &p_symbol_identifier); | 
					
						
							| 
									
										
										
										
											2019-06-23 01:48:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void reload_all_workspace_scripts(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ExtendGDScriptParser *get_parse_successed_script(const String &p_path); | 
					
						
							|  |  |  | 	ExtendGDScriptParser *get_parse_result(const String &p_path); | 
					
						
							| 
									
										
										
										
											2019-06-14 22:38:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-23 21:10:28 +08:00
										 |  |  | 	void list_script_files(const String &p_root_dir, List<String> &r_files); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-11 15:51:31 -04:00
										 |  |  | 	void apply_new_signal(Object *obj, String function, PackedStringArray args); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-14 22:38:54 +08:00
										 |  |  | public: | 
					
						
							|  |  |  | 	String root; | 
					
						
							| 
									
										
										
										
											2019-06-24 18:25:12 +08:00
										 |  |  | 	String root_uri; | 
					
						
							| 
									
										
										
										
											2019-06-23 21:10:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 	HashMap<String, ExtendGDScriptParser *> scripts; | 
					
						
							|  |  |  | 	HashMap<String, ExtendGDScriptParser *> parse_results; | 
					
						
							| 
									
										
										
										
											2019-06-24 18:25:12 +08:00
										 |  |  | 	HashMap<StringName, ClassMembers> native_members; | 
					
						
							| 
									
										
										
										
											2019-06-14 22:38:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	Array symbol(const Dictionary &p_params); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2019-06-23 01:48:31 +08:00
										 |  |  | 	Error initialize(); | 
					
						
							| 
									
										
										
										
											2019-06-23 21:10:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-14 22:38:54 +08:00
										 |  |  | 	Error parse_script(const String &p_path, const String &p_content); | 
					
						
							| 
									
										
										
										
											2019-06-23 01:48:31 +08:00
										 |  |  | 	Error parse_local_script(const String &p_path); | 
					
						
							| 
									
										
										
										
											2019-06-23 21:10:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-14 22:38:54 +08:00
										 |  |  | 	String get_file_path(const String &p_uri) const; | 
					
						
							|  |  |  | 	String get_file_uri(const String &p_path) const; | 
					
						
							| 
									
										
										
										
											2019-06-23 21:10:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-14 22:38:54 +08:00
										 |  |  | 	void publish_diagnostics(const String &p_path); | 
					
						
							| 
									
										
										
										
											2022-03-26 16:48:43 +01:00
										 |  |  | 	void completion(const lsp::CompletionParams &p_params, List<ScriptLanguage::CodeCompletionOption> *r_options); | 
					
						
							| 
									
										
										
										
											2019-06-23 21:10:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-26 12:15:00 -04:00
										 |  |  | 	const lsp::DocumentSymbol *resolve_symbol(const lsp::TextDocumentPositionParams &p_doc_pos, const String &p_symbol_name = "", bool p_func_required = false); | 
					
						
							| 
									
										
										
										
											2019-06-23 21:10:28 +08:00
										 |  |  | 	void resolve_related_symbols(const lsp::TextDocumentPositionParams &p_doc_pos, List<const lsp::DocumentSymbol *> &r_list); | 
					
						
							| 
									
										
										
										
											2019-10-04 20:53:40 +08:00
										 |  |  | 	const lsp::DocumentSymbol *resolve_native_symbol(const lsp::NativeSymbolInspectParams &p_params); | 
					
						
							| 
									
										
										
										
											2019-10-03 16:26:55 +08:00
										 |  |  | 	void resolve_document_links(const String &p_uri, List<lsp::DocumentLink> &r_list); | 
					
						
							| 
									
										
										
										
											2019-06-26 20:21:42 +08:00
										 |  |  | 	Dictionary generate_script_api(const String &p_path); | 
					
						
							| 
									
										
										
										
											2020-01-09 00:44:32 +08:00
										 |  |  | 	Error resolve_signature(const lsp::TextDocumentPositionParams &p_doc_pos, lsp::SignatureHelp &r_signature); | 
					
						
							| 
									
										
										
										
											2021-04-10 15:10:29 -04:00
										 |  |  | 	void did_delete_files(const Dictionary &p_params); | 
					
						
							| 
									
										
										
										
											2021-04-27 12:53:55 -04:00
										 |  |  | 	Dictionary rename(const lsp::TextDocumentPositionParams &p_doc_pos, const String &new_name); | 
					
						
							| 
									
										
										
										
											2019-06-26 20:21:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-14 22:38:54 +08:00
										 |  |  | 	GDScriptWorkspace(); | 
					
						
							|  |  |  | 	~GDScriptWorkspace(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-23 23:41:51 +02:00
										 |  |  | #endif // GDSCRIPT_WORKSPACE_H
 |