-
Notifications
You must be signed in to change notification settings - Fork 14.5k
/
setup_commands.py
643 lines (582 loc) · 25.6 KB
/
setup_commands.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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from __future__ import annotations
import hashlib
import json
import os
import shutil
import subprocess
import sys
from pathlib import Path
from typing import Any
import click
from click import Context
from rich.console import Console
from airflow_breeze import NAME, VERSION
from airflow_breeze.commands.main_command import main
from airflow_breeze.utils.cache import check_if_cache_exists, delete_cache, touch_cache_file
from airflow_breeze.utils.click_utils import BreezeGroup
from airflow_breeze.utils.common_options import (
option_answer,
option_backend,
option_dry_run,
option_mssql_version,
option_mysql_version,
option_postgres_version,
option_python,
option_verbose,
)
from airflow_breeze.utils.confirm import STANDARD_TIMEOUT, Answer, user_confirm
from airflow_breeze.utils.console import get_console, get_stderr_console
from airflow_breeze.utils.custom_param_types import BetterChoice
from airflow_breeze.utils.path_utils import (
AIRFLOW_SOURCES_ROOT,
get_installation_airflow_sources,
get_installation_sources_config_metadata_hash,
get_package_setup_metadata_hash,
get_used_airflow_sources,
get_used_sources_setup_metadata_hash,
)
from airflow_breeze.utils.recording import generating_command_images
from airflow_breeze.utils.reinstall import reinstall_breeze, warn_non_editable
from airflow_breeze.utils.run_utils import run_command
from airflow_breeze.utils.shared_options import get_dry_run, get_verbose
from airflow_breeze.utils.visuals import ASCIIART, ASCIIART_STYLE
@click.group(cls=BreezeGroup, name="setup", help="Tools that developers can use to configure Breeze")
def setup():
pass
@click.option(
"-a",
"--use-current-airflow-sources",
is_flag=True,
help="Use current workdir Airflow sources for upgrade"
+ (f" rather than {get_installation_airflow_sources()}." if not generating_command_images() else "."),
)
@setup.command(
name="self-upgrade",
help="Self upgrade Breeze. By default it re-installs Breeze "
f"from {get_installation_airflow_sources()}."
if not generating_command_images()
else "Self upgrade Breeze.",
)
def self_upgrade(use_current_airflow_sources: bool):
if use_current_airflow_sources:
airflow_sources: Path | None = get_used_airflow_sources()
else:
airflow_sources = get_installation_airflow_sources()
if airflow_sources is not None:
breeze_sources = airflow_sources / "dev" / "breeze"
reinstall_breeze(breeze_sources, re_run=False)
else:
warn_non_editable()
sys.exit(1)
@setup.command(name="autocomplete")
@click.option(
"-f",
"--force",
is_flag=True,
help="Force autocomplete setup even if already setup before (overrides the setup).",
)
@option_verbose
@option_dry_run
@option_answer
def autocomplete(force: bool):
"""
Enables autocompletion of breeze commands.
"""
# Determine if the shell is bash/zsh/powershell. It helps to build the autocomplete path
detected_shell = os.environ.get("SHELL")
detected_shell = None if detected_shell is None else detected_shell.split(os.sep)[-1]
if detected_shell not in ["bash", "zsh", "fish"]:
get_console().print(f"\n[error] The shell {detected_shell} is not supported for autocomplete![/]\n")
sys.exit(1)
get_console().print(f"Installing {detected_shell} completion for local user")
autocomplete_path = (
AIRFLOW_SOURCES_ROOT / "dev" / "breeze" / "autocomplete" / f"{NAME}-complete-{detected_shell}.sh"
)
get_console().print(f"[info]Activation command script is available here: {autocomplete_path}[/]\n")
get_console().print(f"[warning]We need to add above script to your {detected_shell} profile.[/]\n")
given_answer = user_confirm(
"Should we proceed with modifying the script?", default_answer=Answer.NO, timeout=STANDARD_TIMEOUT
)
if given_answer == Answer.YES:
if detected_shell == "bash":
script_path = str(Path("~").expanduser() / ".bash_completion")
command_to_execute = f"source {autocomplete_path}"
write_to_shell(command_to_execute, script_path, force)
elif detected_shell == "zsh":
script_path = str(Path("~").expanduser() / ".zshrc")
command_to_execute = f"source {autocomplete_path}"
write_to_shell(command_to_execute, script_path, force)
elif detected_shell == "fish":
# Include steps for fish shell
script_path = str(Path("~").expanduser() / f".config/fish/completions/{NAME}.fish")
if os.path.exists(script_path) and not force:
get_console().print(
"\n[warning]Autocompletion is already setup. Skipping. "
"You can force autocomplete installation by adding --force/]\n"
)
else:
with open(autocomplete_path) as source_file, open(script_path, "w") as destination_file:
for line in source_file:
destination_file.write(line)
else:
# Include steps for powershell
subprocess.check_call(["powershell", "Set-ExecutionPolicy Unrestricted -Scope CurrentUser"])
script_path = (
subprocess.check_output(["powershell", "-NoProfile", "echo $profile"]).decode("utf-8").strip()
)
command_to_execute = f". {autocomplete_path}"
write_to_shell(command_to_execute=command_to_execute, script_path=script_path, force_setup=force)
elif given_answer == Answer.NO:
get_console().print(
"\nPlease follow the https://click.palletsprojects.com/en/8.1.x/shell-completion/ "
"to setup autocompletion for breeze manually if you want to use it.\n"
)
else:
sys.exit(0)
@setup.command()
@option_verbose
@option_dry_run
def version():
"""Print information about version of apache-airflow-breeze."""
get_console().print(ASCIIART, style=ASCIIART_STYLE)
get_console().print(f"\n[info]Breeze version: {VERSION}[/]")
get_console().print(f"[info]Breeze installed from: {get_installation_airflow_sources()}[/]")
get_console().print(f"[info]Used Airflow sources : {get_used_airflow_sources()}[/]\n")
if get_verbose():
get_console().print(
f"[info]Installation sources config hash : "
f"{get_installation_sources_config_metadata_hash()}[/]"
)
get_console().print(
f"[info]Used sources config hash : {get_used_sources_setup_metadata_hash()}[/]"
)
get_console().print(
f"[info]Package config hash : {(get_package_setup_metadata_hash())}[/]\n"
)
@setup.command(name="config")
@option_python
@option_backend
@option_postgres_version
@option_mysql_version
@option_mssql_version
@click.option("-C/-c", "--cheatsheet/--no-cheatsheet", help="Enable/disable cheatsheet.", default=None)
@click.option("-A/-a", "--asciiart/--no-asciiart", help="Enable/disable ASCIIart.", default=None)
@click.option(
"--colour/--no-colour",
help="Enable/disable Colour mode (useful for colour blind-friendly communication).",
default=None,
)
def change_config(
python: str,
backend: str,
postgres_version: str,
mysql_version: str,
mssql_version: str,
cheatsheet: bool,
asciiart: bool,
colour: bool,
):
"""
Show/update configuration (Python, Backend, Cheatsheet, ASCIIART).
"""
asciiart_file = "suppress_asciiart"
cheatsheet_file = "suppress_cheatsheet"
colour_file = "suppress_colour"
if asciiart is not None:
if asciiart:
delete_cache(asciiart_file)
get_console().print("[info]Enable ASCIIART![/]")
else:
touch_cache_file(asciiart_file)
get_console().print("[info]Disable ASCIIART![/]")
if cheatsheet is not None:
if cheatsheet:
delete_cache(cheatsheet_file)
get_console().print("[info]Enable Cheatsheet[/]")
elif cheatsheet is not None:
touch_cache_file(cheatsheet_file)
get_console().print("[info]Disable Cheatsheet[/]")
if colour is not None:
if colour:
delete_cache(colour_file)
get_console().print("[info]Enable Colour[/]")
elif colour is not None:
touch_cache_file(colour_file)
get_console().print("[info]Disable Colour[/]")
def get_status(file: str):
return "disabled" if check_if_cache_exists(file) else "enabled"
get_console().print()
get_console().print("[info]Current configuration:[/]")
get_console().print()
get_console().print(f"[info]* Python: {python}[/]")
get_console().print(f"[info]* Backend: {backend}[/]")
get_console().print()
get_console().print(f"[info]* Postgres version: {postgres_version}[/]")
get_console().print(f"[info]* MySQL version: {mysql_version}[/]")
get_console().print(f"[info]* MsSQL version: {mssql_version}[/]")
get_console().print()
get_console().print(f"[info]* ASCIIART: {get_status(asciiart_file)}[/]")
get_console().print(f"[info]* Cheatsheet: {get_status(cheatsheet_file)}[/]")
get_console().print()
get_console().print()
get_console().print(f"[info]* Colour: {get_status(colour_file)}[/]")
get_console().print()
def dict_hash(dictionary: dict[str, Any]) -> str:
"""MD5 hash of a dictionary. Sorted and dumped via json to account for random sequence)"""
# noinspection InsecureHash
dhash = hashlib.md5()
try:
encoded = json.dumps(dictionary, sort_keys=True, default=vars).encode()
except TypeError:
get_console().print(dictionary)
raise
dhash.update(encoded)
return dhash.hexdigest()
def get_command_hash_export() -> str:
import rich_click
hashes = []
with Context(main) as ctx:
the_context_dict = ctx.to_info_dict()
if get_verbose():
get_stderr_console().print(the_context_dict)
hashes.append(f"main:{dict_hash(the_context_dict['command']['params'])}")
commands_dict = the_context_dict["command"]["commands"]
options = rich_click.rich_click.OPTION_GROUPS
for command in sorted(commands_dict.keys()):
current_command_dict = commands_dict[command]
current_command_hash_dict = {
"command": current_command_dict,
"options": rich_click.rich_click.COMMAND_GROUPS.get(f"breeze {command}"),
}
if "commands" in current_command_dict:
subcommands = current_command_dict["commands"]
for subcommand in sorted(subcommands.keys()):
subcommand_click_dict = subcommands[subcommand]
try:
subcommand_rich_click_dict = options[f"breeze {command} {subcommand}"]
except KeyError:
get_console().print(
f"[error]The `breeze {command} {subcommand}` is missing in rich-click options[/]"
)
get_console().print(
"[info]Please add add it to rich_click.OPTION_GROUPS "
"via one of the `*_commands_config.py` "
"files in `dev/breeze/src/airflow_breeze/commands`[/]"
)
sys.exit(1)
final_dict = {
"click_commands": subcommand_click_dict,
"rich_click_options": subcommand_rich_click_dict,
}
hashes.append(f"{command}:{subcommand}:{dict_hash(final_dict)}")
hashes.append(f"{command}:{dict_hash(current_command_hash_dict)}")
else:
hashes.append(f"{command}:{dict_hash(current_command_hash_dict)}")
return "\n".join(hashes) + "\n"
def write_to_shell(command_to_execute: str, script_path: str, force_setup: bool) -> bool:
skip_check = False
script_path_file = Path(script_path)
if not script_path_file.exists():
skip_check = True
if not skip_check:
if BREEZE_COMMENT in script_path_file.read_text():
if not force_setup:
get_console().print(
"\n[warning]Autocompletion is already setup. Skipping. "
"You can force autocomplete installation by adding --force[/]\n"
)
return False
else:
backup(script_path_file)
remove_autogenerated_code(script_path)
text = ""
if script_path_file.exists():
get_console().print(f"\nModifying the {script_path} file!\n")
get_console().print(f"\nCopy of the original file is held in {script_path}.bak !\n")
if not get_dry_run():
backup(script_path_file)
text = script_path_file.read_text()
else:
get_console().print(f"\nCreating the {script_path} file!\n")
if not get_dry_run():
script_path_file.write_text(
text
+ ("\n" if not text.endswith("\n") else "")
+ START_LINE
+ command_to_execute
+ "\n"
+ END_LINE
)
else:
get_console().print(f"[info]The autocomplete script would be added to {script_path}[/]")
get_console().print(
f"\n[warning]Please exit and re-enter your shell or run:[/]\n\n source {script_path}\n"
)
return True
BREEZE_COMMENT = "Added by Updated Airflow Breeze autocomplete setup"
START_LINE = f"# START: {BREEZE_COMMENT}\n"
END_LINE = f"# END: {BREEZE_COMMENT}\n"
def remove_autogenerated_code(script_path: str):
lines = Path(script_path).read_text().splitlines(keepends=True)
new_lines = []
pass_through = True
for line in lines:
if line == START_LINE:
pass_through = False
continue
if line.startswith(END_LINE):
pass_through = True
continue
if pass_through:
new_lines.append(line)
Path(script_path).write_text("".join(new_lines))
def backup(script_path_file: Path):
shutil.copy(str(script_path_file), str(script_path_file) + ".bak")
BREEZE_IMAGES_DIR = AIRFLOW_SOURCES_ROOT / "images" / "breeze"
BREEZE_INSTALL_DIR = AIRFLOW_SOURCES_ROOT / "dev" / "breeze"
BREEZE_SOURCES_DIR = BREEZE_INSTALL_DIR / "src"
COMMAND_HASH_FILE_PATH = BREEZE_IMAGES_DIR / "output-commands-hash.txt"
def get_commands() -> list[str]:
results = []
if COMMAND_HASH_FILE_PATH.exists():
content = COMMAND_HASH_FILE_PATH.read_text()
for line in content.splitlines():
strip_line = line.strip()
if strip_line == "" or strip_line.startswith("#"):
continue
results.append(":".join(strip_line.split(":")[:-1]))
return results
SCREENSHOT_WIDTH = "120"
PREAMBLE = """# This file is automatically generated by pre-commit. If you have a conflict with this file
# Please do not solve it but run `breeze setup regenerate-command-images`.
# This command should fix the conflict and regenerate help images that you have conflict with.
"""
def get_command_hash_dict(hash_file_content: str) -> dict[str, str]:
results = {}
for line in hash_file_content.splitlines():
strip_line = line.strip()
if strip_line.strip() == "" or strip_line.startswith("#"):
continue
command = ":".join(strip_line.split(":")[:-1])
the_hash = strip_line.split(":")[-1]
results[command] = the_hash
return results
def print_difference(dict1: dict[str, str], dict2: dict[str, str]):
console = Console(width=int(SCREENSHOT_WIDTH), color_system="standard")
console.print(f"Difference: {set(dict1.items()) ^ set(dict2.items())}")
def regenerate_help_images_for_all_commands(commands: tuple[str, ...], check_only: bool, force: bool) -> int:
console = Console(width=int(SCREENSHOT_WIDTH), color_system="standard")
if check_only and force:
console.print("[error]The --check-only flag cannot be used with --force flag.")
return 2
if check_only and commands:
console.print("[error]The --check-only flag cannot be used with --command flag.")
return 2
env = os.environ.copy()
env["AIRFLOW_SOURCES_ROOT"] = str(AIRFLOW_SOURCES_ROOT)
env["RECORD_BREEZE_WIDTH"] = SCREENSHOT_WIDTH
env["TERM"] = "xterm-256color"
env["PYTHONPATH"] = str(BREEZE_SOURCES_DIR)
new_hash_text_dump = PREAMBLE + get_command_hash_export()
regenerate_all_commands = False
commands_list = list(commands)
if force:
console.print("[info]Force regeneration all breeze command images")
commands_list.extend(get_command_hash_dict(new_hash_text_dump).keys())
regenerate_all_commands = True
elif commands_list:
console.print(f"[info]Regenerating breeze command images for specified commands:{commands_list}")
else:
old_hash_text_dump = ""
if COMMAND_HASH_FILE_PATH.exists():
old_hash_text_dump = COMMAND_HASH_FILE_PATH.read_text()
old_hash_dict = get_command_hash_dict(old_hash_text_dump)
new_hash_dict = get_command_hash_dict(new_hash_text_dump)
if old_hash_dict == new_hash_dict:
if check_only:
console.print(
"[bright_blue]The hash dumps old/new are the same. Returning with return code 0."
)
else:
console.print("[bright_blue]Skip generation of SVG images as command hashes are unchanged.")
return 0
if check_only:
console.print("[yellow]The hash files differ. Returning 1")
print_difference(old_hash_dict, new_hash_dict)
return 1
console.print("[yellow]The hash files differ. Regenerating changed commands")
print_difference(old_hash_dict, new_hash_dict)
for hash_command in new_hash_dict:
if hash_command not in old_hash_dict:
console.print(f"[yellow]New command: {hash_command}")
commands_list.append(hash_command)
elif old_hash_dict[hash_command] != new_hash_dict[hash_command]:
console.print(f"[yellow]Updated command: {hash_command}")
commands_list.append(hash_command)
else:
console.print(f"[bright_blue]Unchanged command: {hash_command}")
regenerate_all_commands = True
if regenerate_all_commands:
env["RECORD_BREEZE_TITLE"] = "Breeze commands"
env["RECORD_BREEZE_OUTPUT_FILE"] = str(BREEZE_IMAGES_DIR / "output-commands.svg")
env["RECORD_BREEZE_UNIQUE_ID"] = "breeze-help"
run_command(
["breeze", "--help"],
env=env,
)
for command in commands_list:
if command == "main":
continue
subcommands = command.split(":")
env["RECORD_BREEZE_TITLE"] = f"Command: {' '.join(subcommands)}"
env["RECORD_BREEZE_OUTPUT_FILE"] = str(BREEZE_IMAGES_DIR / f"output_{'_'.join(subcommands)}.svg")
env["RECORD_BREEZE_UNIQUE_ID"] = f"breeze-{'-'.join(subcommands)}"
run_command(
["breeze", *subcommands, "--help"],
env=env,
)
if regenerate_all_commands:
COMMAND_HASH_FILE_PATH.write_text(new_hash_text_dump)
get_console().print(f"\n[info]New hash of breeze commands written in {COMMAND_HASH_FILE_PATH}\n")
return 1
COMMON_PARAM_NAMES = ["--help", "--verbose", "--dry-run", "--answer"]
COMMAND_PATH_PREFIX = "dev/breeze/src/airflow_breeze/commands/"
def command_path(command: str) -> str:
return COMMAND_PATH_PREFIX + command.replace("-", "_") + "_commands.py"
def command_path_config(command: str) -> str:
return COMMAND_PATH_PREFIX + command.replace("-", "_") + "_commands_config.py"
def find_options_in_options_list(option: str, option_list: list[list[str]]) -> int | None:
for i, options in enumerate(option_list):
if option in options:
return i
return None
def errors_detected_in_params(command: str, subcommand: str | None, command_dict: dict[str, Any]) -> bool:
import rich_click
get_console().print(
f"[info]Checking if params are in groups for specified command :{command}"
+ (f" {subcommand}." if subcommand else ".")
)
errors_detected = False
options = rich_click.rich_click.OPTION_GROUPS
rich_click_key = "breeze " + command + (f" {subcommand}" if subcommand else "")
if rich_click_key not in options:
get_console().print(
f"[error]The command `{rich_click_key}` not found in dictionaries "
f"defined in rich click configuration."
)
get_console().print(f"[warning]Please add it to the `{command_path_config(command)}`.")
return True
rich_click_param_groups = options[rich_click_key]
defined_param_names = [
param["opts"] for param in command_dict["params"] if param["param_type_name"] == "option"
]
for group in rich_click_param_groups:
if "options" in group:
for param in group["options"]:
index = find_options_in_options_list(param, defined_param_names)
if index is not None:
del defined_param_names[index]
else:
get_console().print(
f"[error]Parameter `{param}` is not defined as option in {command_path(command)} in "
f"`{rich_click_key}`, but is present in the "
f"`{rich_click_key}` group in `{command_path_config(command)}`."
)
get_console().print(
"[warning]Please remove it from there or add parameter in "
"the command. NOTE! This error might be printed when the option is"
"added twice in the command definition!."
)
errors_detected = True
for param in COMMON_PARAM_NAMES:
index = find_options_in_options_list(param, defined_param_names)
if index is not None:
del defined_param_names[index]
if defined_param_names:
for param in defined_param_names:
get_console().print(
f"[error]Parameter `{param}` is defined in `{command_path(command)}` in "
f"`{rich_click_key}`, but does not belong to any group options "
f"in `{rich_click_key}` group in `{command_path_config(command)}` and is not common."
)
get_console().print("[warning]Please add it to relevant group or create new group there.")
errors_detected = True
return errors_detected
def check_that_all_params_are_in_groups(commands: tuple[str, ...]) -> int:
Console(width=int(SCREENSHOT_WIDTH), color_system="standard")
env = os.environ.copy()
env["AIRFLOW_SOURCES_ROOT"] = str(AIRFLOW_SOURCES_ROOT)
env["RECORD_BREEZE_WIDTH"] = SCREENSHOT_WIDTH
env["TERM"] = "xterm-256color"
env["PYTHONPATH"] = str(BREEZE_SOURCES_DIR)
with Context(main) as ctx:
the_context_dict = ctx.to_info_dict()
commands_dict = the_context_dict["command"]["commands"]
if commands:
commands_list = list(commands)
else:
commands_list = commands_dict.keys()
errors_detected = False
for command in commands_list:
current_command_dict = commands_dict[command]
if "commands" in current_command_dict:
subcommands = current_command_dict["commands"]
for subcommand in sorted(subcommands.keys()):
if errors_detected_in_params(command, subcommand, subcommands[subcommand]):
errors_detected = True
else:
if errors_detected_in_params(command, None, current_command_dict):
errors_detected = True
return 1 if errors_detected else 0
@setup.command(name="regenerate-command-images", help="Regenerate breeze command images.")
@click.option("--force", is_flag=True, help="Forces regeneration of all images", envvar="FORCE")
@click.option(
"--check-only",
is_flag=True,
help="Only check if some images need to be regenerated. Return 0 if no need or 1 if needed. "
"Cannot be used together with --command flag or --force.",
envvar="CHECK_ONLY",
)
@click.option(
"--command",
help="Command(s) to regenerate images for (optional, might be repeated)",
show_default=True,
multiple=True,
type=BetterChoice(get_commands()),
)
@option_verbose
@option_dry_run
def regenerate_command_images(command: tuple[str, ...], force: bool, check_only: bool):
return_code = regenerate_help_images_for_all_commands(
commands=command, check_only=check_only, force=force
)
sys.exit(return_code)
@setup.command(name="check-all-params-in-groups", help="Check that all parameters are put in groups.")
@click.option(
"--command",
help="Command(s) to regenerate images for (optional, might be repeated)",
show_default=True,
multiple=True,
type=BetterChoice(get_commands()),
)
@option_verbose
@option_dry_run
def check_all_params_in_groups(command: tuple[str, ...]):
return_code = check_that_all_params_are_in_groups(commands=command)
sys.exit(return_code)