Skip to content

Commit caee2be

Browse files
authored
Use saved state information in check_times.py (#205)
1 parent be14d95 commit caee2be

File tree

1 file changed

+38
-46
lines changed

1 file changed

+38
-46
lines changed

check_times.py

+38-46
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,82 @@
11
"""Check the frequency of the rebuild loop.
22
3-
This must be run in a directory that has the ``docsbuild.log*`` files.
3+
This must be run in a directory that has the ``docsbuild*`` log files.
44
For example:
55
66
.. code-block:: bash
77
88
$ mkdir -p docsbuild-logs
9-
$ scp "[email protected]:/var/log/docsbuild/docsbuild.log*" docsbuild-logs/
9+
$ scp "[email protected]:/var/log/docsbuild/docsbuild*" docsbuild-logs/
1010
$ python check_times.py
1111
"""
1212

13-
import datetime as dt
1413
import gzip
14+
import tomllib
1515
from pathlib import Path
1616

1717
from build_docs import format_seconds
1818

1919
LOGS_ROOT = Path("docsbuild-logs").resolve()
2020

2121

22-
def get_lines() -> list[str]:
22+
def get_lines(filename: str = "docsbuild.log") -> list[str]:
2323
lines = []
24-
zipped_logs = list(LOGS_ROOT.glob("docsbuild.log.*.gz"))
24+
zipped_logs = list(LOGS_ROOT.glob(f"{filename}.*.gz"))
2525
zipped_logs.sort(key=lambda p: int(p.name.split(".")[-2]), reverse=True)
2626
for logfile in zipped_logs:
2727
with gzip.open(logfile, "rt", encoding="utf-8") as f:
2828
lines += f.readlines()
29-
with open(LOGS_ROOT / "docsbuild.log", encoding="utf-8") as f:
29+
with open(LOGS_ROOT / filename, encoding="utf-8") as f:
3030
lines += f.readlines()
3131
return lines
3232

3333

3434
def calc_time(lines: list[str]) -> None:
35-
start = end = language = version = start_timestamp = None
36-
reason = lang_ver = ""
35+
in_progress = False
36+
in_progress_line = ""
3737

3838
print("Start | Version | Language | Build | Trigger")
3939
print(":-- | :--: | :--: | --: | :--:")
4040

4141
for line in lines:
4242
line = line.strip()
4343

44-
if ": Should rebuild: " in line:
45-
if "no previous state found" in line:
46-
reason = "brand new"
47-
elif "new translations" in line:
48-
reason = "translation"
49-
elif "Doc/ has changed" in line:
50-
reason = "docs"
51-
else:
52-
reason = ""
53-
lang_ver = line.split(" ")[3].removesuffix(":")
54-
55-
if line.endswith("Build start."):
56-
timestamp = line[:23].replace(",", ".")
57-
language, version = line.split(" ")[3].removesuffix(":").split("/")
58-
start = dt.datetime.strptime(timestamp, "%Y-%m-%d %H:%M:%S.%f")
59-
start_timestamp = f"{line[:16]} UTC"
60-
61-
if start and ": Build done " in line:
62-
timestamp = line[:23].replace(",", ".")
63-
language, version = line.split(" ")[3].removesuffix(":").split("/")
64-
end = dt.datetime.strptime(timestamp, "%Y-%m-%d %H:%M:%S.%f")
65-
66-
if start and end:
67-
duration = (end - start).total_seconds()
68-
fmt_duration = format_seconds(duration)
69-
if lang_ver != f"{language}/{version}":
70-
reason = ""
44+
if "Saved new rebuild state for" in line:
45+
_, state = line.split("Saved new rebuild state for", 1)
46+
key, state_toml = state.strip().split(": ", 1)
47+
language, version = key.strip("/").split("/", 1)
48+
state_data = tomllib.loads(f"t = {state_toml}")["t"]
49+
start = state_data["last_build_start"]
50+
fmt_duration = format_seconds(state_data["last_build_duration"])
51+
reason = state_data["triggered_by"]
7152
print(
72-
f"{start_timestamp: <20} | {version: <7} | {language: <8} | {fmt_duration :<14} | {reason}"
53+
f"{start:%Y-%m-%d %H:%M UTC} | {version: <7} | {language: <8} | {fmt_duration :<14} | {reason}"
7354
)
74-
start = end = start_timestamp = None
7555

76-
if ": Full build done" in line:
77-
timestamp = f"{line[:16]} UTC"
78-
_, fmt_duration = line.removesuffix(").").split("(")
79-
print(
80-
f"{timestamp: <20} | --FULL- | -BUILD-- | {fmt_duration :<14} | -----------"
81-
)
56+
if line.endswith("Build start."):
57+
in_progress = True
58+
in_progress_line = line
59+
60+
if in_progress and ": Build done " in line:
61+
in_progress = False
8262

83-
if start and end is None:
63+
if in_progress:
64+
start_timestamp = f"{in_progress_line[:16]} UTC"
65+
language, version = in_progress_line.split(" ")[3].removesuffix(":").split("/")
8466
print(
85-
f"{start_timestamp: <20} | {version: <7} | {language: <8} | In progress... | {reason}"
67+
f"{start_timestamp: <20} | {version: <7} | {language: <8} | In progress... | ..."
8668
)
8769

70+
print()
71+
8872

8973
if __name__ == "__main__":
90-
calc_time(get_lines())
74+
print("Build times (HTML only)")
75+
print("=======================")
76+
print()
77+
calc_time(get_lines("docsbuild-only-html.log"))
78+
79+
print("Build times (no HTML)")
80+
print("=====================")
81+
print()
82+
calc_time(get_lines("docsbuild-no-html.log"))

0 commit comments

Comments
 (0)