diff options
author | skullydazed <skullydazed@users.noreply.github.com> | 2020-03-10 13:51:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-10 13:51:19 -0700 |
commit | 2a05d433c923d715eac829ef9be215e32bbb72b1 (patch) | |
tree | 44d1500fc73b994ff0433a2ab7aca4c8f057f207 /lib/python/qmk/cli/json/keymap.py | |
parent | 1aa40dde46ae38e2768fd23e4d7a3bdd8838f724 (diff) | |
download | qmk_firmware-2a05d433c923d715eac829ef9be215e32bbb72b1.tar.gz qmk_firmware-2a05d433c923d715eac829ef9be215e32bbb72b1.zip |
Rename qmk json-keymap to qmk json2c (#8372)
Diffstat (limited to 'lib/python/qmk/cli/json/keymap.py')
-rwxr-xr-x | lib/python/qmk/cli/json/keymap.py | 46 |
1 files changed, 3 insertions, 43 deletions
diff --git a/lib/python/qmk/cli/json/keymap.py b/lib/python/qmk/cli/json/keymap.py index c2b7dde7a..6e25b7862 100755 --- a/lib/python/qmk/cli/json/keymap.py +++ b/lib/python/qmk/cli/json/keymap.py | |||
@@ -1,56 +1,16 @@ | |||
1 | """Generate a keymap.c from a configurator export. | 1 | """Generate a keymap.c from a configurator export. |
2 | """ | 2 | """ |
3 | import json | ||
4 | from pathlib import Path | 3 | from pathlib import Path |
5 | 4 | ||
6 | from milc import cli | 5 | from milc import cli |
7 | 6 | ||
8 | import qmk.keymap | ||
9 | import qmk.path | ||
10 | |||
11 | 7 | ||
12 | @cli.argument('-o', '--output', arg_only=True, type=Path, help='File to write to') | 8 | @cli.argument('-o', '--output', arg_only=True, type=Path, help='File to write to') |
13 | @cli.argument('-q', '--quiet', arg_only=True, action='store_true', help="Quiet mode, only output error messages") | 9 | @cli.argument('-q', '--quiet', arg_only=True, action='store_true', help="Quiet mode, only output error messages") |
14 | @cli.argument('filename', arg_only=True, help='Configurator JSON file') | 10 | @cli.argument('filename', arg_only=True, help='Configurator JSON file') |
15 | @cli.subcommand('Creates a keymap.c from a QMK Configurator export.') | 11 | @cli.subcommand('Creates a keymap.c from a QMK Configurator export.') |
16 | def json_keymap(cli): | 12 | def json_keymap(cli): |
17 | """Generate a keymap.c from a configurator export. | 13 | """Renamed to `qmk json2c`. |
18 | |||
19 | This command uses the `qmk.keymap` module to generate a keymap.c from a configurator export. The generated keymap is written to stdout, or to a file if -o is provided. | ||
20 | """ | 14 | """ |
21 | cli.args.filename = qmk.path.normpath(cli.args.filename) | 15 | cli.log.error('This command has been renamed to `qmk json2c`.') |
22 | 16 | exit(1) | |
23 | # Error checking | ||
24 | if not cli.args.filename.exists(): | ||
25 | cli.log.error('JSON file does not exist!') | ||
26 | cli.print_usage() | ||
27 | exit(1) | ||
28 | |||
29 | if str(cli.args.filename) == '-': | ||
30 | # TODO(skullydazed/anyone): Read file contents from STDIN | ||
31 | cli.log.error('Reading from STDIN is not (yet) supported.') | ||
32 | cli.print_usage() | ||
33 | exit(1) | ||
34 | |||
35 | # Environment processing | ||
36 | if cli.args.output == ('-'): | ||
37 | cli.args.output = None | ||
38 | |||
39 | # Parse the configurator json | ||
40 | with cli.args.filename.open('r') as fd: | ||
41 | user_keymap = json.load(fd) | ||
42 | |||
43 | # Generate the keymap | ||
44 | keymap_c = qmk.keymap.generate(user_keymap['keyboard'], user_keymap['layout'], user_keymap['layers']) | ||
45 | |||
46 | if cli.args.output: | ||
47 | cli.args.output.parent.mkdir(parents=True, exist_ok=True) | ||
48 | if cli.args.output.exists(): | ||
49 | cli.args.output.replace(cli.args.output.name + '.bak') | ||
50 | cli.args.output.write_text(keymap_c) | ||
51 | |||
52 | if not cli.args.quiet: | ||
53 | cli.log.info('Wrote keymap to %s.', cli.args.output) | ||
54 | |||
55 | else: | ||
56 | print(keymap_c) | ||