2016-09-25 06:23:04 +08:00
|
|
|
# Usage: vcpkg_download_distfile(<VAR> URLS <http://mainUrl> <http://mirror1> <http://mirror2> FILENAME <output.zip> SHA512 <5981de...>)
|
2016-09-19 11:50:08 +08:00
|
|
|
function(vcpkg_download_distfile VAR)
|
2016-09-25 06:23:04 +08:00
|
|
|
set(oneValueArgs FILENAME SHA512)
|
|
|
|
set(multipleValuesArgs URLS)
|
2016-09-24 21:23:18 +08:00
|
|
|
cmake_parse_arguments(vcpkg_download_distfile "" "${oneValueArgs}" "${multipleValuesArgs}" ${ARGN})
|
2016-09-19 11:50:08 +08:00
|
|
|
|
2016-09-24 21:23:18 +08:00
|
|
|
set(downloaded_file_path ${DOWNLOADS}/${vcpkg_download_distfile_FILENAME})
|
|
|
|
if(EXISTS ${downloaded_file_path})
|
|
|
|
message(STATUS "Using cached ${downloaded_file_path}")
|
|
|
|
file(SHA512 ${downloaded_file_path} FILE_HASH)
|
|
|
|
if(NOT "${FILE_HASH}" STREQUAL "${vcpkg_download_distfile_SHA512}")
|
2016-09-19 11:50:08 +08:00
|
|
|
message(FATAL_ERROR
|
2016-09-24 21:23:18 +08:00
|
|
|
"\nFile does not have expected hash:\n"
|
2016-09-25 06:24:38 +08:00
|
|
|
" File path: [ ${downloaded_file_path} ]\n"
|
|
|
|
" Expected hash: [ ${vcpkg_download_distfile_SHA512} ]\n"
|
|
|
|
" Actual hash: [ ${FILE_HASH} ]\n"
|
2016-09-24 21:23:18 +08:00
|
|
|
"Please delete the file and try again if this file should be downloaded again.\n")
|
2016-09-19 11:50:08 +08:00
|
|
|
endif()
|
|
|
|
else()
|
2016-09-24 21:23:18 +08:00
|
|
|
# Tries to download the file.
|
2016-09-25 06:23:04 +08:00
|
|
|
foreach(url IN LISTS vcpkg_download_distfile_URLS)
|
2016-09-24 21:23:18 +08:00
|
|
|
message(STATUS "Downloading ${url}...")
|
|
|
|
file(DOWNLOAD ${url} ${downloaded_file_path} STATUS download_status)
|
|
|
|
list(GET download_status 0 status_code)
|
|
|
|
if (NOT "${status_code}" STREQUAL "0")
|
|
|
|
message(STATUS "Downloading ${url}... Failed")
|
|
|
|
file(REMOVE ${downloaded_file_path})
|
|
|
|
set(download_success 0)
|
|
|
|
else()
|
|
|
|
message(STATUS "Downloading ${url}... OK")
|
|
|
|
set(download_success 1)
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
endforeach(url)
|
|
|
|
|
|
|
|
if (NOT ${download_success})
|
|
|
|
message(FATAL_ERROR
|
|
|
|
"\n"
|
|
|
|
" Failed to download file.\n"
|
|
|
|
" Add mirrors or submit an issue at https://github.com/Microsoft/vcpkg/issues/new\n")
|
|
|
|
else()
|
|
|
|
message(STATUS "Testing integrity of downloaded file...")
|
|
|
|
file(SHA512 ${downloaded_file_path} FILE_HASH)
|
|
|
|
if(NOT "${FILE_HASH}" STREQUAL "${vcpkg_download_distfile_SHA512}")
|
|
|
|
message(FATAL_ERROR
|
|
|
|
"\nFile does not have expected hash:\n"
|
2016-09-25 06:24:38 +08:00
|
|
|
" File path: [ ${downloaded_file_path} ]\n"
|
|
|
|
" Expected hash: [ ${vcpkg_download_distfile_SHA512} ]\n"
|
|
|
|
" Actual hash: [ ${FILE_HASH} ]\n"
|
2016-09-24 21:23:18 +08:00
|
|
|
"The file may be corrupted.\n")
|
|
|
|
endif()
|
|
|
|
message(STATUS "Testing integrity of downloaded file... OK")
|
|
|
|
endif()
|
2016-09-19 11:50:08 +08:00
|
|
|
endif()
|
2016-09-24 21:23:18 +08:00
|
|
|
set(${VAR} ${downloaded_file_path} PARENT_SCOPE)
|
2016-09-19 11:50:08 +08:00
|
|
|
endfunction()
|