Skip to content
Snippets Groups Projects
Unverified Commit 62fa40e1 authored by Caleb Connolly's avatar Caleb Connolly :recycle:
Browse files

config: workdir: make chroots_outdated() return a list (MR 2344)


This can be used to build nicer log messages. For funsies let's try out
@overload as well.

Signed-off-by: default avatarCaleb Connolly <caleb@postmarketos.org>
parent 95d68d88
No related branches found
No related tags found
1 merge request!2344yet more fixes
......@@ -8,7 +8,7 @@ dir."""
import configparser
import os
import time
from typing import Optional
from typing import Optional, overload
import pmb.config
import pmb.config.pmaports
......@@ -40,34 +40,48 @@ def chroot_save_init(suffix: Chroot):
cfg.write(handle)
@overload
def chroots_outdated() -> list[Chroot]:
...
@overload
def chroots_outdated(chroot: Chroot) -> bool:
...
def chroots_outdated(chroot: Optional[Chroot] = None):
"""Check if init dates from workdir.cfg indicate that any chroot is
outdated.
:param suffix: only check a specific chroot suffix
:returns: True if any of the chroots are outdated and should be zapped,
:returns: A list of all outdated chroots if chroot is None, if a specific
chroot is given, instead it returns True if the chroot is outdated,
False otherwise
"""
# Skip if workdir.cfg doesn't exist
path = get_context().config.work / "workdir.cfg"
if not os.path.exists(path):
return False
return False if chroot else []
cfg = configparser.ConfigParser()
cfg.read(path)
key = "chroot-init-dates"
if key not in cfg:
return False
return False if chroot else []
outdated: list[Chroot] = []
date_outdated = time.time() - pmb.config.chroot_outdated
for cfg_suffix in cfg[key]:
if chroot and cfg_suffix != str(chroot):
continue
date_init = int(cfg[key][cfg_suffix])
if date_init <= date_outdated:
return True
return False
if chroot:
return True
outdated.append(Chroot.from_str(cfg_suffix))
return False if chroot else outdated
def chroot_check_channel(chroot: Chroot) -> bool:
......
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