2019-08-22 19:18:52 +02:00
|
|
|
"""Format C code according to QMK's style.
|
|
|
|
"""
|
|
|
|
import os
|
|
|
|
import subprocess
|
2019-11-13 02:17:12 +01:00
|
|
|
from shutil import which
|
2019-08-22 19:18:52 +02:00
|
|
|
|
|
|
|
from milc import cli
|
|
|
|
|
|
|
|
|
2019-09-22 22:25:33 +02:00
|
|
|
@cli.argument('files', nargs='*', arg_only=True, help='Filename(s) to format.')
|
|
|
|
@cli.subcommand("Format C code according to QMK's style.")
|
|
|
|
def cformat(cli):
|
2019-08-22 19:18:52 +02:00
|
|
|
"""Format C code according to QMK's style.
|
|
|
|
"""
|
2019-11-13 02:17:12 +01:00
|
|
|
# Determine which version of clang-format to use
|
2019-08-22 19:18:52 +02:00
|
|
|
clang_format = ['clang-format', '-i']
|
2019-11-13 02:17:12 +01:00
|
|
|
for clang_version in [10, 9, 8, 7]:
|
|
|
|
binary = 'clang-format-%d' % clang_version
|
|
|
|
if which(binary):
|
|
|
|
clang_format[0] = binary
|
|
|
|
break
|
2019-08-22 22:33:34 +02:00
|
|
|
|
|
|
|
# Find the list of files to format
|
2019-11-13 02:17:12 +01:00
|
|
|
if cli.args.files:
|
|
|
|
cli.args.files = [os.path.join(os.environ['ORIG_CWD'], file) for file in cli.args.files]
|
|
|
|
else:
|
2019-08-22 22:30:50 +02:00
|
|
|
for dir in ['drivers', 'quantum', 'tests', 'tmk_core']:
|
|
|
|
for dirpath, dirnames, filenames in os.walk(dir):
|
|
|
|
if 'tmk_core/protocol/usb_hid' in dirpath:
|
|
|
|
continue
|
2019-08-22 22:33:34 +02:00
|
|
|
|
2019-08-22 22:30:50 +02:00
|
|
|
for name in filenames:
|
|
|
|
if name.endswith('.c') or name.endswith('.h') or name.endswith('.cpp'):
|
|
|
|
cli.args.files.append(os.path.join(dirpath, name))
|
2019-08-22 19:18:52 +02:00
|
|
|
|
2019-08-22 22:33:34 +02:00
|
|
|
# Run clang-format on the files we've found
|
2019-08-22 19:18:52 +02:00
|
|
|
try:
|
2019-08-22 22:30:50 +02:00
|
|
|
subprocess.run(clang_format + cli.args.files, check=True)
|
2019-08-22 19:18:52 +02:00
|
|
|
cli.log.info('Successfully formatted the C code.')
|
2019-08-22 22:33:34 +02:00
|
|
|
|
2019-08-22 19:18:52 +02:00
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
cli.log.error('Error formatting C code!')
|
2019-08-22 22:30:50 +02:00
|
|
|
return False
|