forked from ArduPilot/MethodicConfigurator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackend_filesystem_program_settings.py
More file actions
418 lines (336 loc) · 16.5 KB
/
Copy pathbackend_filesystem_program_settings.py
File metadata and controls
418 lines (336 loc) · 16.5 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
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
"""
Manages program settings at the filesystem level.
This file is part of ArduPilot Methodic Configurator. https://github.com/ArduPilot/MethodicConfigurator
SPDX-FileCopyrightText: 2024-2025 Amilcar do Carmo Lucas <amilcar.lucas@iav.de>
SPDX-License-Identifier: GPL-3.0-or-later
"""
# from sys import exit as sys_exit
from contextlib import suppress as contextlib_suppress
from glob import glob as glob_glob
from importlib.resources import files as importlib_files
from json import dump as json_dump
from json import load as json_load
from logging import debug as logging_debug
from logging import error as logging_error
from os import makedirs as os_makedirs
from os import path as os_path
from os import sep as os_sep
from pathlib import Path
from platform import system as platform_system
from re import escape as re_escape
from re import match as re_match
from re import sub as re_sub
from typing import Any, Optional, Union
from platformdirs import site_config_dir, user_config_dir
from ardupilot_methodic_configurator import _
class ProgramSettings:
"""
A class responsible for managing various settings related to the ArduPilot Methodic Configurator.
This includes handling paths for icons, logos, and directories for storing vehicle configurations,
templates, and user preferences. It also manages the creation of new vehicle directories and
validation of directory names according to specific rules.
"""
def __init__(self) -> None:
pass
@classmethod
def _get_settings_defaults(cls) -> dict[str, Union[int, bool, str, float, dict]]:
"""
Get the default settings dictionary with dynamically computed paths.
Returns:
dict: Default settings with all paths properly computed
"""
# Define default settings directly - no need for deep copying
settings_directory = cls._user_config_dir()
return {
"Format version": 1,
"display_usage_popup": {
"component_editor": True,
"component_editor_validation": True,
"parameter_editor": True,
},
"directory_selection": {
"template_dir": os_path.join(cls.get_templates_base_dir(), "ArduCopter", "empty_4.6.x"),
"new_base_dir": os_path.join(settings_directory, "vehicles"),
"vehicle_dir": os_path.join(settings_directory, "vehicles"),
},
"auto_open_doc_in_browser": True,
"annotate_docs_into_param_files": False,
"gui_complexity": "simple", # simple or normal
# Motor test settings
"motor_test": {
"duration": 2, # Default test duration in seconds
"throttle_pct": 10, # Default throttle percentage (10%)
},
}
@staticmethod
def _recursive_merge_defaults(settings: dict[str, Any], defaults: dict[str, Any]) -> dict[str, Any]:
"""
Recursively merge default values into settings dictionary.
This handles nested dictionaries properly and is much cleaner than manual checking.
Args:
settings: Existing settings dictionary
defaults: Default values to merge in
Returns:
dict: Settings with all defaults applied
"""
for key, default_value in defaults.items():
if key not in settings:
settings[key] = default_value
elif isinstance(default_value, dict) and isinstance(settings[key], dict):
# Recursively merge nested dictionaries
settings[key] = ProgramSettings._recursive_merge_defaults(settings[key], default_value)
return settings
@staticmethod
def _get_settings_as_dict() -> dict[str, Any]:
settings_path = os_path.join(ProgramSettings._user_config_dir(), "settings.json")
settings = ProgramSettings._load_settings_from_file(settings_path)
# fallback to default values if settings are not defined in the json file
return ProgramSettings._recursive_merge_defaults(settings, ProgramSettings._get_settings_defaults())
@staticmethod
def application_icon_filepath() -> str:
"""Get the application icon path, with fallback options."""
try:
package_path = importlib_files("ardupilot_methodic_configurator")
except (ImportError, FileNotFoundError):
# Fallback: try to find icon relative to the script
package_path = Path(os_path.dirname(os_path.abspath(__file__)))
icon_path = str(package_path / "images" / "ArduPilot_icon.png")
if os_path.exists(icon_path):
return icon_path
# If no icon found, return empty string (GUI will handle the error)
return ""
@staticmethod
def application_logo_filepath() -> str:
package_path = importlib_files("ardupilot_methodic_configurator")
return str(package_path / "images" / "ArduPilot_logo.png")
@staticmethod
def create_new_vehicle_dir(new_vehicle_dir: str) -> str:
# Check if the new vehicle directory already exists
if os_path.exists(new_vehicle_dir):
return _("Directory already exists, choose a different one")
try:
# Create the new vehicle directory
os_makedirs(new_vehicle_dir, exist_ok=True)
except OSError as e:
logging_error(_("Error creating new vehicle directory: %s"), e)
return str(e)
return ""
@staticmethod
def valid_directory_name(dir_name: str) -> bool:
"""
Check if a name contains only alphanumeric characters, underscores, hyphens, dots and the OS directory separator.
This function is designed to ensure that the directory name does not contain characters that are
invalid for directory names in many operating systems. It does not guarantee that the name
is valid in all contexts or operating systems, as directory name validity can vary.
Args:
dir_name (str): The directory name to check.
Returns:
bool: True if the directory name matches the allowed pattern, False otherwise.
"""
# Include os.sep and dot in the pattern
pattern = r"^[\w" + re_escape(os_sep) + ".-]+$"
return re_match(pattern, dir_name) is not None
@staticmethod
def _user_config_dir() -> str:
user_config_directory = user_config_dir(
".ardupilot_methodic_configurator", appauthor=False, roaming=True, ensure_exists=False
)
if not os_path.exists(user_config_directory):
os_makedirs(user_config_directory, exist_ok=True)
if not os_path.exists(user_config_directory):
error_msg = _("The user configuration directory '{user_config_directory}' does not exist.")
raise FileNotFoundError(error_msg.format(**locals()))
if not os_path.isdir(user_config_directory):
error_msg = _("The path '{user_config_directory}' is not a directory.")
raise NotADirectoryError(error_msg.format(**locals()))
return user_config_directory
@staticmethod
def _site_config_dir() -> str:
site_config_directory = site_config_dir(
".ardupilot_methodic_configurator", appauthor=False, version=None, multipath=False, ensure_exists=False
)
if not os_path.exists(site_config_directory):
with contextlib_suppress(OSError):
os_makedirs(site_config_directory, exist_ok=True)
if not os_path.exists(site_config_directory):
error_msg = _("The site configuration directory '{site_config_directory}' does not exist.")
raise FileNotFoundError(error_msg.format(**locals()))
if not os_path.isdir(site_config_directory):
error_msg = _("The path '{site_config_directory}' is not a directory.")
raise NotADirectoryError(error_msg.format(**locals()))
return site_config_directory
@staticmethod
def _load_settings_from_file(settings_path: str) -> dict[str, Any]:
"""
Load settings from the specified file path.
Returns:
dict: Loaded settings or empty dict if file doesn't exist
"""
try:
with open(settings_path, encoding="utf-8-sig") as settings_file:
loaded_settings: dict[str, Any] = json_load(settings_file)
return loaded_settings
except FileNotFoundError:
# If the file does not exist, it will be created later
return {}
@staticmethod
def _set_settings_from_dict(settings: dict) -> None:
settings_path = os_path.join(ProgramSettings._user_config_dir(), "settings.json")
with open(settings_path, "w", encoding="utf-8") as settings_file:
json_dump(settings, settings_file, indent=4)
@staticmethod
def _normalize_path_separators(path: str) -> str:
"""
Normalize path separators for the current platform.
Args:
path: Path to normalize
Returns:
str: Path with normalized separators
"""
# Regular expression pattern to match single backslashes
pattern = r"(?<!\\)\\(?!\\)|(?<!/)/(?!/)"
# Replacement string
replacement = r"\\" if platform_system() == "Windows" else r"/"
return re_sub(pattern, replacement, path)
@staticmethod
def store_recently_used_template_dirs(template_dir: str, new_base_dir: str) -> None:
settings = ProgramSettings._get_settings_as_dict()
# Update the settings with the new values
settings["directory_selection"].update(
{
"template_dir": ProgramSettings._normalize_path_separators(template_dir),
"new_base_dir": ProgramSettings._normalize_path_separators(new_base_dir),
}
)
ProgramSettings._set_settings_from_dict(settings)
@staticmethod
def store_template_dir(relative_template_dir: str) -> None:
settings = ProgramSettings._get_settings_as_dict()
template_dir = os_path.join(ProgramSettings.get_templates_base_dir(), relative_template_dir)
# Update the settings with the new values
settings["directory_selection"].update({"template_dir": ProgramSettings._normalize_path_separators(template_dir)})
ProgramSettings._set_settings_from_dict(settings)
@staticmethod
def store_recently_used_vehicle_dir(vehicle_dir: str) -> None:
settings = ProgramSettings._get_settings_as_dict()
# Update the settings with the new values
settings["directory_selection"].update({"vehicle_dir": ProgramSettings._normalize_path_separators(vehicle_dir)})
ProgramSettings._set_settings_from_dict(settings)
@staticmethod
def get_templates_base_dir() -> str:
package_path = importlib_files("ardupilot_methodic_configurator")
logging_debug("current script directory1: %s", package_path)
if platform_system() == "Windows":
package_path = Path(ProgramSettings._site_config_dir())
logging_debug("current script directory2: %s", package_path)
logging_debug(_("site_directory: %s"), package_path)
return str(package_path / "vehicle_templates")
@staticmethod
def get_recently_used_dirs() -> tuple[str, str, str]:
settings_directory = ProgramSettings._user_config_dir()
vehicles_default_dir = os_path.join(settings_directory, "vehicles")
if not os_path.exists(vehicles_default_dir):
os_makedirs(vehicles_default_dir, exist_ok=True)
settings = ProgramSettings._get_settings_as_dict()
template_dir = settings["directory_selection"].get("template_dir")
new_base_dir = settings["directory_selection"].get("new_base_dir")
vehicle_dir = settings["directory_selection"].get("vehicle_dir")
return template_dir, new_base_dir, vehicle_dir
@staticmethod
def display_usage_popup(ptype: str) -> bool:
display_usage_popup_settings = ProgramSettings._get_settings_as_dict().get("display_usage_popup", {})
return bool(display_usage_popup_settings.get(ptype, True))
@staticmethod
def set_display_usage_popup(ptype: str, value: bool) -> None:
if ptype in {"component_editor", "component_editor_validation", "parameter_editor"}:
settings = ProgramSettings._get_settings_as_dict()
settings["display_usage_popup"][ptype] = value
ProgramSettings._set_settings_from_dict(settings)
@staticmethod
def get_setting(setting: str) -> Optional[Union[int, bool, str, float]]:
settings = ProgramSettings._get_settings_as_dict()
setting_parts = setting.split("/")
for part in setting_parts:
if part in settings:
settings = settings[part]
else:
logging_error(_("Setting '%s' not found in settings dictionary"), setting)
return None
if isinstance(settings, (int, bool, str, float)):
return settings
return None
@staticmethod
def set_setting(setting: str, value: Union[bool, str, float]) -> None:
settings = ProgramSettings._get_settings_as_dict()
setting_parts = setting.split("/")
# Handle hierarchical setting paths (e.g., "directory_selection/template_dir")
if len(setting_parts) > 1:
current = settings
# Navigate to the nested dictionary, except for the last part
for i, part in enumerate(setting_parts[:-1]):
if part not in current or not isinstance(current[part], dict):
logging_error(
_("Cannot set nested setting '%s': parent path '%s' not found or not a dictionary"),
setting,
"/".join(setting_parts[: i + 1]),
)
return
current = current[part]
# Set the value at the final level
last_part = setting_parts[-1]
if last_part in current:
current[last_part] = value
ProgramSettings._set_settings_from_dict(settings)
else:
logging_error(_("Setting path '%s' not found in settings dictionary"), setting)
# Handle simple (non-hierarchical) setting
elif setting in settings:
settings[setting] = value
ProgramSettings._set_settings_from_dict(settings)
else:
logging_error(_("Setting '%s' not found in settings dictionary"), setting)
# Motor Test Settings
@staticmethod
def motor_diagram_filepath(frame_class: int, frame_type: int) -> tuple[str, str]:
"""
Get the filepath for the motor diagram PNG file.
Args:
frame_class: ArduPilot frame class (1=QUAD, 2=HEXA, etc.)
frame_type: ArduPilot frame type (0=PLUS, 1=X, etc.)
Returns:
str: Absolute path to the motor diagram PNG file
str: Error message if multiple or no files found, empty string if no error
"""
# See https://github.com/ArduPilot/ardupilot_wiki/pull/6215
# Determine the application directory (where images are stored)
package_path = importlib_files("ardupilot_methodic_configurator")
images_dir = package_path / "images" / "motor_diagrams_png"
# Generate PNG filename based on frame configuration
filename = f"m_{frame_class:02d}_{frame_type:02d}_*.png"
# Search for matching PNG file (since exact naming varies)
matching_files = glob_glob(str(images_dir / filename))
err_msg = (
""
if len(matching_files) == 1
else _("Multiple motor diagrams found for class %d and type %d") % (frame_class, frame_type)
)
if matching_files:
if err_msg:
logging_error(err_msg)
return matching_files[0], err_msg # Return first match
# If not found, return empty string
err_msg = _("Motor diagram not found for class %d and type %d") % (frame_class, frame_type)
logging_error(err_msg)
return "", err_msg
@staticmethod
def motor_diagram_exists(frame_class: int, frame_type: int) -> bool:
"""
Check if a motor diagram exists for the given frame configuration.
Args:
frame_class: ArduPilot frame class
frame_type: ArduPilot frame type
Returns:
bool: True if diagram exists, False otherwise
"""
filepath, _error_msg = ProgramSettings.motor_diagram_filepath(frame_class, frame_type)
return filepath != "" and os_path.exists(filepath)