2021-11-12 11:07:54 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import os
|
|
|
|
import json
|
|
|
|
import logging
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
|
2022-01-26 11:10:20 +00:00
|
|
|
import requests # type: ignore
|
2021-11-12 11:07:54 +00:00
|
|
|
|
2021-11-26 10:57:36 +00:00
|
|
|
from ci_config import CI_CONFIG
|
2021-11-12 11:07:54 +00:00
|
|
|
|
|
|
|
DOWNLOAD_RETRIES_COUNT = 5
|
|
|
|
|
2022-01-26 11:10:20 +00:00
|
|
|
|
2021-11-26 10:57:36 +00:00
|
|
|
def get_build_name_for_check(check_name):
|
2022-01-26 11:10:20 +00:00
|
|
|
return CI_CONFIG["tests_config"][check_name]["required_build"]
|
|
|
|
|
2021-11-12 11:07:54 +00:00
|
|
|
|
2021-11-26 10:57:36 +00:00
|
|
|
def get_build_urls(build_name, reports_path):
|
2021-11-12 11:07:54 +00:00
|
|
|
for root, _, files in os.walk(reports_path):
|
|
|
|
for f in files:
|
2022-01-26 11:10:20 +00:00
|
|
|
if build_name in f:
|
2021-11-12 11:07:54 +00:00
|
|
|
logging.info("Found build report json %s", f)
|
2022-01-26 11:10:20 +00:00
|
|
|
with open(os.path.join(root, f), "r", encoding="utf-8") as file_handler:
|
2021-11-12 11:07:54 +00:00
|
|
|
build_report = json.load(file_handler)
|
2022-01-26 11:10:20 +00:00
|
|
|
return build_report["build_urls"]
|
2021-11-12 11:07:54 +00:00
|
|
|
return []
|
|
|
|
|
2022-01-26 11:10:20 +00:00
|
|
|
|
2021-11-12 11:07:54 +00:00
|
|
|
def dowload_build_with_progress(url, path):
|
|
|
|
logging.info("Downloading from %s to temp path %s", url, path)
|
|
|
|
for i in range(DOWNLOAD_RETRIES_COUNT):
|
|
|
|
try:
|
2022-01-26 11:10:20 +00:00
|
|
|
with open(path, "wb") as f:
|
2021-11-12 11:07:54 +00:00
|
|
|
response = requests.get(url, stream=True)
|
|
|
|
response.raise_for_status()
|
2022-01-26 11:10:20 +00:00
|
|
|
total_length = response.headers.get("content-length")
|
2021-11-12 11:07:54 +00:00
|
|
|
if total_length is None or int(total_length) == 0:
|
2022-01-26 11:10:20 +00:00
|
|
|
logging.info(
|
|
|
|
"No content-length, will download file without progress"
|
|
|
|
)
|
2021-11-12 11:07:54 +00:00
|
|
|
f.write(response.content)
|
|
|
|
else:
|
|
|
|
dl = 0
|
|
|
|
total_length = int(total_length)
|
|
|
|
logging.info("Content length is %ld bytes", total_length)
|
|
|
|
for data in response.iter_content(chunk_size=4096):
|
|
|
|
dl += len(data)
|
|
|
|
f.write(data)
|
|
|
|
if sys.stdout.isatty():
|
|
|
|
done = int(50 * dl / total_length)
|
|
|
|
percent = int(100 * float(dl) / total_length)
|
2022-01-26 11:10:20 +00:00
|
|
|
eq_str = "=" * done
|
|
|
|
space_str = " " * (50 - done)
|
2021-11-12 11:07:54 +00:00
|
|
|
sys.stdout.write(f"\r[{eq_str}{space_str}] {percent}%")
|
|
|
|
sys.stdout.flush()
|
|
|
|
break
|
|
|
|
except Exception as ex:
|
|
|
|
sys.stdout.write("\n")
|
|
|
|
time.sleep(3)
|
|
|
|
logging.info("Exception while downloading %s, retry %s", ex, i + 1)
|
|
|
|
if os.path.exists(path):
|
|
|
|
os.remove(path)
|
|
|
|
else:
|
|
|
|
raise Exception(f"Cannot download dataset from {url}, all retries exceeded")
|
|
|
|
|
|
|
|
sys.stdout.write("\n")
|
|
|
|
logging.info("Downloading finished")
|
|
|
|
|
|
|
|
|
|
|
|
def download_builds(result_path, build_urls, filter_fn):
|
|
|
|
for url in build_urls:
|
|
|
|
if filter_fn(url):
|
2022-01-26 11:10:20 +00:00
|
|
|
fname = os.path.basename(url.replace("%2B", "+").replace("%20", " "))
|
2021-11-12 11:07:54 +00:00
|
|
|
logging.info("Will download %s to %s", fname, result_path)
|
|
|
|
dowload_build_with_progress(url, os.path.join(result_path, fname))
|
|
|
|
|
2022-01-26 11:10:20 +00:00
|
|
|
|
|
|
|
def download_builds_filter(
|
|
|
|
check_name, reports_path, result_path, filter_fn=lambda _: True
|
|
|
|
):
|
2021-11-26 10:57:36 +00:00
|
|
|
build_name = get_build_name_for_check(check_name)
|
|
|
|
urls = get_build_urls(build_name, reports_path)
|
2021-11-12 19:57:26 +00:00
|
|
|
print(urls)
|
2021-11-12 11:07:54 +00:00
|
|
|
|
|
|
|
if not urls:
|
|
|
|
raise Exception("No build URLs found")
|
|
|
|
|
|
|
|
download_builds(result_path, urls, filter_fn)
|
|
|
|
|
2022-01-26 11:10:20 +00:00
|
|
|
|
2021-11-12 11:07:54 +00:00
|
|
|
def download_all_deb_packages(check_name, reports_path, result_path):
|
2022-01-26 11:10:20 +00:00
|
|
|
download_builds_filter(
|
|
|
|
check_name, reports_path, result_path, lambda x: x.endswith("deb")
|
|
|
|
)
|
|
|
|
|
2021-11-12 11:07:54 +00:00
|
|
|
|
|
|
|
def download_shared_build(check_name, reports_path, result_path):
|
2022-01-26 11:10:20 +00:00
|
|
|
download_builds_filter(
|
|
|
|
check_name, reports_path, result_path, lambda x: x.endswith("shared_build.tgz")
|
|
|
|
)
|
|
|
|
|
2021-11-12 11:07:54 +00:00
|
|
|
|
|
|
|
def download_unit_tests(check_name, reports_path, result_path):
|
2022-01-26 11:10:20 +00:00
|
|
|
download_builds_filter(
|
|
|
|
check_name, reports_path, result_path, lambda x: x.endswith("unit_tests_dbms")
|
|
|
|
)
|
|
|
|
|
2021-11-12 11:07:54 +00:00
|
|
|
|
|
|
|
def download_clickhouse_binary(check_name, reports_path, result_path):
|
2022-01-26 11:10:20 +00:00
|
|
|
download_builds_filter(
|
|
|
|
check_name, reports_path, result_path, lambda x: x.endswith("clickhouse")
|
|
|
|
)
|
|
|
|
|
2021-12-09 09:04:05 +00:00
|
|
|
|
|
|
|
def download_performance_build(check_name, reports_path, result_path):
|
2022-01-26 11:10:20 +00:00
|
|
|
download_builds_filter(
|
|
|
|
check_name, reports_path, result_path, lambda x: x.endswith("performance.tgz")
|
|
|
|
)
|