summaryrefslogtreecommitdiffstats
path: root/scene/resources/resource_format_text.cpp
diff options
context:
space:
mode:
authorPedro J. Estébanez <pedrojrulez@gmail.com>2023-03-05 01:09:18 +0100
committerPedro J. Estébanez <pedrojrulez@gmail.com>2023-05-10 18:53:41 +0200
commit8983b20ccd2f8a91d87789f2c0dd90f4e31b8b2c (patch)
tree47e6293784d88811a66b15bd328e5465982bb43f /scene/resources/resource_format_text.cpp
parentc80a2b4fe99dcd0bba6fc24ed2748b1474b24448 (diff)
downloadredot-engine-8983b20ccd2f8a91d87789f2c0dd90f4e31b8b2c.tar.gz
Avoid interaction issues between resource loading threads
Diffstat (limited to 'scene/resources/resource_format_text.cpp')
-rw-r--r--scene/resources/resource_format_text.cpp83
1 files changed, 27 insertions, 56 deletions
diff --git a/scene/resources/resource_format_text.cpp b/scene/resources/resource_format_text.cpp
index c30e009356..4807af3c27 100644
--- a/scene/resources/resource_format_text.cpp
+++ b/scene/resources/resource_format_text.cpp
@@ -150,32 +150,31 @@ Error ResourceLoaderText::_parse_ext_resource(VariantParser::Stream *p_stream, R
String path = ext_resources[id].path;
String type = ext_resources[id].type;
+ Ref<ResourceLoader::LoadToken> &load_token = ext_resources[id].load_token;
- if (ext_resources[id].cache.is_valid()) {
- r_res = ext_resources[id].cache;
- } else if (use_sub_threads) {
- Ref<Resource> res = ResourceLoader::load_threaded_get(path);
+ if (load_token.is_valid()) { // If not valid, it's OK since then we know this load accepts broken dependencies.
+ Ref<Resource> res = ResourceLoader::_load_complete(*load_token.ptr(), &err);
if (res.is_null()) {
- if (ResourceLoader::get_abort_on_missing_resources()) {
- error = ERR_FILE_MISSING_DEPENDENCIES;
- error_text = "[ext_resource] referenced nonexistent resource at: " + path;
- _printerr();
- err = error;
- } else {
- ResourceLoader::notify_dependency_error(local_path, path, type);
+ if (!ResourceLoader::is_cleaning_tasks()) {
+ if (ResourceLoader::get_abort_on_missing_resources()) {
+ error = ERR_FILE_MISSING_DEPENDENCIES;
+ error_text = "[ext_resource] referenced non-existent resource at: " + path;
+ _printerr();
+ err = error;
+ } else {
+ ResourceLoader::notify_dependency_error(local_path, path, type);
+ }
}
} else {
- ext_resources[id].cache = res;
+#ifdef TOOLS_ENABLED
+ //remember ID for saving
+ res->set_id_for_path(path, id);
+#endif
r_res = res;
}
} else {
- error = ERR_FILE_MISSING_DEPENDENCIES;
- error_text = "[ext_resource] referenced non-loaded resource at: " + path;
- _printerr();
- err = error;
+ r_res = Ref<Resource>();
}
- } else {
- r_res = Ref<Resource>();
}
VariantParser::get_token(p_stream, token, line, r_err_str);
@@ -462,48 +461,20 @@ Error ResourceLoaderText::load() {
path = remaps[path];
}
- ExtResource er;
- er.path = path;
- er.type = type;
-
- if (use_sub_threads) {
- Error err = ResourceLoader::load_threaded_request(path, type, use_sub_threads, ResourceFormatLoader::CACHE_MODE_REUSE, local_path);
-
- if (err != OK) {
- if (ResourceLoader::get_abort_on_missing_resources()) {
- error = ERR_FILE_CORRUPT;
- error_text = "[ext_resource] referenced broken resource at: " + path;
- _printerr();
- return error;
- } else {
- ResourceLoader::notify_dependency_error(local_path, path, type);
- }
- }
-
- } else {
- Ref<Resource> res = ResourceLoader::load(path, type);
-
- if (res.is_null()) {
- if (ResourceLoader::get_abort_on_missing_resources()) {
- error = ERR_FILE_CORRUPT;
- error_text = "[ext_resource] referenced nonexistent resource at: " + path;
- _printerr();
- return error;
- } else {
- ResourceLoader::notify_dependency_error(local_path, path, type);
- }
+ ext_resources[id].path = path;
+ ext_resources[id].type = type;
+ ext_resources[id].load_token = ResourceLoader::_load_start(path, type, use_sub_threads ? ResourceLoader::LOAD_THREAD_DISTRIBUTE : ResourceLoader::LOAD_THREAD_FROM_CURRENT, ResourceFormatLoader::CACHE_MODE_REUSE);
+ if (!ext_resources[id].load_token.is_valid()) {
+ if (ResourceLoader::get_abort_on_missing_resources()) {
+ error = ERR_FILE_CORRUPT;
+ error_text = "[ext_resource] referenced non-existent resource at: " + path;
+ _printerr();
+ return error;
} else {
-#ifdef TOOLS_ENABLED
- //remember ID for saving
- res->set_id_for_path(local_path, id);
-#endif
+ ResourceLoader::notify_dependency_error(local_path, path, type);
}
-
- er.cache = res;
}
- ext_resources[id] = er;
-
error = VariantParser::parse_tag(&stream, lines, error_text, next_tag, &rp);
if (error) {