2020-01-24 20:31:16 +01:00
|
|
|
"""Functions for working with QMK's submodules.
|
|
|
|
"""
|
2021-05-20 00:24:46 +02:00
|
|
|
from milc import cli
|
2020-01-24 20:31:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
def status():
|
|
|
|
"""Returns a dictionary of submodules.
|
|
|
|
|
|
|
|
Each entry is a dict of the form:
|
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'submodule_name',
|
|
|
|
'status': None/False/True,
|
|
|
|
'githash': '<sha-1 hash for the submodule>
|
|
|
|
}
|
|
|
|
|
|
|
|
status is None when the submodule doesn't exist, False when it's out of date, and True when it's current
|
|
|
|
"""
|
|
|
|
submodules = {}
|
2021-05-20 00:24:46 +02:00
|
|
|
git_cmd = cli.run(['git', 'submodule', 'status'], timeout=30)
|
2020-01-24 20:31:16 +01:00
|
|
|
|
|
|
|
for line in git_cmd.stdout.split('\n'):
|
|
|
|
if not line:
|
|
|
|
continue
|
|
|
|
|
|
|
|
status = line[0]
|
|
|
|
githash, submodule = line[1:].split()[:2]
|
|
|
|
submodules[submodule] = {'name': submodule, 'githash': githash}
|
|
|
|
|
|
|
|
if status == '-':
|
|
|
|
submodules[submodule]['status'] = None
|
|
|
|
elif status == '+':
|
|
|
|
submodules[submodule]['status'] = False
|
|
|
|
elif status == ' ':
|
|
|
|
submodules[submodule]['status'] = True
|
|
|
|
else:
|
|
|
|
raise ValueError('Unknown `git submodule status` sha-1 prefix character: "%s"' % status)
|
|
|
|
|
|
|
|
return submodules
|
|
|
|
|
|
|
|
|
|
|
|
def update(submodules=None):
|
|
|
|
"""Update the submodules.
|
|
|
|
|
|
|
|
submodules
|
|
|
|
A string containing a single submodule or a list of submodules.
|
|
|
|
"""
|
|
|
|
git_sync_cmd = ['git', 'submodule', 'sync']
|
|
|
|
git_update_cmd = ['git', 'submodule', 'update', '--init']
|
|
|
|
|
|
|
|
if submodules is None:
|
|
|
|
# Update everything
|
|
|
|
git_sync_cmd.append('--recursive')
|
|
|
|
git_update_cmd.append('--recursive')
|
2021-05-20 00:24:46 +02:00
|
|
|
cli.run(git_sync_cmd, check=True)
|
|
|
|
cli.run(git_update_cmd, check=True)
|
2020-01-24 20:31:16 +01:00
|
|
|
|
|
|
|
else:
|
|
|
|
if isinstance(submodules, str):
|
|
|
|
# Update only a single submodule
|
|
|
|
git_sync_cmd.append(submodules)
|
|
|
|
git_update_cmd.append(submodules)
|
2021-05-20 00:24:46 +02:00
|
|
|
cli.run(git_sync_cmd, check=True)
|
|
|
|
cli.run(git_update_cmd, check=True)
|
2020-01-24 20:31:16 +01:00
|
|
|
|
|
|
|
else:
|
|
|
|
# Update submodules in a list
|
|
|
|
for submodule in submodules:
|
2021-05-20 00:24:46 +02:00
|
|
|
cli.run([*git_sync_cmd, submodule], check=True)
|
|
|
|
cli.run([*git_update_cmd, submodule], check=True)
|