isar 1.27.0__py3-none-any.whl → 1.27.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of isar might be problematic. Click here for more details.
- isar/robot/robot_task_status.py +3 -3
- isar/state_machine/states/stopping.py +0 -5
- isar/state_machine/transitions/functions/stop.py +10 -1
- isar/state_machine/transitions/mission.py +2 -1
- {isar-1.27.0.dist-info → isar-1.27.2.dist-info}/METADATA +1 -1
- {isar-1.27.0.dist-info → isar-1.27.2.dist-info}/RECORD +10 -10
- {isar-1.27.0.dist-info → isar-1.27.2.dist-info}/WHEEL +1 -1
- {isar-1.27.0.dist-info → isar-1.27.2.dist-info}/entry_points.txt +0 -0
- {isar-1.27.0.dist-info → isar-1.27.2.dist-info}/licenses/LICENSE +0 -0
- {isar-1.27.0.dist-info → isar-1.27.2.dist-info}/top_level.txt +0 -0
isar/robot/robot_task_status.py
CHANGED
|
@@ -50,15 +50,15 @@ class RobotTaskStatusThread(Thread):
|
|
|
50
50
|
|
|
51
51
|
try:
|
|
52
52
|
task_status = self.robot.task_status(self.task_id)
|
|
53
|
-
|
|
53
|
+
request_status_failure_counter = 0
|
|
54
54
|
except (
|
|
55
55
|
RobotCommunicationTimeoutException,
|
|
56
56
|
RobotCommunicationException,
|
|
57
57
|
) as e:
|
|
58
|
-
|
|
58
|
+
request_status_failure_counter += 1
|
|
59
59
|
self.logger.error(
|
|
60
60
|
f"Failed to get task status "
|
|
61
|
-
f"{
|
|
61
|
+
f"{request_status_failure_counter} times because: "
|
|
62
62
|
f"{e.error_description}"
|
|
63
63
|
)
|
|
64
64
|
|
|
@@ -6,7 +6,6 @@ from typing import TYPE_CHECKING, Optional
|
|
|
6
6
|
from transitions import State
|
|
7
7
|
|
|
8
8
|
from isar.models.communication.queues.queue_utils import check_for_event
|
|
9
|
-
from isar.services.utilities.threaded_request import ThreadedRequest
|
|
10
9
|
from robot_interface.models.exceptions.robot_exceptions import ErrorMessage
|
|
11
10
|
|
|
12
11
|
if TYPE_CHECKING:
|
|
@@ -19,7 +18,6 @@ class Stopping(State):
|
|
|
19
18
|
self.state_machine: "StateMachine" = state_machine
|
|
20
19
|
self.logger = logging.getLogger("state_machine")
|
|
21
20
|
self.events = self.state_machine.events
|
|
22
|
-
self.stop_thread: Optional[ThreadedRequest] = None
|
|
23
21
|
self._count_number_retries: int = 0
|
|
24
22
|
self.signal_state_machine_to_stop = state_machine.signal_state_machine_to_stop
|
|
25
23
|
self.stopping_return_home_mission: bool = False
|
|
@@ -33,9 +31,6 @@ class Stopping(State):
|
|
|
33
31
|
self._run()
|
|
34
32
|
|
|
35
33
|
def stop(self) -> None:
|
|
36
|
-
if self.stop_thread:
|
|
37
|
-
self.stop_thread.wait_for_thread()
|
|
38
|
-
self.stop_thread = None
|
|
39
34
|
self._count_number_retries = 0
|
|
40
35
|
self.stopping_return_home_mission = False
|
|
41
36
|
|
|
@@ -34,7 +34,16 @@ def stop_mission_cleanup(state_machine: "StateMachine") -> bool:
|
|
|
34
34
|
state_machine._make_control_mission_response()
|
|
35
35
|
)
|
|
36
36
|
state_machine.events.api_requests.stop_mission.output.put(stopped_mission_response)
|
|
37
|
-
|
|
38
37
|
state_machine.publish_task_status(task=state_machine.current_task)
|
|
39
38
|
state_machine._finalize()
|
|
40
39
|
return True
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def stop_return_home_mission_cleanup(state_machine: "StateMachine") -> bool:
|
|
43
|
+
if state_machine.current_mission is None:
|
|
44
|
+
state_machine._queue_empty_response()
|
|
45
|
+
state_machine.reset_state_machine()
|
|
46
|
+
return True
|
|
47
|
+
|
|
48
|
+
state_machine._finalize()
|
|
49
|
+
return True
|
|
@@ -15,6 +15,7 @@ from isar.state_machine.transitions.functions.start_mission import (
|
|
|
15
15
|
)
|
|
16
16
|
from isar.state_machine.transitions.functions.stop import (
|
|
17
17
|
stop_mission_cleanup,
|
|
18
|
+
stop_return_home_mission_cleanup,
|
|
18
19
|
trigger_stop_mission_event,
|
|
19
20
|
)
|
|
20
21
|
from isar.state_machine.transitions.functions.utils import def_transition
|
|
@@ -59,7 +60,7 @@ def get_mission_transitions(state_machine: "StateMachine") -> List[dict]:
|
|
|
59
60
|
"trigger": "return_home_mission_stopped",
|
|
60
61
|
"source": state_machine.stopping_state,
|
|
61
62
|
"dest": state_machine.robot_standing_still_state,
|
|
62
|
-
"before": def_transition(state_machine,
|
|
63
|
+
"before": def_transition(state_machine, stop_return_home_mission_cleanup),
|
|
63
64
|
},
|
|
64
65
|
{
|
|
65
66
|
"trigger": "request_mission_start",
|
|
@@ -54,7 +54,7 @@ isar/robot/robot.py,sha256=ubHX8AM54Iz5CdINfSRkhs7V8VGSIeuH1pZboUfeLMw,5244
|
|
|
54
54
|
isar/robot/robot_start_mission.py,sha256=0S5mzOENLtRvW75THr_PTlSDycI3NVMOptJuL9TV0v8,2766
|
|
55
55
|
isar/robot/robot_status.py,sha256=j5fGq5FzpEscmqUL6i8jRWCZEJ56b2g_DUpAgWpE1YI,1935
|
|
56
56
|
isar/robot/robot_stop_mission.py,sha256=jUyfemvbyigxrlIp9aKPn-PvarhagJEgajQPS_LgJ7g,2442
|
|
57
|
-
isar/robot/robot_task_status.py,sha256=
|
|
57
|
+
isar/robot/robot_task_status.py,sha256=71SYPnoqaFbTe1bELLTvAUigAJ-McpomC2sjYQNQs_A,3290
|
|
58
58
|
isar/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
59
|
isar/services/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
60
|
isar/services/auth/azure_credentials.py,sha256=9PlwGe5FrPRbW2dp0go7LMp8_l_FRvL8xOXotXwzRDo,364
|
|
@@ -82,9 +82,9 @@ isar/state_machine/states/offline.py,sha256=aqHv8EH68pfq4yTIxOxxDW7VMkPWcQZX3fNg
|
|
|
82
82
|
isar/state_machine/states/paused.py,sha256=NgEl48GjLvnqGfPipYZZ6Yj8vdTb-fFLAK2tUu8i9j8,1461
|
|
83
83
|
isar/state_machine/states/returning_home.py,sha256=UErxB5xQMtjHtCmg-GLJutli2D6Lc29tbhdNcdxIC2M,6973
|
|
84
84
|
isar/state_machine/states/robot_standing_still.py,sha256=h2a0CTxXIjE8YKT9_8hkU80q0caq4TYCxHaOYB54cKc,3378
|
|
85
|
-
isar/state_machine/states/stopping.py,sha256=
|
|
85
|
+
isar/state_machine/states/stopping.py,sha256=Y44kEw-xB9_63eP6utAMY0RegrIz_1nL5cSI3cfaXEg,2838
|
|
86
86
|
isar/state_machine/states/unknown_status.py,sha256=tOwfHW_4bKKkUTpKD7qc5gIwGT_fTXaCNxXcogGw-wo,2416
|
|
87
|
-
isar/state_machine/transitions/mission.py,sha256=
|
|
87
|
+
isar/state_machine/transitions/mission.py,sha256=JJt_v84xFS60cMDIz_MsE6GRLBwpxx2JM5BTIB2O05Q,4867
|
|
88
88
|
isar/state_machine/transitions/return_home.py,sha256=LeOMnckUUQYzBYRidD2ge6M0KdxGDTgo-ioXR7_9r8A,2714
|
|
89
89
|
isar/state_machine/transitions/robot_status.py,sha256=c1ceyWRGCtx-KTDtxHXRD7oPbt8TQ2ej24A0wyim8vc,2720
|
|
90
90
|
isar/state_machine/transitions/functions/fail_mission.py,sha256=_6HqBMALDinFZ4yh5GMpeqqgV5tw5i8OVMj5UDdqesg,495
|
|
@@ -94,7 +94,7 @@ isar/state_machine/transitions/functions/resume.py,sha256=9KQjH_6YBGyxFhb7G5dgDe
|
|
|
94
94
|
isar/state_machine/transitions/functions/return_home.py,sha256=UlniwYvpz74hxqgN0TyVv3LCmiMsqsosKEtEGLqkNj0,1139
|
|
95
95
|
isar/state_machine/transitions/functions/robot_status.py,sha256=xhKZ5u_X8uDvnhvGnAIABuKaPXeVqFjkgj4H2Om-j_A,1013
|
|
96
96
|
isar/state_machine/transitions/functions/start_mission.py,sha256=w8UDiq9pOHu-ei61ng6rWGjfrh6nk_qSokEVdzBHwzY,2516
|
|
97
|
-
isar/state_machine/transitions/functions/stop.py,sha256=
|
|
97
|
+
isar/state_machine/transitions/functions/stop.py,sha256=aIj3EPnpgNLdsJwOK1ehhI1TpenQa9JjBxZH0Nm6dLg,1649
|
|
98
98
|
isar/state_machine/transitions/functions/utils.py,sha256=Wa72Ocq4QT1E6qkpEJZQ3h5o33pGvx7Tlkt2JZ2Grbk,314
|
|
99
99
|
isar/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
100
100
|
isar/storage/blob_storage.py,sha256=Qci6bO508nlTHKPuPtVU5QcvGA4T7mv8cFrKWRcfw4g,3226
|
|
@@ -103,7 +103,7 @@ isar/storage/slimm_storage.py,sha256=DJVvTce4cb8m0_b_r6yog41UuxO_9VKb1hYCZUTEhR0
|
|
|
103
103
|
isar/storage/storage_interface.py,sha256=DYDry4I7aZpDHJhsBF6s8zrgokFAc7fdKJKfA8AvL7o,828
|
|
104
104
|
isar/storage/uploader.py,sha256=M7FEr0iLsrSil8SqP7vmB3hswIOA2HTrnakj6aOQbvg,6749
|
|
105
105
|
isar/storage/utilities.py,sha256=fitsdQ1ox5gr9fk9VuSk_iTBiEAIS8NZAnHabUZORh0,3173
|
|
106
|
-
isar-1.27.
|
|
106
|
+
isar-1.27.2.dist-info/licenses/LICENSE,sha256=3fc2-ebLwHWwzfQbulGNRdcNob3SBQeCfEVUDYxsuqw,14058
|
|
107
107
|
robot_interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
108
|
robot_interface/robot_interface.py,sha256=Bkk-joyIzRHxv8iZt7FLPFnlE8chlJad9vgjwc-fDkw,8786
|
|
109
109
|
robot_interface/test_robot_interface.py,sha256=FV1urn7SbsMyWBIcTKjsBwAG4IsXeZ6pLHE0mA9EGGs,692
|
|
@@ -127,8 +127,8 @@ robot_interface/telemetry/payloads.py,sha256=m55aFrIczI-PDwQXvsFA6M7YNCTy83w7Ff-
|
|
|
127
127
|
robot_interface/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
128
|
robot_interface/utilities/json_service.py,sha256=qkzVkb60Gi_pto-b5n1vNzCrQze2yqgIJqSLNLYj1Fg,1034
|
|
129
129
|
robot_interface/utilities/uuid_string_factory.py,sha256=_NQIbBQ56w0qqO0MUDP6aPpHbxW7ATRhK8HnQiBSLkc,76
|
|
130
|
-
isar-1.27.
|
|
131
|
-
isar-1.27.
|
|
132
|
-
isar-1.27.
|
|
133
|
-
isar-1.27.
|
|
134
|
-
isar-1.27.
|
|
130
|
+
isar-1.27.2.dist-info/METADATA,sha256=TgKO_J8HQ-cWqYrry3YO78zJSOFZE6XY2I6HcdrIbZI,30709
|
|
131
|
+
isar-1.27.2.dist-info/WHEEL,sha256=ooBFpIzZCPdw3uqIQsOo4qqbA4ZRPxHnOH7peeONza0,91
|
|
132
|
+
isar-1.27.2.dist-info/entry_points.txt,sha256=TFam7uNNw7J0iiDYzsH2gfG0u1eV1wh3JTw_HkhgKLk,49
|
|
133
|
+
isar-1.27.2.dist-info/top_level.txt,sha256=UwIML2RtuQKCyJJkatcSnyp6-ldDjboB9k9JgKipO-U,21
|
|
134
|
+
isar-1.27.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|