-
Notifications
You must be signed in to change notification settings - Fork 228
/
Copy pathsystem.py
400 lines (334 loc) · 14.7 KB
/
system.py
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
# -*- coding: utf-8 -*-
import logging
import threading
from .async_plugin_manager import AsyncPluginManager
from . import action
from . import action_server
from . import calibration
from . import camera
from . import camera_server
from . import component_information
from . import component_information_server
from . import core
from . import failure
from . import follow_me
from . import ftp
from . import geofence
from . import gimbal
from . import info
from . import log_files
from . import manual_control
from . import mission
from . import mission_raw
from . import mission_raw_server
from . import mocap
from . import offboard
from . import param
from . import param_server
from . import rtk
from . import server_utility
from . import shell
from . import telemetry
from . import telemetry_server
from . import tracking_server
from . import transponder
from . import tune
from . import bin
class System:
"""
Instantiate a System object, that will serve as a proxy to
all the MAVSDK plugins.
Parameters
----------
mavsdk_server_address: str
Address of a running mavsdk_server instance. If None,
an instance of mavsdk_server will be automatically
started (on localhost).
port: int
Port of the running mavsdk_server instance specified by
mavsdk_server_address.
sysid: int
MAVLink system ID of the mavsdk_server (1..255).
compid: int
MAVLink component ID of the mavsdk_server (1..255).
"""
def __init__(self, mavsdk_server_address=None, port=50051, sysid=245, compid=190):
self._mavsdk_server_address = mavsdk_server_address
self._port = port
self._sysid = sysid
self._compid = compid
self._plugins = {}
self._server_process = None
def __del__(self):
self._stop_mavsdk_server()
async def connect(self, system_address=None, verbose=True):
"""
Connect the System object to a remote system.
Parameters
----------
system_address: str
The address of the remote system. If None, it will
default to udp://:14540. Supported URL formats:
- Serial: serial:///path/to/serial/dev[:baudrate]
- UDP: udp://[bind_host][:bind_port]
- TCP: tcp://[server_host][:server_port]
"""
if self._server_process is not None:
# a mavsdk_server have already been launch by this instance:
# --> clean all before trying to reconnect
self._stop_mavsdk_server()
# add a delay to be sure recourses have been freed and restart mavsdk_server
import time; time.sleep(1)
if self._mavsdk_server_address is None:
self._mavsdk_server_address = 'localhost'
self._server_process = self._start_mavsdk_server(system_address,self._port, self._sysid, self._compid, verbose)
await self._init_plugins(self._mavsdk_server_address, self._port)
def _stop_mavsdk_server(self):
"""
kill the running mavsdk_server and clean the whole instance
"""
import subprocess
if isinstance(self._server_process,subprocess.Popen):
self._server_process.kill()
self.__init__(port = self._port)
async def _init_plugins(self, host, port):
plugin_manager = await AsyncPluginManager.create(host=host, port=port)
self._plugins = {}
self._plugins["action"] = action.Action(plugin_manager)
self._plugins["action_server"] = action_server.ActionServer(plugin_manager)
self._plugins["calibration"] = calibration.Calibration(plugin_manager)
self._plugins["camera"] = camera.Camera(plugin_manager)
self._plugins["camera_server"] = camera_server.CameraServer(plugin_manager)
self._plugins["component_information"] = component_information.ComponentInformation(plugin_manager)
self._plugins["component_information_server"] = component_information_server.ComponentInformationServer(plugin_manager)
self._plugins["core"] = core.Core(plugin_manager)
self._plugins["failure"] = failure.Failure(plugin_manager)
self._plugins["follow_me"] = follow_me.FollowMe(plugin_manager)
self._plugins["ftp"] = ftp.Ftp(plugin_manager)
self._plugins["geofence"] = geofence.Geofence(plugin_manager)
self._plugins["gimbal"] = gimbal.Gimbal(plugin_manager)
self._plugins["info"] = info.Info(plugin_manager)
self._plugins["log_files"] = log_files.LogFiles(plugin_manager)
self._plugins["manual_control"] = manual_control.ManualControl(plugin_manager)
self._plugins["mission"] = mission.Mission(plugin_manager)
self._plugins["mission_raw"] = mission_raw.MissionRaw(plugin_manager)
self._plugins["mission_raw_server"] = mission_raw_server.MissionRawServer(plugin_manager)
self._plugins["mocap"] = mocap.Mocap(plugin_manager)
self._plugins["offboard"] = offboard.Offboard(plugin_manager)
self._plugins["param"] = param.Param(plugin_manager)
self._plugins["param_server"] = param_server.ParamServer(plugin_manager)
self._plugins["rtk"] = rtk.Rtk(plugin_manager)
self._plugins["server_utility"] = server_utility.ServerUtility(plugin_manager)
self._plugins["shell"] = shell.Shell(plugin_manager)
self._plugins["telemetry"] = telemetry.Telemetry(plugin_manager)
self._plugins["telemetry_server"] = telemetry_server.TelemetryServer(plugin_manager)
self._plugins["tracking_server"] = tracking_server.TrackingServer(plugin_manager)
self._plugins["transponder"] = transponder.Transponder(plugin_manager)
self._plugins["tune"] = tune.Tune(plugin_manager)
@staticmethod
def error_uninitialized(plugin_name: str) -> str:
return "{plugin_name} plugin has not been initialized! " \
"Did you run `System.connect()`?"
@property
def action(self) -> action.Action:
if "action" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Action"))
return self._plugins["action"]
@property
def action_server(self) -> action_server.ActionServer:
if "action_server" not in self._plugins:
raise RuntimeError(self.error_uninitialized("ActionServer"))
return self._plugins["action_server"]
@property
def calibration(self) -> calibration.Calibration:
if "calibration" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Calibration"))
return self._plugins["calibration"]
@property
def camera(self) -> camera.Camera:
if "camera" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Camera"))
return self._plugins["camera"]
@property
def camera_server(self) -> camera_server.CameraServer:
if "camera_server" not in self._plugins:
raise RuntimeError(self.error_uninitialized("CameraServer"))
return self._plugins["camera_server"]
@property
def component_information(self) -> component_information.ComponentInformation:
if "component_information" not in self._plugins:
raise RuntimeError(self.error_uninitialized("ComponentInformation"))
return self._plugins["component_information"]
@property
def component_information_server(self) -> component_information_server.ComponentInformationServer:
if "component_information_server" not in self._plugins:
raise RuntimeError(self.error_uninitialized("ComponentInformationServer"))
return self._plugins["component_information_server"]
@property
def core(self) -> core.Core:
if "core" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Core"))
return self._plugins["core"]
@property
def failure(self) -> failure.Failure:
if "failure" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Failure"))
return self._plugins["failure"]
@property
def follow_me(self) -> follow_me.FollowMe:
if "follow_me" not in self._plugins:
raise RuntimeError(self.error_uninitialized("FollowMe"))
return self._plugins["follow_me"]
@property
def ftp(self) -> ftp.Ftp:
if "ftp" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Ftp"))
return self._plugins["ftp"]
@property
def geofence(self) -> geofence.Geofence:
if "geofence" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Geofence"))
return self._plugins["geofence"]
@property
def gimbal(self) -> gimbal.Gimbal:
if "gimbal" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Gimbal"))
return self._plugins["gimbal"]
@property
def info(self) -> info.Info:
if "info" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Info"))
return self._plugins["info"]
@property
def log_files(self) -> log_files.LogFiles:
if "log_files" not in self._plugins:
raise RuntimeError(self.error_uninitialized("LogFiles"))
return self._plugins["log_files"]
@property
def manual_control(self) -> manual_control.ManualControl:
if "manual_control" not in self._plugins:
raise RuntimeError(self.error_uninitialized("ManualControl"))
return self._plugins["manual_control"]
@property
def mission(self) -> mission.Mission:
if "mission" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Mission"))
return self._plugins["mission"]
@property
def mission_raw(self) -> mission_raw.MissionRaw:
if "mission_raw" not in self._plugins:
raise RuntimeError(self.error_uninitialized("MissionRaw"))
return self._plugins["mission_raw"]
@property
def mission_raw_server(self) -> mission_raw_server.MissionRawServer:
if "mission_raw_server" not in self._plugins:
raise RuntimeError(self.error_uninitialized("MissionRawServer"))
return self._plugins["mission_raw_server"]
@property
def mocap(self) -> mocap.Mocap:
if "mocap" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Mocap"))
return self._plugins["mocap"]
@property
def offboard(self) -> offboard.Offboard:
if "offboard" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Offboard"))
return self._plugins["offboard"]
@property
def param(self) -> param.Param:
if "param" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Param"))
return self._plugins["param"]
@property
def param_server(self) -> param_server.ParamServer:
if "param_server" not in self._plugins:
raise RuntimeError(self.error_uninitialized("ParamServer"))
return self._plugins["param_server"]
@property
def rtk(self) -> rtk.Rtk:
if "rtk" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Rtk"))
return self._plugins["rtk"]
@property
def server_utility(self) -> server_utility.ServerUtility:
if "server_utility" not in self._plugins:
raise RuntimeError(self.error_uninitialized("ServerUtility"))
return self._plugins["server_utility"]
@property
def shell(self) -> shell.Shell:
if "shell" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Shell"))
return self._plugins["shell"]
@property
def telemetry(self) -> telemetry.Telemetry:
if "telemetry" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Telemetry"))
return self._plugins["telemetry"]
@property
def telemetry_server(self) -> telemetry_server.TelemetryServer:
if "telemetry_server" not in self._plugins:
raise RuntimeError(self.error_uninitialized("TelemetryServer"))
return self._plugins["telemetry_server"]
@property
def tracking_server(self) -> tracking_server.TrackingServer:
if "tracking_server" not in self._plugins:
raise RuntimeError(self.error_uninitialized("TrackingServer"))
return self._plugins["tracking_server"]
@property
def transponder(self) -> transponder.Transponder:
if "transponder" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Transponder"))
return self._plugins["transponder"]
@property
def tune(self) -> tune.Tune:
if "tune" not in self._plugins:
raise RuntimeError(self.error_uninitialized("Tune"))
return self._plugins["tune"]
@staticmethod
def _start_mavsdk_server(system_address, port, sysid, compid, verbose=True):
"""
Starts the gRPC server in a subprocess, listening on localhost:port
port parameter can be specified now to allow multiple mavsdk servers to be spawned via code
"""
import atexit
import os
import subprocess
import sys
if sys.version_info >= (3, 7):
from importlib.resources import path
else:
from importlib_resources import path
try:
if sys.platform.startswith('win'):
mavsdk_exec_name = "mavsdk_server.exe"
else:
mavsdk_exec_name = "mavsdk_server"
with path(bin, mavsdk_exec_name) as backend:
bin_path_and_args = [os.fspath(backend),
"-p", str(port),
"--sysid", str(sysid),
"--compid", str(compid)]
if system_address:
bin_path_and_args.append(system_address)
p = subprocess.Popen(bin_path_and_args,
shell=False,
stdout=subprocess.DEVNULL if not verbose else None,
stderr=subprocess.DEVNULL if not verbose else None)
except FileNotFoundError:
print("""
This installation does not provide an embedded 'mavsdk_server' binary.
If you installed using pip, this means that 'mavsdk_server' is not distributed
for your platform yet (e.g. arm).
You will need to get and run the 'mavsdk_server' binary manually:
1. Download 'mavsdk_server' from: https://github.com/mavlink/mavsdk/releases
or build it from source.
2. Run it, e.g. on port 50051:
'./mavsdk_server -p 50051'
3. Set the 'mavsdk_server_address' and port when creating the System:
'drone = System(mavsdk_server_address='localhost', port=50051)'
""")
sys.exit(1)
def cleanup():
p.kill()
atexit.register(cleanup)
return p