summaryrefslogtreecommitdiffstats
path: root/modules/gltf/editor
diff options
context:
space:
mode:
authormxaddict <mxaddict@codedmaster.com>2023-11-30 02:33:36 +0800
committermxaddict <mxaddict@codedmaster.com>2024-01-27 03:44:27 +0800
commit857586b7ae41f1e50ad3ff85e42cb84df159d7c6 (patch)
tree6a877b85e5f0d7894fdc86c71618b253d1472cd3 /modules/gltf/editor
parent17e7f85c06366b427e5068c5b3e2940e27ff5f1d (diff)
downloadredot-engine-857586b7ae41f1e50ad3ff85e42cb84df159d7c6.tar.gz
Added proper timeout for blender rpc connection
Diffstat (limited to 'modules/gltf/editor')
-rw-r--r--modules/gltf/editor/editor_import_blend_runner.cpp60
-rw-r--r--modules/gltf/editor/editor_import_blend_runner.h2
2 files changed, 41 insertions, 21 deletions
diff --git a/modules/gltf/editor/editor_import_blend_runner.cpp b/modules/gltf/editor/editor_import_blend_runner.cpp
index 659a60e6a1..fc3bb8d11c 100644
--- a/modules/gltf/editor/editor_import_blend_runner.cpp
+++ b/modules/gltf/editor/editor_import_blend_runner.cpp
@@ -198,6 +198,40 @@ Error EditorImportBlendRunner::do_import(const Dictionary &p_options) {
}
}
+HTTPClient::Status EditorImportBlendRunner::connect_blender_rpc(const Ref<HTTPClient> &p_client, int p_timeout_usecs) {
+ p_client->connect_to_host("127.0.0.1", rpc_port);
+ HTTPClient::Status status = p_client->get_status();
+
+ int attempts = 1;
+ int wait_usecs = 1000;
+
+ bool done = false;
+ while (!done) {
+ OS::get_singleton()->delay_usec(wait_usecs);
+ status = p_client->get_status();
+ switch (status) {
+ case HTTPClient::STATUS_RESOLVING:
+ case HTTPClient::STATUS_CONNECTING: {
+ p_client->poll();
+ break;
+ }
+ case HTTPClient::STATUS_CONNECTED: {
+ done = true;
+ break;
+ }
+ default: {
+ if (attempts * wait_usecs < p_timeout_usecs) {
+ p_client->connect_to_host("127.0.0.1", rpc_port);
+ } else {
+ return status;
+ }
+ }
+ }
+ }
+
+ return status;
+}
+
Error EditorImportBlendRunner::do_import_rpc(const Dictionary &p_options) {
kill_timer->stop();
@@ -217,25 +251,9 @@ Error EditorImportBlendRunner::do_import_rpc(const Dictionary &p_options) {
// Connect to RPC server.
Ref<HTTPClient> client = HTTPClient::create();
- client->connect_to_host("127.0.0.1", rpc_port);
-
- bool done = false;
- while (!done) {
- HTTPClient::Status status = client->get_status();
- switch (status) {
- case HTTPClient::STATUS_RESOLVING:
- case HTTPClient::STATUS_CONNECTING: {
- client->poll();
- break;
- }
- case HTTPClient::STATUS_CONNECTED: {
- done = true;
- break;
- }
- default: {
- ERR_FAIL_V_MSG(ERR_CONNECTION_ERROR, vformat("Unexpected status during RPC connection: %d", status));
- }
- }
+ HTTPClient::Status status = connect_blender_rpc(client, 1000000);
+ if (status != HTTPClient::STATUS_CONNECTED) {
+ ERR_FAIL_V_MSG(ERR_CONNECTION_ERROR, vformat("Unexpected status during RPC connection: %d", status));
}
// Send XML request.
@@ -246,9 +264,9 @@ Error EditorImportBlendRunner::do_import_rpc(const Dictionary &p_options) {
}
// Wait for response.
- done = false;
+ bool done = false;
while (!done) {
- HTTPClient::Status status = client->get_status();
+ status = client->get_status();
switch (status) {
case HTTPClient::STATUS_REQUESTING: {
client->poll();
diff --git a/modules/gltf/editor/editor_import_blend_runner.h b/modules/gltf/editor/editor_import_blend_runner.h
index b2b82394e1..626f3c9eba 100644
--- a/modules/gltf/editor/editor_import_blend_runner.h
+++ b/modules/gltf/editor/editor_import_blend_runner.h
@@ -33,6 +33,7 @@
#ifdef TOOLS_ENABLED
+#include "core/io/http_client.h"
#include "core/os/os.h"
#include "scene/main/node.h"
#include "scene/main/timer.h"
@@ -60,6 +61,7 @@ public:
bool is_running() { return blender_pid != 0 && OS::get_singleton()->is_process_running(blender_pid); }
bool is_using_rpc() { return rpc_port != 0; }
Error do_import(const Dictionary &p_options);
+ HTTPClient::Status connect_blender_rpc(const Ref<HTTPClient> &p_client, int p_timeout_usecs);
EditorImportBlendRunner();
};