mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-30 07:51:27 +00:00
feat: loading percentage
This commit is contained in:
parent
6b93df9630
commit
4ce96c303d
|
@ -1,3 +1,4 @@
|
||||||
|
from time import sleep
|
||||||
import re
|
import re
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
|
@ -12,21 +13,69 @@ def nix_collect_garbage(job: Job):
|
||||||
job=job,
|
job=job,
|
||||||
status=JobStatus.RUNNING,
|
status=JobStatus.RUNNING,
|
||||||
progress=0,
|
progress=0,
|
||||||
status_text="Start cleaning.",
|
status_text="Сalculate the number of dead packages...",
|
||||||
)
|
)
|
||||||
|
|
||||||
output = subprocess.check_output(["nix-collect-garbage", "-d"])
|
output = subprocess.check_output(
|
||||||
|
["nix-store --gc --print-dead", "--gc", "--print-dead"]
|
||||||
|
)
|
||||||
|
|
||||||
pat = re.compile(r"linking saves ([+-]?\d+\.\d+ \w+).+?([+-]?\d+\.\d+ \w+) freed")
|
dead_packages = len(re.findall("/nix/store/", output.decode("utf-8")))
|
||||||
|
package_equal_to_percent = 100 / dead_packages
|
||||||
|
|
||||||
|
Jobs.update(
|
||||||
|
job=job,
|
||||||
|
status=JobStatus.RUNNING,
|
||||||
|
progress=0,
|
||||||
|
status_text=f"Found {dead_packages} packages to remove!",
|
||||||
|
)
|
||||||
|
|
||||||
|
def _parse_line(line):
|
||||||
|
pattern = re.compile(r"[+-]?\d+\.\d+ \w+ freed")
|
||||||
match = re.search(
|
match = re.search(
|
||||||
pat,
|
pattern,
|
||||||
output,
|
line,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if match is None:
|
||||||
|
Jobs.update(
|
||||||
|
job=job,
|
||||||
|
status=JobStatus.FINISHED,
|
||||||
|
progress=100,
|
||||||
|
status_text="Completed with an error",
|
||||||
|
result="We are sorry, result was not found :(",
|
||||||
|
)
|
||||||
|
|
||||||
|
else:
|
||||||
Jobs.update(
|
Jobs.update(
|
||||||
job=job,
|
job=job,
|
||||||
status=JobStatus.FINISHED,
|
status=JobStatus.FINISHED,
|
||||||
progress=100,
|
progress=100,
|
||||||
status_text="Сleaning completed.",
|
status_text="Сleaning completed.",
|
||||||
result=f"Currently hard linking saves {match.group(1)}, {match.group(2)} freed",
|
result=f"{match.group(0)} have been cleared",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def _stream_process(process):
|
||||||
|
go = process.poll() is None
|
||||||
|
percent = 0
|
||||||
|
|
||||||
|
for line in process.stdout:
|
||||||
|
if "deleting '/nix/store/" in line:
|
||||||
|
percent += package_equal_to_percent
|
||||||
|
|
||||||
|
Jobs.update(
|
||||||
|
job=job,
|
||||||
|
status=JobStatus.RUNNING,
|
||||||
|
progress=int(percent),
|
||||||
|
status_text="Сleaning...",
|
||||||
|
)
|
||||||
|
|
||||||
|
elif "store paths deleted," in line:
|
||||||
|
_parse_line(line)
|
||||||
|
|
||||||
|
return go
|
||||||
|
|
||||||
|
process = subprocess.Popen(
|
||||||
|
["nix-collect-garbage", "-d"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT
|
||||||
|
)
|
||||||
|
_stream_process(process)
|
||||||
|
|
Loading…
Reference in a new issue