AgentDevice.py
7.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
#!/usr/bin/env python3
import sys
##import utils.Logger as L
import time
##from .Agent import Agent
sys.path.append("..")
from agent.Agent import Agent, extract_parameters
from common.models import AgentDeviceStatus, get_or_create_unique_row_from_model
sys.path.append("../../..")
##log = L.setupLogger("AgentXTaskLogger", "AgentX")
class AgentDevice(Agent):
_agent_device_status = None
# FOR TEST ONLY
# Run this agent in simulator mode
SIMULATOR_MODE = False
# Run the assertion tests at the end
SIMULATOR_WITH_TEST = False
#SIMULATOR_MAX_DURATION_SEC = None
SIMULATOR_MAX_DURATION_SEC = 100
# Who should I send commands to ?
#SIMULATOR_COMMANDS_DEST = "myself"
SIMULATOR_COMMANDS_DEST = "AgentB"
# Scenario to be executed
SIMULATOR_COMMANDS_LIST = [
# Ask receiver to delete all its previous commands
"flush_commands",
"go_active",
# Because of this command, the receiver agent :
# - will no more send any new command
# - will only execute "generic" commands (and not the "specific" ones)
"go_idle",
# Not executed (skipped) because receiver agent is now "idle"
#"specific0",
# Because of this command, the receiver agent
# will now be able to send new commands
"go_active",
# Executed because recipient agent is now "active"
"specific1",
# should abort previous command (specific1)
"abort",
# Executed completely because no abort
"specific2",
# fully executed, result is 7
"eval 4+3",
"go_idle",
"exit",
]
"""
=================================================================
FUNCTIONS RUN INSIDE MAIN THREAD
=================================================================
"""
# @override
#def __init__(self, name:str=None, config_filename=None, RUN_IN_THREAD=True, device_controller, host, port):
def __init__(self, name:str, config_filename, RUN_IN_THREAD, device_controller, host, port):
if name is None: name = self.__class__.__name__
super().__init__(name, config_filename, RUN_IN_THREAD)
# Initialize the device table status
# If table is empty, create a default 1st row
##self._agent_device_status = get_or_create_unique_row_from_model(AgentDeviceStatus)
self._agent_device_status = AgentDeviceStatus.getStatusForAgent(name)
"""
if not AgentDeviceTelescopeStatus.objects.exists():
print("CREATE first row")
self._agent_device_status = AgentDeviceTelescopeStatus.objects.create(id=1)
# Get 1st row (will be updated at each iteration by routine_process() with current device status)
print("GET first row")
self._agent_device_status = AgentDeviceTelescopeStatus.objects.get(id=1)
"""
# Initialize the device socket
# Port local AK 8085 = redirigé sur l’IP du tele 192.168.0.12 sur port 11110
##HOST, PORT = "82.64.28.71", 11110
#HOST, PORT = "localhost", 11110
#self._device_ctrl = TelescopeControllerGEMINI(host, port, True)
##self._device_ctrl = device_controller(HOST, PORT, True)
self._device_ctrl = device_controller(host, port, True)
self._log.print(f"init done for {name}")
# @override
def init(self):
super().init()
# --- Set the mode according the startmode value
##agent_alias = self.__class__.__name__
##self.set_mode_from_config(agent_alias)
# Device socket init
# (optional) Only useful for TCP (does nothing for UDP)
self._device_ctrl._connect_to_device()
self._device_ctrl.print_available_commands()
# Telescope (long) init
# TODO:
'''
# @override
def load_config(self):
super().load_config()
'''
'''
# @override
def update_survey(self):
super().update_survey()
'''
'''
# @override
def get_next_command(self):
return super().get_next_command()
'''
# @override
def do_log(self):
super().do_log()
# @override
def routine_process(self):
self.print("ROUTINE PROCESS START: reading my dedicated device status information and storing it in DB)...")
# Save current device status to DB
#AgentDeviceTelescopeStatus.objects.create(radec=myradec)
#if not self.is_running_specific_cmd():
self.save_device_status()
self.print("Status saved in DB")
#time.sleep(3)
self.print("ROUTINE PROCESS END")
def save_device_status(self):
self._agent_device_status.status = self.get_device_status()
self._agent_device_status.save()
# To be overriden by subclass
def get_device_status(self):
return 'Abstract status'
# @override
def kill_running_specific_cmd_if_exists(self, abort_sender):
super().kill_running_specific_cmd_if_exists(abort_sender)
print("Close device socket")
self._device_ctrl.close()
"""
# @override
def specific_process(self, cmd):
cmd.set_read_time()
cmd.set_as_running()
res = self._device_ctrl.execute_cmd(cmd.name)
cmd.set_result(str(res))
print("result is", str(res))
if res.ok: print("OK")
cmd.set_as_processed()
time.sleep(1)
"""
"""
=================================================================
FUNCTIONS RUN INSIDE A SUB-THREAD (OR A PROCESS) (thread_*())
=================================================================
"""
# Define your own command step(s) here
def cmd_step(self, step:int):
cmd = self._current_specific_cmd
res = self._device_ctrl.execute_cmd(cmd.name)
cmd.set_result(str(res))
print("result is", str(res))
if res.ok: print("OK")
#cmd.set_as_processed()
time.sleep(1)
#cmd.set_result(f"in step #{step}/{self._thread_total_steps_number}")
cmd.set_result(res)
# @override
def thread_exec_specific_cmd_main(self):
# This is optional
self.thread_set_total_steps_number(1)
# HERE, write your own scenario
self.thread_exec_specific_cmd_step(1, self.cmd_step, 1)
# ... as many as you need
""" other scenario
self.thread_exec_specific_cmd_step(1, self.cmd_step1, 1)
self.thread_exec_specific_cmd_step(2, self.cmd_step2, 2)
self.thread_exec_specific_cmd_step(3, self.cmd_step1, 2)
self.thread_exec_specific_cmd_step(4, self.cmd_step3, 2)
self.thread_exec_specific_cmd_step(5, self.cmd_step1, 3)
"""
'''
# @override
def exec_specific_cmd_end(self, cmd:Command, from_thread=True):
super().exec_specific_cmd_end(cmd, from_thread)
'''
"""
=================================================================
MAIN FUNCTION
=================================================================
"""
if __name__ == "__main__":
# with thread
RUN_IN_THREAD=True
# with process
#RUN_IN_THREAD=False
TEST_MODE, configfile = extract_parameters()
"""
configfile = None
# arg 1 : config file
if len(sys.argv) == 2:
configfile = sys.argv[1]
"""
#agent = AgentX()
agent = AgentDevice("AgentDevice", configfile, RUN_IN_THREAD)
agent.setSimulatorMode(TEST_MODE)
print(agent)
agent.run()