download-core.sh 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. #!/usr/bin/env bash
  2. set -euo pipefail
  3. source_root="$(dirname "$0")/.."
  4. readonly source_root
  5. # override this env variable if you need to download from a private mirror
  6. : "${REALM_BASE_URL:="https://static.realm.io/downloads"}"
  7. # set to "current" to always use the current build
  8. : "${REALM_CORE_VERSION:=$(sed -n 's/^REALM_CORE_VERSION=\(.*\)$/\1/p' "${source_root}/dependencies.list")}"
  9. # Provide a fallback value for TMPDIR, relevant for Xcode Bots
  10. : "${TMPDIR:=$(getconf DARWIN_USER_TEMP_DIR)}"
  11. readonly dst="$source_root/core"
  12. copy_core() {
  13. local src="$1"
  14. rm -rf "$dst"
  15. mkdir "$dst"
  16. ditto "$src" "$dst"
  17. # XCFramework processing only copies the "realm" headers, so put the third-party ones in a known location
  18. mkdir -p "$dst/include"
  19. find "$src" -name external -exec ditto "{}" "$dst/include/external" \; -quit
  20. # Remove the C API header to avoid accidentally pulling it in
  21. find "$dst" -name realm.h -delete
  22. }
  23. tries_left=3
  24. readonly version="$REALM_CORE_VERSION"
  25. nightly_version=""
  26. if [[ "$REALM_CORE_VERSION" == *"nightly"* ]]; then
  27. nightly_version="v${version}/cocoa/"
  28. fi
  29. readonly url="${REALM_BASE_URL}/core/${nightly_version}realm-monorepo-xcframework-v${version}.tar.xz"
  30. # First check if we need to do anything
  31. if [ -e "$dst" ]; then
  32. if [ -e "$dst/version.txt" ]; then
  33. if [ "$(cat "$dst/version.txt")" == "$version" ]; then
  34. echo "Version ${version} already present"
  35. exit 0
  36. else
  37. echo "Switching from version $(cat "$dst/version.txt") to ${version}"
  38. fi
  39. else
  40. if [ "$(find "$dst" -name librealm-monorepo.a)" ]; then
  41. echo 'Using existing custom core build without checking version'
  42. exit 0
  43. fi
  44. fi
  45. fi
  46. # We may already have this version downloaded and just need to set it as
  47. # the active one
  48. readonly versioned_name="realm-core-${version}-xcframework"
  49. readonly versioned_dir="$source_root/$versioned_name"
  50. if [ -e "$versioned_dir/version.txt" ]; then
  51. echo "Setting ${version} as the active version"
  52. copy_core "$versioned_dir"
  53. exit 0
  54. fi
  55. echo "Downloading dependency: ${version} from ${url}"
  56. if [ -z "$TMPDIR" ]; then
  57. TMPDIR='/tmp'
  58. fi
  59. temp_dir=$(dirname "$TMPDIR/waste")/realm-core-tmp
  60. readonly temp_dir
  61. mkdir -p "$temp_dir"
  62. readonly tar_path="${temp_dir}/${versioned_name}.tar.xz"
  63. readonly temp_path="${tar_path}.tmp"
  64. while [ 0 -lt $tries_left ] && [ ! -f "$tar_path" ]; do
  65. if ! error=$(/usr/bin/curl --fail --silent --show-error --location "$url" --output "$temp_path" 2>&1); then
  66. tries_left=$((tries_left-1))
  67. else
  68. mv "$temp_path" "$tar_path"
  69. fi
  70. done
  71. if [ ! -f "$tar_path" ]; then
  72. printf "Downloading core failed:\n\t%s\n\t%s\n" "$url" "$error"
  73. exit 1
  74. fi
  75. (
  76. cd "$temp_dir"
  77. rm -rf core
  78. tar xf "$tar_path" --xz
  79. if [ ! -f core/version.txt ]; then
  80. printf %s "${version}" > core/version.txt
  81. fi
  82. mv core "${versioned_name}"
  83. )
  84. rm -rf "${versioned_dir}"
  85. mv "${temp_dir}/${versioned_name}" "$source_root"
  86. copy_core "$versioned_dir"