2021-03-05 18:03:23 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import textwrap
|
2021-05-23 11:13:39 +08:00
|
|
|
from pathlib import Path
|
2021-03-05 18:03:23 +08:00
|
|
|
|
|
|
|
# NOTE: Do NOT import anything here that needs be built (e.g. params)
|
|
|
|
from common.basedir import BASEDIR
|
|
|
|
from common.spinner import Spinner
|
|
|
|
from common.text_window import TextWindow
|
2022-06-12 07:38:24 +08:00
|
|
|
from system.hardware import AGNOS
|
2022-06-12 14:19:27 +08:00
|
|
|
from system.swaglog import cloudlog, add_file_handler
|
|
|
|
from system.version import is_dirty
|
2021-03-05 18:03:23 +08:00
|
|
|
|
2021-12-01 06:51:31 +08:00
|
|
|
MAX_CACHE_SIZE = 4e9 if "CI" in os.environ else 2e9
|
2022-06-02 21:20:51 +08:00
|
|
|
CACHE_DIR = Path("/data/scons_cache" if AGNOS else "/tmp/scons_cache")
|
2021-05-23 11:13:39 +08:00
|
|
|
|
2023-08-15 08:34:19 +08:00
|
|
|
TOTAL_SCONS_NODES = 2560
|
2021-03-26 00:27:15 +08:00
|
|
|
MAX_BUILD_PROGRESS = 100
|
2021-03-05 18:03:23 +08:00
|
|
|
PREBUILT = os.path.exists(os.path.join(BASEDIR, 'prebuilt'))
|
|
|
|
|
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def build(spinner: Spinner, dirty: bool = False) -> None:
|
2021-03-05 18:03:23 +08:00
|
|
|
env = os.environ.copy()
|
|
|
|
env['SCONS_PROGRESS'] = "1"
|
|
|
|
nproc = os.cpu_count()
|
|
|
|
j_flag = "" if nproc is None else f"-j{nproc - 1}"
|
|
|
|
|
2022-06-28 23:39:22 +08:00
|
|
|
scons: subprocess.Popen = subprocess.Popen(["scons", j_flag, "--cache-populate"], cwd=BASEDIR, env=env, stderr=subprocess.PIPE)
|
|
|
|
assert scons.stderr is not None
|
|
|
|
|
|
|
|
compile_output = []
|
|
|
|
|
|
|
|
# Read progress from stderr and update spinner
|
|
|
|
while scons.poll() is None:
|
|
|
|
try:
|
|
|
|
line = scons.stderr.readline()
|
|
|
|
if line is None:
|
|
|
|
continue
|
|
|
|
line = line.rstrip()
|
|
|
|
|
|
|
|
prefix = b'progress: '
|
|
|
|
if line.startswith(prefix):
|
|
|
|
i = int(line[len(prefix):])
|
|
|
|
spinner.update_progress(MAX_BUILD_PROGRESS * min(1., i / TOTAL_SCONS_NODES), 100.)
|
|
|
|
elif len(line):
|
|
|
|
compile_output.append(line)
|
|
|
|
print(line.decode('utf8', 'replace'))
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
|
|
|
|
if scons.returncode != 0:
|
|
|
|
# Read remaining output
|
|
|
|
r = scons.stderr.read().split(b'\n')
|
|
|
|
compile_output += r
|
|
|
|
|
|
|
|
# Build failed log errors
|
|
|
|
errors = [line.decode('utf8', 'replace') for line in compile_output
|
|
|
|
if any(err in line for err in [b'error: ', b'not found, needed by target'])]
|
|
|
|
error_s = "\n".join(errors)
|
|
|
|
add_file_handler(cloudlog)
|
|
|
|
cloudlog.error("scons build failed\n" + error_s)
|
|
|
|
|
|
|
|
# Show TextWindow
|
|
|
|
spinner.close()
|
|
|
|
if not os.getenv("CI"):
|
|
|
|
error_s = "\n \n".join("\n".join(textwrap.wrap(e, 65)) for e in errors)
|
|
|
|
with TextWindow("openpilot failed to build\n \n" + error_s) as t:
|
|
|
|
t.wait_for_exit()
|
|
|
|
exit(1)
|
|
|
|
|
2021-03-05 18:03:23 +08:00
|
|
|
|
2021-05-23 11:13:39 +08:00
|
|
|
# enforce max cache size
|
|
|
|
cache_files = [f for f in CACHE_DIR.rglob('*') if f.is_file()]
|
|
|
|
cache_files.sort(key=lambda f: f.stat().st_mtime)
|
|
|
|
cache_size = sum(f.stat().st_size for f in cache_files)
|
|
|
|
for f in cache_files:
|
|
|
|
if cache_size < MAX_CACHE_SIZE:
|
|
|
|
break
|
|
|
|
cache_size -= f.stat().st_size
|
|
|
|
f.unlink()
|
|
|
|
|
2021-03-05 18:03:23 +08:00
|
|
|
|
|
|
|
if __name__ == "__main__" and not PREBUILT:
|
|
|
|
spinner = Spinner()
|
|
|
|
spinner.update_progress(0, 100)
|
2021-12-14 19:15:13 +08:00
|
|
|
build(spinner, is_dirty())
|