1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
|
#!/usr/bin/env python
# -*- mode: python; coding: utf-8; indent-tabs-mode: nil; python-indent: 4 -*-
# Running bootstrap requires a minimum Python version of 2.7.
# To download this file:
# wget https://raw.githubusercontent.com/dials/dials/main/installer/bootstrap.py
# or
# curl https://raw.githubusercontent.com/dials/dials/main/installer/bootstrap.py > bootstrap.py
from __future__ import absolute_import, division, print_function
import argparse
import json
import multiprocessing.pool
import os
import platform
import re
import shutil
import socket as pysocket
import stat
import subprocess
import sys
import tarfile
import threading
import time
import warnings
import zipfile
try: # Python 3
from urllib.error import HTTPError, URLError
from urllib.request import Request, urlopen
except ImportError: # Python 2
from urllib2 import HTTPError, Request, URLError, urlopen
# Clean environment for subprocesses
clean_env = {
key: value
for key, value in os.environ.items()
if key not in ("PYTHONPATH", "LD_LIBRARY_PATH", "DYLD_LIBRARY_PATH")
}
devnull = open(os.devnull, "wb") # to redirect unwanted subprocess output
allowed_ssh_connections = {}
concurrent_git_connection_limit = threading.Semaphore(5)
_prebuilt_cctbx_base = "2022.8" # September 2022 release
def make_executable(filepath):
if os.name == "posix":
mode = os.stat(filepath).st_mode
mode |= (mode & 0o444) >> 2 # copy R bits to X
# r--r--r-- => 0o444
os.chmod(filepath, mode)
def install_micromamba(python, include_cctbx):
"""Download and install Micromamba"""
if sys.platform.startswith("linux"):
conda_platform = "linux"
conda_arch = "linux-64"
member = "bin/micromamba"
elif sys.platform == "darwin":
conda_platform = "macos"
member = "bin/micromamba"
if platform.machine() == "arm64":
conda_arch = "osx-arm64"
else:
conda_arch = "osx-64"
elif os.name == "nt":
conda_platform = "windows"
member = "Library/bin/micromamba.exe"
conda_arch = "win-64"
else:
raise NotImplementedError(
"Unsupported platform %s / %s" % (os.name, sys.platform)
)
url = "https://micro.mamba.pm/api/micromamba/{0}/latest".format(conda_arch)
mamba_prefix = os.path.realpath("micromamba")
clean_env["MAMBA_ROOT_PREFIX"] = mamba_prefix
mamba = os.path.join(mamba_prefix, member.split("/")[-1])
print("Downloading {url}:".format(url=url), end=" ")
result = download_to_file(url, os.path.join(mamba_prefix, "micromamba.tar.bz2"))
if result in (0, -1):
sys.exit("Micromamba download failed")
with tarfile.open(
os.path.join(mamba_prefix, "micromamba.tar.bz2"), "r:bz2"
) as tar, open(mamba, "wb") as fh:
fh.write(tar.extractfile(member).read())
make_executable(mamba)
# verify micromamba works and check version
conda_info = subprocess.check_output([mamba, "--version"], env=clean_env)
if sys.version_info.major > 2:
conda_info = conda_info.decode("latin-1")
print("Using Micromamba version", conda_info.strip())
# Identify packages required for environment
env_dir = os.path.join("modules", "dials", ".conda-envs")
# First, check to see if we have an architecture-and-python-specific environment file
filename = os.path.join(env_dir, "{0}_py{1}.txt".format(conda_arch, python))
if not os.path.isfile(filename):
# Otherwise, check if we have an architecture-specific environment file
filename = os.path.join(env_dir, "{0}.txt".format(conda_arch))
if not os.path.isfile(filename):
# Otherwise, use the platform-specific fallback
filename = os.path.join(env_dir, conda_platform + ".txt")
if not os.path.isfile(filename):
raise RuntimeError(
"The environment file {filename} is not available".format(filename=filename)
)
# install a new environment or update an existing one
prefix = os.path.realpath("conda_base")
if os.path.exists(prefix):
command = "install"
text_messages = ["Updating", "update of"]
else:
command = "create"
text_messages = ["Installing", "installation into"]
python_requirement = "conda-forge::python=%s.*" % python
command_list = [
mamba,
"--no-env",
"--no-rc",
"--prefix",
prefix,
"--root-prefix",
mamba_prefix,
command,
"--file",
filename,
"--yes",
"--channel",
"conda-forge",
"--override-channels",
python_requirement,
]
if include_cctbx:
command_list.append("cctbx-base=" + _prebuilt_cctbx_base)
print(
"{text} dials environment from {filename} with Python {python}".format(
text=text_messages[0], filename=filename, python=python
)
)
for retry in range(5):
retry += 1
try:
run_command(
command=command_list,
workdir=".",
)
except Exception:
print(
"""
*******************************************************************************
There was a failure in constructing the conda environment.
Attempt {retry} of 5 will start {retry} minute(s) from {t}.
*******************************************************************************
""".format(
retry=retry, t=time.asctime()
)
)
time.sleep(retry * 60)
else:
break
else:
sys.exit(
"""
The conda environment could not be constructed. Please check that there is a
working network connection for downloading conda packages.
"""
)
print("Completed {text}:\n {prefix}".format(text=text_messages[1], prefix=prefix))
with open(os.path.join(prefix, ".condarc"), "w") as fh:
fh.write(
"""
changeps1: False
channels:
- conda-forge
""".lstrip()
)
def install_miniconda(location):
"""Download and install Miniconda3"""
if sys.platform.startswith("linux"):
filename = "Miniconda3-latest-Linux-x86_64.sh"
elif sys.platform == "darwin":
filename = "Miniconda3-latest-MacOSX-x86_64.sh"
elif os.name == "nt":
filename = "Miniconda3-latest-Windows-x86_64.exe"
else:
raise NotImplementedError(
"Unsupported platform %s / %s" % (os.name, sys.platform)
)
url = "https://repo.anaconda.com/miniconda/" + filename
filename = os.path.join(location, filename)
print("Downloading {url}:".format(url=url), end=" ")
result = download_to_file(url, filename)
if result in (0, -1):
sys.exit("Miniconda download failed")
# run the installer
if os.name == "nt":
command = [
filename,
"/InstallationType=JustMe",
"/RegisterPython=0",
"/AddToPath=0",
"/S",
"/D=" + location,
]
else:
command = ["/bin/sh", filename, "-b", "-u", "-p", location]
print("Installing Miniconda")
run_command(command=command, workdir=".")
def install_conda(python, include_cctbx):
# Find relevant conda base installation
conda_base = os.path.realpath("miniconda")
if os.name == "nt":
conda_exe = os.path.join(conda_base, "Scripts", "conda.exe")
else:
conda_exe = os.path.join(conda_base, "bin", "conda")
# default environment file for users
environment_file = os.path.join(
os.path.expanduser("~"), ".conda", "environments.txt"
)
def get_environments():
"""Return a set of existing conda environment paths"""
try:
with open(environment_file) as f:
paths = f.readlines()
except IOError:
paths = []
environments = set( # noqa; C401, Python 2.7 compatibility
os.path.normpath(env.strip()) for env in paths if os.path.isdir(env.strip())
)
env_dirs = (
os.path.join(conda_base, "envs"),
os.path.join(os.path.expanduser("~"), ".conda", "envs"),
)
for env_dir in env_dirs:
if os.path.isdir(env_dir):
for d in os.listdir(env_dir):
d = os.path.join(env_dir, d)
if os.path.isdir(d):
environments.add(d)
return environments
if os.path.isdir(conda_base) and os.path.isfile(conda_exe):
print("Using miniconda installation from", conda_base)
else:
print("Installing miniconda into", conda_base)
install_miniconda(conda_base)
# verify consistency and check conda version
if not os.path.isfile(conda_exe):
sys.exit("Conda executable not found at " + conda_exe)
environments = get_environments()
conda_info = subprocess.check_output([conda_exe, "info", "--json"], env=clean_env)
if sys.version_info.major > 2:
conda_info = conda_info.decode("latin-1")
conda_info = json.loads(conda_info)
for env in environments:
if env not in conda_info["envs"]:
print("Consistency check:", env, "not in environments:")
print(conda_info["envs"])
warnings.warn(
"""
There is a mismatch between the conda settings in your home directory
and what "conda info" is reporting. This is not a fatal error, but if
an error is encountered, please check that your conda installation and
environments exist and are working.
""",
RuntimeWarning,
)
# identify packages required for environment
if os.name == "nt":
conda_platform = "windows"
elif sys.platform == "darwin":
conda_platform = "macos"
else:
conda_platform = "linux"
filename = os.path.join(
"modules",
"dials",
".conda-envs",
"{platform}.txt".format(platform=conda_platform),
)
if not os.path.isfile(filename):
raise RuntimeError(
"The file {filename} is not available".format(filename=filename)
)
python_requirement = "conda-forge::python=%s.*" % python
# make a new environment directory
prefix = os.path.realpath("conda_base")
# install a new environment or update and existing one
if prefix in environments:
command = "install"
text_messages = ["Updating", "update of"]
else:
command = "create"
text_messages = ["Installing", "installation into"]
command_list = [
conda_exe,
command,
"--prefix",
prefix,
"--file",
filename,
"--yes",
"--channel",
"conda-forge",
"--override-channels",
python_requirement,
]
if include_cctbx:
command_list.append("cctbx-base=" + _prebuilt_cctbx_base)
if os.name == "nt":
command_list = [
"cmd.exe",
"/C",
" ".join(
[os.path.join(conda_base, "Scripts", "activate"), "base", "&&"]
+ command_list
)
.replace("<", "^<")
.replace(">", "^>"),
]
print(
"{text} dials environment from {filename} with Python {python}".format(
text=text_messages[0], filename=filename, python=python
)
)
for retry in range(5):
retry += 1
try:
run_command(
command=command_list,
workdir=".",
)
except Exception:
print(
"""
*******************************************************************************
There was a failure in constructing the conda environment.
Attempt {retry} of 5 will start {retry} minute(s) from {t}.
*******************************************************************************
""".format(
retry=retry, t=time.asctime()
)
)
time.sleep(retry * 60)
else:
break
else:
sys.exit(
"""
The conda environment could not be constructed. Please check that there is a
working network connection for downloading conda packages.
"""
)
print("Completed {text}:\n {prefix}".format(text=text_messages[1], prefix=prefix))
with open(os.path.join(prefix, ".condarc"), "w") as fh:
fh.write(
"""
changeps1: False
channels:
- conda-forge
""".lstrip()
)
def run_command(command, workdir):
print("Running %s (in %s)" % (" ".join(command), workdir))
workdir = os.path.abspath(workdir)
try:
os.makedirs(workdir)
except OSError:
pass
try:
p = subprocess.Popen(args=command, cwd=workdir, env=clean_env)
except Exception as e:
if isinstance(e, OSError):
if e.errno == 2:
executable = os.path.normpath(os.path.join(workdir, command[0]))
raise RuntimeError("Could not run %s: File not found" % executable)
if "child_traceback" in dir(e):
print("Calling subprocess resulted in error; ", e.child_traceback)
raise e
try:
p.wait()
except KeyboardInterrupt:
print("\nReceived CTRL+C, trying to stop subprocess...\n")
p.terminate()
raise
if p.returncode:
sys.exit("Process failed with return code %s" % p.returncode)
def run_indirect_command(command, args):
print("(via conda environment) " + command)
try:
os.mkdir("build")
except OSError:
pass
if os.name == "nt":
filename = os.path.join("build", "indirection.cmd")
with open(filename, "w") as fh:
fh.write("call %s\\conda_base\\condabin\\activate.bat\r\n" % os.getcwd())
fh.write("shift\r\n")
fh.write("%*\r\n")
if not command.endswith((".bat", ".cmd", ".exe")):
command = command + ".bat"
indirection = ["cmd.exe", "/C", "indirection.cmd"]
else:
filename = os.path.join("build", "indirection.sh")
with open(filename, "w") as fh:
fh.write("#!/bin/bash\n")
fh.write("source %s/conda_base/etc/profile.d/conda.sh\n" % os.getcwd())
fh.write("conda activate %s/conda_base\n" % os.getcwd())
fh.write('"$@"\n')
make_executable(filename)
indirection = ["./indirection.sh"]
run_command(
command=indirection + [command] + args,
workdir="build",
)
def download_to_file(url, file, quiet=False):
"""Downloads a URL to file. Returns the file size.
Returns -1 if the downloaded file size does not match the expected file
size
Returns -2 if the download is skipped due to the file at the URL not
being newer than the local copy (identified by matching timestamp and
size)
"""
# Create directory structure if necessary
if os.path.dirname(file):
try:
os.makedirs(os.path.dirname(file))
except Exception:
pass
localcopy = os.path.isfile(file)
try:
from ssl import SSLError
except ImportError:
SSLError = None
# Open connection to remote server
try:
url_request = Request(url)
if localcopy:
# Shorten timeout to 7 seconds if a copy of the file is already present
socket = urlopen(url_request, None, 7)
else:
socket = urlopen(url_request)
except SSLError as e:
# This could be a timeout
if localcopy:
# Download failed for some reason, but a valid local copy of
# the file exists, so use that one instead.
if not quiet:
print(str(e))
return -2
# otherwise pass on the error message
raise
except (pysocket.timeout, HTTPError) as e:
if localcopy:
# Download failed for some reason, but a valid local copy of
# the file exists, so use that one instead.
if not quiet:
print(str(e))
return -2
# otherwise pass on the error message
raise
except URLError as e:
if localcopy:
# Download failed for some reason, but a valid local copy of
# the file exists, so use that one instead.
if not quiet:
print(str(e))
return -2
# if url fails to open, try using curl
# temporary fix for old OpenSSL in system Python on macOS
# https://github.com/cctbx/cctbx_project/issues/33
command = ["/usr/bin/curl", "-fLo", file, "--retry", "5", url]
subprocess.call(command)
socket = None # prevent later socket code from being run
try:
received = os.path.getsize(file)
except OSError:
raise RuntimeError("Download failed")
if socket is not None:
try:
file_size = int(socket.info().get("Content-Length"))
except Exception:
file_size = 0
remote_mtime = 0
try:
remote_mtime = time.mktime(socket.info().getdate("last-modified"))
except Exception:
pass
if file_size > 0:
if remote_mtime > 0:
# check if existing file matches remote size and timestamp
try:
(
mode,
ino,
dev,
nlink,
uid,
gid,
size,
atime,
mtime,
ctime,
) = os.stat(file)
if (size == file_size) and (remote_mtime == mtime):
if not quiet:
print("local copy is current")
socket.close()
return -2
except Exception:
# proceed with download if timestamp/size check fails for any reason
pass
hr_size = (file_size, "B")
if hr_size[0] > 500:
hr_size = (hr_size[0] / 1024, "kB")
if hr_size[0] > 500:
hr_size = (hr_size[0] / 1024, "MB")
if not quiet:
print("%.1f %s" % hr_size)
print(" [0%", end="")
sys.stdout.flush() # becomes print(flush=True) when we move to 3.3+
received = 0
block_size = 8192
progress = 1
# Write to the file immediately so we can empty the buffer
tmpfile = file + ".tmp"
with open(tmpfile, "wb") as fh:
while True:
block = socket.read(block_size)
received += len(block)
fh.write(block)
if file_size > 0 and not quiet:
while (100 * received / file_size) > progress:
progress += 1
if (progress % 20) == 0:
print(progress, end="%")
sys.stdout.flush() # becomes print(flush=True) when we move to 3.3+
elif (progress % 2) == 0:
print(".", end="")
sys.stdout.flush() # becomes print(flush=True) when we move to 3.3+
if not block:
break
socket.close()
if not quiet:
if file_size > 0:
print("]")
else:
print("%d kB" % (received / 1024))
sys.stdout.flush() # becomes print(flush=True) when we move to 3.3+
# Do not overwrite file during the download. If a download temporarily fails we
# may still have a clean, working (yet older) copy of the file.
shutil.move(tmpfile, file)
if (file_size > 0) and (file_size != received):
return -1
if remote_mtime > 0:
# set file timestamp if timestamp information is available
st = os.stat(file)
atime = st[stat.ST_ATIME] # current access time
os.utime(file, (atime, remote_mtime))
return received
def unzip(archive, directory, trim_directory=0):
"""unzip a file into a directory."""
if not zipfile.is_zipfile(archive):
raise Exception(
"Cannot install %s: %s is not a valid .zip file" % (directory, archive)
)
z = zipfile.ZipFile(archive, "r")
for member in z.infolist():
is_directory = member.filename.endswith("/")
filename = os.path.join(*member.filename.split("/")[trim_directory:])
if filename != "":
filename = os.path.normpath(filename)
if "../" in filename:
raise Exception(
"Archive %s contains invalid filename %s" % (archive, filename)
)
filename = os.path.join(directory, filename)
upperdirs = os.path.dirname(filename)
try:
if is_directory and not os.path.exists(filename):
os.makedirs(filename)
elif upperdirs and not os.path.exists(upperdirs):
os.makedirs(upperdirs)
except Exception:
pass
if not is_directory:
with z.open(member) as source:
with open(filename, "wb") as target:
shutil.copyfileobj(source, target)
# Preserve executable permission, if set
unix_executable = member.external_attr >> 16 & 0o111
# rwxrwxrwx => --x--x--x => 0o111
if unix_executable:
make_executable(filename)
z.close()
def set_git_repository_config_to_rebase(config):
with open(config, "r") as fh:
cfg = fh.readlines()
branch, remote, rebase = False, False, False
insertions = []
for n, line in enumerate(cfg):
if line.startswith("["):
if branch and remote and not rebase:
insertions.insert(0, (n, branch))
if line.startswith("[branch"):
branch = line.split('"')[1]
else:
branch = False
remote, rebase = False, False
if re.match(r"remote\s*=", line.strip()):
remote = True
if re.match(r"rebase\s*=", line.strip()):
rebase = True
if branch and remote and not rebase:
insertions.insert(0, (n + 1, branch))
for n, branch in insertions:
cfg.insert(n, "\trebase = true\n")
with open(config, "w") as fh:
fh.write("".join(cfg))
def git(module, git_available, ssh_available, reference_base, settings):
"""Retrieve a git repository, either by running git directly
or by downloading and unpacking an archive.
"""
destination = os.path.join("modules", module)
if os.path.exists(destination):
if os.path.isfile(os.path.join(destination, ".git")):
return module, "WARNING", "Existing git worktree directory -- skipping"
if not os.path.isdir(os.path.join(destination, ".git")):
return module, "WARNING", "Existing non-git directory -- skipping"
if not git_available:
return module, "WARNING", "Cannot update module, git command not found"
with open(os.path.join(destination, ".git", "HEAD"), "r") as fh:
if fh.read(4) != "ref:":
return (
module,
"WARNING",
"Cannot update existing git repository! You are not on a branch.\n"
"This may be legitimate when run eg. via Jenkins, but be aware that you cannot commit any changes",
)
with concurrent_git_connection_limit:
p = subprocess.Popen(
args=["git", "pull", "--rebase"],
cwd=destination,
env=clean_env,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
)
# This may fail for unclean trees and merge problems. In this case manual
# user intervention will be required.
# For the record, you can clean up the tree and *discard ALL changes* with
# git reset --hard origin/master
# git clean -dffx
try:
output, _ = p.communicate()
output = output.decode("latin-1")
except KeyboardInterrupt:
print("\nReceived CTRL+C, trying to terminate subprocess...\n")
p.terminate()
raise
if p.returncode:
return (
module,
"WARNING",
"Cannot update existing git repository! Unclean tree or merge problems.\n"
+ output,
)
# Show the hash for the checked out commit for debugging purposes
p = subprocess.Popen(
args=["git", "rev-parse", "HEAD", "--abbrev-ref", "HEAD"],
cwd=destination,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
)
output, _ = p.communicate()
output = output.decode("latin-1")
if p.returncode:
return module, "WARNING", "Cannot get git repository revision\n" + output
output = output.split()
if len(output) == 2:
return module, "OK", "Checked out revision %s (%s)" % (output[0], output[1])
return module, "OK", "Checked out revision " + output[0].strip()
try:
os.makedirs("modules")
except OSError:
pass
remote_branch = settings.get("branch-remote", settings["branch-local"])
if not git_available:
# Fall back to downloading a static archive
url = "https://github.com/%s/archive/%s.zip" % (
settings.get("effective-repository", settings.get("base-repository")),
remote_branch,
)
filename = os.path.join("modules", "%s-%s.zip" % (module, remote_branch))
try:
download_to_file(url, filename, quiet=True)
except Exception:
print("Error downloading", url)
raise
unzip(filename, destination, trim_directory=1)
return module, "OK", "Downloaded branch %s from static archive" % remote_branch
if ssh_available:
remote_pattern = "git@github.com:%s.git"
else:
remote_pattern = "https://github.com/%s.git"
if git_available:
# Determine the git version
p = subprocess.Popen(
["git", "--version"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT
)
output, _ = p.communicate()
output = output.decode("latin-1")
parts = output.split(" ", 2)
if p.returncode or not parts[:2] == ["git", "version"]:
raise RuntimeError("Could not determine git version")
# Version comes in:
# "git version x.y.z"
# or "git version x.y.z.windows.n"
git_version = tuple(int(x) if x.isnumeric() else x for x in parts[2].split("."))
secondary_remote = settings.get("effective-repository") and (
settings["effective-repository"] != settings.get("base-repository")
)
direct_branch_checkout = []
if not secondary_remote and remote_branch == settings["branch-local"]:
direct_branch_checkout = ["-b", remote_branch]
reference_parameters = []
if reference_base and os.path.exists(os.path.join(reference_base, module, ".git")):
# Use -if-able so that we don't have errors over unreferenced submodules
reference_type = "--reference-if-able"
if git_version < (2, 11, 0):
# As a fallback, use the old parameter. This will fail if
# there are submodules and the reference does not have all
# the required submodules
reference_type = "--reference"
reference_parameters = [
reference_type,
os.path.join(reference_base, module),
]
with concurrent_git_connection_limit:
p = subprocess.Popen(
args=["git", "clone", "--recursive"]
+ direct_branch_checkout
+ [
remote_pattern
% settings.get("base-repository", settings.get("effective-repository")),
module,
]
+ reference_parameters,
cwd="modules",
env=clean_env,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
)
try:
output, _ = p.communicate()
output = output.decode("latin-1")
except KeyboardInterrupt:
print("\nReceived CTRL+C, trying to terminate subprocess...\n")
p.terminate()
raise
if p.returncode:
return (module, "ERROR", "Cannot checkout git repository\n" + output)
if reference_parameters:
# Sever the link between checked out and reference repository
returncode = subprocess.call(
["git", "repack", "-a", "-d"],
cwd=destination,
env=clean_env,
stdout=devnull,
stderr=devnull,
)
if returncode:
return (
module,
"ERROR",
"Could not detach git repository from reference. Repository may be in invalid state!\n"
"Run 'git repack -a -d' in the repository, or delete and recreate it",
)
alternates = os.path.join(destination, ".git", "objects", "info", "alternates")
if os.path.exists(alternates):
os.remove(alternates)
if secondary_remote:
returncode = subprocess.call(
[
"git",
"remote",
"add",
"upstream",
remote_pattern % settings["effective-repository"],
],
cwd=destination,
env=clean_env,
stdout=devnull,
stderr=devnull,
)
if returncode:
return (
module,
"ERROR",
"Could not add upstream remote to repository. Repository may be in invalid state!",
)
with concurrent_git_connection_limit:
returncode = subprocess.call(
["git", "fetch", "upstream"],
cwd=destination,
env=clean_env,
stdout=devnull,
stderr=devnull,
)
if returncode:
return (
module,
"ERROR",
"Could not fetch upstream repository %s. Repository may be in invalid state!"
% settings["effective-repository"],
)
set_git_repository_config_to_rebase(os.path.join(destination, ".git", "config"))
if not direct_branch_checkout:
# set up the local branch with tracking
returncode = subprocess.call(
[
"git",
"checkout",
"-B",
settings["branch-local"],
"--track",
"%s/%s" % ("upstream" if secondary_remote else "origin", remote_branch),
],
cwd=destination,
env=clean_env,
stdout=devnull,
stderr=devnull,
)
if returncode:
return (
module,
"ERROR",
"Could not check out alternate branch %s. Repository may be in invalid state!"
% remote_branch,
)
if secondary_remote:
# When checking out a branch from a secondary repository under a
# different name set up a git pre-commit hook to write protect
# this branch.
hookfile = os.path.join(destination, ".git", "hooks", "pre-commit")
with open(hookfile, "w") as fh:
fh.write(
"""
#!/bin/sh
#
# Reject commits to '{branch}' to avoid accidental
# commits to the alternate repository {repository}
#
if [ "$(git rev-parse --abbrev-ref HEAD)" == "{branch}" ]
then
echo "Please do not commit to the '{branch}' branch."
echo "You can create a new branch or commit directly to master."
echo
exit 1
fi
""".format(
branch=settings["branch-local"],
repository=settings["effective-repository"],
)
)
make_executable(hookfile)
# Show the hash for the checked out commit for debugging purposes
p = subprocess.Popen(
args=["git", "rev-parse", "HEAD"],
cwd=destination,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
)
output, _ = p.communicate()
output = output.decode("latin-1")
if p.returncode:
return (
module,
"WARNING",
"Cannot get git repository revision\n" + output,
)
git_status = settings["branch-local"]
if settings["branch-local"] != remote_branch:
git_status += " tracking " + remote_branch
if secondary_remote:
git_status += " at " + settings["effective-repository"]
return module, "OK", "Checked out revision %s (%s)" % (output.strip(), git_status)
def update_sources(options):
if options.git_reference:
reference_base = os.path.abspath(os.path.expanduser(options.git_reference))
else:
if os.name == "posix" and pysocket.gethostname().endswith(".diamond.ac.uk"):
reference_base = (
"/dls/science/groups/scisoft/DIALS/repositories/git-reference"
)
else:
reference_base = None
try:
git_available = not subprocess.call(
["git", "--version"], stdout=devnull, stderr=devnull
)
except OSError:
git_available = False
ssh_available = False
if git_available:
try:
returncode = subprocess.call(
[
"ssh",
"-oBatchMode=yes",
"-oStrictHostKeyChecking=no",
"-T",
"git@github.com",
],
stdout=devnull,
stderr=devnull,
)
# SSH errors lead to 255
ssh_available = returncode in (0, 1)
except OSError:
pass
repositories = {
source.split("/")[1]: {"base-repository": source, "branch-local": "dials-3.12"}
for source, branch in (
("dials/annlib_adaptbx", "master"),
("dials/dxtbx", "main"),
("dials/annlib", "master"),
("dials/cbflib", "main"),
("dials/ccp4io", "master"),
("dials/ccp4io_adaptbx", "master"),
("dials/cctbx_project", "master"),
("dials/dials", "main"),
("dials/gui_resources", "master"),
("xia2/xia2", "main"),
)
}
if options.prebuilt_cctbx:
repositories["cctbx_project"]["branch-local"] = (
"releases/" + _prebuilt_cctbx_base
)
else:
repositories["cctbx_project"] = {
"base-repository": "dials/cctbx_project",
"branch-local": "dials-3.12",
}
for source, setting in options.branch:
if source not in repositories:
sys.exit("Unknown repository %s" % source)
setting = re.match(
r"^(?:(\w+/\w+)@?)?([a-zA-Z0-9._\-]+)?(?::([a-zA-Z0-9._\-]+))?$", setting
)
if not setting:
sys.exit("Could not parse the branch setting for repository %s" % source)
_repository, _branch_remote, _branch_local = setting.groups()
if _repository:
repositories[source] = {
"base-repository": _repository,
"branch-remote": _branch_remote or "master",
"branch-local": _branch_local or _branch_remote or "master",
}
elif _branch_remote:
repositories[source]["branch-remote"] = _branch_remote
repositories[source]["branch-local"] = _branch_local or _branch_remote
elif _branch_local:
repositories[source]["branch-local"] = _branch_local
def _git_fn(repository):
return git(
repository,
git_available,
ssh_available,
reference_base,
repositories[repository],
)
success = True
update_pool = multiprocessing.pool.ThreadPool(20)
try:
for result in update_pool.imap_unordered(_git_fn, repositories):
module, result, output = result
output = (result + " - " + output).replace(
"\n", "\n" + " " * (len(module + result) + 5)
)
if result == "ERROR":
success = False
if os.name == "posix" and sys.stdout.isatty():
if result == "OK":
output = "\x1b[32m" + output + "\x1b[0m"
elif result == "WARNING":
output = "\x1b[33m" + output + "\x1b[0m"
elif result == "ERROR":
output = "\x1b[31m" + output + "\x1b[0m"
print(module + ": " + output)
except KeyboardInterrupt:
update_pool.terminate()
sys.exit("\naborted with Ctrl+C")
except Exception:
update_pool.terminate()
raise
update_pool.close()
update_pool.join()
if not success:
sys.exit("\nFailed to update one or more repositories")
def run_tests():
dispatch_extension = ".bat" if os.name == "nt" else ""
print("Running dxtbx tests")
run_command(
[
os.path.join(
"..", "..", "build", "bin", "libtbx.pytest" + dispatch_extension
),
"--regression",
"-n",
"auto",
],
workdir=os.path.join("modules", "dxtbx"),
)
print("Running dials tests")
run_command(
[
os.path.join(
"..", "..", "build", "bin", "libtbx.pytest" + dispatch_extension
),
"--regression",
"-n",
"auto",
],
workdir=os.path.join("modules", "dials"),
)
def refresh_build(prebuilt_cctbx):
print("Running libtbx.refresh")
run_indirect_command(
"libtbx.refresh" if prebuilt_cctbx else os.path.join("bin", "libtbx.refresh"),
args=[],
)
def install_precommit():
print("Installing precommits")
run_indirect_command(
os.path.join("bin", "libtbx.precommit"),
args=["install"],
)
def configure_build(config_flags, prebuilt_cctbx):
if os.name == "nt":
conda_python = os.path.join(os.getcwd(), "conda_base", "python.exe")
elif sys.platform.startswith("darwin"):
conda_python = os.path.join(
"..", "conda_base", "python.app", "Contents", "MacOS", "python"
)
else:
conda_python = os.path.join("..", "conda_base", "bin", "python")
# write a new-style environment setup script
with open(("dials.bat" if os.name == "nt" else "dials"), "w"):
pass # ensure we write a new-style environment setup script
if os.name != "nt" and not any(
flag.startswith("--compiler=") for flag in config_flags
):
config_flags.append("--compiler=conda")
if "--enable_cxx11" not in config_flags:
config_flags.append("--enable_cxx11")
if "--use_conda" not in config_flags:
config_flags.append("--use_conda")
print("Setting up build directory")
if prebuilt_cctbx:
run_indirect_command(
command="libtbx.configure",
args=["cbflib", "dials", "dxtbx", "prime", "xia2"],
)
return
configcmd = [
os.path.join("..", "modules", "cctbx_project", "libtbx", "configure.py"),
"cctbx",
"scitbx",
"libtbx",
"iotbx",
"mmtbx",
"smtbx",
"gltbx",
"wxtbx",
"cbflib",
"dxtbx",
"xfel",
"dials",
"xia2",
"prime",
"--skip_phenix_dispatchers",
] + config_flags
run_indirect_command(
command=conda_python,
args=configcmd,
)
def make_build(prebuilt_cctbx):
try:
nproc = len(os.sched_getaffinity(0))
except AttributeError:
nproc = multiprocessing.cpu_count()
if prebuilt_cctbx:
command = "libtbx.scons"
else:
command = os.path.join("bin", "libtbx.scons")
run_indirect_command(command, args=["-j", str(nproc)])
if not prebuilt_cctbx:
# run build again to make sure everything is built
run_indirect_command(command, args=["-j", str(nproc)])
def repository_at_tag(string):
try:
repository, tag = string.split("@", 1)
return (repository, tag)
except ValueError:
raise argparse.ArgumentTypeError(
"%s does not follow the repository@branch format" % string
)
class Choices(tuple):
# Python bug https://bugs.python.org/issue27227, https://bugs.python.org/issue9625
def __new__(cls, *args, **kwargs):
x = tuple.__new__(cls, *args, **kwargs)
Choices.__init__(x, *args, **kwargs)
return x
def __init__(self, *args, **kwargs):
self.default = []
def __contains__(self, item):
return tuple.__contains__(self, item) or item is self.default
def run():
prog = os.environ.get("LIBTBX_DISPATCHER_NAME")
if prog is None or prog.startswith("python") or prog.endswith("python"):
prog = os.path.basename(sys.argv[0])
description = """
You may specify one or more actions:
update - Update source repositories (cctbx, cbflib, etc.)
base - Create conda environment
build - Build
test - Run tests
The default actions are: update, base, build
Example:
python bootstrap.py update base build test
"""
parser = argparse.ArgumentParser(
prog=prog,
description=description,
formatter_class=argparse.RawDescriptionHelpFormatter,
)
action_choices = Choices(("update", "base", "build", "test"))
action_choices.default = ["update", "base", "build"]
parser.add_argument(
"actions",
nargs="*",
help="actions for building as described above",
choices=action_choices,
default=action_choices.default,
)
parser.add_argument(
"--git-reference",
help="Path to a directory containing reference copies of repositories for faster checkouts.",
)
parser.add_argument(
"--config-flags",
help="""Pass flags to the configuration step. Flags should
be passed separately with quotes to avoid confusion (e.g
--config_flags="--build=debug" --config_flags="--another_flag")""",
action="append",
default=[],
)
parser.add_argument(
"--python",
help="Install this minor version of Python (default: %(default)s)",
default="3.9",
choices=("3.8", "3.9", "3.10"),
)
parser.add_argument(
"--branch",
type=repository_at_tag,
action="append",
default=[],
help=(
"during 'update' step when a repository is newly cloned set it to a given branch."
"Specify as repository@branch, eg. 'dials@dials-next'"
),
)
parser.add_argument(
"--conda",
help="Use miniconda instead of micromamba for the base installation step",
default=False,
action="store_true",
)
parser.add_argument(
"--clean",
help="Remove temporary conda environments and package caches after installation",
default=False,
action="store_true",
)
parser.add_argument(
# Use the conda-forge cctbx package instead of compiling cctbx from scratch
# This is not currently supported outside of CI builds
"--prebuilt-cctbx",
help=argparse.SUPPRESS,
default=False,
action="store_true",
)
options = parser.parse_args()
print("Performing actions:", " ".join(options.actions))
# Add sources
if "update" in options.actions:
update_sources(options)
# Build base packages
if "base" in options.actions:
if options.conda:
install_conda(options.python, include_cctbx=options.prebuilt_cctbx)
if options.clean:
shutil.rmtree(os.path.realpath("miniconda"))
else:
install_micromamba(options.python, include_cctbx=options.prebuilt_cctbx)
if options.clean:
shutil.rmtree(os.path.realpath("micromamba"))
# Configure, make, get revision numbers
if "build" in options.actions:
configure_build(options.config_flags, prebuilt_cctbx=options.prebuilt_cctbx)
make_build(prebuilt_cctbx=options.prebuilt_cctbx)
refresh_build(prebuilt_cctbx=options.prebuilt_cctbx)
install_precommit()
# Tests, tests
if "test" in options.actions:
run_tests()
print("\nBootstrap success: %s" % ", ".join(options.actions))
if __name__ == "__main__":
run()
|