2014-02-10 01:10:30 +00:00
/*************************************************************************/
/* editor_file_system.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
2017-08-27 12:16:55 +00:00
/* https://godotengine.org */
2014-02-10 01:10:30 +00:00
/*************************************************************************/
2022-01-03 20:27:34 +00:00
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
2014-02-10 01:10:30 +00:00
/* */
/* 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. */
/*************************************************************************/
2018-01-04 23:50:27 +00:00
2014-02-10 01:10:30 +00:00
# include "editor_file_system.h"
2017-01-16 07:04:19 +00:00
2020-11-07 22:33:38 +00:00
# include "core/config/project_settings.h"
2021-08-20 18:32:56 +00:00
# include "core/extension/native_extension_manager.h"
2021-06-11 12:51:48 +00:00
# include "core/io/file_access.h"
2019-02-12 12:30:56 +00:00
# include "core/io/resource_importer.h"
2018-09-11 16:13:45 +00:00
# include "core/io/resource_loader.h"
# include "core/io/resource_saver.h"
# include "core/os/os.h"
2020-11-07 22:33:38 +00:00
# include "core/variant/variant_parser.h"
2022-02-12 01:46:22 +00:00
# include "editor/editor_node.h"
# include "editor/editor_resource_preview.h"
# include "editor/editor_settings.h"
2014-02-10 01:10:30 +00:00
2020-04-01 23:20:12 +00:00
EditorFileSystem * EditorFileSystem : : singleton = nullptr ;
2019-02-26 21:43:37 +00:00
//the name is the version, to keep compatibility with different versions of Godot
2021-07-23 19:01:18 +00:00
# define CACHE_FILE_NAME "filesystem_cache7"
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
void EditorFileSystemDirectory : : sort_files ( ) {
files . sort_custom < FileInfoSort > ( ) ;
}
2017-03-05 15:44:50 +00:00
int EditorFileSystemDirectory : : find_file_index ( const String & p_file ) const {
for ( int i = 0 ; i < files . size ( ) ; i + + ) {
2020-05-14 14:41:43 +00:00
if ( files [ i ] - > file = = p_file ) {
2016-01-05 13:36:24 +00:00
return i ;
2020-05-14 14:41:43 +00:00
}
2016-01-05 13:36:24 +00:00
}
return - 1 ;
}
2020-05-14 12:29:06 +00:00
2017-03-05 15:44:50 +00:00
int EditorFileSystemDirectory : : find_dir_index ( const String & p_dir ) const {
for ( int i = 0 ; i < subdirs . size ( ) ; i + + ) {
2020-05-14 14:41:43 +00:00
if ( subdirs [ i ] - > name = = p_dir ) {
2016-01-05 13:36:24 +00:00
return i ;
2020-05-14 14:41:43 +00:00
}
2016-01-05 13:36:24 +00:00
}
return - 1 ;
}
2021-02-27 20:43:26 +00:00
void EditorFileSystemDirectory : : force_update ( ) {
// We set modified_time to 0 to force `EditorFileSystem::_scan_fs_changes` to search changes in the directory
modified_time = 0 ;
}
2014-02-10 01:10:30 +00:00
int EditorFileSystemDirectory : : get_subdir_count ( ) const {
return subdirs . size ( ) ;
}
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * EditorFileSystemDirectory : : get_subdir ( int p_idx ) {
2020-04-01 23:20:12 +00:00
ERR_FAIL_INDEX_V ( p_idx , subdirs . size ( ) , nullptr ) ;
2014-02-10 01:10:30 +00:00
return subdirs [ p_idx ] ;
}
2017-03-05 15:44:50 +00:00
int EditorFileSystemDirectory : : get_file_count ( ) const {
2014-02-10 01:10:30 +00:00
return files . size ( ) ;
}
2017-03-05 15:44:50 +00:00
String EditorFileSystemDirectory : : get_file ( int p_idx ) const {
ERR_FAIL_INDEX_V ( p_idx , files . size ( ) , " " ) ;
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
return files [ p_idx ] - > file ;
2014-02-10 01:10:30 +00:00
}
String EditorFileSystemDirectory : : get_path ( ) const {
String p ;
2017-03-05 15:44:50 +00:00
const EditorFileSystemDirectory * d = this ;
while ( d - > parent ) {
2019-06-16 12:31:57 +00:00
p = d - > name . plus_file ( p ) ;
2017-03-05 15:44:50 +00:00
d = d - > parent ;
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
return " res:// " + p ;
2014-02-10 01:10:30 +00:00
}
String EditorFileSystemDirectory : : get_file_path ( int p_idx ) const {
String file = get_file ( p_idx ) ;
2017-03-05 15:44:50 +00:00
const EditorFileSystemDirectory * d = this ;
while ( d - > parent ) {
2019-06-16 12:31:57 +00:00
file = d - > name . plus_file ( file ) ;
2017-03-05 15:44:50 +00:00
d = d - > parent ;
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
return " res:// " + file ;
2014-02-10 01:10:30 +00:00
}
2015-08-23 23:15:56 +00:00
Vector < String > EditorFileSystemDirectory : : get_file_deps ( int p_idx ) const {
2017-03-05 15:44:50 +00:00
ERR_FAIL_INDEX_V ( p_idx , files . size ( ) , Vector < String > ( ) ) ;
2021-07-23 19:01:18 +00:00
Vector < String > deps ;
for ( int i = 0 ; i < files [ p_idx ] - > deps . size ( ) ; i + + ) {
String dep = files [ p_idx ] - > deps [ i ] ;
int sep_idx = dep . find ( " :: " ) ; //may contain type information, unwanted
if ( sep_idx ! = - 1 ) {
dep = dep . substr ( 0 , sep_idx ) ;
}
ResourceUID : : ID uid = ResourceUID : : get_singleton ( ) - > text_to_id ( dep ) ;
if ( uid ! = ResourceUID : : INVALID_ID ) {
Fix various typos
Follow-up typos found via `codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,fave,findn,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint`
2021-07-25 11:18:25 +00:00
//return proper dependency resource from uid
2021-07-23 19:01:18 +00:00
if ( ResourceUID : : get_singleton ( ) - > has_id ( uid ) ) {
dep = ResourceUID : : get_singleton ( ) - > get_id_path ( uid ) ;
} else {
continue ;
}
}
deps . push_back ( dep ) ;
}
return deps ;
2015-08-23 23:15:56 +00:00
}
2016-05-27 17:18:40 +00:00
2017-08-29 23:17:34 +00:00
bool EditorFileSystemDirectory : : get_file_import_is_valid ( int p_idx ) const {
ERR_FAIL_INDEX_V ( p_idx , files . size ( ) , false ) ;
return files [ p_idx ] - > import_valid ;
}
2020-10-22 21:38:41 +00:00
uint64_t EditorFileSystemDirectory : : get_file_modified_time ( int p_idx ) const {
ERR_FAIL_INDEX_V ( p_idx , files . size ( ) , 0 ) ;
return files [ p_idx ] - > modified_time ;
}
2018-07-15 22:29:00 +00:00
String EditorFileSystemDirectory : : get_file_script_class_name ( int p_idx ) const {
return files [ p_idx ] - > script_class_name ;
}
String EditorFileSystemDirectory : : get_file_script_class_extends ( int p_idx ) const {
return files [ p_idx ] - > script_class_extends ;
}
2018-07-29 03:36:43 +00:00
String EditorFileSystemDirectory : : get_file_script_class_icon_path ( int p_idx ) const {
return files [ p_idx ] - > script_class_icon_path ;
}
2015-08-23 23:15:56 +00:00
StringName EditorFileSystemDirectory : : get_file_type ( int p_idx ) const {
2017-03-05 15:44:50 +00:00
ERR_FAIL_INDEX_V ( p_idx , files . size ( ) , " " ) ;
2016-01-05 13:36:24 +00:00
return files [ p_idx ] - > type ;
2014-02-10 01:10:30 +00:00
}
String EditorFileSystemDirectory : : get_name ( ) {
return name ;
}
EditorFileSystemDirectory * EditorFileSystemDirectory : : get_parent ( ) {
return parent ;
}
void EditorFileSystemDirectory : : _bind_methods ( ) {
2017-03-05 15:44:50 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_subdir_count " ) , & EditorFileSystemDirectory : : get_subdir_count ) ;
2017-08-09 11:19:41 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_subdir " , " idx " ) , & EditorFileSystemDirectory : : get_subdir ) ;
2017-03-05 15:44:50 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_file_count " ) , & EditorFileSystemDirectory : : get_file_count ) ;
ClassDB : : bind_method ( D_METHOD ( " get_file " , " idx " ) , & EditorFileSystemDirectory : : get_file ) ;
ClassDB : : bind_method ( D_METHOD ( " get_file_path " , " idx " ) , & EditorFileSystemDirectory : : get_file_path ) ;
ClassDB : : bind_method ( D_METHOD ( " get_file_type " , " idx " ) , & EditorFileSystemDirectory : : get_file_type ) ;
2018-07-15 22:29:00 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_file_script_class_name " , " idx " ) , & EditorFileSystemDirectory : : get_file_script_class_name ) ;
ClassDB : : bind_method ( D_METHOD ( " get_file_script_class_extends " , " idx " ) , & EditorFileSystemDirectory : : get_file_script_class_extends ) ;
2017-08-29 23:17:34 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_file_import_is_valid " , " idx " ) , & EditorFileSystemDirectory : : get_file_import_is_valid ) ;
2017-03-05 15:44:50 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_name " ) , & EditorFileSystemDirectory : : get_name ) ;
ClassDB : : bind_method ( D_METHOD ( " get_path " ) , & EditorFileSystemDirectory : : get_path ) ;
2017-08-09 11:19:41 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_parent " ) , & EditorFileSystemDirectory : : get_parent ) ;
2017-03-05 15:44:50 +00:00
ClassDB : : bind_method ( D_METHOD ( " find_file_index " , " name " ) , & EditorFileSystemDirectory : : find_file_index ) ;
ClassDB : : bind_method ( D_METHOD ( " find_dir_index " , " name " ) , & EditorFileSystemDirectory : : find_dir_index ) ;
2014-02-10 01:10:30 +00:00
}
EditorFileSystemDirectory : : EditorFileSystemDirectory ( ) {
2017-03-05 15:44:50 +00:00
modified_time = 0 ;
2020-04-01 23:20:12 +00:00
parent = nullptr ;
2014-02-10 01:10:30 +00:00
}
EditorFileSystemDirectory : : ~ EditorFileSystemDirectory ( ) {
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < files . size ( ) ; i + + ) {
2016-01-05 13:36:24 +00:00
memdelete ( files [ i ] ) ;
}
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < subdirs . size ( ) ; i + + ) {
2014-02-10 01:10:30 +00:00
memdelete ( subdirs [ i ] ) ;
}
}
2016-01-05 13:36:24 +00:00
void EditorFileSystem : : _scan_filesystem ( ) {
ERR_FAIL_COND ( ! scanning | | new_filesystem ) ;
2014-02-10 01:10:30 +00:00
//read .fscache
String cpath ;
sources_changed . clear ( ) ;
2016-01-05 13:36:24 +00:00
file_cache . clear ( ) ;
2014-02-10 01:10:30 +00:00
2017-07-19 20:00:46 +00:00
String project = ProjectSettings : : get_singleton ( ) - > get_resource_path ( ) ;
2015-06-06 12:44:38 +00:00
2019-02-26 21:43:37 +00:00
String fscache = EditorSettings : : get_singleton ( ) - > get_project_settings_dir ( ) . plus_file ( CACHE_FILE_NAME ) ;
2022-03-23 09:08:58 +00:00
Ref < FileAccess > f = FileAccess : : open ( fscache , FileAccess : : READ ) ;
2014-02-10 01:10:30 +00:00
2019-02-26 21:43:37 +00:00
bool first = true ;
2022-03-23 09:08:58 +00:00
if ( f . is_valid ( ) ) {
2014-02-10 01:10:30 +00:00
//read the disk cache
2017-03-05 15:44:50 +00:00
while ( ! f - > eof_reached ( ) ) {
2014-02-10 01:10:30 +00:00
String l = f - > get_line ( ) . strip_edges ( ) ;
2019-02-26 21:43:37 +00:00
if ( first ) {
if ( first_scan ) {
// only use this on first scan, afterwards it gets ignored
// this is so on first reimport we synchronize versions, then
2019-05-19 10:34:40 +00:00
// we don't care until editor restart. This is for usability mainly so
2019-02-26 21:43:37 +00:00
// your workflow is not killed after changing a setting by forceful reimporting
// everything there is.
filesystem_settings_version_for_import = l . strip_edges ( ) ;
if ( filesystem_settings_version_for_import ! = ResourceFormatImporter : : get_singleton ( ) - > get_import_settings_hash ( ) ) {
revalidate_import_files = true ;
}
}
first = false ;
continue ;
}
2021-12-09 09:42:46 +00:00
if ( l . is_empty ( ) ) {
2014-02-10 01:10:30 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2014-02-10 01:10:30 +00:00
if ( l . begins_with ( " :: " ) ) {
Vector < String > split = l . split ( " :: " ) ;
2017-03-05 15:44:50 +00:00
ERR_CONTINUE ( split . size ( ) ! = 3 ) ;
2014-02-10 01:10:30 +00:00
String name = split [ 1 ] ;
2017-03-05 15:44:50 +00:00
cpath = name ;
2014-02-10 01:10:30 +00:00
} else {
Vector < String > split = l . split ( " :: " ) ;
2021-07-23 19:01:18 +00:00
ERR_CONTINUE ( split . size ( ) ! = 9 ) ;
2014-02-10 01:10:30 +00:00
String name = split [ 0 ] ;
String file ;
2017-03-05 15:44:50 +00:00
file = name ;
name = cpath . plus_file ( name ) ;
2014-02-10 01:10:30 +00:00
FileCache fc ;
2017-03-05 15:44:50 +00:00
fc . type = split [ 1 ] ;
2021-07-23 19:01:18 +00:00
fc . uid = split [ 2 ] . to_int ( ) ;
fc . modification_time = split [ 3 ] . to_int ( ) ;
fc . import_modification_time = split [ 4 ] . to_int ( ) ;
fc . import_valid = split [ 5 ] . to_int ( ) ! = 0 ;
fc . import_group_file = split [ 6 ] . strip_edges ( ) ;
fc . script_class_name = split [ 7 ] . get_slice ( " <> " , 0 ) ;
fc . script_class_extends = split [ 7 ] . get_slice ( " <> " , 1 ) ;
fc . script_class_icon_path = split [ 7 ] . get_slice ( " <> " , 2 ) ;
String deps = split [ 8 ] . strip_edges ( ) ;
2015-08-23 23:15:56 +00:00
if ( deps . length ( ) ) {
Vector < String > dp = deps . split ( " <> " ) ;
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < dp . size ( ) ; i + + ) {
String path = dp [ i ] ;
2017-02-01 12:45:45 +00:00
fc . deps . push_back ( path ) ;
2015-08-23 23:15:56 +00:00
}
}
2017-03-05 15:44:50 +00:00
file_cache [ name ] = fc ;
2014-02-10 01:10:30 +00:00
}
}
}
2018-07-15 22:29:00 +00:00
String update_cache = EditorSettings : : get_singleton ( ) - > get_project_settings_dir ( ) . plus_file ( " filesystem_update4 " ) ;
2017-08-17 20:02:43 +00:00
if ( FileAccess : : exists ( update_cache ) ) {
{
2022-03-23 09:08:58 +00:00
Ref < FileAccess > f2 = FileAccess : : open ( update_cache , FileAccess : : READ ) ;
2019-02-12 20:10:08 +00:00
String l = f2 - > get_line ( ) . strip_edges ( ) ;
2021-12-09 09:42:46 +00:00
while ( ! l . is_empty ( ) ) {
2017-08-17 20:02:43 +00:00
file_cache . erase ( l ) ; //erase cache for this, so it gets updated
2019-02-12 20:10:08 +00:00
l = f2 - > get_line ( ) . strip_edges ( ) ;
2017-08-17 20:02:43 +00:00
}
}
2022-03-23 09:08:58 +00:00
Ref < DirAccess > d = DirAccess : : create ( DirAccess : : ACCESS_FILESYSTEM ) ;
2017-08-17 20:02:43 +00:00
d - > remove ( update_cache ) ; //bye bye update cache
}
2017-03-05 15:44:50 +00:00
EditorProgressBG scan_progress ( " efs " , " ScanFS " , 1000 ) ;
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
ScanProgress sp ;
2017-03-05 15:44:50 +00:00
sp . low = 0 ;
sp . hi = 1 ;
sp . progress = & scan_progress ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
new_filesystem = memnew ( EditorFileSystemDirectory ) ;
2020-04-01 23:20:12 +00:00
new_filesystem - > parent = nullptr ;
2014-02-10 01:10:30 +00:00
2022-03-23 09:08:58 +00:00
Ref < DirAccess > d = DirAccess : : create ( DirAccess : : ACCESS_RESOURCES ) ;
2016-01-05 13:36:24 +00:00
d - > change_dir ( " res:// " ) ;
2017-03-05 15:44:50 +00:00
_scan_new_dir ( new_filesystem , d , sp ) ;
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
file_cache . clear ( ) ; //clear caches, no longer needed
2014-02-10 01:10:30 +00:00
2019-02-26 21:43:37 +00:00
if ( ! first_scan ) {
//on the first scan this is done from the main thread after re-importing
_save_filesystem_cache ( ) ;
2018-03-10 19:47:10 +00:00
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
scanning = false ;
2014-02-10 01:10:30 +00:00
}
2017-02-01 12:45:45 +00:00
void EditorFileSystem : : _save_filesystem_cache ( ) {
2019-04-19 18:54:33 +00:00
group_file_cache . clear ( ) ;
2019-02-26 21:43:37 +00:00
String fscache = EditorSettings : : get_singleton ( ) - > get_project_settings_dir ( ) . plus_file ( CACHE_FILE_NAME ) ;
2014-02-10 01:10:30 +00:00
2022-03-23 09:08:58 +00:00
Ref < FileAccess > f = FileAccess : : open ( fscache , FileAccess : : WRITE ) ;
ERR_FAIL_COND_MSG ( f . is_null ( ) , " Cannot create file ' " + fscache + " '. Check user write permissions. " ) ;
2019-10-31 14:14:49 +00:00
f - > store_line ( filesystem_settings_version_for_import ) ;
_save_filesystem_cache ( filesystem , f ) ;
2017-02-01 12:45:45 +00:00
}
2014-02-10 01:10:30 +00:00
void EditorFileSystem : : _thread_func ( void * _userdata ) {
2017-03-05 15:44:50 +00:00
EditorFileSystem * sd = ( EditorFileSystem * ) _userdata ;
2016-01-05 13:36:24 +00:00
sd - > _scan_filesystem ( ) ;
}
2017-11-24 16:39:41 +00:00
bool EditorFileSystem : : _test_for_reimport ( const String & p_path , bool p_only_imported_files ) {
2020-05-14 14:41:43 +00:00
if ( ! reimport_on_missing_imported_files & & p_only_imported_files ) {
2017-11-24 16:39:41 +00:00
return false ;
2020-05-14 14:41:43 +00:00
}
2017-11-24 16:39:41 +00:00
2019-02-27 12:36:23 +00:00
if ( ! FileAccess : : exists ( p_path + " .import " ) ) {
2017-11-24 16:39:41 +00:00
return true ;
}
2019-02-26 21:43:37 +00:00
if ( ! ResourceFormatImporter : : get_singleton ( ) - > are_import_settings_valid ( p_path ) ) {
//reimport settings are not valid, reimport
return true ;
}
2019-02-27 12:36:23 +00:00
Error err ;
2022-03-23 09:08:58 +00:00
Ref < FileAccess > f = FileAccess : : open ( p_path + " .import " , FileAccess : : READ , & err ) ;
2019-02-27 12:36:23 +00:00
2022-03-23 09:08:58 +00:00
if ( f . is_null ( ) ) { //no import file, do reimport
2019-02-27 12:36:23 +00:00
return true ;
}
2017-11-24 16:39:41 +00:00
VariantParser : : StreamFile stream ;
stream . f = f ;
String assign ;
Variant value ;
VariantParser : : Tag next_tag ;
int lines = 0 ;
String error_text ;
List < String > to_check ;
2020-12-02 01:40:47 +00:00
String importer_name ;
2018-03-01 08:39:40 +00:00
String source_file = " " ;
String source_md5 = " " ;
2017-12-27 18:21:18 +00:00
Vector < String > dest_files ;
2018-03-01 08:39:40 +00:00
String dest_md5 = " " ;
2020-12-02 01:40:47 +00:00
int version = 0 ;
2021-07-23 19:01:18 +00:00
bool found_uid = false ;
2017-11-24 16:39:41 +00:00
while ( true ) {
assign = Variant ( ) ;
next_tag . fields . clear ( ) ;
next_tag . name = String ( ) ;
2020-04-01 23:20:12 +00:00
err = VariantParser : : parse_tag_assign_eof ( & stream , lines , error_text , next_tag , assign , value , nullptr , true ) ;
2017-11-24 16:39:41 +00:00
if ( err = = ERR_FILE_EOF ) {
break ;
} else if ( err ! = OK ) {
2019-11-06 16:03:04 +00:00
ERR_PRINT ( " ResourceFormatImporter::load - ' " + p_path + " .import: " + itos ( lines ) + " ' error ' " + error_text + " '. " ) ;
2017-11-24 16:39:41 +00:00
return false ; //parse error, try reimport manually (Avoid reimport loop on broken file)
}
2021-12-09 09:42:46 +00:00
if ( ! assign . is_empty ( ) ) {
2017-11-24 16:39:41 +00:00
if ( assign . begins_with ( " path " ) ) {
to_check . push_back ( value ) ;
} else if ( assign = = " files " ) {
Array fa = value ;
for ( int i = 0 ; i < fa . size ( ) ; i + + ) {
to_check . push_back ( fa [ i ] ) ;
}
2020-12-02 01:40:47 +00:00
} else if ( assign = = " importer_version " ) {
version = value ;
} else if ( assign = = " importer " ) {
importer_name = value ;
2021-07-23 19:01:18 +00:00
} else if ( assign = = " uid " ) {
found_uid = true ;
2017-12-27 18:21:18 +00:00
} else if ( ! p_only_imported_files ) {
2018-03-01 08:39:40 +00:00
if ( assign = = " source_file " ) {
2017-12-27 18:21:18 +00:00
source_file = value ;
} else if ( assign = = " dest_files " ) {
dest_files = value ;
}
2017-11-24 16:39:41 +00:00
}
} else if ( next_tag . name ! = " remap " & & next_tag . name ! = " deps " ) {
break ;
}
}
2021-03-22 19:41:47 +00:00
if ( importer_name = = " keep " ) {
return false ; //keep mode, do not reimport
}
2021-07-23 19:01:18 +00:00
if ( ! found_uid ) {
return true ; //UUID not found, old format, reimport.
}
2020-12-02 01:40:47 +00:00
Ref < ResourceImporter > importer = ResourceFormatImporter : : get_singleton ( ) - > get_importer_by_name ( importer_name ) ;
2021-09-10 01:54:18 +00:00
if ( importer . is_null ( ) ) {
return true ; // the importer has possibly changed, try to reimport.
}
2020-12-02 01:40:47 +00:00
if ( importer - > get_format_version ( ) > version ) {
return true ; // version changed, reimport
}
2018-09-13 01:38:39 +00:00
// Read the md5's from a separate file (so the import parameters aren't dependent on the file version
2018-03-01 08:39:40 +00:00
String base_path = ResourceFormatImporter : : get_singleton ( ) - > get_import_base_path ( p_path ) ;
2022-03-23 09:08:58 +00:00
Ref < FileAccess > md5s = FileAccess : : open ( base_path + " .md5 " , FileAccess : : READ , & err ) ;
if ( md5s . is_null ( ) ) { // No md5's stored for this resource
2018-03-01 08:39:40 +00:00
return true ;
}
VariantParser : : StreamFile md5_stream ;
md5_stream . f = md5s ;
while ( true ) {
assign = Variant ( ) ;
next_tag . fields . clear ( ) ;
next_tag . name = String ( ) ;
2020-04-01 23:20:12 +00:00
err = VariantParser : : parse_tag_assign_eof ( & md5_stream , lines , error_text , next_tag , assign , value , nullptr , true ) ;
2018-03-01 08:39:40 +00:00
if ( err = = ERR_FILE_EOF ) {
break ;
} else if ( err ! = OK ) {
2019-11-06 16:03:04 +00:00
ERR_PRINT ( " ResourceFormatImporter::load - ' " + p_path + " .import.md5: " + itos ( lines ) + " ' error ' " + error_text + " '. " ) ;
2018-03-01 08:39:40 +00:00
return false ; // parse error
}
2021-12-09 09:42:46 +00:00
if ( ! assign . is_empty ( ) ) {
2018-03-01 08:39:40 +00:00
if ( ! p_only_imported_files ) {
if ( assign = = " source_md5 " ) {
source_md5 = value ;
} else if ( assign = = " dest_md5 " ) {
dest_md5 = value ;
}
}
}
}
2017-11-24 16:39:41 +00:00
//imported files are gone, reimport
2021-07-24 13:46:25 +00:00
for ( const String & E : to_check ) {
2021-07-16 03:45:57 +00:00
if ( ! FileAccess : : exists ( E ) ) {
2017-11-24 16:39:41 +00:00
return true ;
}
}
//check source md5 matching
if ( ! p_only_imported_files ) {
2021-12-09 09:42:46 +00:00
if ( ! source_file . is_empty ( ) & & source_file ! = p_path ) {
2017-12-27 18:21:18 +00:00
return true ; //file was moved, reimport
}
2021-12-09 09:42:46 +00:00
if ( source_md5 . is_empty ( ) ) {
2017-11-24 16:39:41 +00:00
return true ; //lacks md5, so just reimport
}
String md5 = FileAccess : : get_md5 ( p_path ) ;
if ( md5 ! = source_md5 ) {
return true ;
}
2017-12-27 18:21:18 +00:00
2021-12-09 09:42:46 +00:00
if ( dest_files . size ( ) & & ! dest_md5 . is_empty ( ) ) {
2017-12-27 18:21:18 +00:00
md5 = FileAccess : : get_multiple_md5 ( dest_files ) ;
if ( md5 ! = dest_md5 ) {
return true ;
}
}
2017-11-24 16:39:41 +00:00
}
return false ; //nothing changed
}
2022-03-31 20:00:17 +00:00
bool EditorFileSystem : : _scan_import_support ( Vector < String > reimports ) {
if ( import_support_queries . size ( ) = = 0 ) {
return false ;
}
Map < String , int > import_support_test ;
Vector < bool > import_support_tested ;
import_support_tested . resize ( import_support_queries . size ( ) ) ;
for ( int i = 0 ; i < import_support_queries . size ( ) ; i + + ) {
import_support_tested . write [ i ] = false ;
if ( import_support_queries [ i ] - > is_active ( ) ) {
Vector < String > extensions = import_support_queries [ i ] - > get_file_extensions ( ) ;
for ( int j = 0 ; j < extensions . size ( ) ; j + + ) {
import_support_test . insert ( extensions [ j ] , i ) ;
}
}
}
if ( import_support_test . size ( ) = = 0 ) {
return false ; //well nothing to do
}
for ( int i = 0 ; i < reimports . size ( ) ; i + + ) {
Map < String , int > : : Element * E = import_support_test . find ( reimports [ i ] . get_extension ( ) ) ;
if ( E ) {
import_support_tested . write [ E - > get ( ) ] = true ;
}
}
for ( int i = 0 ; i < import_support_tested . size ( ) ; i + + ) {
if ( import_support_tested [ i ] ) {
if ( import_support_queries . write [ i ] - > query ( ) ) {
return true ;
}
}
}
return false ;
}
2016-01-05 13:36:24 +00:00
bool EditorFileSystem : : _update_scan_actions ( ) {
sources_changed . clear ( ) ;
2017-03-05 15:44:50 +00:00
bool fs_changed = false ;
2016-01-05 13:36:24 +00:00
2017-02-01 12:45:45 +00:00
Vector < String > reimports ;
2018-11-21 00:47:48 +00:00
Vector < String > reloads ;
2017-02-01 12:45:45 +00:00
2021-07-24 13:46:25 +00:00
for ( const ItemAction & ia : scan_actions ) {
2017-03-05 15:44:50 +00:00
switch ( ia . action ) {
2016-01-05 13:36:24 +00:00
case ItemAction : : ACTION_NONE : {
} break ;
case ItemAction : : ACTION_DIR_ADD : {
2017-03-05 15:44:50 +00:00
int idx = 0 ;
for ( int i = 0 ; i < ia . dir - > subdirs . size ( ) ; i + + ) {
2020-04-11 11:17:46 +00:00
if ( ia . new_dir - > name . naturalnocasecmp_to ( ia . dir - > subdirs [ i ] - > name ) < 0 ) {
2016-01-05 13:36:24 +00:00
break ;
2020-05-14 14:41:43 +00:00
}
2016-01-05 13:36:24 +00:00
idx + + ;
}
2017-03-05 15:44:50 +00:00
if ( idx = = ia . dir - > subdirs . size ( ) ) {
2016-01-05 13:36:24 +00:00
ia . dir - > subdirs . push_back ( ia . new_dir ) ;
} else {
2017-03-05 15:44:50 +00:00
ia . dir - > subdirs . insert ( idx , ia . new_dir ) ;
2016-01-05 13:36:24 +00:00
}
2017-03-05 15:44:50 +00:00
fs_changed = true ;
2016-01-05 13:36:24 +00:00
} break ;
case ItemAction : : ACTION_DIR_REMOVE : {
ERR_CONTINUE ( ! ia . dir - > parent ) ;
ia . dir - > parent - > subdirs . erase ( ia . dir ) ;
2017-03-05 15:44:50 +00:00
memdelete ( ia . dir ) ;
fs_changed = true ;
2016-01-05 13:36:24 +00:00
} break ;
case ItemAction : : ACTION_FILE_ADD : {
2017-03-05 15:44:50 +00:00
int idx = 0 ;
for ( int i = 0 ; i < ia . dir - > files . size ( ) ; i + + ) {
2020-04-11 11:17:46 +00:00
if ( ia . new_file - > file . naturalnocasecmp_to ( ia . dir - > files [ i ] - > file ) < 0 ) {
2016-01-05 13:36:24 +00:00
break ;
2020-05-14 14:41:43 +00:00
}
2016-01-05 13:36:24 +00:00
idx + + ;
}
2017-03-05 15:44:50 +00:00
if ( idx = = ia . dir - > files . size ( ) ) {
2016-01-05 13:36:24 +00:00
ia . dir - > files . push_back ( ia . new_file ) ;
} else {
2017-03-05 15:44:50 +00:00
ia . dir - > files . insert ( idx , ia . new_file ) ;
2016-01-05 13:36:24 +00:00
}
2017-03-05 15:44:50 +00:00
fs_changed = true ;
2016-01-05 13:36:24 +00:00
} break ;
case ItemAction : : ACTION_FILE_REMOVE : {
int idx = ia . dir - > find_file_index ( ia . file ) ;
2017-03-05 15:44:50 +00:00
ERR_CONTINUE ( idx = = - 1 ) ;
2017-08-14 23:13:14 +00:00
_delete_internal_files ( ia . dir - > files [ idx ] - > file ) ;
2017-03-05 15:44:50 +00:00
memdelete ( ia . dir - > files [ idx ] ) ;
2021-07-03 22:17:03 +00:00
ia . dir - > files . remove_at ( idx ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
fs_changed = true ;
2016-01-05 13:36:24 +00:00
} break ;
2017-11-24 16:39:41 +00:00
case ItemAction : : ACTION_FILE_TEST_REIMPORT : {
2016-01-05 13:36:24 +00:00
int idx = ia . dir - > find_file_index ( ia . file ) ;
2017-03-05 15:44:50 +00:00
ERR_CONTINUE ( idx = = - 1 ) ;
2016-01-05 13:36:24 +00:00
String full_path = ia . dir - > get_file_path ( idx ) ;
2017-11-24 16:39:41 +00:00
if ( _test_for_reimport ( full_path , false ) ) {
//must reimport
reimports . push_back ( full_path ) ;
2020-07-09 05:25:45 +00:00
reimports . append_array ( _get_dependencies ( full_path ) ) ;
2017-11-24 16:39:41 +00:00
} else {
//must not reimport, all was good
//update modified times, to avoid reimport
ia . dir - > files [ idx ] - > modified_time = FileAccess : : get_modified_time ( full_path ) ;
ia . dir - > files [ idx ] - > import_modified_time = FileAccess : : get_modified_time ( full_path + " .import " ) ;
}
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
fs_changed = true ;
2016-01-05 13:36:24 +00:00
} break ;
2018-11-21 00:47:48 +00:00
case ItemAction : : ACTION_FILE_RELOAD : {
int idx = ia . dir - > find_file_index ( ia . file ) ;
ERR_CONTINUE ( idx = = - 1 ) ;
String full_path = ia . dir - > get_file_path ( idx ) ;
reloads . push_back ( full_path ) ;
} break ;
2016-01-05 13:36:24 +00:00
}
}
2021-08-20 18:32:56 +00:00
if ( _scan_extensions ( ) ) {
//needs editor restart
//extensions also may provide filetypes to be imported, so they must run before importing
2022-03-31 20:00:17 +00:00
if ( EditorNode : : immediate_confirmation_dialog ( TTR ( " Some extensions need the editor to restart to take effect. " ) , first_scan ? TTR ( " Restart " ) : TTR ( " Save & Restart " ) , TTR ( " Continue " ) ) ) {
2021-08-20 18:32:56 +00:00
if ( ! first_scan ) {
EditorNode : : get_singleton ( ) - > save_all_scenes ( ) ;
}
EditorNode : : get_singleton ( ) - > restart_editor ( ) ;
//do not import
return true ;
}
}
2022-03-31 20:00:17 +00:00
2017-02-01 12:45:45 +00:00
if ( reimports . size ( ) ) {
2022-03-31 20:00:17 +00:00
if ( _scan_import_support ( reimports ) ) {
return true ;
}
2017-02-01 12:45:45 +00:00
reimport_files ( reimports ) ;
2021-07-23 19:01:18 +00:00
} else {
//reimport files will update the uid cache file so if nothing was reimported, update it manually
ResourceUID : : get_singleton ( ) - > update_cache ( ) ;
2017-02-01 12:45:45 +00:00
}
2018-11-21 00:47:48 +00:00
2019-02-26 21:43:37 +00:00
if ( first_scan ) {
//only on first scan this is valid and updated, then settings changed.
revalidate_import_files = false ;
filesystem_settings_version_for_import = ResourceFormatImporter : : get_singleton ( ) - > get_import_settings_hash ( ) ;
_save_filesystem_cache ( ) ;
}
2018-11-21 00:47:48 +00:00
if ( reloads . size ( ) ) {
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " resources_reload " ) , reloads ) ;
2018-11-21 00:47:48 +00:00
}
2016-01-05 13:36:24 +00:00
scan_actions . clear ( ) ;
return fs_changed ;
2014-02-10 01:10:30 +00:00
}
void EditorFileSystem : : scan ( ) {
2020-05-14 14:41:43 +00:00
if ( false /*&& bool(Globals::get_singleton()->get("debug/disable_scan"))*/ ) {
2017-03-05 15:44:50 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2014-02-10 01:10:30 +00:00
2021-01-19 12:29:41 +00:00
if ( scanning | | scanning_changes | | thread . is_started ( ) ) {
2014-02-10 01:10:30 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2014-02-10 01:10:30 +00:00
2017-02-01 12:45:45 +00:00
_update_extensions ( ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
abort_scan = false ;
2014-02-10 01:10:30 +00:00
if ( ! use_threads ) {
2017-03-05 15:44:50 +00:00
scanning = true ;
scan_total = 0 ;
2016-01-05 13:36:24 +00:00
_scan_filesystem ( ) ;
2020-05-14 14:41:43 +00:00
if ( filesystem ) {
2014-02-10 01:10:30 +00:00
memdelete ( filesystem ) ;
2020-05-14 14:41:43 +00:00
}
2017-01-14 11:26:56 +00:00
//file_type_cache.clear();
2017-03-05 15:44:50 +00:00
filesystem = new_filesystem ;
2020-04-01 23:20:12 +00:00
new_filesystem = nullptr ;
2016-01-05 13:36:24 +00:00
_update_scan_actions ( ) ;
2017-03-05 15:44:50 +00:00
scanning = false ;
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " filesystem_changed " ) ) ;
emit_signal ( SNAME ( " sources_changed " ) , sources_changed . size ( ) > 0 ) ;
2018-07-15 22:29:00 +00:00
_queue_update_script_classes ( ) ;
2019-02-26 21:43:37 +00:00
first_scan = false ;
2014-02-10 01:10:30 +00:00
} else {
2021-01-19 12:29:41 +00:00
ERR_FAIL_COND ( thread . is_started ( ) ) ;
2014-02-10 01:10:30 +00:00
set_process ( true ) ;
Thread : : Settings s ;
2017-03-05 15:44:50 +00:00
scanning = true ;
scan_total = 0 ;
s . priority = Thread : : PRIORITY_LOW ;
2021-01-19 12:29:41 +00:00
thread . start ( _thread_func , this , s ) ;
2014-02-10 01:10:30 +00:00
//tree->hide();
//progress->show();
}
}
2017-03-05 15:44:50 +00:00
void EditorFileSystem : : ScanProgress : : update ( int p_current , int p_total ) const {
float ratio = low + ( ( hi - low ) / p_total ) * p_current ;
progress - > step ( ratio * 1000 ) ;
EditorFileSystem : : singleton - > scan_total = ratio ;
2016-01-05 13:36:24 +00:00
}
2017-03-05 15:44:50 +00:00
EditorFileSystem : : ScanProgress EditorFileSystem : : ScanProgress : : get_sub ( int p_current , int p_total ) const {
ScanProgress sp = * this ;
float slice = ( sp . hi - sp . low ) / p_total ;
sp . low + = slice * p_current ;
sp . hi = slice ;
2016-01-05 13:36:24 +00:00
return sp ;
2017-02-01 23:41:05 +00:00
}
2022-03-23 09:08:58 +00:00
void EditorFileSystem : : _scan_new_dir ( EditorFileSystemDirectory * p_dir , Ref < DirAccess > & da , const ScanProgress & p_progress ) {
2016-01-05 13:36:24 +00:00
List < String > dirs ;
List < String > files ;
String cd = da - > get_current_dir ( ) ;
p_dir - > modified_time = FileAccess : : get_modified_time ( cd ) ;
da - > list_dir_begin ( ) ;
while ( true ) {
2019-07-25 09:09:57 +00:00
String f = da - > get_next ( ) ;
2021-12-09 09:42:46 +00:00
if ( f . is_empty ( ) ) {
2016-01-05 13:36:24 +00:00
break ;
2020-05-14 14:41:43 +00:00
}
2016-01-05 13:36:24 +00:00
2020-05-14 14:41:43 +00:00
if ( da - > current_is_hidden ( ) ) {
2020-02-10 08:19:10 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2020-02-10 08:19:10 +00:00
2019-07-25 09:09:57 +00:00
if ( da - > current_is_dir ( ) ) {
2020-05-14 14:41:43 +00:00
if ( f . begins_with ( " . " ) ) { // Ignore special and . / ..
2016-01-05 13:36:24 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2016-01-05 13:36:24 +00:00
2021-02-22 05:34:27 +00:00
if ( _should_skip_directory ( cd . plus_file ( f ) ) ) {
2017-08-06 14:43:48 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2016-01-05 13:36:24 +00:00
dirs . push_back ( f ) ;
} else {
files . push_back ( f ) ;
}
}
da - > list_dir_end ( ) ;
2017-05-11 19:07:59 +00:00
dirs . sort_custom < NaturalNoCaseComparator > ( ) ;
files . sort_custom < NaturalNoCaseComparator > ( ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
int total = dirs . size ( ) + files . size ( ) ;
int idx = 0 ;
2016-06-28 11:26:07 +00:00
2017-03-05 15:44:50 +00:00
for ( List < String > : : Element * E = dirs . front ( ) ; E ; E = E - > next ( ) , idx + + ) {
if ( da - > change_dir ( E - > get ( ) ) = = OK ) {
2016-06-28 11:26:07 +00:00
String d = da - > get_current_dir ( ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
if ( d = = cd | | ! d . begins_with ( cd ) ) {
2016-06-28 11:26:07 +00:00
da - > change_dir ( cd ) ; //avoid recursion
} else {
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * efd = memnew ( EditorFileSystemDirectory ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
efd - > parent = p_dir ;
efd - > name = E - > get ( ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
_scan_new_dir ( efd , da , p_progress . get_sub ( idx , total ) ) ;
2016-06-28 11:26:07 +00:00
2019-02-12 20:10:08 +00:00
int idx2 = 0 ;
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_dir - > subdirs . size ( ) ; i + + ) {
2020-04-11 11:17:46 +00:00
if ( efd - > name . naturalnocasecmp_to ( p_dir - > subdirs [ i ] - > name ) < 0 ) {
2016-06-28 11:26:07 +00:00
break ;
2020-05-14 14:41:43 +00:00
}
2019-02-12 20:10:08 +00:00
idx2 + + ;
2016-06-28 11:26:07 +00:00
}
2019-02-12 20:10:08 +00:00
if ( idx2 = = p_dir - > subdirs . size ( ) ) {
2016-06-28 11:26:07 +00:00
p_dir - > subdirs . push_back ( efd ) ;
} else {
2019-02-12 20:10:08 +00:00
p_dir - > subdirs . insert ( idx2 , efd ) ;
2016-06-28 11:26:07 +00:00
}
da - > change_dir ( " .. " ) ;
}
2016-01-05 13:36:24 +00:00
} else {
2019-11-06 16:03:04 +00:00
ERR_PRINT ( " Cannot go into subdir ' " + E - > get ( ) + " '. " ) ;
2016-01-05 13:36:24 +00:00
}
2017-03-05 15:44:50 +00:00
p_progress . update ( idx , total ) ;
2016-01-05 13:36:24 +00:00
}
2017-03-05 15:44:50 +00:00
for ( List < String > : : Element * E = files . front ( ) ; E ; E = E - > next ( ) , idx + + ) {
2017-01-14 03:51:09 +00:00
String ext = E - > get ( ) . get_extension ( ) . to_lower ( ) ;
2017-02-01 12:45:45 +00:00
if ( ! valid_extensions . has ( ext ) ) {
2016-01-05 13:36:24 +00:00
continue ; //invalid
2017-02-01 12:45:45 +00:00
}
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory : : FileInfo * fi = memnew ( EditorFileSystemDirectory : : FileInfo ) ;
fi - > file = E - > get ( ) ;
2016-01-05 13:36:24 +00:00
String path = cd . plus_file ( fi - > file ) ;
FileCache * fc = file_cache . getptr ( path ) ;
uint64_t mt = FileAccess : : get_modified_time ( path ) ;
2017-02-01 12:45:45 +00:00
if ( import_extensions . has ( ext ) ) {
2017-03-05 15:44:50 +00:00
//is imported
uint64_t import_mt = 0 ;
if ( FileAccess : : exists ( path + " .import " ) ) {
import_mt = FileAccess : : get_modified_time ( path + " .import " ) ;
2017-02-01 12:45:45 +00:00
}
2016-01-05 13:36:24 +00:00
2017-11-24 16:39:41 +00:00
if ( fc & & fc - > modification_time = = mt & & fc - > import_modification_time = = import_mt & & ! _test_for_reimport ( path , true ) ) {
2017-03-05 15:44:50 +00:00
fi - > type = fc - > type ;
2021-07-23 19:01:18 +00:00
fi - > uid = fc - > uid ;
2017-08-17 20:02:43 +00:00
fi - > deps = fc - > deps ;
2017-03-05 15:44:50 +00:00
fi - > modified_time = fc - > modification_time ;
fi - > import_modified_time = fc - > import_modification_time ;
2019-02-26 21:43:37 +00:00
2017-08-29 22:50:58 +00:00
fi - > import_valid = fc - > import_valid ;
2018-07-15 22:29:00 +00:00
fi - > script_class_name = fc - > script_class_name ;
2019-04-19 18:54:33 +00:00
fi - > import_group_file = fc - > import_group_file ;
2018-07-15 22:29:00 +00:00
fi - > script_class_extends = fc - > script_class_extends ;
2018-07-29 03:36:43 +00:00
fi - > script_class_icon_path = fc - > script_class_icon_path ;
2018-07-15 22:29:00 +00:00
2019-02-26 21:43:37 +00:00
if ( revalidate_import_files & & ! ResourceFormatImporter : : get_singleton ( ) - > are_import_settings_valid ( path ) ) {
ItemAction ia ;
ia . action = ItemAction : : ACTION_FILE_TEST_REIMPORT ;
ia . dir = p_dir ;
ia . file = E - > get ( ) ;
scan_actions . push_back ( ia ) ;
}
2021-12-09 09:42:46 +00:00
if ( fc - > type . is_empty ( ) ) {
2017-08-15 19:27:15 +00:00
fi - > type = ResourceLoader : : get_resource_type ( path ) ;
2019-04-19 18:54:33 +00:00
fi - > import_group_file = ResourceLoader : : get_import_group_file ( path ) ;
2017-08-15 19:27:15 +00:00
//there is also the chance that file type changed due to reimport, must probably check this somehow here (or kind of note it for next time in another file?)
2017-08-17 20:02:43 +00:00
//note: I think this should not happen any longer..
2017-08-15 19:27:15 +00:00
}
2017-02-01 12:45:45 +00:00
2021-07-23 19:01:18 +00:00
if ( fc - > uid = = ResourceUID : : INVALID_ID ) {
// imported files should always have a UUID, so attempt to fetch it.
fi - > uid = ResourceLoader : : get_resource_uid ( path ) ;
}
2017-02-01 12:45:45 +00:00
} else {
2017-03-05 15:44:50 +00:00
fi - > type = ResourceFormatImporter : : get_singleton ( ) - > get_resource_type ( path ) ;
2021-07-23 19:01:18 +00:00
fi - > uid = ResourceFormatImporter : : get_singleton ( ) - > get_resource_uid ( path ) ;
2019-04-19 18:54:33 +00:00
fi - > import_group_file = ResourceFormatImporter : : get_singleton ( ) - > get_import_group_file ( path ) ;
2018-07-29 03:36:43 +00:00
fi - > script_class_name = _get_global_script_class ( fi - > type , path , & fi - > script_class_extends , & fi - > script_class_icon_path ) ;
2017-03-05 15:44:50 +00:00
fi - > modified_time = 0 ;
fi - > import_modified_time = 0 ;
2017-08-29 22:50:58 +00:00
fi - > import_valid = ResourceLoader : : is_import_valid ( path ) ;
2016-01-05 13:36:24 +00:00
ItemAction ia ;
2017-11-24 16:39:41 +00:00
ia . action = ItemAction : : ACTION_FILE_TEST_REIMPORT ;
2017-03-05 15:44:50 +00:00
ia . dir = p_dir ;
ia . file = E - > get ( ) ;
2016-01-05 13:36:24 +00:00
scan_actions . push_back ( ia ) ;
}
2016-05-27 17:18:40 +00:00
} else {
2017-08-17 20:02:43 +00:00
if ( fc & & fc - > modification_time = = mt ) {
//not imported, so just update type if changed
2017-03-05 15:44:50 +00:00
fi - > type = fc - > type ;
2021-07-23 19:01:18 +00:00
fi - > uid = fc - > uid ;
2017-03-05 15:44:50 +00:00
fi - > modified_time = fc - > modification_time ;
2017-08-17 20:02:43 +00:00
fi - > deps = fc - > deps ;
2017-03-05 15:44:50 +00:00
fi - > import_modified_time = 0 ;
2017-08-29 22:50:58 +00:00
fi - > import_valid = true ;
2018-07-15 22:29:00 +00:00
fi - > script_class_name = fc - > script_class_name ;
fi - > script_class_extends = fc - > script_class_extends ;
2018-07-29 03:36:43 +00:00
fi - > script_class_icon_path = fc - > script_class_icon_path ;
2017-02-01 12:45:45 +00:00
} else {
2017-08-17 20:02:43 +00:00
//new or modified time
2017-03-05 15:44:50 +00:00
fi - > type = ResourceLoader : : get_resource_type ( path ) ;
2021-09-23 21:09:15 +00:00
if ( fi - > type = = " " & & textfile_extensions . has ( ext ) ) {
fi - > type = " TextFile " ;
}
2021-07-23 19:01:18 +00:00
fi - > uid = ResourceLoader : : get_resource_uid ( path ) ;
2018-07-29 03:36:43 +00:00
fi - > script_class_name = _get_global_script_class ( fi - > type , path , & fi - > script_class_extends , & fi - > script_class_icon_path ) ;
2017-08-17 20:02:43 +00:00
fi - > deps = _get_dependencies ( path ) ;
2017-03-05 15:44:50 +00:00
fi - > modified_time = mt ;
fi - > import_modified_time = 0 ;
2017-08-29 22:50:58 +00:00
fi - > import_valid = true ;
2017-02-01 12:45:45 +00:00
}
2016-01-05 13:36:24 +00:00
}
2021-07-23 19:01:18 +00:00
if ( fi - > uid ! = ResourceUID : : INVALID_ID ) {
if ( ResourceUID : : get_singleton ( ) - > has_id ( fi - > uid ) ) {
ResourceUID : : get_singleton ( ) - > set_id ( fi - > uid , path ) ;
} else {
ResourceUID : : get_singleton ( ) - > add_id ( fi - > uid , path ) ;
}
}
2020-11-29 03:42:06 +00:00
for ( int i = 0 ; i < ScriptServer : : get_language_count ( ) ; i + + ) {
ScriptLanguage * lang = ScriptServer : : get_language ( i ) ;
if ( lang - > supports_documentation ( ) & & fi - > type = = lang - > get_type ( ) ) {
Ref < Script > script = ResourceLoader : : load ( path ) ;
if ( script = = nullptr ) {
continue ;
}
2022-03-26 15:48:43 +00:00
Vector < DocData : : ClassDoc > docs = script - > get_documentation ( ) ;
2020-11-29 03:42:06 +00:00
for ( int j = 0 ; j < docs . size ( ) ; j + + ) {
EditorHelp : : get_doc_data ( ) - > add_doc ( docs [ j ] ) ;
2020-11-29 02:37:57 +00:00
}
}
}
2016-01-05 13:36:24 +00:00
p_dir - > files . push_back ( fi ) ;
2017-03-05 15:44:50 +00:00
p_progress . update ( idx , total ) ;
2016-01-05 13:36:24 +00:00
}
}
2017-03-05 15:44:50 +00:00
void EditorFileSystem : : _scan_fs_changes ( EditorFileSystemDirectory * p_dir , const ScanProgress & p_progress ) {
2016-01-05 13:36:24 +00:00
uint64_t current_mtime = FileAccess : : get_modified_time ( p_dir - > get_path ( ) ) ;
2017-03-05 15:44:50 +00:00
bool updated_dir = false ;
2017-02-01 12:45:45 +00:00
String cd = p_dir - > get_path ( ) ;
2016-01-05 13:36:24 +00:00
2019-04-27 14:50:26 +00:00
if ( current_mtime ! = p_dir - > modified_time | | using_fat32_or_exfat ) {
2017-03-05 15:44:50 +00:00
updated_dir = true ;
p_dir - > modified_time = current_mtime ;
2016-01-05 13:36:24 +00:00
//ooooops, dir changed, see what's going on
//first mark everything as veryfied
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_dir - > files . size ( ) ; i + + ) {
p_dir - > files [ i ] - > verified = false ;
2016-01-05 13:36:24 +00:00
}
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_dir - > subdirs . size ( ) ; i + + ) {
p_dir - > get_subdir ( i ) - > verified = false ;
2016-01-05 13:36:24 +00:00
}
//then scan files and directories and check what's different
2022-03-23 09:08:58 +00:00
Ref < DirAccess > da = DirAccess : : create ( DirAccess : : ACCESS_RESOURCES ) ;
2021-02-27 20:43:26 +00:00
Error ret = da - > change_dir ( cd ) ;
ERR_FAIL_COND_MSG ( ret ! = OK , " Cannot change to ' " + cd + " ' folder. " ) ;
2017-02-01 12:45:45 +00:00
2016-01-05 13:36:24 +00:00
da - > list_dir_begin ( ) ;
while ( true ) {
2019-07-25 09:09:57 +00:00
String f = da - > get_next ( ) ;
2021-12-09 09:42:46 +00:00
if ( f . is_empty ( ) ) {
2016-01-05 13:36:24 +00:00
break ;
2020-05-14 14:41:43 +00:00
}
2016-01-05 13:36:24 +00:00
2020-05-14 14:41:43 +00:00
if ( da - > current_is_hidden ( ) ) {
2020-02-10 08:19:10 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2020-02-10 08:19:10 +00:00
2019-07-25 09:09:57 +00:00
if ( da - > current_is_dir ( ) ) {
2020-05-14 14:41:43 +00:00
if ( f . begins_with ( " . " ) ) { // Ignore special and . / ..
2016-01-05 13:36:24 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2016-01-05 13:36:24 +00:00
2017-04-29 15:56:51 +00:00
int idx = p_dir - > find_dir_index ( f ) ;
2017-03-05 15:44:50 +00:00
if ( idx = = - 1 ) {
2021-02-22 05:34:27 +00:00
if ( _should_skip_directory ( cd . plus_file ( f ) ) ) {
2017-08-06 14:43:48 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * efd = memnew ( EditorFileSystemDirectory ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
efd - > parent = p_dir ;
2017-04-29 15:56:51 +00:00
efd - > name = f ;
2022-03-23 09:08:58 +00:00
Ref < DirAccess > d = DirAccess : : create ( DirAccess : : ACCESS_RESOURCES ) ;
2017-04-29 15:56:51 +00:00
d - > change_dir ( cd . plus_file ( f ) ) ;
2017-03-05 15:44:50 +00:00
_scan_new_dir ( efd , d , p_progress . get_sub ( 1 , 1 ) ) ;
2016-01-05 13:36:24 +00:00
ItemAction ia ;
2017-03-05 15:44:50 +00:00
ia . action = ItemAction : : ACTION_DIR_ADD ;
ia . dir = p_dir ;
2017-04-29 15:56:51 +00:00
ia . file = f ;
2017-03-05 15:44:50 +00:00
ia . new_dir = efd ;
2016-01-05 13:36:24 +00:00
scan_actions . push_back ( ia ) ;
} else {
2017-03-05 15:44:50 +00:00
p_dir - > subdirs [ idx ] - > verified = true ;
2016-01-05 13:36:24 +00:00
}
} else {
2017-04-29 15:56:51 +00:00
String ext = f . get_extension ( ) . to_lower ( ) ;
2020-05-14 14:41:43 +00:00
if ( ! valid_extensions . has ( ext ) ) {
2016-01-05 13:36:24 +00:00
continue ; //invalid
2020-05-14 14:41:43 +00:00
}
2016-01-05 13:36:24 +00:00
2017-04-29 15:56:51 +00:00
int idx = p_dir - > find_file_index ( f ) ;
2016-01-05 13:36:24 +00:00
2017-03-05 15:44:50 +00:00
if ( idx = = - 1 ) {
2016-01-05 13:36:24 +00:00
//never seen this file, add actition to add it
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory : : FileInfo * fi = memnew ( EditorFileSystemDirectory : : FileInfo ) ;
2017-04-29 15:56:51 +00:00
fi - > file = f ;
2016-01-05 13:36:24 +00:00
String path = cd . plus_file ( fi - > file ) ;
2017-03-05 15:44:50 +00:00
fi - > modified_time = FileAccess : : get_modified_time ( path ) ;
fi - > import_modified_time = 0 ;
fi - > type = ResourceLoader : : get_resource_type ( path ) ;
2021-09-23 21:09:15 +00:00
if ( fi - > type = = " " & & textfile_extensions . has ( ext ) ) {
fi - > type = " TextFile " ;
}
2018-07-29 03:36:43 +00:00
fi - > script_class_name = _get_global_script_class ( fi - > type , path , & fi - > script_class_extends , & fi - > script_class_icon_path ) ;
2017-08-29 22:50:58 +00:00
fi - > import_valid = ResourceLoader : : is_import_valid ( path ) ;
2019-04-19 18:54:33 +00:00
fi - > import_group_file = ResourceLoader : : get_import_group_file ( path ) ;
2016-01-05 13:36:24 +00:00
{
ItemAction ia ;
2017-03-05 15:44:50 +00:00
ia . action = ItemAction : : ACTION_FILE_ADD ;
ia . dir = p_dir ;
2017-04-29 15:56:51 +00:00
ia . file = f ;
2017-03-05 15:44:50 +00:00
ia . new_file = fi ;
2016-01-05 13:36:24 +00:00
scan_actions . push_back ( ia ) ;
2017-02-01 12:45:45 +00:00
}
if ( import_extensions . has ( ext ) ) {
//if it can be imported, and it was added, it needs to be reimported
2016-01-05 13:36:24 +00:00
ItemAction ia ;
2017-11-24 16:39:41 +00:00
ia . action = ItemAction : : ACTION_FILE_TEST_REIMPORT ;
2017-03-05 15:44:50 +00:00
ia . dir = p_dir ;
2017-04-29 15:56:51 +00:00
ia . file = f ;
2016-01-05 13:36:24 +00:00
scan_actions . push_back ( ia ) ;
}
} else {
2017-03-05 15:44:50 +00:00
p_dir - > files [ idx ] - > verified = true ;
2016-01-05 13:36:24 +00:00
}
}
}
2016-06-28 12:47:03 +00:00
2016-01-05 13:36:24 +00:00
da - > list_dir_end ( ) ;
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_dir - > files . size ( ) ; i + + ) {
2016-01-05 13:36:24 +00:00
if ( updated_dir & & ! p_dir - > files [ i ] - > verified ) {
//this file was removed, add action to remove it
ItemAction ia ;
2017-03-05 15:44:50 +00:00
ia . action = ItemAction : : ACTION_FILE_REMOVE ;
ia . dir = p_dir ;
ia . file = p_dir - > files [ i ] - > file ;
2016-01-05 13:36:24 +00:00
scan_actions . push_back ( ia ) ;
continue ;
}
2016-07-03 16:15:15 +00:00
2018-11-21 00:47:48 +00:00
String path = cd . plus_file ( p_dir - > files [ i ] - > file ) ;
2017-02-01 12:45:45 +00:00
if ( import_extensions . has ( p_dir - > files [ i ] - > file . get_extension ( ) . to_lower ( ) ) ) {
//check here if file must be imported or not
uint64_t mt = FileAccess : : get_modified_time ( path ) ;
2017-03-05 15:44:50 +00:00
bool reimport = false ;
2017-02-01 12:45:45 +00:00
2017-03-05 15:44:50 +00:00
if ( mt ! = p_dir - > files [ i ] - > modified_time ) {
reimport = true ; //it was modified, must be reimported.
} else if ( ! FileAccess : : exists ( path + " .import " ) ) {
reimport = true ; //no .import file, obviously reimport
2017-02-01 12:45:45 +00:00
} else {
2017-03-05 15:44:50 +00:00
uint64_t import_mt = FileAccess : : get_modified_time ( path + " .import " ) ;
if ( import_mt ! = p_dir - > files [ i ] - > import_modified_time ) {
reimport = true ;
2017-11-24 16:39:41 +00:00
} else if ( _test_for_reimport ( path , true ) ) {
2017-03-05 15:44:50 +00:00
reimport = true ;
2017-02-01 12:45:45 +00:00
}
}
if ( reimport ) {
ItemAction ia ;
2017-11-24 16:39:41 +00:00
ia . action = ItemAction : : ACTION_FILE_TEST_REIMPORT ;
2017-03-05 15:44:50 +00:00
ia . dir = p_dir ;
ia . file = p_dir - > files [ i ] - > file ;
2017-02-01 12:45:45 +00:00
scan_actions . push_back ( ia ) ;
}
2018-11-21 00:47:48 +00:00
} else if ( ResourceCache : : has ( path ) ) { //test for potential reload
uint64_t mt = FileAccess : : get_modified_time ( path ) ;
if ( mt ! = p_dir - > files [ i ] - > modified_time ) {
p_dir - > files [ i ] - > modified_time = mt ; //save new time, but test for reload
ItemAction ia ;
ia . action = ItemAction : : ACTION_FILE_RELOAD ;
ia . dir = p_dir ;
ia . file = p_dir - > files [ i ] - > file ;
scan_actions . push_back ( ia ) ;
}
2014-02-10 01:10:30 +00:00
}
}
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_dir - > subdirs . size ( ) ; i + + ) {
2021-10-08 13:15:05 +00:00
if ( ( updated_dir & & ! p_dir - > subdirs [ i ] - > verified ) | | _should_skip_directory ( p_dir - > subdirs [ i ] - > get_path ( ) ) ) {
//this directory was removed or ignored, add action to remove it
2016-01-05 13:36:24 +00:00
ItemAction ia ;
2017-03-05 15:44:50 +00:00
ia . action = ItemAction : : ACTION_DIR_REMOVE ;
ia . dir = p_dir - > subdirs [ i ] ;
2016-01-05 13:36:24 +00:00
scan_actions . push_back ( ia ) ;
continue ;
}
2017-03-05 15:44:50 +00:00
_scan_fs_changes ( p_dir - > get_subdir ( i ) , p_progress ) ;
2014-02-10 01:10:30 +00:00
}
}
2017-08-14 23:13:14 +00:00
void EditorFileSystem : : _delete_internal_files ( String p_file ) {
if ( FileAccess : : exists ( p_file + " .import " ) ) {
List < String > paths ;
ResourceFormatImporter : : get_singleton ( ) - > get_internal_resource_path_list ( p_file , & paths ) ;
2022-03-23 09:08:58 +00:00
Ref < DirAccess > da = DirAccess : : create ( DirAccess : : ACCESS_RESOURCES ) ;
2021-07-24 13:46:25 +00:00
for ( const String & E : paths ) {
2021-07-16 03:45:57 +00:00
da - > remove ( E ) ;
2017-08-14 23:13:14 +00:00
}
da - > remove ( p_file + " .import " ) ;
}
}
2014-02-10 01:10:30 +00:00
void EditorFileSystem : : _thread_func_sources ( void * _userdata ) {
2017-03-05 15:44:50 +00:00
EditorFileSystem * efs = ( EditorFileSystem * ) _userdata ;
2014-02-10 01:10:30 +00:00
if ( efs - > filesystem ) {
2017-03-05 15:44:50 +00:00
EditorProgressBG pr ( " sources " , TTR ( " ScanSources " ) , 1000 ) ;
2016-01-05 13:36:24 +00:00
ScanProgress sp ;
2017-03-05 15:44:50 +00:00
sp . progress = & pr ;
sp . hi = 1 ;
sp . low = 0 ;
efs - > _scan_fs_changes ( efs - > filesystem , sp ) ;
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
efs - > scanning_changes_done = true ;
2014-02-10 01:10:30 +00:00
}
2017-02-01 12:45:45 +00:00
void EditorFileSystem : : scan_changes ( ) {
2020-02-10 08:19:10 +00:00
if ( first_scan | | // Prevent a premature changes scan from inhibiting the first full scan
2021-01-19 12:29:41 +00:00
scanning | | scanning_changes | | thread . is_started ( ) ) {
2020-02-10 08:19:10 +00:00
scan_changes_pending = true ;
set_process ( true ) ;
2014-02-10 01:10:30 +00:00
return ;
2020-02-10 08:19:10 +00:00
}
2014-02-10 01:10:30 +00:00
2017-02-01 12:45:45 +00:00
_update_extensions ( ) ;
2014-02-10 01:10:30 +00:00
sources_changed . clear ( ) ;
2017-03-05 15:44:50 +00:00
scanning_changes = true ;
scanning_changes_done = false ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
abort_scan = false ;
2014-02-10 01:10:30 +00:00
if ( ! use_threads ) {
2016-01-05 13:36:24 +00:00
if ( filesystem ) {
2017-03-05 15:44:50 +00:00
EditorProgressBG pr ( " sources " , TTR ( " ScanSources " ) , 1000 ) ;
2016-01-05 13:36:24 +00:00
ScanProgress sp ;
2017-03-05 15:44:50 +00:00
sp . progress = & pr ;
sp . hi = 1 ;
sp . low = 0 ;
scan_total = 0 ;
_scan_fs_changes ( filesystem , sp ) ;
2020-05-14 14:41:43 +00:00
if ( _update_scan_actions ( ) ) {
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " filesystem_changed " ) ) ;
2020-05-14 14:41:43 +00:00
}
2016-01-05 13:36:24 +00:00
}
2017-03-05 15:44:50 +00:00
scanning_changes = false ;
scanning_changes_done = true ;
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " sources_changed " ) , sources_changed . size ( ) > 0 ) ;
2014-02-10 01:10:30 +00:00
} else {
2021-01-19 12:29:41 +00:00
ERR_FAIL_COND ( thread_sources . is_started ( ) ) ;
2014-02-10 01:10:30 +00:00
set_process ( true ) ;
2017-03-05 15:44:50 +00:00
scan_total = 0 ;
2014-02-10 01:10:30 +00:00
Thread : : Settings s ;
2017-03-05 15:44:50 +00:00
s . priority = Thread : : PRIORITY_LOW ;
2021-01-19 12:29:41 +00:00
thread_sources . start ( _thread_func_sources , this , s ) ;
2014-02-10 01:10:30 +00:00
}
}
void EditorFileSystem : : _notification ( int p_what ) {
2017-03-05 15:44:50 +00:00
switch ( p_what ) {
2014-11-06 00:20:42 +00:00
case NOTIFICATION_ENTER_TREE : {
2021-07-17 21:22:52 +00:00
call_deferred ( SNAME ( " scan " ) ) ; //this should happen after every editor node entered the tree
2017-11-15 15:42:08 +00:00
2014-02-10 01:10:30 +00:00
} break ;
2022-02-15 23:52:32 +00:00
2014-11-06 00:20:42 +00:00
case NOTIFICATION_EXIT_TREE : {
2021-01-19 12:29:41 +00:00
Thread & active_thread = thread . is_started ( ) ? thread : thread_sources ;
if ( use_threads & & active_thread . is_started ( ) ) {
2014-02-10 01:10:30 +00:00
//abort thread if in progress
2017-03-05 15:44:50 +00:00
abort_scan = true ;
while ( scanning ) {
2014-02-10 01:10:30 +00:00
OS : : get_singleton ( ) - > delay_usec ( 1000 ) ;
}
2021-01-19 12:29:41 +00:00
active_thread . wait_to_finish ( ) ;
2019-11-07 08:44:15 +00:00
WARN_PRINT ( " Scan thread aborted... " ) ;
2014-02-10 01:10:30 +00:00
set_process ( false ) ;
}
2020-05-14 14:41:43 +00:00
if ( filesystem ) {
2014-02-10 01:10:30 +00:00
memdelete ( filesystem ) ;
2020-05-14 14:41:43 +00:00
}
if ( new_filesystem ) {
2016-01-05 13:36:24 +00:00
memdelete ( new_filesystem ) ;
2020-05-14 14:41:43 +00:00
}
2020-04-01 23:20:12 +00:00
filesystem = nullptr ;
new_filesystem = nullptr ;
2014-02-10 01:10:30 +00:00
} break ;
2022-02-15 23:52:32 +00:00
2014-02-10 01:10:30 +00:00
case NOTIFICATION_PROCESS : {
if ( use_threads ) {
2017-02-01 12:45:45 +00:00
if ( scanning_changes ) {
if ( scanning_changes_done ) {
2017-03-05 15:44:50 +00:00
scanning_changes = false ;
2014-02-10 01:10:30 +00:00
set_process ( false ) ;
2021-01-19 12:29:41 +00:00
thread_sources . wait_to_finish ( ) ;
2020-05-14 14:41:43 +00:00
if ( _update_scan_actions ( ) ) {
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " filesystem_changed " ) ) ;
2020-05-14 14:41:43 +00:00
}
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " sources_changed " ) , sources_changed . size ( ) > 0 ) ;
2018-07-15 22:29:00 +00:00
_queue_update_script_classes ( ) ;
2019-02-26 21:43:37 +00:00
first_scan = false ;
2014-02-10 01:10:30 +00:00
}
2021-01-19 12:29:41 +00:00
} else if ( ! scanning & & thread . is_started ( ) ) {
2014-02-10 01:10:30 +00:00
set_process ( false ) ;
2020-05-14 14:41:43 +00:00
if ( filesystem ) {
2014-02-10 01:10:30 +00:00
memdelete ( filesystem ) ;
2020-05-14 14:41:43 +00:00
}
2017-03-05 15:44:50 +00:00
filesystem = new_filesystem ;
2020-04-01 23:20:12 +00:00
new_filesystem = nullptr ;
2021-01-19 12:29:41 +00:00
thread . wait_to_finish ( ) ;
2016-01-05 13:36:24 +00:00
_update_scan_actions ( ) ;
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " filesystem_changed " ) ) ;
emit_signal ( SNAME ( " sources_changed " ) , sources_changed . size ( ) > 0 ) ;
2018-07-15 22:29:00 +00:00
_queue_update_script_classes ( ) ;
2019-02-26 21:43:37 +00:00
first_scan = false ;
2014-02-10 01:10:30 +00:00
}
2020-02-10 08:19:10 +00:00
if ( ! is_processing ( ) & & scan_changes_pending ) {
scan_changes_pending = false ;
scan_changes ( ) ;
}
2014-02-10 01:10:30 +00:00
}
} break ;
}
}
bool EditorFileSystem : : is_scanning ( ) const {
2017-02-06 03:38:39 +00:00
return scanning | | scanning_changes ;
2014-02-10 01:10:30 +00:00
}
2020-05-14 12:29:06 +00:00
2014-02-10 01:10:30 +00:00
float EditorFileSystem : : get_scanning_progress ( ) const {
2016-01-05 13:36:24 +00:00
return scan_total ;
2014-02-10 01:10:30 +00:00
}
EditorFileSystemDirectory * EditorFileSystem : : get_filesystem ( ) {
return filesystem ;
}
2022-03-23 09:08:58 +00:00
void EditorFileSystem : : _save_filesystem_cache ( EditorFileSystemDirectory * p_dir , Ref < FileAccess > p_file ) {
2020-05-14 14:41:43 +00:00
if ( ! p_dir ) {
2014-02-10 01:10:30 +00:00
return ; //none
2020-05-14 14:41:43 +00:00
}
2017-03-05 15:44:50 +00:00
p_file - > store_line ( " :: " + p_dir - > get_path ( ) + " :: " + String : : num ( p_dir - > modified_time ) ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_dir - > files . size ( ) ; i + + ) {
2021-12-09 09:42:46 +00:00
if ( ! p_dir - > files [ i ] - > import_group_file . is_empty ( ) ) {
2019-04-19 18:54:33 +00:00
group_file_cache . insert ( p_dir - > files [ i ] - > import_group_file ) ;
}
2021-07-23 19:01:18 +00:00
String s = p_dir - > files [ i ] - > file + " :: " + p_dir - > files [ i ] - > type + " :: " + itos ( p_dir - > files [ i ] - > uid ) + " :: " + itos ( p_dir - > files [ i ] - > modified_time ) + " :: " + itos ( p_dir - > files [ i ] - > import_modified_time ) + " :: " + itos ( p_dir - > files [ i ] - > import_valid ) + " :: " + p_dir - > files [ i ] - > import_group_file + " :: " + p_dir - > files [ i ] - > script_class_name + " <> " + p_dir - > files [ i ] - > script_class_extends + " <> " + p_dir - > files [ i ] - > script_class_icon_path ;
2017-03-05 15:44:50 +00:00
s + = " :: " ;
for ( int j = 0 ; j < p_dir - > files [ i ] - > deps . size ( ) ; j + + ) {
2020-05-14 14:41:43 +00:00
if ( j > 0 ) {
2017-03-05 15:44:50 +00:00
s + = " <> " ;
2020-05-14 14:41:43 +00:00
}
2017-03-05 15:44:50 +00:00
s + = p_dir - > files [ i ] - > deps [ j ] ;
2015-08-23 23:15:56 +00:00
}
2014-02-10 01:10:30 +00:00
p_file - > store_line ( s ) ;
}
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_dir - > subdirs . size ( ) ; i + + ) {
_save_filesystem_cache ( p_dir - > subdirs [ i ] , p_file ) ;
2014-02-10 01:10:30 +00:00
}
}
2017-03-05 15:44:50 +00:00
bool EditorFileSystem : : _find_file ( const String & p_file , EditorFileSystemDirectory * * r_d , int & r_file_pos ) const {
2014-02-10 01:10:30 +00:00
//todo make faster
2020-05-14 14:41:43 +00:00
if ( ! filesystem | | scanning ) {
2016-01-05 13:36:24 +00:00
return false ;
2020-05-14 14:41:43 +00:00
}
2014-02-10 01:10:30 +00:00
2017-07-19 20:00:46 +00:00
String f = ProjectSettings : : get_singleton ( ) - > localize_path ( p_file ) ;
2014-02-10 01:10:30 +00:00
2020-05-14 14:41:43 +00:00
if ( ! f . begins_with ( " res:// " ) ) {
2016-01-05 13:36:24 +00:00
return false ;
2020-05-14 14:41:43 +00:00
}
2017-03-05 15:44:50 +00:00
f = f . substr ( 6 , f . length ( ) ) ;
f = f . replace ( " \\ " , " / " ) ;
2014-02-10 01:10:30 +00:00
2016-01-05 13:36:24 +00:00
Vector < String > path = f . split ( " / " ) ;
2014-02-10 01:10:30 +00:00
2020-05-14 14:41:43 +00:00
if ( path . size ( ) = = 0 ) {
2016-01-05 13:36:24 +00:00
return false ;
2020-05-14 14:41:43 +00:00
}
2017-03-05 15:44:50 +00:00
String file = path [ path . size ( ) - 1 ] ;
path . resize ( path . size ( ) - 1 ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * fs = filesystem ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < path . size ( ) ; i + + ) {
2020-05-14 14:41:43 +00:00
if ( path [ i ] . begins_with ( " . " ) ) {
2017-02-04 14:12:03 +00:00
return false ;
2020-05-14 14:41:43 +00:00
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
int idx = - 1 ;
for ( int j = 0 ; j < fs - > get_subdir_count ( ) ; j + + ) {
if ( fs - > get_subdir ( j ) - > get_name ( ) = = path [ i ] ) {
idx = j ;
2016-01-05 13:36:24 +00:00
break ;
}
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( idx = = - 1 ) {
2016-01-05 13:36:24 +00:00
//does not exist, create i guess?
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * efsd = memnew ( EditorFileSystemDirectory ) ;
2017-06-16 20:32:46 +00:00
2017-03-05 15:44:50 +00:00
efsd - > name = path [ i ] ;
2017-06-16 20:32:46 +00:00
efsd - > parent = fs ;
2017-03-05 15:44:50 +00:00
int idx2 = 0 ;
for ( int j = 0 ; j < fs - > get_subdir_count ( ) ; j + + ) {
2020-04-11 11:17:46 +00:00
if ( efsd - > name . naturalnocasecmp_to ( fs - > get_subdir ( j ) - > get_name ( ) ) < 0 ) {
2016-01-05 13:36:24 +00:00
break ;
2020-05-14 14:41:43 +00:00
}
2016-01-05 13:36:24 +00:00
idx2 + + ;
}
2014-02-10 01:10:30 +00:00
2020-05-14 14:41:43 +00:00
if ( idx2 = = fs - > get_subdir_count ( ) ) {
2016-01-05 13:36:24 +00:00
fs - > subdirs . push_back ( efsd ) ;
2020-05-14 14:41:43 +00:00
} else {
2017-03-05 15:44:50 +00:00
fs - > subdirs . insert ( idx2 , efsd ) ;
2020-05-14 14:41:43 +00:00
}
2017-03-05 15:44:50 +00:00
fs = efsd ;
2016-01-05 13:36:24 +00:00
} else {
2017-03-05 15:44:50 +00:00
fs = fs - > get_subdir ( idx ) ;
2016-01-05 13:36:24 +00:00
}
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
int cpos = - 1 ;
for ( int i = 0 ; i < fs - > files . size ( ) ; i + + ) {
if ( fs - > files [ i ] - > file = = file ) {
cpos = i ;
2016-01-05 13:36:24 +00:00
break ;
}
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
r_file_pos = cpos ;
* r_d = fs ;
2014-02-10 01:10:30 +00:00
2019-06-26 13:08:25 +00:00
return cpos ! = - 1 ;
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
String EditorFileSystem : : get_file_type ( const String & p_file ) const {
2020-04-01 23:20:12 +00:00
EditorFileSystemDirectory * fs = nullptr ;
2017-03-05 15:44:50 +00:00
int cpos = - 1 ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( ! _find_file ( p_file , & fs , cpos ) ) {
return " " ;
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
return fs - > files [ cpos ] - > type ;
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * EditorFileSystem : : find_file ( const String & p_file , int * r_index ) const {
2020-05-14 14:41:43 +00:00
if ( ! filesystem | | scanning ) {
2020-04-01 23:20:12 +00:00
return nullptr ;
2020-05-14 14:41:43 +00:00
}
2016-05-27 17:18:40 +00:00
2020-04-01 23:20:12 +00:00
EditorFileSystemDirectory * fs = nullptr ;
2017-03-05 15:44:50 +00:00
int cpos = - 1 ;
if ( ! _find_file ( p_file , & fs , cpos ) ) {
2020-04-01 23:20:12 +00:00
return nullptr ;
2016-05-27 17:18:40 +00:00
}
2020-05-14 14:41:43 +00:00
if ( r_index ) {
2017-03-05 15:44:50 +00:00
* r_index = cpos ;
2020-05-14 14:41:43 +00:00
}
2016-05-27 17:18:40 +00:00
return fs ;
}
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * EditorFileSystem : : get_filesystem_path ( const String & p_path ) {
2020-05-14 14:41:43 +00:00
if ( ! filesystem | | scanning ) {
2020-04-01 23:20:12 +00:00
return nullptr ;
2020-05-14 14:41:43 +00:00
}
2014-02-10 01:10:30 +00:00
2017-07-19 20:00:46 +00:00
String f = ProjectSettings : : get_singleton ( ) - > localize_path ( p_path ) ;
2014-02-10 01:10:30 +00:00
2020-05-14 14:41:43 +00:00
if ( ! f . begins_with ( " res:// " ) ) {
2020-04-01 23:20:12 +00:00
return nullptr ;
2020-05-14 14:41:43 +00:00
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
f = f . substr ( 6 , f . length ( ) ) ;
f = f . replace ( " \\ " , " / " ) ;
2021-12-09 09:42:46 +00:00
if ( f . is_empty ( ) ) {
2017-03-05 15:44:50 +00:00
return filesystem ;
2020-05-14 14:41:43 +00:00
}
2014-02-10 01:10:30 +00:00
2020-05-14 14:41:43 +00:00
if ( f . ends_with ( " / " ) ) {
2017-03-05 15:44:50 +00:00
f = f . substr ( 0 , f . length ( ) - 1 ) ;
2020-05-14 14:41:43 +00:00
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
Vector < String > path = f . split ( " / " ) ;
2014-02-10 01:10:30 +00:00
2020-05-14 14:41:43 +00:00
if ( path . size ( ) = = 0 ) {
2020-04-01 23:20:12 +00:00
return nullptr ;
2020-05-14 14:41:43 +00:00
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory * fs = filesystem ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < path . size ( ) ; i + + ) {
int idx = - 1 ;
for ( int j = 0 ; j < fs - > get_subdir_count ( ) ; j + + ) {
if ( fs - > get_subdir ( j ) - > get_name ( ) = = path [ i ] ) {
idx = j ;
break ;
}
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( idx = = - 1 ) {
2020-04-01 23:20:12 +00:00
return nullptr ;
2017-03-05 15:44:50 +00:00
} else {
fs = fs - > get_subdir ( idx ) ;
}
2014-02-10 01:10:30 +00:00
}
2017-03-05 15:44:50 +00:00
return fs ;
2014-02-10 01:10:30 +00:00
}
2017-08-17 20:02:43 +00:00
void EditorFileSystem : : _save_late_updated_files ( ) {
//files that already existed, and were modified, need re-scanning for dependencies upon project restart. This is done via saving this special file
2018-07-15 22:29:00 +00:00
String fscache = EditorSettings : : get_singleton ( ) - > get_project_settings_dir ( ) . plus_file ( " filesystem_update4 " ) ;
2022-03-23 09:08:58 +00:00
Ref < FileAccess > f = FileAccess : : open ( fscache , FileAccess : : WRITE ) ;
ERR_FAIL_COND_MSG ( f . is_null ( ) , " Cannot create file ' " + fscache + " '. Check user write permissions. " ) ;
2017-08-17 20:02:43 +00:00
for ( Set < String > : : Element * E = late_update_files . front ( ) ; E ; E = E - > next ( ) ) {
f - > store_line ( E - > get ( ) ) ;
}
}
Vector < String > EditorFileSystem : : _get_dependencies ( const String & p_path ) {
List < String > deps ;
ResourceLoader : : get_dependencies ( p_path , & deps ) ;
Vector < String > ret ;
2021-07-24 13:46:25 +00:00
for ( const String & E : deps ) {
2021-07-16 03:45:57 +00:00
ret . push_back ( E ) ;
2017-08-17 20:02:43 +00:00
}
return ret ;
}
2018-07-29 03:36:43 +00:00
String EditorFileSystem : : _get_global_script_class ( const String & p_type , const String & p_path , String * r_extends , String * r_icon_path ) const {
2018-07-15 22:29:00 +00:00
for ( int i = 0 ; i < ScriptServer : : get_language_count ( ) ; i + + ) {
if ( ScriptServer : : get_language ( i ) - > handles_global_class_type ( p_type ) ) {
String global_name ;
String extends ;
2018-07-29 03:36:43 +00:00
String icon_path ;
2018-07-15 22:29:00 +00:00
2018-07-29 03:36:43 +00:00
global_name = ScriptServer : : get_language ( i ) - > get_global_class_name ( p_path , & extends , & icon_path ) ;
2018-07-15 22:29:00 +00:00
* r_extends = extends ;
2018-07-29 03:36:43 +00:00
* r_icon_path = icon_path ;
2018-07-15 22:29:00 +00:00
return global_name ;
}
}
* r_extends = String ( ) ;
2018-07-29 03:36:43 +00:00
* r_icon_path = String ( ) ;
2018-07-15 22:29:00 +00:00
return String ( ) ;
}
void EditorFileSystem : : _scan_script_classes ( EditorFileSystemDirectory * p_dir ) {
int filecount = p_dir - > files . size ( ) ;
const EditorFileSystemDirectory : : FileInfo * const * files = p_dir - > files . ptr ( ) ;
for ( int i = 0 ; i < filecount ; i + + ) {
2021-12-09 09:42:46 +00:00
if ( files [ i ] - > script_class_name . is_empty ( ) ) {
2018-07-15 22:29:00 +00:00
continue ;
}
String lang ;
for ( int j = 0 ; j < ScriptServer : : get_language_count ( ) ; j + + ) {
if ( ScriptServer : : get_language ( j ) - > handles_global_class_type ( files [ i ] - > type ) ) {
lang = ScriptServer : : get_language ( j ) - > get_name ( ) ;
}
}
ScriptServer : : add_global_class ( files [ i ] - > script_class_name , files [ i ] - > script_class_extends , lang , p_dir - > get_file_path ( i ) ) ;
2018-07-29 03:36:43 +00:00
EditorNode : : get_editor_data ( ) . script_class_set_icon_path ( files [ i ] - > script_class_name , files [ i ] - > script_class_icon_path ) ;
2018-09-02 21:40:51 +00:00
EditorNode : : get_editor_data ( ) . script_class_set_name ( files [ i ] - > file , files [ i ] - > script_class_name ) ;
2018-07-15 22:29:00 +00:00
}
for ( int i = 0 ; i < p_dir - > get_subdir_count ( ) ; i + + ) {
_scan_script_classes ( p_dir - > get_subdir ( i ) ) ;
}
}
void EditorFileSystem : : update_script_classes ( ) {
2021-02-10 18:22:13 +00:00
if ( ! update_script_classes_queued . is_set ( ) ) {
2018-07-15 22:29:00 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-07-15 22:29:00 +00:00
2021-02-10 18:22:13 +00:00
update_script_classes_queued . clear ( ) ;
2018-07-15 22:29:00 +00:00
ScriptServer : : global_classes_clear ( ) ;
if ( get_filesystem ( ) ) {
_scan_script_classes ( get_filesystem ( ) ) ;
}
ScriptServer : : save_global_classes ( ) ;
2018-07-29 03:36:43 +00:00
EditorNode : : get_editor_data ( ) . script_class_save_icon_paths ( ) ;
2018-06-11 00:59:53 +00:00
// Rescan custom loaders and savers.
// Doing the following here because the `filesystem_changed` signal fires multiple times and isn't always followed by script classes update.
// So I thought it's better to do this when script classes really get updated
ResourceLoader : : remove_custom_loaders ( ) ;
ResourceLoader : : add_custom_loaders ( ) ;
ResourceSaver : : remove_custom_savers ( ) ;
ResourceSaver : : add_custom_savers ( ) ;
2018-07-15 22:29:00 +00:00
}
void EditorFileSystem : : _queue_update_script_classes ( ) {
2021-02-10 18:22:13 +00:00
if ( update_script_classes_queued . is_set ( ) ) {
2018-07-15 22:29:00 +00:00
return ;
}
2021-02-10 18:22:13 +00:00
update_script_classes_queued . set ( ) ;
2021-07-17 21:22:52 +00:00
call_deferred ( SNAME ( " update_script_classes " ) ) ;
2018-07-15 22:29:00 +00:00
}
2017-03-05 15:44:50 +00:00
void EditorFileSystem : : update_file ( const String & p_file ) {
2020-04-01 23:20:12 +00:00
EditorFileSystemDirectory * fs = nullptr ;
2017-03-05 15:44:50 +00:00
int cpos = - 1 ;
2014-11-12 14:23:23 +00:00
2017-03-05 15:44:50 +00:00
if ( ! _find_file ( p_file , & fs , cpos ) ) {
2020-05-14 14:41:43 +00:00
if ( ! fs ) {
2017-03-05 15:44:50 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2017-03-05 15:44:50 +00:00
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( ! FileAccess : : exists ( p_file ) ) {
//was removed
2017-08-14 23:13:14 +00:00
_delete_internal_files ( p_file ) ;
2017-12-02 00:37:32 +00:00
if ( cpos ! = - 1 ) { // Might've never been part of the editor file system (*.* files deleted in Open dialog).
2021-07-23 19:01:18 +00:00
if ( fs - > files [ cpos ] - > uid ! = ResourceUID : : INVALID_ID ) {
if ( ResourceUID : : get_singleton ( ) - > has_id ( fs - > files [ cpos ] - > uid ) ) {
ResourceUID : : get_singleton ( ) - > remove_id ( fs - > files [ cpos ] - > uid ) ;
}
}
2017-12-02 00:37:32 +00:00
memdelete ( fs - > files [ cpos ] ) ;
2021-07-03 22:17:03 +00:00
fs - > files . remove_at ( cpos ) ;
2017-12-02 00:37:32 +00:00
}
2018-07-15 22:29:00 +00:00
2021-07-17 21:22:52 +00:00
call_deferred ( SNAME ( " emit_signal " ) , " filesystem_changed " ) ; //update later
2018-07-15 22:29:00 +00:00
_queue_update_script_classes ( ) ;
2014-02-10 01:10:30 +00:00
return ;
2017-03-05 15:44:50 +00:00
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
String type = ResourceLoader : : get_resource_type ( p_file ) ;
2021-12-09 09:42:46 +00:00
if ( type . is_empty ( ) & & textfile_extensions . has ( p_file . get_extension ( ) ) ) {
2021-09-23 21:09:15 +00:00
type = " TextFile " ;
}
2021-07-23 19:01:18 +00:00
ResourceUID : : ID uid = ResourceLoader : : get_resource_uid ( p_file ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( cpos = = - 1 ) {
2021-01-10 11:26:44 +00:00
// The file did not exist, it was added.
2017-03-05 15:44:50 +00:00
int idx = 0 ;
2021-01-10 11:26:44 +00:00
String file_name = p_file . get_file ( ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < fs - > files . size ( ) ; i + + ) {
2020-04-11 11:17:46 +00:00
if ( p_file . naturalnocasecmp_to ( fs - > files [ i ] - > file ) < 0 ) {
2017-03-05 15:44:50 +00:00
break ;
2020-05-14 14:41:43 +00:00
}
2017-03-05 15:44:50 +00:00
idx + + ;
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
EditorFileSystemDirectory : : FileInfo * fi = memnew ( EditorFileSystemDirectory : : FileInfo ) ;
2021-01-10 11:26:44 +00:00
fi - > file = file_name ;
2017-03-05 15:44:50 +00:00
fi - > import_modified_time = 0 ;
2021-09-23 21:09:15 +00:00
fi - > import_valid = type = = " TextFile " ? true : ResourceLoader : : is_import_valid ( p_file ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
if ( idx = = fs - > files . size ( ) ) {
fs - > files . push_back ( fi ) ;
} else {
fs - > files . insert ( idx , fi ) ;
}
cpos = idx ;
2017-08-17 20:02:43 +00:00
} else {
//the file exists and it was updated, and was not added in this step.
//this means we must force upon next restart to scan it again, to get proper type and dependencies
late_update_files . insert ( p_file ) ;
_save_late_updated_files ( ) ; //files need to be updated in the re-scan
2017-03-05 15:44:50 +00:00
}
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
fs - > files [ cpos ] - > type = type ;
2021-07-23 19:01:18 +00:00
fs - > files [ cpos ] - > uid = uid ;
2018-07-29 03:36:43 +00:00
fs - > files [ cpos ] - > script_class_name = _get_global_script_class ( type , p_file , & fs - > files [ cpos ] - > script_class_extends , & fs - > files [ cpos ] - > script_class_icon_path ) ;
2019-04-19 18:54:33 +00:00
fs - > files [ cpos ] - > import_group_file = ResourceLoader : : get_import_group_file ( p_file ) ;
2017-03-05 15:44:50 +00:00
fs - > files [ cpos ] - > modified_time = FileAccess : : get_modified_time ( p_file ) ;
2017-08-17 20:02:43 +00:00
fs - > files [ cpos ] - > deps = _get_dependencies ( p_file ) ;
2021-09-23 21:09:15 +00:00
fs - > files [ cpos ] - > import_valid = type = = " TextFile " ? true : ResourceLoader : : is_import_valid ( p_file ) ;
2014-02-10 01:10:30 +00:00
2021-07-23 19:01:18 +00:00
if ( uid ! = ResourceUID : : INVALID_ID ) {
if ( ResourceUID : : get_singleton ( ) - > has_id ( uid ) ) {
ResourceUID : : get_singleton ( ) - > set_id ( uid , p_file ) ;
} else {
ResourceUID : : get_singleton ( ) - > add_id ( uid , p_file ) ;
}
ResourceUID : : get_singleton ( ) - > update_cache ( ) ;
}
2018-03-10 13:21:17 +00:00
// Update preview
EditorResourcePreview : : get_singleton ( ) - > check_for_invalidation ( p_file ) ;
2021-07-17 21:22:52 +00:00
call_deferred ( SNAME ( " emit_signal " ) , " filesystem_changed " ) ; //update later
2018-07-15 22:29:00 +00:00
_queue_update_script_classes ( ) ;
2014-02-10 01:10:30 +00:00
}
2022-01-16 18:08:40 +00:00
Set < String > EditorFileSystem : : get_valid_extensions ( ) const {
return valid_extensions ;
}
2019-04-19 18:54:33 +00:00
Error EditorFileSystem : : _reimport_group ( const String & p_group_file , const Vector < String > & p_files ) {
String importer_name ;
2020-03-17 06:33:00 +00:00
Map < String , Map < StringName , Variant > > source_file_options ;
2019-04-19 18:54:33 +00:00
Map < String , String > base_paths ;
for ( int i = 0 ; i < p_files . size ( ) ; i + + ) {
Ref < ConfigFile > config ;
2021-06-17 22:03:09 +00:00
config . instantiate ( ) ;
2019-04-19 18:54:33 +00:00
Error err = config - > load ( p_files [ i ] + " .import " ) ;
ERR_CONTINUE ( err ! = OK ) ;
ERR_CONTINUE ( ! config - > has_section_key ( " remap " , " importer " ) ) ;
String file_importer_name = config - > get_value ( " remap " , " importer " ) ;
2021-12-09 09:42:46 +00:00
ERR_CONTINUE ( file_importer_name . is_empty ( ) ) ;
2019-04-19 18:54:33 +00:00
2021-12-09 09:42:46 +00:00
if ( ! importer_name . is_empty ( ) & & importer_name ! = file_importer_name ) {
2019-04-19 18:54:33 +00:00
EditorNode : : get_singleton ( ) - > show_warning ( vformat ( TTR ( " There are multiple importers for different types pointing to file %s, import aborted " ) , p_group_file ) ) ;
ERR_FAIL_V ( ERR_FILE_CORRUPT ) ;
}
source_file_options [ p_files [ i ] ] = Map < StringName , Variant > ( ) ;
importer_name = file_importer_name ;
2021-03-22 19:41:47 +00:00
if ( importer_name = = " keep " ) {
continue ; //do nothing
}
2019-04-19 18:54:33 +00:00
Ref < ResourceImporter > importer = ResourceFormatImporter : : get_singleton ( ) - > get_importer_by_name ( importer_name ) ;
ERR_FAIL_COND_V ( ! importer . is_valid ( ) , ERR_FILE_CORRUPT ) ;
List < ResourceImporter : : ImportOption > options ;
2021-11-14 17:02:38 +00:00
importer - > get_import_options ( p_files [ i ] , & options ) ;
2019-04-19 18:54:33 +00:00
//set default values
2021-07-24 13:46:25 +00:00
for ( const ResourceImporter : : ImportOption & E : options ) {
2021-07-16 03:45:57 +00:00
source_file_options [ p_files [ i ] ] [ E . option . name ] = E . default_value ;
2019-04-19 18:54:33 +00:00
}
if ( config - > has_section ( " params " ) ) {
List < String > sk ;
config - > get_section_keys ( " params " , & sk ) ;
2021-07-24 13:46:25 +00:00
for ( const String & param : sk ) {
2019-04-19 18:54:33 +00:00
Variant value = config - > get_value ( " params " , param ) ;
Fix various typos
Found via `codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,expct,fave,findn,gird,hist,inh,inout,leapyear,lod,nd,numer,ois,ony,paket,ro,seeked,sinc,switchs,te,uint,varn,vew`
2022-01-02 18:47:52 +00:00
//override with whatever is in file
2019-04-19 18:54:33 +00:00
source_file_options [ p_files [ i ] ] [ param ] = value ;
}
}
base_paths [ p_files [ i ] ] = ResourceFormatImporter : : get_singleton ( ) - > get_import_base_path ( p_files [ i ] ) ;
}
2021-03-22 19:41:47 +00:00
if ( importer_name = = " keep " ) {
return OK ; // (do nothing)
}
2021-12-09 09:42:46 +00:00
ERR_FAIL_COND_V ( importer_name . is_empty ( ) , ERR_UNCONFIGURED ) ;
2019-04-19 18:54:33 +00:00
Ref < ResourceImporter > importer = ResourceFormatImporter : : get_singleton ( ) - > get_importer_by_name ( importer_name ) ;
Error err = importer - > import_group_file ( p_group_file , source_file_options , base_paths ) ;
//all went well, overwrite config files with proper remaps and md5s
2021-08-09 20:13:42 +00:00
for ( const KeyValue < String , Map < StringName , Variant > > & E : source_file_options ) {
const String & file = E . key ;
2019-04-19 18:54:33 +00:00
String base_path = ResourceFormatImporter : : get_singleton ( ) - > get_import_base_path ( file ) ;
2022-03-23 09:08:58 +00:00
Ref < FileAccess > f = FileAccess : : open ( file + " .import " , FileAccess : : WRITE ) ;
ERR_FAIL_COND_V_MSG ( f . is_null ( ) , ERR_FILE_CANT_OPEN , " Cannot open import file ' " + file + " .import'. " ) ;
2019-04-19 18:54:33 +00:00
//write manually, as order matters ([remap] has to go first for performance).
f - > store_line ( " [remap] " ) ;
f - > store_line ( " " ) ;
f - > store_line ( " importer= \" " + importer - > get_importer_name ( ) + " \" " ) ;
2020-12-02 01:40:47 +00:00
int version = importer - > get_format_version ( ) ;
if ( version > 0 ) {
2020-12-16 14:07:08 +00:00
f - > store_line ( " importer_version= " + itos ( version ) ) ;
2020-12-02 01:40:47 +00:00
}
2021-12-09 09:42:46 +00:00
if ( ! importer - > get_resource_type ( ) . is_empty ( ) ) {
2019-04-19 18:54:33 +00:00
f - > store_line ( " type= \" " + importer - > get_resource_type ( ) + " \" " ) ;
}
Vector < String > dest_paths ;
if ( err = = OK ) {
String path = base_path + " . " + importer - > get_save_extension ( ) ;
f - > store_line ( " path= \" " + path + " \" " ) ;
dest_paths . push_back ( path ) ;
}
f - > store_line ( " group_file= " + Variant ( p_group_file ) . get_construct_string ( ) ) ;
if ( err = = OK ) {
f - > store_line ( " valid=true " ) ;
} else {
f - > store_line ( " valid=false " ) ;
}
f - > store_line ( " [deps] \n " ) ;
f - > store_line ( " " ) ;
f - > store_line ( " source_file= " + Variant ( file ) . get_construct_string ( ) ) ;
if ( dest_paths . size ( ) ) {
Array dp ;
for ( int i = 0 ; i < dest_paths . size ( ) ; i + + ) {
dp . push_back ( dest_paths [ i ] ) ;
}
f - > store_line ( " dest_files= " + Variant ( dp ) . get_construct_string ( ) + " \n " ) ;
}
f - > store_line ( " [params] " ) ;
f - > store_line ( " " ) ;
//store options in provided order, to avoid file changing. Order is also important because first match is accepted first.
List < ResourceImporter : : ImportOption > options ;
2021-11-14 17:02:38 +00:00
importer - > get_import_options ( file , & options ) ;
2019-04-19 18:54:33 +00:00
//set default values
2021-07-24 13:46:25 +00:00
for ( const ResourceImporter : : ImportOption & F : options ) {
2021-07-16 03:45:57 +00:00
String base = F . option . name ;
Variant v = F . default_value ;
2019-04-19 18:54:33 +00:00
if ( source_file_options [ file ] . has ( base ) ) {
v = source_file_options [ file ] [ base ] ;
}
String value ;
VariantWriter : : write_to_string ( v , value ) ;
f - > store_line ( base + " = " + value ) ;
}
// Store the md5's of the various files. These are stored separately so that the .import files can be version controlled.
2022-03-23 09:08:58 +00:00
Ref < FileAccess > md5s = FileAccess : : open ( base_path + " .md5 " , FileAccess : : WRITE ) ;
ERR_FAIL_COND_V_MSG ( md5s . is_null ( ) , ERR_FILE_CANT_OPEN , " Cannot open MD5 file ' " + base_path + " .md5'. " ) ;
2019-04-19 18:54:33 +00:00
md5s - > store_line ( " source_md5= \" " + FileAccess : : get_md5 ( file ) + " \" " ) ;
if ( dest_paths . size ( ) ) {
md5s - > store_line ( " dest_md5= \" " + FileAccess : : get_multiple_md5 ( dest_paths ) + " \" \n " ) ;
}
2020-04-01 23:20:12 +00:00
EditorFileSystemDirectory * fs = nullptr ;
2019-04-19 18:54:33 +00:00
int cpos = - 1 ;
bool found = _find_file ( file , & fs , cpos ) ;
2019-09-25 08:28:50 +00:00
ERR_FAIL_COND_V_MSG ( ! found , ERR_UNCONFIGURED , " Can't find file ' " + file + " '. " ) ;
2019-04-19 18:54:33 +00:00
//update modified times, to avoid reimport
fs - > files [ cpos ] - > modified_time = FileAccess : : get_modified_time ( file ) ;
fs - > files [ cpos ] - > import_modified_time = FileAccess : : get_modified_time ( file + " .import " ) ;
fs - > files [ cpos ] - > deps = _get_dependencies ( file ) ;
fs - > files [ cpos ] - > type = importer - > get_resource_type ( ) ;
2021-09-23 21:09:15 +00:00
if ( fs - > files [ cpos ] - > type = = " " & & textfile_extensions . has ( file . get_extension ( ) ) ) {
fs - > files [ cpos ] - > type = " TextFile " ;
}
2019-04-19 18:54:33 +00:00
fs - > files [ cpos ] - > import_valid = err = = OK ;
//if file is currently up, maybe the source it was loaded from changed, so import math must be updated for it
//to reload properly
if ( ResourceCache : : has ( file ) ) {
Resource * r = ResourceCache : : get ( file ) ;
2021-12-09 09:42:46 +00:00
if ( ! r - > get_import_path ( ) . is_empty ( ) ) {
2019-04-19 18:54:33 +00:00
String dst_path = ResourceFormatImporter : : get_singleton ( ) - > get_internal_resource_path ( file ) ;
r - > set_import_path ( dst_path ) ;
r - > set_import_last_modified_time ( 0 ) ;
}
}
EditorResourcePreview : : get_singleton ( ) - > check_for_invalidation ( file ) ;
}
return err ;
}
2021-03-19 12:57:52 +00:00
void EditorFileSystem : : _reimport_file ( const String & p_file , const Map < StringName , Variant > * p_custom_options , const String & p_custom_importer ) {
2020-04-01 23:20:12 +00:00
EditorFileSystemDirectory * fs = nullptr ;
2017-03-05 15:44:50 +00:00
int cpos = - 1 ;
bool found = _find_file ( p_file , & fs , cpos ) ;
2019-09-25 08:28:50 +00:00
ERR_FAIL_COND_MSG ( ! found , " Can't find file ' " + p_file + " '. " ) ;
2017-02-01 12:45:45 +00:00
//try to obtain existing params
2017-03-05 15:44:50 +00:00
Map < StringName , Variant > params ;
2021-03-19 12:57:52 +00:00
String importer_name ; //empty by default though
2021-12-09 09:42:46 +00:00
if ( ! p_custom_importer . is_empty ( ) ) {
2021-03-19 12:57:52 +00:00
importer_name = p_custom_importer ;
}
if ( p_custom_options ! = nullptr ) {
params = * p_custom_options ;
}
2017-02-01 12:45:45 +00:00
2021-07-23 19:01:18 +00:00
ResourceUID : : ID uid = ResourceUID : : INVALID_ID ;
2017-03-05 15:44:50 +00:00
if ( FileAccess : : exists ( p_file + " .import " ) ) {
2017-07-23 21:48:05 +00:00
//use existing
2021-03-19 12:57:52 +00:00
if ( p_custom_options = = nullptr ) {
Ref < ConfigFile > cf ;
2021-06-17 22:03:09 +00:00
cf . instantiate ( ) ;
2021-03-19 12:57:52 +00:00
Error err = cf - > load ( p_file + " .import " ) ;
if ( err = = OK ) {
if ( cf - > has_section ( " params " ) ) {
List < String > sk ;
cf - > get_section_keys ( " params " , & sk ) ;
2021-07-24 13:46:25 +00:00
for ( const String & E : sk ) {
2021-07-16 03:45:57 +00:00
params [ E ] = cf - > get_value ( " params " , E ) ;
2021-03-19 12:57:52 +00:00
}
}
2021-07-23 19:01:18 +00:00
if ( cf - > has_section ( " remap " ) ) {
2021-12-09 09:42:46 +00:00
if ( p_custom_importer . is_empty ( ) ) {
2021-07-23 19:01:18 +00:00
importer_name = cf - > get_value ( " remap " , " importer " ) ;
}
if ( cf - > has_section_key ( " remap " , " uid " ) ) {
String uidt = cf - > get_value ( " remap " , " uid " ) ;
uid = ResourceUID : : get_singleton ( ) - > text_to_id ( uidt ) ;
}
2018-08-28 18:24:58 +00:00
}
2017-02-01 12:45:45 +00:00
}
}
}
2021-03-22 19:41:47 +00:00
if ( importer_name = = " keep " ) {
//keep files, do nothing.
fs - > files [ cpos ] - > modified_time = FileAccess : : get_modified_time ( p_file ) ;
fs - > files [ cpos ] - > import_modified_time = FileAccess : : get_modified_time ( p_file + " .import " ) ;
fs - > files [ cpos ] - > deps . clear ( ) ;
fs - > files [ cpos ] - > type = " " ;
fs - > files [ cpos ] - > import_valid = false ;
EditorResourcePreview : : get_singleton ( ) - > check_for_invalidation ( p_file ) ;
return ;
}
2017-02-01 12:45:45 +00:00
Ref < ResourceImporter > importer ;
2017-07-23 21:48:05 +00:00
bool load_default = false ;
2017-02-01 12:45:45 +00:00
//find the importer
2021-12-09 09:42:46 +00:00
if ( ! importer_name . is_empty ( ) ) {
2017-02-01 12:45:45 +00:00
importer = ResourceFormatImporter : : get_singleton ( ) - > get_importer_by_name ( importer_name ) ;
}
if ( importer . is_null ( ) ) {
//not found by name, find by extension
importer = ResourceFormatImporter : : get_singleton ( ) - > get_importer_by_extension ( p_file . get_extension ( ) ) ;
2017-07-23 21:48:05 +00:00
load_default = true ;
2017-02-01 12:45:45 +00:00
if ( importer . is_null ( ) ) {
2020-12-16 14:07:08 +00:00
ERR_PRINT ( " BUG: File queued for import, but can't be imported, importer for type ' " + importer_name + " ' not found. " ) ;
2017-02-01 12:45:45 +00:00
ERR_FAIL ( ) ;
}
}
//mix with default params, in case a parameter is missing
List < ResourceImporter : : ImportOption > opts ;
2021-11-14 17:02:38 +00:00
importer - > get_import_options ( p_file , & opts ) ;
2021-07-24 13:46:25 +00:00
for ( const ResourceImporter : : ImportOption & E : opts ) {
2021-07-16 03:45:57 +00:00
if ( ! params . has ( E . option . name ) ) { //this one is not present
params [ E . option . name ] = E . default_value ;
2017-02-01 12:45:45 +00:00
}
}
2017-10-05 18:34:34 +00:00
if ( load_default & & ProjectSettings : : get_singleton ( ) - > has_setting ( " importer_defaults/ " + importer - > get_importer_name ( ) ) ) {
2017-07-23 21:48:05 +00:00
//use defaults if exist
Dictionary d = ProjectSettings : : get_singleton ( ) - > get ( " importer_defaults/ " + importer - > get_importer_name ( ) ) ;
List < Variant > v ;
d . get_key_list ( & v ) ;
2021-07-24 13:46:25 +00:00
for ( const Variant & E : v ) {
2021-07-16 03:45:57 +00:00
params [ E ] = d [ E ] ;
2017-07-23 21:48:05 +00:00
}
}
2017-02-01 12:45:45 +00:00
//finally, perform import!!
String base_path = ResourceFormatImporter : : get_singleton ( ) - > get_import_base_path ( p_file ) ;
List < String > import_variants ;
2017-02-01 23:41:05 +00:00
List < String > gen_files ;
2019-02-26 21:43:37 +00:00
Variant metadata ;
Error err = importer - > import ( p_file , base_path , params , & import_variants , & gen_files , & metadata ) ;
2017-02-01 12:45:45 +00:00
2017-03-05 15:44:50 +00:00
if ( err ! = OK ) {
2019-11-06 16:03:04 +00:00
ERR_PRINT ( " Error importing ' " + p_file + " '. " ) ;
2017-02-01 23:41:05 +00:00
}
2017-02-01 12:45:45 +00:00
//as import is complete, save the .import file
2022-03-23 09:08:58 +00:00
Ref < FileAccess > f = FileAccess : : open ( p_file + " .import " , FileAccess : : WRITE ) ;
ERR_FAIL_COND_MSG ( f . is_null ( ) , " Cannot open file from path ' " + p_file + " .import'. " ) ;
2017-02-01 12:45:45 +00:00
//write manually, as order matters ([remap] has to go first for performance).
f - > store_line ( " [remap] " ) ;
f - > store_line ( " " ) ;
2017-03-05 15:44:50 +00:00
f - > store_line ( " importer= \" " + importer - > get_importer_name ( ) + " \" " ) ;
2020-12-16 14:07:08 +00:00
int version = importer - > get_format_version ( ) ;
if ( version > 0 ) {
f - > store_line ( " importer_version= " + itos ( version ) ) ;
}
2021-12-09 09:42:46 +00:00
if ( ! importer - > get_resource_type ( ) . is_empty ( ) ) {
2017-03-05 15:44:50 +00:00
f - > store_line ( " type= \" " + importer - > get_resource_type ( ) + " \" " ) ;
2017-02-01 23:41:05 +00:00
}
2017-02-01 12:45:45 +00:00
2021-07-23 19:01:18 +00:00
if ( uid = = ResourceUID : : INVALID_ID ) {
uid = ResourceUID : : get_singleton ( ) - > create_id ( ) ;
}
f - > store_line ( " uid= \" " + ResourceUID : : get_singleton ( ) - > id_to_text ( uid ) + " \" " ) ; //store in readable format
2017-12-27 18:21:18 +00:00
Vector < String > dest_paths ;
2017-08-29 22:50:58 +00:00
if ( err = = OK ) {
2021-12-09 09:42:46 +00:00
if ( importer - > get_save_extension ( ) . is_empty ( ) ) {
2017-08-29 22:50:58 +00:00
//no path
} else if ( import_variants . size ( ) ) {
//import with variants
2021-07-24 13:46:25 +00:00
for ( const String & E : import_variants ) {
2021-07-16 03:45:57 +00:00
String path = base_path . c_escape ( ) + " . " + E + " . " + importer - > get_save_extension ( ) ;
2017-08-29 22:50:58 +00:00
2021-07-16 03:45:57 +00:00
f - > store_line ( " path. " + E + " = \" " + path + " \" " ) ;
2017-12-27 18:21:18 +00:00
dest_paths . push_back ( path ) ;
2017-08-29 22:50:58 +00:00
}
} else {
2017-12-27 18:21:18 +00:00
String path = base_path + " . " + importer - > get_save_extension ( ) ;
f - > store_line ( " path= \" " + path + " \" " ) ;
dest_paths . push_back ( path ) ;
2017-02-01 12:45:45 +00:00
}
2017-08-29 22:50:58 +00:00
2017-02-01 12:45:45 +00:00
} else {
2017-08-29 22:50:58 +00:00
f - > store_line ( " valid=false " ) ;
2017-02-01 12:45:45 +00:00
}
2019-02-26 21:43:37 +00:00
if ( metadata ! = Variant ( ) ) {
f - > store_line ( " metadata= " + metadata . get_construct_string ( ) ) ;
}
2017-02-01 12:45:45 +00:00
f - > store_line ( " " ) ;
2017-08-17 20:02:43 +00:00
2017-11-24 16:57:18 +00:00
f - > store_line ( " [deps] \n " ) ;
2017-11-24 16:39:41 +00:00
2017-02-01 23:41:05 +00:00
if ( gen_files . size ( ) ) {
Array genf ;
2021-07-24 13:46:25 +00:00
for ( const String & E : gen_files ) {
2021-07-16 03:45:57 +00:00
genf . push_back ( E ) ;
dest_paths . push_back ( E ) ;
2017-02-01 23:41:05 +00:00
}
String value ;
2017-03-05 15:44:50 +00:00
VariantWriter : : write_to_string ( genf , value ) ;
f - > store_line ( " files= " + value ) ;
2017-02-01 23:41:05 +00:00
f - > store_line ( " " ) ;
}
2017-12-27 18:21:18 +00:00
f - > store_line ( " source_file= " + Variant ( p_file ) . get_construct_string ( ) ) ;
2017-11-24 16:39:41 +00:00
2017-12-27 18:21:18 +00:00
if ( dest_paths . size ( ) ) {
Array dp ;
for ( int i = 0 ; i < dest_paths . size ( ) ; i + + ) {
dp . push_back ( dest_paths [ i ] ) ;
}
2018-03-01 08:39:40 +00:00
f - > store_line ( " dest_files= " + Variant ( dp ) . get_construct_string ( ) + " \n " ) ;
2017-12-27 18:21:18 +00:00
}
2017-02-01 12:45:45 +00:00
f - > store_line ( " [params] " ) ;
f - > store_line ( " " ) ;
2017-07-19 20:00:46 +00:00
//store options in provided order, to avoid file changing. Order is also important because first match is accepted first.
2017-02-06 03:38:39 +00:00
2021-07-24 13:46:25 +00:00
for ( const ResourceImporter : : ImportOption & E : opts ) {
2021-07-16 03:45:57 +00:00
String base = E . option . name ;
2017-02-01 12:45:45 +00:00
String value ;
2017-03-05 15:44:50 +00:00
VariantWriter : : write_to_string ( params [ base ] , value ) ;
f - > store_line ( base + " = " + value ) ;
2017-02-01 12:45:45 +00:00
}
2018-03-01 08:39:40 +00:00
// Store the md5's of the various files. These are stored separately so that the .import files can be version controlled.
2022-03-23 09:08:58 +00:00
Ref < FileAccess > md5s = FileAccess : : open ( base_path + " .md5 " , FileAccess : : WRITE ) ;
ERR_FAIL_COND_MSG ( md5s . is_null ( ) , " Cannot open MD5 file ' " + base_path + " .md5'. " ) ;
2019-09-25 08:28:50 +00:00
2018-03-01 08:39:40 +00:00
md5s - > store_line ( " source_md5= \" " + FileAccess : : get_md5 ( p_file ) + " \" " ) ;
if ( dest_paths . size ( ) ) {
md5s - > store_line ( " dest_md5= \" " + FileAccess : : get_multiple_md5 ( dest_paths ) + " \" \n " ) ;
}
2017-02-01 12:45:45 +00:00
//update modified times, to avoid reimport
fs - > files [ cpos ] - > modified_time = FileAccess : : get_modified_time ( p_file ) ;
2017-03-05 15:44:50 +00:00
fs - > files [ cpos ] - > import_modified_time = FileAccess : : get_modified_time ( p_file + " .import " ) ;
2017-08-17 20:02:43 +00:00
fs - > files [ cpos ] - > deps = _get_dependencies ( p_file ) ;
fs - > files [ cpos ] - > type = importer - > get_resource_type ( ) ;
2021-07-23 19:01:18 +00:00
fs - > files [ cpos ] - > uid = uid ;
2017-08-29 22:50:58 +00:00
fs - > files [ cpos ] - > import_valid = ResourceLoader : : is_import_valid ( p_file ) ;
2017-02-06 03:38:39 +00:00
2021-07-23 19:01:18 +00:00
if ( ResourceUID : : get_singleton ( ) - > has_id ( uid ) ) {
ResourceUID : : get_singleton ( ) - > set_id ( uid , p_file ) ;
} else {
ResourceUID : : get_singleton ( ) - > add_id ( uid , p_file ) ;
}
2017-02-06 03:38:39 +00:00
//if file is currently up, maybe the source it was loaded from changed, so import math must be updated for it
//to reload properly
if ( ResourceCache : : has ( p_file ) ) {
Resource * r = ResourceCache : : get ( p_file ) ;
2021-12-09 09:42:46 +00:00
if ( ! r - > get_import_path ( ) . is_empty ( ) ) {
2017-02-06 03:38:39 +00:00
String dst_path = ResourceFormatImporter : : get_singleton ( ) - > get_internal_resource_path ( p_file ) ;
r - > set_import_path ( dst_path ) ;
r - > set_import_last_modified_time ( 0 ) ;
}
}
2017-11-12 03:48:00 +00:00
EditorResourcePreview : : get_singleton ( ) - > check_for_invalidation ( p_file ) ;
2017-02-01 12:45:45 +00:00
}
2020-03-17 06:33:00 +00:00
void EditorFileSystem : : _find_group_files ( EditorFileSystemDirectory * efd , Map < String , Vector < String > > & group_files , Set < String > & groups_to_reimport ) {
2019-04-19 18:54:33 +00:00
int fc = efd - > files . size ( ) ;
const EditorFileSystemDirectory : : FileInfo * const * files = efd - > files . ptr ( ) ;
for ( int i = 0 ; i < fc ; i + + ) {
if ( groups_to_reimport . has ( files [ i ] - > import_group_file ) ) {
if ( ! group_files . has ( files [ i ] - > import_group_file ) ) {
group_files [ files [ i ] - > import_group_file ] = Vector < String > ( ) ;
}
group_files [ files [ i ] - > import_group_file ] . push_back ( efd - > get_file_path ( i ) ) ;
}
}
for ( int i = 0 ; i < efd - > get_subdir_count ( ) ; i + + ) {
_find_group_files ( efd - > get_subdir ( i ) , group_files , groups_to_reimport ) ;
}
}
2021-03-19 12:57:52 +00:00
void EditorFileSystem : : reimport_file_with_custom_parameters ( const String & p_file , const String & p_importer , const Map < StringName , Variant > & p_custom_params ) {
_reimport_file ( p_file , & p_custom_params , p_importer ) ;
}
2021-03-24 23:44:13 +00:00
void EditorFileSystem : : _reimport_thread ( uint32_t p_index , ImportThreadData * p_import_data ) {
p_import_data - > max_index = MAX ( p_import_data - > reimport_from + int ( p_index ) , p_import_data - > max_index ) ;
_reimport_file ( p_import_data - > reimport_files [ p_import_data - > reimport_from + p_index ] . path ) ;
}
2017-03-05 15:44:50 +00:00
void EditorFileSystem : : reimport_files ( const Vector < String > & p_files ) {
importing = true ;
EditorProgress pr ( " reimport " , TTR ( " (Re) Importing Assets " ), p_files.size()) ;
2017-09-20 23:59:19 +00:00
2021-03-24 23:44:13 +00:00
Vector < ImportFile > reimport_files ;
2019-04-19 18:54:33 +00:00
Set < String > groups_to_reimport ;
2017-09-20 23:59:19 +00:00
2017-03-05 15:44:50 +00:00
for ( int i = 0 ; i < p_files . size ( ) ; i + + ) {
2021-07-23 19:01:18 +00:00
String file = p_files [ i ] ;
ResourceUID : : ID uid = ResourceUID : : get_singleton ( ) - > text_to_id ( file ) ;
if ( uid ! = ResourceUID : : INVALID_ID & & ResourceUID : : get_singleton ( ) - > has_id ( uid ) ) {
file = ResourceUID : : get_singleton ( ) - > get_id_path ( uid ) ;
}
String group_file = ResourceFormatImporter : : get_singleton ( ) - > get_import_group_file ( file ) ;
2019-04-19 18:54:33 +00:00
2021-07-23 19:01:18 +00:00
if ( group_file_cache . has ( file ) ) {
2019-04-19 18:54:33 +00:00
//maybe the file itself is a group!
2021-07-23 19:01:18 +00:00
groups_to_reimport . insert ( file ) ;
2019-04-19 18:54:33 +00:00
//groups do not belong to grups
group_file = String ( ) ;
2021-12-09 09:42:46 +00:00
} else if ( ! group_file . is_empty ( ) ) {
2019-04-19 18:54:33 +00:00
//it's a group file, add group to import and skip this file
groups_to_reimport . insert ( group_file ) ;
} else {
//it's a regular file
ImportFile ifile ;
2021-07-23 19:01:18 +00:00
ifile . path = file ;
ResourceFormatImporter : : get_singleton ( ) - > get_import_order_threads_and_importer ( file , ifile . order , ifile . threaded , ifile . importer ) ;
2021-03-24 23:44:13 +00:00
reimport_files . push_back ( ifile ) ;
2019-04-19 18:54:33 +00:00
}
//group may have changed, so also update group reference
2020-04-01 23:20:12 +00:00
EditorFileSystemDirectory * fs = nullptr ;
2019-04-19 18:54:33 +00:00
int cpos = - 1 ;
2021-07-23 19:01:18 +00:00
if ( _find_file ( file , & fs , cpos ) ) {
2019-04-19 18:54:33 +00:00
fs - > files . write [ cpos ] - > import_group_file = group_file ;
}
2017-09-20 23:59:19 +00:00
}
2021-03-24 23:44:13 +00:00
reimport_files . sort ( ) ;
2017-09-20 23:59:19 +00:00
2021-03-24 23:44:13 +00:00
bool use_threads = GLOBAL_GET ( " editor/import/use_multiple_threads " ) ;
int from = 0 ;
for ( int i = 0 ; i < reimport_files . size ( ) ; i + + ) {
if ( use_threads & & reimport_files [ i ] . threaded ) {
if ( i + 1 = = reimport_files . size ( ) | | reimport_files [ i + 1 ] . importer ! = reimport_files [ from ] . importer ) {
if ( from - i = = 0 ) {
//single file, do not use threads
pr . step ( reimport_files [ i ] . path . get_file ( ) , i ) ;
_reimport_file ( reimport_files [ i ] . path ) ;
} else {
Ref < ResourceImporter > importer = ResourceFormatImporter : : get_singleton ( ) - > get_importer_by_name ( reimport_files [ from ] . importer ) ;
ERR_CONTINUE ( ! importer . is_valid ( ) ) ;
importer - > import_threaded_begin ( ) ;
ImportThreadData data ;
data . max_index = from ;
data . reimport_from = from ;
data . reimport_files = reimport_files . ptr ( ) ;
import_threads . begin_work ( i - from + 1 , this , & EditorFileSystem : : _reimport_thread , & data ) ;
int current_index = from - 1 ;
do {
if ( current_index < data . max_index ) {
current_index = data . max_index ;
pr . step ( reimport_files [ current_index ] . path . get_file ( ) , current_index ) ;
}
OS : : get_singleton ( ) - > delay_usec ( 1 ) ;
} while ( ! import_threads . is_done_dispatching ( ) ) ;
import_threads . end_work ( ) ;
importer - > import_threaded_end ( ) ;
}
from = i + 1 ;
}
} else {
pr . step ( reimport_files [ i ] . path . get_file ( ) , i ) ;
_reimport_file ( reimport_files [ i ] . path ) ;
}
2017-02-01 12:45:45 +00:00
}
2019-04-19 18:54:33 +00:00
//reimport groups
if ( groups_to_reimport . size ( ) ) {
2020-03-17 06:33:00 +00:00
Map < String , Vector < String > > group_files ;
2019-04-19 18:54:33 +00:00
_find_group_files ( filesystem , group_files , groups_to_reimport ) ;
2021-08-09 20:13:42 +00:00
for ( const KeyValue < String , Vector < String > > & E : group_files ) {
Error err = _reimport_group ( E . key , E . value ) ;
2019-04-19 18:54:33 +00:00
if ( err = = OK ) {
2021-08-09 20:13:42 +00:00
_reimport_file ( E . key ) ;
2019-04-19 18:54:33 +00:00
}
}
}
2021-07-23 19:01:18 +00:00
ResourceUID : : get_singleton ( ) - > update_cache ( ) ; //after reimporting, update the cache
2017-02-01 12:45:45 +00:00
_save_filesystem_cache ( ) ;
2017-03-05 15:44:50 +00:00
importing = false ;
2017-02-06 03:38:39 +00:00
if ( ! is_scanning ( ) ) {
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " filesystem_changed " ) ) ;
2017-02-06 03:38:39 +00:00
}
2017-08-31 21:57:03 +00:00
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " resources_reimported " ) , p_files ) ;
2017-02-01 12:45:45 +00:00
}
2014-02-10 01:10:30 +00:00
2018-10-05 02:00:02 +00:00
Error EditorFileSystem : : _resource_import ( const String & p_path ) {
Vector < String > files ;
files . push_back ( p_path ) ;
singleton - > update_file ( p_path ) ;
singleton - > reimport_files ( files ) ;
return OK ;
}
2021-02-22 05:34:27 +00:00
bool EditorFileSystem : : _should_skip_directory ( const String & p_path ) {
2021-10-13 20:56:18 +00:00
String project_data_path = ProjectSettings : : get_singleton ( ) - > get_project_data_path ( ) ;
if ( p_path = = project_data_path | | p_path . begins_with ( project_data_path + " / " ) ) {
2021-09-10 15:32:29 +00:00
return true ;
}
2021-02-22 05:34:27 +00:00
if ( FileAccess : : exists ( p_path . plus_file ( " project.godot " ) ) ) {
// skip if another project inside this
return true ;
}
if ( FileAccess : : exists ( p_path . plus_file ( " .gdignore " ) ) ) {
// skip if a `.gdignore` file is inside this
return true ;
}
return false ;
}
2019-04-19 18:54:33 +00:00
bool EditorFileSystem : : is_group_file ( const String & p_path ) const {
return group_file_cache . has ( p_path ) ;
}
void EditorFileSystem : : _move_group_files ( EditorFileSystemDirectory * efd , const String & p_group_file , const String & p_new_location ) {
int fc = efd - > files . size ( ) ;
EditorFileSystemDirectory : : FileInfo * const * files = efd - > files . ptrw ( ) ;
for ( int i = 0 ; i < fc ; i + + ) {
if ( files [ i ] - > import_group_file = = p_group_file ) {
files [ i ] - > import_group_file = p_new_location ;
Ref < ConfigFile > config ;
2021-06-17 22:03:09 +00:00
config . instantiate ( ) ;
2019-04-19 18:54:33 +00:00
String path = efd - > get_file_path ( i ) + " .import " ;
Error err = config - > load ( path ) ;
if ( err ! = OK ) {
continue ;
}
if ( config - > has_section_key ( " remap " , " group_file " ) ) {
config - > set_value ( " remap " , " group_file " , p_new_location ) ;
}
List < String > sk ;
config - > get_section_keys ( " params " , & sk ) ;
2021-07-24 13:46:25 +00:00
for ( const String & param : sk ) {
2019-04-19 18:54:33 +00:00
//not very clean, but should work
String value = config - > get_value ( " params " , param ) ;
if ( value = = p_group_file ) {
config - > set_value ( " params " , param , p_new_location ) ;
}
}
config - > save ( path ) ;
}
}
for ( int i = 0 ; i < efd - > get_subdir_count ( ) ; i + + ) {
_move_group_files ( efd - > get_subdir ( i ) , p_group_file , p_new_location ) ;
}
}
void EditorFileSystem : : move_group_file ( const String & p_path , const String & p_new_path ) {
if ( get_filesystem ( ) ) {
_move_group_files ( get_filesystem ( ) , p_path , p_new_path ) ;
if ( group_file_cache . has ( p_path ) ) {
group_file_cache . erase ( p_path ) ;
group_file_cache . insert ( p_new_path ) ;
}
}
}
2021-07-23 19:01:18 +00:00
ResourceUID : : ID EditorFileSystem : : _resource_saver_get_resource_id_for_path ( const String & p_path , bool p_generate ) {
2021-09-10 15:32:29 +00:00
if ( ! p_path . is_resource_file ( ) | | p_path . begins_with ( ProjectSettings : : get_singleton ( ) - > get_project_data_path ( ) ) ) {
2021-07-23 19:01:18 +00:00
//saved externally (configuration file) or internal file, do not assign an ID.
return ResourceUID : : INVALID_ID ;
}
EditorFileSystemDirectory * fs = nullptr ;
int cpos = - 1 ;
if ( ! singleton - > _find_file ( p_path , & fs , cpos ) ) {
if ( p_generate ) {
return ResourceUID : : get_singleton ( ) - > create_id ( ) ; //just create a new one, we will be notified of save anyway and fetch the right UUID at that time, to keep things simple.
} else {
return ResourceUID : : INVALID_ID ;
}
} else if ( fs - > files [ cpos ] - > uid ! = ResourceUID : : INVALID_ID ) {
return fs - > files [ cpos ] - > uid ;
} else if ( p_generate ) {
return ResourceUID : : get_singleton ( ) - > create_id ( ) ; //just create a new one, we will be notified of save anyway and fetch the right UUID at that time, to keep things simple.
} else {
return ResourceUID : : INVALID_ID ;
}
}
2021-08-20 18:32:56 +00:00
static void _scan_extensions_dir ( EditorFileSystemDirectory * d , Set < String > & extensions ) {
int fc = d - > get_file_count ( ) ;
for ( int i = 0 ; i < fc ; i + + ) {
if ( d - > get_file_type ( i ) = = SNAME ( " NativeExtension " ) ) {
extensions . insert ( d - > get_file_path ( i ) ) ;
}
}
int dc = d - > get_subdir_count ( ) ;
for ( int i = 0 ; i < dc ; i + + ) {
_scan_extensions_dir ( d - > get_subdir ( i ) , extensions ) ;
}
}
bool EditorFileSystem : : _scan_extensions ( ) {
EditorFileSystemDirectory * d = get_filesystem ( ) ;
Set < String > extensions ;
2022-03-31 20:00:17 +00:00
2021-08-20 18:32:56 +00:00
_scan_extensions_dir ( d , extensions ) ;
//verify against loaded extensions
Vector < String > extensions_added ;
Vector < String > extensions_removed ;
for ( const String & E : extensions ) {
if ( ! NativeExtensionManager : : get_singleton ( ) - > is_extension_loaded ( E ) ) {
extensions_added . push_back ( E ) ;
}
}
Vector < String > loaded_extensions = NativeExtensionManager : : get_singleton ( ) - > get_loaded_extensions ( ) ;
for ( int i = 0 ; i < loaded_extensions . size ( ) ; i + + ) {
if ( ! extensions . has ( loaded_extensions [ i ] ) ) {
extensions_removed . push_back ( loaded_extensions [ i ] ) ;
}
}
2021-09-10 15:32:29 +00:00
String extension_list_config_file = NativeExtension : : get_extension_list_config_file ( ) ;
2021-08-20 18:32:56 +00:00
if ( extensions . size ( ) ) {
if ( extensions_added . size ( ) | | extensions_removed . size ( ) ) { //extensions were added or removed
2022-03-23 09:08:58 +00:00
Ref < FileAccess > f = FileAccess : : open ( extension_list_config_file , FileAccess : : WRITE ) ;
2021-08-20 18:32:56 +00:00
for ( const String & E : extensions ) {
f - > store_line ( E ) ;
}
}
} else {
2021-09-10 15:32:29 +00:00
if ( loaded_extensions . size ( ) | | FileAccess : : exists ( extension_list_config_file ) ) { //extensions were removed
2022-03-23 09:08:58 +00:00
Ref < DirAccess > da = DirAccess : : create ( DirAccess : : ACCESS_RESOURCES ) ;
2021-09-10 15:32:29 +00:00
da - > remove ( extension_list_config_file ) ;
2021-08-20 18:32:56 +00:00
}
}
bool needs_restart = false ;
for ( int i = 0 ; i < extensions_added . size ( ) ; i + + ) {
NativeExtensionManager : : LoadStatus st = NativeExtensionManager : : get_singleton ( ) - > load_extension ( extensions_added [ i ] ) ;
if ( st = = NativeExtensionManager : : LOAD_STATUS_FAILED ) {
EditorNode : : get_singleton ( ) - > add_io_error ( " Error loading extension: " + extensions_added [ i ] ) ;
} else if ( st = = NativeExtensionManager : : LOAD_STATUS_NEEDS_RESTART ) {
needs_restart = true ;
}
}
for ( int i = 0 ; i < extensions_removed . size ( ) ; i + + ) {
NativeExtensionManager : : LoadStatus st = NativeExtensionManager : : get_singleton ( ) - > unload_extension ( extensions_removed [ i ] ) ;
if ( st = = NativeExtensionManager : : LOAD_STATUS_FAILED ) {
EditorNode : : get_singleton ( ) - > add_io_error ( " Error removing extension: " + extensions_added [ i ] ) ;
} else if ( st = = NativeExtensionManager : : LOAD_STATUS_NEEDS_RESTART ) {
needs_restart = true ;
}
}
return needs_restart ;
}
2014-02-10 01:10:30 +00:00
void EditorFileSystem : : _bind_methods ( ) {
2017-08-09 11:19:41 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_filesystem " ) , & EditorFileSystem : : get_filesystem ) ;
2017-03-05 15:44:50 +00:00
ClassDB : : bind_method ( D_METHOD ( " is_scanning " ) , & EditorFileSystem : : is_scanning ) ;
ClassDB : : bind_method ( D_METHOD ( " get_scanning_progress " ) , & EditorFileSystem : : get_scanning_progress ) ;
ClassDB : : bind_method ( D_METHOD ( " scan " ) , & EditorFileSystem : : scan ) ;
ClassDB : : bind_method ( D_METHOD ( " scan_sources " ) , & EditorFileSystem : : scan_changes ) ;
ClassDB : : bind_method ( D_METHOD ( " update_file " , " path " ) , & EditorFileSystem : : update_file ) ;
2017-08-09 11:19:41 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_filesystem_path " , " path " ) , & EditorFileSystem : : get_filesystem_path ) ;
2017-03-05 15:44:50 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_file_type " , " path " ) , & EditorFileSystem : : get_file_type ) ;
2018-07-15 22:29:00 +00:00
ClassDB : : bind_method ( D_METHOD ( " update_script_classes " ) , & EditorFileSystem : : update_script_classes ) ;
2017-03-05 15:44:50 +00:00
ADD_SIGNAL ( MethodInfo ( " filesystem_changed " ) ) ;
ADD_SIGNAL ( MethodInfo ( " sources_changed " , PropertyInfo ( Variant : : BOOL , " exist " ) ) ) ;
2020-02-17 21:06:54 +00:00
ADD_SIGNAL ( MethodInfo ( " resources_reimported " , PropertyInfo ( Variant : : PACKED_STRING_ARRAY , " resources " ) ) ) ;
ADD_SIGNAL ( MethodInfo ( " resources_reload " , PropertyInfo ( Variant : : PACKED_STRING_ARRAY , " resources " ) ) ) ;
2014-02-10 01:10:30 +00:00
}
2017-02-01 12:45:45 +00:00
void EditorFileSystem : : _update_extensions ( ) {
valid_extensions . clear ( ) ;
import_extensions . clear ( ) ;
2021-09-23 21:09:15 +00:00
textfile_extensions . clear ( ) ;
2017-02-01 12:45:45 +00:00
List < String > extensionsl ;
2017-03-05 15:44:50 +00:00
ResourceLoader : : get_recognized_extensions_for_type ( " " , & extensionsl ) ;
2021-07-24 13:46:25 +00:00
for ( const String & E : extensionsl ) {
2021-07-16 03:45:57 +00:00
valid_extensions . insert ( E ) ;
2017-02-01 12:45:45 +00:00
}
2021-09-23 21:09:15 +00:00
const Vector < String > textfile_ext = ( ( String ) ( EditorSettings : : get_singleton ( ) - > get ( " docks/filesystem/textfile_extensions " ) ) ) . split ( " , " , false ) ;
for ( const String & E : textfile_ext ) {
if ( valid_extensions . has ( E ) ) {
continue ;
}
valid_extensions . insert ( E ) ;
textfile_extensions . insert ( E ) ;
}
2017-02-01 12:45:45 +00:00
extensionsl . clear ( ) ;
ResourceFormatImporter : : get_singleton ( ) - > get_recognized_extensions ( & extensionsl ) ;
2021-07-24 13:46:25 +00:00
for ( const String & E : extensionsl ) {
2021-07-16 03:45:57 +00:00
import_extensions . insert ( E ) ;
2017-02-01 12:45:45 +00:00
}
}
2016-07-03 16:15:15 +00:00
2022-03-31 20:00:17 +00:00
void EditorFileSystem : : add_import_format_support_query ( Ref < EditorFileSystemImportFormatSupportQuery > p_query ) {
ERR_FAIL_COND ( import_support_queries . find ( p_query ) ! = - 1 ) ;
import_support_queries . push_back ( p_query ) ;
}
void EditorFileSystem : : remove_import_format_support_query ( Ref < EditorFileSystemImportFormatSupportQuery > p_query ) {
import_support_queries . erase ( p_query ) ;
}
2014-02-10 01:10:30 +00:00
EditorFileSystem : : EditorFileSystem ( ) {
2018-10-05 02:00:02 +00:00
ResourceLoader : : import = _resource_import ;
2021-02-17 16:44:49 +00:00
reimport_on_missing_imported_files = GLOBAL_DEF ( " editor/import/reimport_missing_imported_files " , true ) ;
2021-03-24 23:44:13 +00:00
GLOBAL_DEF ( " editor/import/use_multiple_threads " , true ) ;
2017-03-05 15:44:50 +00:00
singleton = this ;
filesystem = memnew ( EditorFileSystemDirectory ) ; //like, empty
2020-04-01 23:20:12 +00:00
filesystem - > parent = nullptr ;
2014-02-10 01:10:30 +00:00
2020-04-01 23:20:12 +00:00
new_filesystem = nullptr ;
2014-02-10 01:10:30 +00:00
2019-04-27 14:50:26 +00:00
// This should probably also work on Unix and use the string it returns for FAT32 or exFAT
2022-03-23 09:08:58 +00:00
Ref < DirAccess > da = DirAccess : : create ( DirAccess : : ACCESS_RESOURCES ) ;
2019-04-27 14:50:26 +00:00
using_fat32_or_exfat = ( da - > get_filesystem_type ( ) = = " FAT32 " | | da - > get_filesystem_type ( ) = = " exFAT " ) ;
2014-02-10 01:10:30 +00:00
2017-03-05 15:44:50 +00:00
scan_total = 0 ;
2021-02-10 18:22:13 +00:00
update_script_classes_queued . clear ( ) ;
2021-03-24 23:44:13 +00:00
import_threads . init ( ) ;
2021-07-23 19:01:18 +00:00
ResourceUID : : get_singleton ( ) - > clear ( ) ; //will be updated on scan
ResourceSaver : : set_get_resource_id_for_path ( _resource_saver_get_resource_id_for_path ) ;
2014-02-10 01:10:30 +00:00
}
EditorFileSystem : : ~ EditorFileSystem ( ) {
2021-03-24 23:44:13 +00:00
import_threads . finish ( ) ;
2021-07-23 19:01:18 +00:00
ResourceSaver : : set_get_resource_id_for_path ( nullptr ) ;
2014-02-10 01:10:30 +00:00
}