2020-12-30 19:27:37 +01:00
|
|
|
"""Used by the make system to generate a rules.mk
|
|
|
|
"""
|
2021-01-31 21:46:00 +01:00
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
from dotty_dict import dotty
|
2020-12-30 19:27:37 +01:00
|
|
|
from milc import cli
|
|
|
|
|
|
|
|
from qmk.decorators import automagic_keyboard, automagic_keymap
|
2021-03-24 17:26:38 +01:00
|
|
|
from qmk.info import info_json
|
|
|
|
from qmk.json_schema import json_load
|
2021-04-15 04:00:22 +02:00
|
|
|
from qmk.keyboard import keyboard_completer, keyboard_folder
|
2020-12-30 19:27:37 +01:00
|
|
|
from qmk.path import is_keyboard, normpath
|
|
|
|
|
2021-01-31 21:46:00 +01:00
|
|
|
|
|
|
|
def process_mapping_rule(kb_info_json, rules_key, info_dict):
|
|
|
|
"""Return the rules.mk line(s) for a mapping rule.
|
|
|
|
"""
|
|
|
|
if not info_dict.get('to_c', True):
|
|
|
|
return None
|
|
|
|
|
|
|
|
info_key = info_dict['info_key']
|
|
|
|
key_type = info_dict.get('value_type', 'str')
|
|
|
|
|
|
|
|
try:
|
|
|
|
rules_value = kb_info_json[info_key]
|
|
|
|
except KeyError:
|
|
|
|
return None
|
|
|
|
|
|
|
|
if key_type == 'array':
|
|
|
|
return f'{rules_key} ?= {" ".join(rules_value)}'
|
|
|
|
elif key_type == 'bool':
|
|
|
|
return f'{rules_key} ?= {"on" if rules_value else "off"}'
|
|
|
|
elif key_type == 'mapping':
|
|
|
|
return '\n'.join([f'{key} ?= {value}' for key, value in rules_value.items()])
|
|
|
|
|
|
|
|
return f'{rules_key} ?= {rules_value}'
|
2020-12-30 19:27:37 +01:00
|
|
|
|
2020-12-30 20:21:18 +01:00
|
|
|
|
2020-12-30 19:27:37 +01:00
|
|
|
@cli.argument('-o', '--output', arg_only=True, type=normpath, help='File to write to')
|
|
|
|
@cli.argument('-q', '--quiet', arg_only=True, action='store_true', help="Quiet mode, only output error messages")
|
2021-03-04 05:09:22 +01:00
|
|
|
@cli.argument('-e', '--escape', arg_only=True, action='store_true', help="Escape spaces in quiet mode")
|
2021-04-15 04:00:22 +02:00
|
|
|
@cli.argument('-kb', '--keyboard', type=keyboard_folder, completer=keyboard_completer, help='Keyboard to generate config.h for.')
|
2020-12-30 19:27:37 +01:00
|
|
|
@cli.subcommand('Used by the make system to generate info_config.h from info.json', hidden=True)
|
|
|
|
@automagic_keyboard
|
|
|
|
@automagic_keymap
|
|
|
|
def generate_rules_mk(cli):
|
|
|
|
"""Generates a rules.mk file from info.json.
|
|
|
|
"""
|
|
|
|
if not cli.config.generate_rules_mk.keyboard:
|
2021-02-28 21:19:07 +01:00
|
|
|
cli.log.error('Missing parameter: --keyboard')
|
2020-12-30 19:27:37 +01:00
|
|
|
cli.subcommands['info'].print_help()
|
|
|
|
return False
|
|
|
|
|
|
|
|
if not is_keyboard(cli.config.generate_rules_mk.keyboard):
|
|
|
|
cli.log.error('Invalid keyboard: "%s"', cli.config.generate_rules_mk.keyboard)
|
|
|
|
return False
|
|
|
|
|
2021-01-31 21:46:00 +01:00
|
|
|
kb_info_json = dotty(info_json(cli.config.generate_rules_mk.keyboard))
|
2021-03-24 17:26:38 +01:00
|
|
|
info_rules_map = json_load(Path('data/mappings/info_rules.json'))
|
2020-12-30 19:27:37 +01:00
|
|
|
rules_mk_lines = ['# This file was generated by `qmk generate-rules-mk`. Do not edit or copy.', '']
|
|
|
|
|
2021-01-31 21:46:00 +01:00
|
|
|
# Iterate through the info_rules map to generate basic rules
|
|
|
|
for rules_key, info_dict in info_rules_map.items():
|
|
|
|
new_entry = process_mapping_rule(kb_info_json, rules_key, info_dict)
|
|
|
|
|
|
|
|
if new_entry:
|
|
|
|
rules_mk_lines.append(new_entry)
|
2020-12-01 21:52:02 +01:00
|
|
|
|
2021-01-31 21:46:00 +01:00
|
|
|
# Iterate through features to enable/disable them
|
2020-12-30 19:27:37 +01:00
|
|
|
if 'features' in kb_info_json:
|
|
|
|
for feature, enabled in kb_info_json['features'].items():
|
2020-12-02 01:04:22 +01:00
|
|
|
if feature == 'bootmagic_lite' and enabled:
|
2021-01-09 22:34:14 +01:00
|
|
|
rules_mk_lines.append('BOOTMAGIC_ENABLE ?= lite')
|
2020-12-02 01:04:22 +01:00
|
|
|
else:
|
|
|
|
feature = feature.upper()
|
|
|
|
enabled = 'yes' if enabled else 'no'
|
2021-01-09 22:34:14 +01:00
|
|
|
rules_mk_lines.append(f'{feature}_ENABLE ?= {enabled}')
|
2020-12-30 19:27:37 +01:00
|
|
|
|
2021-08-17 00:33:30 +02:00
|
|
|
# Set SPLIT_TRANSPORT, if needed
|
|
|
|
if kb_info_json.get('split', {}).get('transport', {}).get('protocol') == 'custom':
|
|
|
|
rules_mk_lines.append('SPLIT_TRANSPORT ?= custom')
|
|
|
|
|
|
|
|
# Set CUSTOM_MATRIX, if needed
|
|
|
|
if kb_info_json.get('matrix_pins', {}).get('custom'):
|
|
|
|
if kb_info_json.get('matrix_pins', {}).get('custom_lite'):
|
|
|
|
rules_mk_lines.append('CUSTOM_MATRIX ?= lite')
|
|
|
|
else:
|
|
|
|
rules_mk_lines.append('CUSTOM_MATRIX ?= yes')
|
|
|
|
|
2020-12-30 19:27:37 +01:00
|
|
|
# Show the results
|
|
|
|
rules_mk = '\n'.join(rules_mk_lines) + '\n'
|
|
|
|
|
|
|
|
if cli.args.output:
|
|
|
|
cli.args.output.parent.mkdir(parents=True, exist_ok=True)
|
|
|
|
if cli.args.output.exists():
|
2021-02-28 21:19:07 +01:00
|
|
|
cli.args.output.replace(cli.args.output.parent / (cli.args.output.name + '.bak'))
|
2020-12-30 19:27:37 +01:00
|
|
|
cli.args.output.write_text(rules_mk)
|
|
|
|
|
|
|
|
if cli.args.quiet:
|
2021-03-04 05:09:22 +01:00
|
|
|
if cli.args.escape:
|
|
|
|
print(cli.args.output.as_posix().replace(' ', '\\ '))
|
|
|
|
else:
|
|
|
|
print(cli.args.output)
|
2020-12-30 19:27:37 +01:00
|
|
|
else:
|
2021-01-31 21:46:00 +01:00
|
|
|
cli.log.info('Wrote rules.mk to %s.', cli.args.output)
|
2020-12-30 19:27:37 +01:00
|
|
|
|
|
|
|
else:
|
|
|
|
print(rules_mk)
|