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
|
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#### Functions #### check end of file for main logic
env_is <- function(var, value) identical(tolower(Sys.getenv(var)), value)
# Log messages in the style of the configure script
lg <- function(..., .indent = "***") {
cat(.indent, " ", sprintf(...), "\n", sep = "")
}
cleanup <- function(path) {
options(.arrow.cleanup = c(getOption(".arrow.cleanup"), path))
}
# Exit the script after logging with .status=1 instead of throwing an error
exit <- function(..., .status = 1) {
lg(...)
q(save = "no", status = .status)
}
# checks the nightly repo for the latest nightly version X.Y.Z.100<dev>
find_latest_nightly <- function(
description_version,
list_uri = "https://nightlies.apache.org/arrow/r/src/contrib/PACKAGES",
hush = quietly
) {
if (!startsWith(arrow_repo, "https://nightlies.apache.org/arrow/r")) {
lg("Detected non standard dev repo: %s, not checking latest nightly version.", arrow_repo)
return(description_version)
}
res <- try(
{
# Binaries are only uploaded if all jobs pass so can just look at the source versions.
urls <- readLines(list_uri)
versions <- grep("Version:\\s*.*?", urls, value = TRUE)
versions <- sort(package_version(sub("Version:\\s*", "\\1", versions)))
major_versions <- versions$major
description_version_major <- as.integer(description_version[1, 1])
matching_major <- major_versions == description_version_major
if (!any(matching_major)) {
lg(
"No nightly binaries were found for version %s: falling back to libarrow build from source",
description_version
)
return(description_version)
}
versions <- versions[matching_major]
max(versions)
},
silent = hush
)
if (inherits(res, "try-error")) {
lg("Failed to find latest nightly for %s", description_version)
latest <- description_version
} else {
lg("Latest available nightly for %s: %s", description_version, res)
latest <- res
}
latest
}
try_download <- function(from_url, to_file, hush = quietly) {
if (!download_ok) {
# Don't even try
return(FALSE)
}
# We download some fairly large files, so ensure the timeout is set appropriately.
# This assumes a static library size of 100 MB (our current biggest is 78 MB) and
# a download speed of 0.2 MB/s (slow). This is to anticipate slower user connections
# or load on artifactory servers.
opts <- options(timeout = max(600, getOption("timeout")))
on.exit(options(opts))
status <- try(
suppressWarnings(
download.file(from_url, to_file, quiet = hush, mode = "wb")
),
silent = hush
)
# Return whether the download was successful
!inherits(status, "try-error") && status == 0
}
validate_checksum <- function(binary_url, libfile, hush = quietly) {
# Explicitly setting the env var to "false" will skip checksum validation
# e.g. in case the included checksums are stale.
skip_checksum <- env_is("ARROW_R_ENFORCE_CHECKSUM", "false")
enforce_checksum <- env_is("ARROW_R_ENFORCE_CHECKSUM", "true")
checksum_path <- Sys.getenv("ARROW_R_CHECKSUM_PATH", "tools/checksums")
# validate binary checksum for CRAN release only
if (!skip_checksum && dir.exists(checksum_path) && is_release || enforce_checksum) {
# Munge the path to the correct sha file which we include during the
# release process
if (VERSION_22_OR_LATER) {
checksum_file <- sub(".+/(.+\\.zip)", "\\1\\.sha512", binary_url)
} else {
checksum_file <- sub(".+/bin/(.+\\.zip)", "\\1\\.sha512", binary_url)
}
checksum_file <- file.path(checksum_path, checksum_file)
# Try `shasum`, and if that doesn't work, fall back to `sha512sum` if not found
# system2 doesn't generate an R error, so we can't use a tryCatch to
# move from shasum to sha512sum.
# The warnings from system2 if it fails pop up later in the log and thus are
# more confusing than they are helpful (so we suppress them)
checksum_ok <- suppressWarnings(system2(
"shasum",
args = c("--status", "-a", "512", "-c", checksum_file),
stdout = ifelse(quietly, FALSE, ""),
stderr = ifelse(quietly, FALSE, "")
)) ==
0
if (!checksum_ok) {
checksum_ok <- suppressWarnings(system2(
"sha512sum",
args = c("--status", "-c", checksum_file),
stdout = ifelse(quietly, FALSE, ""),
stderr = ifelse(quietly, FALSE, "")
)) ==
0
}
if (checksum_ok) {
lg("Checksum validated successfully for libarrow")
} else {
lg("Checksum validation failed for libarrow")
unlink(libfile)
}
} else {
checksum_ok <- TRUE
}
# Return whether the checksum was successful
checksum_ok
}
download_binary <- function(lib) {
if (VERSION_22_OR_LATER) {
libfile <- paste0("r-libarrow-", lib, "-", VERSION, ".zip")
binary_url <- paste0(arrow_repo, libfile)
} else {
libfile <- paste0("arrow-", VERSION, ".zip")
binary_url <- paste0(arrow_repo, "bin/", lib, "/arrow-", VERSION, ".zip")
}
if (try_download(binary_url, libfile) && validate_checksum(binary_url, libfile)) {
lg("Successfully retrieved libarrow (%s)", lib)
} else {
# If the download or checksum fail, we will set libfile to NULL this will
# normally result in a source build after this.
# TODO: should we condense these together and only call them when verbose?
lg(
"Unable to retrieve libarrow for version %s (%s)",
VERSION,
lib
)
if (!quietly) {
lg(
"Attempted to download the libarrow binary from: %s",
binary_url
)
}
libfile <- NULL
}
libfile
}
# Function to figure out which flavor of binary we should download, if at all.
# LIBARROW_BINARY controls the behavior. If unset, it will determine a course
# of action based on the current system. Other values you can set it to:
# * "FALSE" (not case-sensitive), to skip this option altogether
# * "TRUE" (not case-sensitive), to try to discover your current OS, or
# * Some other string: a binary identifier that corresponds to a binary that is
# available, to override what this function may discover by default.
# Possible values are:
# * "linux-x86_64"
# * "darwin-arm64"
# * "darwin-x86_64"
# * "windows-x86_64"
# These string values, along with `NULL`, are the potential return values of
# this function.
identify_binary <- function(lib = Sys.getenv("LIBARROW_BINARY"), info = distro()) {
if (on_windows) {
if (VERSION_22_OR_LATER) {
return("windows-x86_64")
} else {
return("windows")
}
}
lib <- tolower(lib)
if (identical(lib, "")) {
# Not specified. Check the allowlist.
lib <- ifelse(check_allowlist(info$id), "true", "false")
}
if (identical(lib, "false")) {
# Do not download a binary
lib <- NULL
} else if (!identical(lib, "true")) {
# Env var provided an os-version to use, to override our logic.
# We don't validate that this exists. If it doesn't, the download will fail
# and the build will fall back to building from source
if (grepl("openssl-1", lib)) {
stop(
"OpenSSL 1.x binaries are no longer provided. Use LIBARROW_BINARY='",
sub("-openssl-1.*$", "", lib),
"'"
)
}
if (grepl("openssl-3", lib)) {
lib <- sub("-openssl-3.*$", "", lib)
lg("OpenSSL suffix deprecated in LIBARROW_BINARY, using '%s'", lib)
}
} else {
# See if we can find a suitable binary
lib <- select_binary()
}
lib
}
check_allowlist <- function(
os,
allowed = "https://raw.githubusercontent.com/apache/arrow/main/r/tools/nixlibs-allowlist.txt"
) {
allowlist <- tryCatch(
# Try a remote allowlist so that we can add/remove without a release
suppressWarnings(readLines(allowed)),
# Fallback to default allow list shipped with the package
error = function(e) readLines("tools/nixlibs-allowlist.txt")
)
# allowlist should contain valid regular expressions (plain strings ok too)
any(grepl(paste(allowlist, collapse = "|"), os))
}
select_binary <- function(
os = tolower(Sys.info()[["sysname"]]),
arch = tolower(Sys.info()[["machine"]]),
test_program = test_for_curl_and_openssl
) {
if (identical(os, "darwin") || (identical(os, "linux") && identical(arch, "x86_64"))) {
# We only host x86 linux binaries and x86 & arm64 macos today
binary <- tryCatch(
# Somehow the test program system2 call errors on the sanitizer builds
# so globally handle the possibility that this could fail
{
errs <- compile_test_program(test_program)
if (has_binary_sysreqs(errs)) {
paste0(os, "-", arch)
} else {
NULL
}
},
error = function(e) {
lg("Unable to find libcurl and openssl")
NULL
}
)
} else {
# No binary available for arch
lg("Building on %s %s", os, arch)
binary <- NULL
}
binary
}
# This tests that curl and OpenSSL are present (bc we can include their headers)
# and it checks for other versions/features and raises errors that we grep for
test_for_curl_and_openssl <- "
#ifndef __APPLE__
#include <ciso646>
#ifdef _LIBCPP_VERSION
#error Using libc++
#endif
#endif
#include <curl/curl.h>
#include <openssl/opensslv.h>
#if OPENSSL_VERSION_NUMBER < 0x30000000L
#error OpenSSL version must be 3.0 or greater
#endif
"
compile_test_program <- function(code) {
openssl_dir <- ""
if (on_macos) {
openssl_root_dir <- get_macos_openssl_dir()
openssl_dir <- paste0("-I", openssl_root_dir, "/include")
}
runner <- paste(
R_CMD_config("CXX20"),
openssl_dir,
R_CMD_config("CPPFLAGS"),
R_CMD_config("CXX20FLAGS"),
R_CMD_config("CXX20STD"),
"-E",
"-xc++"
)
suppressWarnings(system2("echo", sprintf('"%s" | %s -', code, runner), stdout = FALSE, stderr = TRUE))
}
get_macos_openssl_dir <- function() {
openssl_root_dir <- Sys.getenv("OPENSSL_ROOT_DIR", NA)
header <- "openssl/opensslv.h"
if (is.na(openssl_root_dir) || !file.exists(file.path(openssl_root_dir, "include", header))) {
# try to guess default openssl include dir based on CRAN's build script
# https://github.com/R-macos/recipes/blob/master/build.sh#L35
if (identical(Sys.info()["machine"], "arm64") && file.exists(file.path("/opt/R/arm64/include", header))) {
openssl_root_dir <- "/opt/R/arm64"
} else if (identical(Sys.info()["machine"], "x86_64") && file.exists(file.path("/opt/R/x86_64/include", header))) {
openssl_root_dir <- "/opt/R/x86_64"
} else {
openssl_root_dir <- "/usr/local"
}
}
openssl_root_dir
}
has_binary_sysreqs <- function(errs) {
# Check for dealbreakers:
if (!on_macos && any(grepl("Using libc++", errs, fixed = TRUE))) {
# Our linux binaries are all built with GNU stdlib so they fail with libc++
lg("Linux binaries incompatible with libc++")
return(FALSE)
} else if (header_not_found("curl/curl", errs)) {
lg("libcurl not found")
return(FALSE)
} else if (header_not_found("openssl/opensslv", errs)) {
lg("OpenSSL not found")
return(FALSE)
} else if (any(grepl("OpenSSL version must be 3.0 or greater", errs))) {
lg("OpenSSL found but version >= 3.0 is required")
return(FALSE)
} else if (is.null(attr(errs, "status"))) {
# Successful compile = OpenSSL >= 3.0 found
lg("Found libcurl and OpenSSL >= 3.0")
return(TRUE)
}
FALSE
}
header_not_found <- function(header, errs) {
regex <- sprintf("[Ee]rror.*%s\\.h", header)
any(grepl(regex, errs))
}
#### start distro ####
distro <- function() {
# This is not part of distro but needed to enable prebuilt binaries on macos
if (on_macos) {
return(list(id = "darwin", arch = tolower(Sys.info()[["machine"]])))
}
# The code in this script is a (potentially stale) copy of the distro package
if (requireNamespace("distro", quietly = TRUE)) {
# Use the version from the package, which may be updated from this
return(distro::distro())
}
out <- lsb_release()
if (is.null(out)) {
out <- os_release()
if (is.null(out)) {
out <- system_release()
}
}
if (is.null(out)) {
return(NULL)
}
out$id <- tolower(out$id)
# debian unstable & testing lsb_release `version` don't include numbers but we can map from pretty name
if (is.null(out$version) || out$version %in% c("testing", "unstable")) {
if (grepl("bookworm", out$codename)) {
out$short_version <- "12"
}
} else if (out$id == "ubuntu") {
# Keep major.minor version
out$short_version <- sub('^"?([0-9]+\\.[0-9]+).*"?.*$', "\\1", out$version)
} else {
# Only major version number
out$short_version <- sub('^"?([0-9]+).*"?.*$', "\\1", out$version)
}
out
}
lsb_release <- function() {
if (have_lsb_release()) {
list(
id = call_lsb("-is"),
version = call_lsb("-rs"),
codename = call_lsb("-cs")
)
} else {
NULL
}
}
have_lsb_release <- function() nzchar(Sys.which("lsb_release"))
call_lsb <- function(args) system(paste("lsb_release", args), intern = TRUE)
os_release <- function() {
rel_data <- read_os_release()
if (!is.null(rel_data)) {
vals <- as.list(sub('^.*="?(.*?)"?$', "\\1", rel_data))
names(vals) <- sub("^(.*)=.*$", "\\1", rel_data)
out <- list(
id = vals[["ID"]],
version = vals[["VERSION_ID"]]
)
if ("VERSION_CODENAME" %in% names(vals)) {
out$codename <- vals[["VERSION_CODENAME"]]
} else {
# This probably isn't right, maybe could extract codename from pretty name?
out$codename <- vals[["PRETTY_NAME"]]
}
out
} else {
NULL
}
}
read_os_release <- function() {
if (file.exists("/etc/os-release")) {
readLines("/etc/os-release")
}
}
system_release <- function() {
rel_data <- read_system_release()
if (!is.null(rel_data)) {
# Something like "CentOS Linux release 7.7.1908 (Core)"
list(
id = sub("^([a-zA-Z]+) .* ([0-9.]+).*$", "\\1", rel_data),
version = sub("^([a-zA-Z]+) .* ([0-9.]+).*$", "\\2", rel_data),
codename = NA
)
} else {
NULL
}
}
read_system_release <- function() {
if (file.exists("/etc/system-release")) {
readLines("/etc/system-release")[1]
}
}
#### end distro ####
find_local_source <- function() {
# We'll take the first of these that exists
# The first case probably occurs if we're in the arrow git repo
# The second probably occurs if we're installing the arrow R package
cpp_dir_options <- c(
file.path(Sys.getenv("ARROW_SOURCE_HOME", ".."), "cpp"),
"tools/cpp"
)
for (cpp_dir in cpp_dir_options) {
if (file.exists(file.path(cpp_dir, "src/arrow/api.h"))) {
lg("Found local C++ source: '%s'", cpp_dir)
return(cpp_dir)
}
}
NULL
}
env_vars_as_string <- function(env_var_list) {
# Do some basic checks on env_var_list:
# Check that env_var_list has names, that those names are valid POSIX
# environment variables, and that none of the values contain `'`.
stopifnot(
length(env_var_list) == length(names(env_var_list)),
all(grepl("^[^0-9]", names(env_var_list))),
all(grepl("^[a-zA-Z0-9_]+$", names(env_var_list))),
!any(grepl("'", env_var_list, fixed = TRUE))
)
env_var_string <- paste0(names(env_var_list), "='", env_var_list, "'", collapse = " ")
if (nchar(env_var_string) > 30000) {
# This could happen if the full paths in *_SOURCE_URL were *very* long.
# A more formal check would look at getconf ARG_MAX, but this shouldn't matter
lg("Warning: Environment variables are very long. This could cause issues on some shells.")
}
env_var_string
}
R_CMD_config <- function(var) {
tools::Rcmd(paste("config", var), stdout = TRUE)
}
build_libarrow <- function(src_dir, dst_dir) {
# We'll need to compile R bindings with these libs, so delete any .o files
system("rm src/*.o", ignore.stdout = TRUE, ignore.stderr = TRUE)
# Set up make for parallel building
# CRAN policy says not to use more than 2 cores during checks
# If you have more and want to use more, set MAKEFLAGS or NOT_CRAN
ncores <- parallel::detectCores()
if (!not_cran) {
ncores <- min(ncores, 2)
}
makeflags <- Sys.getenv("MAKEFLAGS")
if (makeflags == "") {
makeflags <- sprintf("-j%s", ncores)
Sys.setenv(MAKEFLAGS = makeflags)
} else {
# Extract -j value from existing MAKEFLAGS if present
j_match <- regmatches(makeflags, regexpr("-j\\s*([0-9]+)", makeflags, perl = TRUE))
if (length(j_match) > 0) {
ncores <- as.integer(sub("-j\\s*", "", j_match, perl = TRUE))
}
}
if (!quietly) {
lg("Building with MAKEFLAGS=%s", makeflags)
}
# Check for libarrow build dependencies:
# * cmake
cmake <- ensure_cmake()
# Optionally build somewhere not in tmp so we can dissect the build if it fails
debug_dir <- Sys.getenv("LIBARROW_DEBUG_DIR")
if (nzchar(debug_dir)) {
build_dir <- debug_dir
} else {
# But normally we'll just build in a tmp dir
build_dir <- tempfile()
}
cleanup(build_dir)
env_var_list <- list(
SOURCE_DIR = src_dir,
BUILD_DIR = build_dir,
DEST_DIR = dst_dir,
CMAKE = cmake,
# EXTRA_CMAKE_FLAGS will often be "", but it's convenient later to have it defined
EXTRA_CMAKE_FLAGS = Sys.getenv("EXTRA_CMAKE_FLAGS"),
# Make sure we build with the same compiler settings that R is using
# Exception: if you've added ccache to CC and CXX following
# http://dirk.eddelbuettel.com/blog/2017/11/27/, some libarrow
# third party dependencies will error on compilation. But don't
# worry, `ARROW_USE_CCACHE=ON` by default, so if ccache
# is found, it will be used by the libarrow build, and this does
# not affect how R compiles the arrow bindings.
CC = sub("^.*ccache", "", R_CMD_config("CC")),
CXX = paste(
sub("^.*ccache", "", R_CMD_config("CXX20")),
R_CMD_config("CXX20STD")
),
# CXXFLAGS = R_CMD_config("CXX20FLAGS"), # We don't want the same debug symbols
LDFLAGS = R_CMD_config("LDFLAGS"),
N_JOBS = ncores
)
dep_source <- Sys.getenv("ARROW_DEPENDENCY_SOURCE")
if (dep_source %in% c("", "AUTO") && !nzchar(Sys.which("pkg-config"))) {
lg("pkg-config not installed, setting ARROW_DEPENDENCY_SOURCE=BUNDLED", .indent = "****")
env_var_list <- c(env_var_list, ARROW_DEPENDENCY_SOURCE = "BUNDLED")
}
# On macOS, if not otherwise set, let's override Boost_SOURCE to be bundled
# Necessary due to #39590 for CRAN
if (on_macos) {
# Using lowercase (e.g. Boost_SOURCE) to match the cmake args we use already.
deps_to_bundle <- c("Boost", "lz4")
for (dep_to_bundle in deps_to_bundle) {
env_var <- paste0(dep_to_bundle, "_SOURCE")
if (Sys.getenv(env_var) == "") {
env_var_list <- c(env_var_list, setNames("BUNDLED", env_var))
}
}
# We also _do_ want to enable S3 and ZSTD by default
# so that binaries built on CRAN from source are fully featured
# but defer to the env vars if those are set
env_var_list <- c(
env_var_list,
ARROW_S3 = Sys.getenv("ARROW_S3", "ON"),
ARROW_GCS = Sys.getenv("ARROW_GCS", "ON"),
ARROW_WITH_ZSTD = Sys.getenv("ARROW_WITH_ZSTD", "ON")
)
}
if (on_linux_dev) {
# Disable mimalloc on linux devel builds, since mimalloc has spurious sanitizer failures
env_var_list <- c(env_var_list, ARROW_MIMALLOC = Sys.getenv("ARROW_MIMALLOC", "OFF"))
}
env_var_list <- with_cloud_support(env_var_list)
# turn_off_all_optional_features() needs to happen after
# with_cloud_support(), since it might turn features ON.
thirdparty_deps_unavailable <- !download_ok &&
!dir.exists(thirdparty_dependency_dir) &&
!env_is("ARROW_DEPENDENCY_SOURCE", "system")
do_minimal_build <- env_is("LIBARROW_MINIMAL", "true")
if (do_minimal_build) {
env_var_list <- turn_off_all_optional_features(env_var_list)
} else if (thirdparty_deps_unavailable) {
cat(paste0(
"*** Building C++ library from source, but downloading thirdparty dependencies\n",
" is not possible, so this build will turn off all thirdparty features.\n",
" See installation guide for details:\n",
" https://arrow.apache.org/docs/r/articles/install.html\n"
))
env_var_list <- turn_off_all_optional_features(env_var_list)
} else if (dir.exists(thirdparty_dependency_dir)) {
# Add the *_SOURCE_URL env vars
env_var_list <- set_thirdparty_urls(env_var_list)
}
env_vars <- env_vars_as_string(env_var_list)
lg("arrow %s", ifelse(quietly, "", paste("with", env_vars)), .indent = "****")
build_log_path <- tempfile(fileext = ".log")
status <- suppressWarnings(system2(
"bash",
"inst/build_arrow_static.sh",
env = env_vars,
stdout = ifelse(quietly, build_log_path, ""),
stderr = ifelse(quietly, build_log_path, "")
))
if (status != 0) {
# It failed :(
lg("Error building Arrow C++.", .indent = "****")
if (quietly) {
cat(
"**** Printing contents of build log because the build failed",
"while ARROW_R_DEV was set to FALSE\n"
)
cat(readLines(build_log_path), sep = "\n")
cat("**** Complete build log may still be present at", build_log_path, "\n")
}
}
invisible(status)
}
ensure_cmake <- function(cmake_minimum_required = "3.26") {
cmake <- find_cmake(version_required = cmake_minimum_required)
if (is.null(cmake)) {
# If not found, download it
CMAKE_VERSION <- Sys.getenv("CMAKE_VERSION", "3.31.2")
if (on_macos) {
postfix <- "-macos-universal.tar.gz"
} else if (tolower(Sys.info()[["machine"]]) %in% c("arm64", "aarch64")) {
postfix <- "-linux-aarch64.tar.gz"
} else if (tolower(Sys.info()[["machine"]]) == "x86_64") {
postfix <- "-linux-x86_64.tar.gz"
} else {
exit(paste0(
"*** cmake was not found locally.\n",
" Please make sure cmake >= ",
cmake_minimum_required,
" is installed and available on your PATH."
))
}
cmake_binary_url <- paste0(
"https://github.com/Kitware/CMake/releases/download/v",
CMAKE_VERSION,
"/cmake-",
CMAKE_VERSION,
postfix
)
cmake_tar <- tempfile()
cmake_dir <- tempfile()
download_successful <- try_download(cmake_binary_url, cmake_tar)
if (!download_successful) {
exit(paste0(
"*** cmake was not found locally and download failed.\n",
" Make sure cmake >= ",
cmake_minimum_required,
" is installed and available on your PATH,\n",
" or download ",
cmake_binary_url,
"\n",
" and define the CMAKE environment variable.\n"
))
}
untar(cmake_tar, exdir = cmake_dir)
unlink(cmake_tar)
cleanup(cmake_dir)
# the bin dir is slightly different on macos
if (on_macos) {
bin_dir <- "CMake.app/Contents/bin"
} else {
bin_dir <- "bin"
}
cmake <- paste0(
cmake_dir,
"/cmake-",
CMAKE_VERSION,
sub(".tar.gz", "", postfix, fixed = TRUE),
"/",
bin_dir,
"/cmake"
)
lg("cmake %s", CMAKE_VERSION, .indent = "****")
}
cmake
}
find_cmake <- function(
paths = c(
Sys.getenv("CMAKE"),
Sys.which("cmake"),
# CRAN has it here, not on PATH
if (on_macos) "/Applications/CMake.app/Contents/bin/cmake",
Sys.which("cmake3")
),
version_required
) {
# Given a list of possible cmake paths, return the first one that exists and is new enough
# version_required should be a string or packageVersion; numeric version
# can be misleading (e.g. 3.10 is actually 3.1)
for (path in paths) {
if (nzchar(path) && file.exists(path)) {
# Sys.which() returns a named vector, but that plays badly with c() later
names(path) <- NULL
found_version <- cmake_version(path)
if (found_version >= version_required) {
# Show which one we found
lg("cmake %s: %s", found_version, path, .indent = "****")
# Stop searching here
return(path)
} else {
# Keep trying
lg("Not using cmake found at %s", path, .indent = "****")
if (found_version > "0") {
lg("Version >= %s required; found %s", version_required, found_version, .indent = "*****")
} else {
# If cmake_version() couldn't determine version, it returns 0
lg("Could not determine version; >= %s required", version_required, .indent = "*****")
}
}
}
}
# If none found, return NULL
NULL
}
cmake_version <- function(cmd = "cmake") {
tryCatch(
{
raw_version <- system(paste(cmd, "--version"), intern = TRUE, ignore.stderr = TRUE)
pat <- ".* ([0-9\\.]+).*?"
which_line <- grep(pat, raw_version)
package_version(sub(pat, "\\1", raw_version[which_line]))
},
error = function(e) {
return("0")
}
)
}
turn_off_all_optional_features <- function(env_var_list) {
# Because these are done as environment variables (as opposed to build flags),
# setting these to "OFF" overrides any previous setting. We don't need to
# check the existing value.
# Some features turn on other features (e.g. substrait -> protobuf),
# So the list of things to turn off is long. See:
# https://github.com/apache/arrow/blob/main/cpp/cmake_modules/ThirdpartyToolchain.cmake#L275
turn_off <- c(
"ARROW_MIMALLOC" = "OFF",
"ARROW_JEMALLOC" = "OFF",
"ARROW_JSON" = "OFF",
"ARROW_PARQUET" = "OFF", # depends on thrift
"ARROW_DATASET" = "OFF", # depends on parquet
"ARROW_S3" = "OFF",
"ARROW_GCS" = "OFF",
"ARROW_WITH_GOOGLE_CLOUD_CPP" = "OFF",
"ARROW_WITH_NLOHMANN_JSON" = "OFF",
"ARROW_SUBSTRAIT" = "OFF",
"ARROW_WITH_PROTOBUF" = "OFF",
"ARROW_WITH_BROTLI" = "OFF",
"ARROW_WITH_BZ2" = "OFF",
"ARROW_WITH_LZ4" = "OFF",
"ARROW_WITH_SNAPPY" = "OFF",
"ARROW_WITH_ZLIB" = "OFF",
"ARROW_WITH_ZSTD" = "OFF",
"ARROW_WITH_RE2" = "OFF",
"ARROW_WITH_UTF8PROC" = "OFF",
# The syntax to turn off XSIMD is different.
# Pull existing value of EXTRA_CMAKE_FLAGS first (must be defined)
"EXTRA_CMAKE_FLAGS" = paste(
env_var_list[["EXTRA_CMAKE_FLAGS"]],
"-DARROW_SIMD_LEVEL=NONE -DARROW_RUNTIME_SIMD_LEVEL=NONE"
)
)
# Create a new env_var_list, with the values of turn_off set.
# replace() also adds new values if they didn't exist before
replace(env_var_list, names(turn_off), turn_off)
}
get_component_names <- function() {
if (!isTRUE(Sys.which("bash") != "")) {
stop("nixlibs.R requires bash to be installed and available in your PATH")
}
deps_bash <- "tools/download_dependencies_R.sh"
csv_tempfile <- tempfile(fileext = ".csv")
deps_bash_success <- system2("bash", deps_bash, stdout = csv_tempfile) == 0
if (!deps_bash_success) {
stop("Failed to run download_dependencies_R.sh")
}
deps_df <- read.csv(csv_tempfile, stringsAsFactors = FALSE, row.names = NULL, quote = "'")
stopifnot(
names(deps_df) == c("env_varname", "filename"),
nrow(deps_df) > 0
)
deps_df
}
set_thirdparty_urls <- function(env_var_list) {
# This function does *not* check if existing *_SOURCE_URL variables are set.
# The directory tools/thirdparty_dependencies is created by
# create_package_with_all_dependencies() and saved in the tar file.
deps_df <- get_component_names()
dep_dir <- normalizePath(thirdparty_dependency_dir, mustWork = TRUE)
deps_df$full_filenames <- file.path(dep_dir, deps_df$filename)
files_exist <- file.exists(deps_df$full_filenames)
if (!any(files_exist)) {
stop("Dependency tar files did not exist in '", dep_dir, "'")
}
# Only set env var for files that are in thirdparty_dependency_dir
# (allows for a user to download a limited set of tar files, if they wanted)
deps_df <- deps_df[files_exist, ]
env_var_list <- replace(env_var_list, deps_df$env_varname, deps_df$full_filenames)
if (!quietly) {
env_var_list <- replace(env_var_list, "ARROW_VERBOSE_THIRDPARTY_BUILD", "ON")
}
env_var_list
}
# this is generally about features that people asked for via environment variables, but
# for some cases (like S3 when we override it in this script) we might find those in
# env_var_list
is_feature_requested <- function(env_varname, env_var_list, default = env_is("LIBARROW_MINIMAL", "false")) {
# look in the environment first, but then use the env_var_list if nothing is found
env_var_list_value <- env_var_list[[env_varname]]
if (is.null(env_var_list_value)) {
env_var_list_value <- ""
}
env_value <- tolower(Sys.getenv(env_varname, env_var_list_value))
if (identical(env_value, "off")) {
# If e.g. ARROW_MIMALLOC=OFF explicitly, override default
requested <- FALSE
} else if (identical(env_value, "on")) {
requested <- TRUE
} else {
requested <- default
}
requested
}
with_cloud_support <- function(env_var_list) {
arrow_s3 <- is_feature_requested("ARROW_S3", env_var_list)
arrow_gcs <- is_feature_requested("ARROW_GCS", env_var_list)
if (arrow_s3 || arrow_gcs) {
# User wants S3 or GCS support.
# Make sure that we have curl and openssl system libs
feats <- c(
if (arrow_s3) "S3",
if (arrow_gcs) "GCS"
)
start_msg <- paste(feats, collapse = "/")
off_flags <- paste("ARROW_", feats, "=OFF", sep = "", collapse = " and ")
print_warning <- function(msg) {
# Utility to assemble warning message in the console
cat("**** ", start_msg, " support ", msg, "; building with ", off_flags, "\n")
}
if (!cmake_find_package("CURL", NULL, env_var_list)) {
# curl on macos should be installed, so no need to alter this for macos
# TODO: check for apt/yum/etc. and message the right thing?
print_warning("requires libcurl-devel (rpm) or libcurl4-openssl-dev (deb)")
arrow_s3 <- FALSE
arrow_gcs <- FALSE
} else if (!cmake_find_package("OpenSSL", "1.0.2", env_var_list)) {
print_warning("requires version >= 1.0.2 of openssl-devel (rpm), libssl-dev (deb), or openssl (brew)")
arrow_s3 <- FALSE
arrow_gcs <- FALSE
}
}
# Update the build flags
env_var_list <- replace(env_var_list, "ARROW_S3", ifelse(arrow_s3, "ON", "OFF"))
replace(env_var_list, "ARROW_GCS", ifelse(arrow_gcs, "ON", "OFF"))
}
cmake_find_package <- function(pkg, version = NULL, env_var_list) {
td <- tempfile()
dir.create(td)
cleanup(td)
find_package <- paste0("find_package(", pkg, " ", version, " REQUIRED)")
writeLines(find_package, file.path(td, "CMakeLists.txt"))
env_vars <- env_vars_as_string(env_var_list)
cmake_cmd <- paste0(
"export ",
env_vars,
" && cd ",
td,
" && $CMAKE ",
" -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON",
" -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON",
" ."
)
system(cmake_cmd, ignore.stdout = TRUE, ignore.stderr = TRUE) == 0
}
############### Main logic #############
args <- commandArgs(TRUE)
VERSION <- args[1]
# TESTING is set in test-nixlibs.R; it won't be set when called from configure
test_mode <- exists("TESTING")
# Prevent error with binary selection during testing.
if (test_mode && is.na(VERSION)) {
VERSION <- "8.0.0.9000"
}
VERSION <- package_version(VERSION)
dev_version <- VERSION[1, 4]
# Small dev versions are added for R-only changes during CRAN submission
is_release <- is.na(dev_version) || dev_version < "100"
on_macos <- tolower(Sys.info()[["sysname"]]) == "darwin"
on_windows <- tolower(Sys.info()[["sysname"]]) == "windows"
on_linux_dev <- tolower(Sys.info()[["sysname"]]) == "linux" && grepl("devel", R.version.string)
# For local debugging, set ARROW_R_DEV=TRUE to make this script print more
quietly <- !env_is("ARROW_R_DEV", "true")
# To collect dirs to rm on exit, use cleanup() to add dirs
# we reset it to avoid errors on reruns in the same session.
options(.arrow.cleanup = character())
on.exit(unlink(getOption(".arrow.cleanup"), recursive = TRUE), add = TRUE)
not_cran <- env_is("NOT_CRAN", "true")
on_r_universe <- !env_is("MY_UNIVERSE", "")
if (not_cran || on_r_universe) {
# Set more eager defaults
if (env_is("LIBARROW_BINARY", "")) {
Sys.setenv(LIBARROW_BINARY = "true")
}
if (env_is("LIBARROW_MINIMAL", "")) {
Sys.setenv(LIBARROW_MINIMAL = "false")
}
}
# The default will build from source as a fallback if a binary is not found or shouldn't be used
# Set LIBARROW_BUILD=FALSE to ensure that we use a previously built libarrow
# and don't fall back to a full source build
build_ok <- !env_is("LIBARROW_BUILD", "false")
# Set binary repos
if (is_release) {
VERSION <- VERSION[1, 1:3]
VERSION_MAJOR <- unlist(VERSION)[1]
if (VERSION_MAJOR >= "22") {
VERSION_22_OR_LATER <- TRUE
arrow_repo <- getOption(
"arrow.repo",
sprintf("https://github.com/apache/arrow/releases/download/apache-arrow-%s/", VERSION)
)
} else {
VERSION_22_OR_LATER <- FALSE
arrow_repo <- paste0(
getOption("arrow.repo", sprintf("https://apache.jfrog.io/artifactory/arrow/r/%s", VERSION)),
"/libarrow/"
)
}
} else {
VERSION_22_OR_LATER <- TRUE
arrow_repo <- paste0(getOption("arrow.dev_repo", "https://nightlies.apache.org/arrow/r"), "/libarrow/")
}
# Check if we're authorized to download
download_ok <- !test_mode && !env_is("ARROW_OFFLINE_BUILD", "true")
if (!download_ok) {
lg("Dependency downloading disabled. Unset ARROW_OFFLINE_BUILD to enable", .indent = "***")
}
# If not forbidden from downloading, check if we are offline and turn off downloading.
# The default libarrow source build will download its source dependencies and fail
# if they can't be retrieved.
# But, don't do this if the user has requested a binary or a non-minimal build:
# we should error rather than silently succeeding with a minimal build.
if (download_ok && Sys.getenv("LIBARROW_BINARY") %in% c("false", "") && !env_is("LIBARROW_MINIMAL", "false")) {
if (VERSION_22_OR_LATER) {
download_ok <- try_download("https://github.com/apache/arrow/releases", tempfile())
} else {
download_ok <- try_download("https://apache.jfrog.io/artifactory/arrow/r/", tempfile())
}
if (!download_ok) {
lg("Network connection not available", .indent = "***")
}
}
download_libarrow_ok <- download_ok && !env_is("LIBARROW_DOWNLOAD", "false")
# If we're on a dev version, look for the most recent libarrow binary version
if (download_libarrow_ok && !is_release && !test_mode) {
VERSION <- find_latest_nightly(VERSION)
}
# This "tools/thirdparty_dependencies" path, within the tar file, might exist if
# create_package_with_all_dependencies() was run, or if someone has created it
# manually before running make build.
# If you change this path, you also need to edit
# `create_package_with_all_dependencies()` in install-arrow.R
thirdparty_dependency_dir <- Sys.getenv("ARROW_THIRDPARTY_DEPENDENCY_DIR", "tools/thirdparty_dependencies")
arrow_versioned <- paste0("arrow-", VERSION)
# configure.win uses a different libarrow dir and the zip is already nested
if (on_windows) {
lib_dir <- "windows"
dst_dir <- lib_dir
} else {
lib_dir <- "libarrow"
dst_dir <- file.path(lib_dir, arrow_versioned)
}
api_h <- file.path(lib_dir, arrow_versioned, "include/arrow/api.h")
if (!test_mode && !file.exists(api_h)) {
# If we're working in a local checkout and have already built the libs, we
# don't need to do anything. Otherwise,
# (1) Look for a prebuilt binary for this version
bin_file <- src_dir <- NULL
# Keep backwards compatibility with winlibs.R
bin_zip <- Sys.getenv("ARROW_DOWNLOADED_BINARIES", Sys.getenv("RWINLIB_LOCAL", NA))
if (!is.na(bin_zip)) {
lg("Using pre-downloaded zip for libarrow binaries: %s", bin_zip)
if (file.exists(bin_zip)) {
bin_file <- tempfile()
file.copy(bin_zip, bin_file)
} else {
lg("File not found: %s ($ARROW_DOWNLOADED_BINARIES)", bin_zip)
bin_file <- NULL
}
} else if (download_libarrow_ok) {
binary_flavor <- identify_binary()
if (!is.null(binary_flavor)) {
# The env vars say we can, and we've determined a lib that should work
bin_file <- download_binary(binary_flavor)
}
}
if (!is.null(bin_file)) {
# Extract them
dir.create(dst_dir, showWarnings = !quietly, recursive = TRUE)
unzip(bin_file, exdir = dst_dir)
unlink(bin_file)
} else if (build_ok && !on_windows) {
# (2) Find source and build it
src_dir <- find_local_source()
if (!is.null(src_dir)) {
cat(paste0(
"*** Building libarrow from source\n",
" For build options and troubleshooting, see the install guide:\n",
" https://arrow.apache.org/docs/r/articles/install.html\n"
))
build_libarrow(src_dir, dst_dir)
} else {
exit("Proceeding without libarrow (no local source)")
}
} else {
exit("Proceeding without libarrow (build not authorized)")
}
}
|