Skip to content
Snippets Groups Projects
Commit 14e3fb5a authored by Jakub Ružička's avatar Jakub Ružička
Browse files

info: add new cache sub-command

`apkg info cache` now displays cache contents and logs cache file
location for convenience and easier debugging.

Also align similar `apkg info config` to have consistent output
parent b901ec83
No related branches found
No related tags found
1 merge request!119cache: refactor cache with targets and config
import click
import json
import toml
import click
import distro as distro_
from apkg.pkgstyle import PKGSTYLES
......@@ -19,6 +20,22 @@ def cli_info():
"""
@cli_info.command()
@click.help_option('-h', '--help', help='show command help')
def cache():
"""
show apkg cache contents
"""
proj = Project()
cache_str = "{t.bold}{fn}{t.normal}".format(fn=proj.path.cache, t=T)
if proj.path.cache.exists():
log.info("apkg cache: %s", cache_str)
cdata = json.load(proj.path.cache.open('rt'))
print(json.dumps(cdata, indent=4))
else:
log.info("apkg cache doesn't exist: %s", cache_str)
@cli_info.command()
@click.help_option('-h', '--help', help='show command help')
def config():
......@@ -26,10 +43,14 @@ def config():
show apkg project configuration
"""
proj = Project()
msg = "project config: {t.bold}{fn}{t.normal}\n"
msg = msg.format(fn=proj.path.config, t=T)
log.info(msg)
print(toml.dumps(proj.config))
config_str = "{t.bold}{fn}{t.normal}".format(fn=proj.path.config, t=T)
if proj.path.config.exists():
log.info("project config: %s\n", config_str)
else:
log.info("project config doesn't exist: %s", config_str)
if proj.config:
print(toml.dumps(proj.config))
@cli_info.command()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment