mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-30 13:21:37 +08:00
99e06a64ec
* [rollup:2021-08-09] PR #16706 (@JackBoosY) [vcpkg_fixup_cmake_targets] Fix up OSX system development path * [rollup:2021-08-09] PR #19238 (@strega-nil) [scripts-audit] vcpkg_download_distfile * [rollup:2021-08-09] PR #19239 (@strega-nil) [scripts-audit] vcpkg_find_fortran * [rollup:2021-08-09] PR #19338 (@strega-nil) [tinyfiledialogs] Fix for good * [rollup:2021-08-09] PR #19348 (@strega-nil) [scripts-audit] vcpkg_fixup_pkgconfig * fix ports.cmake with newer vcpkg_download_distfile * fix vcpkg create * move vcpkg_common_definitions down so that it's not incorrect * fix vcpkg_internal_get_cmake_vars Co-authored-by: nicole mazzuca <mazzucan@outlook.com> Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
280 lines
11 KiB
CMake
280 lines
11 KiB
CMake
#[===[.md:
|
|
# vcpkg_download_distfile
|
|
|
|
Download and cache a file needed for this port.
|
|
|
|
This helper should always be used instead of CMake's built-in `file(DOWNLOAD)` command.
|
|
|
|
## Usage
|
|
```cmake
|
|
vcpkg_download_distfile(
|
|
<OUT_VARIABLE>
|
|
URLS <http://mainUrl> <http://mirror1>...
|
|
FILENAME <output.zip>
|
|
SHA512 <5981de...>
|
|
[ALWAYS_REDOWNLOAD]
|
|
)
|
|
```
|
|
## Parameters
|
|
### OUT_VARIABLE
|
|
This variable will be set to the full path to the downloaded file. This can then immediately be passed in to [`vcpkg_extract_source_archive`](vcpkg_extract_source_archive.md) for sources.
|
|
|
|
### URLS
|
|
A list of URLs to be consulted. They will be tried in order until one of the downloaded files successfully matches the SHA512 given.
|
|
|
|
### FILENAME
|
|
The local name for the file. Files are shared between ports, so the file may need to be renamed to make it clearly attributed to this port and avoid conflicts.
|
|
|
|
### SHA512
|
|
The expected hash for the file.
|
|
|
|
If this doesn't match the downloaded version, the build will be terminated with a message describing the mismatch.
|
|
|
|
### QUIET
|
|
Suppress output on cache hit
|
|
|
|
### SKIP_SHA512
|
|
Skip SHA512 hash check for file.
|
|
|
|
This switch is only valid when building with the `--head` command line flag.
|
|
|
|
### ALWAYS_REDOWNLOAD
|
|
Avoid caching; this is a REST call or otherwise unstable.
|
|
|
|
Requires `SKIP_SHA512`.
|
|
|
|
### HEADERS
|
|
A list of headers to append to the download request. This can be used for authentication during a download.
|
|
|
|
Headers should be specified as "<header-name>: <header-value>".
|
|
|
|
## Notes
|
|
The helper [`vcpkg_from_github`](vcpkg_from_github.md) should be used for downloading from GitHub projects.
|
|
|
|
## Examples
|
|
|
|
* [apr](https://github.com/Microsoft/vcpkg/blob/master/ports/apr/portfile.cmake)
|
|
* [fontconfig](https://github.com/Microsoft/vcpkg/blob/master/ports/fontconfig/portfile.cmake)
|
|
* [freetype](https://github.com/Microsoft/vcpkg/blob/master/ports/freetype/portfile.cmake)
|
|
#]===]
|
|
|
|
function(z_vcpkg_download_distfile_test_hash path kind error_advice sha512 skip_sha512)
|
|
if(_VCPKG_INTERNAL_NO_HASH_CHECK)
|
|
# When using the internal hash skip, do not output an explicit message.
|
|
return()
|
|
endif()
|
|
if(skip_sha512)
|
|
message(STATUS "Skipping hash check for ${file_path}.")
|
|
return()
|
|
endif()
|
|
|
|
file(SHA512 "${path}" file_hash)
|
|
if(NOT "${file_hash}" STREQUAL "${sha512}")
|
|
message(FATAL_ERROR
|
|
"\nFile does not have expected hash:\n"
|
|
" File path: [ ${file_path} ]\n"
|
|
" Expected hash: [ ${sha512} ]\n"
|
|
" Actual hash: [ ${file_hash} ]\n"
|
|
"${CUSTOM_ERROR_ADVICE}\n")
|
|
endif()
|
|
endfunction()
|
|
|
|
function(z_vcpkg_download_distfile_show_proxy_and_fail error_code)
|
|
message(FATAL_ERROR
|
|
" \n"
|
|
" Failed to download file with error: ${error_code}\n"
|
|
" If you use a proxy, please check your proxy setting. Possible causes are:\n"
|
|
" \n"
|
|
" 1. You are actually using an HTTP proxy, but setting HTTPS_PROXY variable\n"
|
|
" to `https://address:port`. This is not correct, because `https://` prefix\n"
|
|
" claims the proxy is an HTTPS proxy, while your proxy (v2ray, shadowsocksr\n"
|
|
" , etc..) is an HTTP proxy. Try setting `http://address:port` to both\n"
|
|
" HTTP_PROXY and HTTPS_PROXY instead.\n"
|
|
" \n"
|
|
" 2. You are using Fiddler. Currently a bug (https://github.com/microsoft/vcpkg/issues/17752)\n"
|
|
" will set HTTPS_PROXY to `https://fiddler_address:port` which lead to problem 1 above.\n"
|
|
" Workaround is open Windows 10 Settings App, and search for Proxy Configuration page,\n"
|
|
" Change `http=address:port;https=address:port` to `address`, and fill the port number.\n"
|
|
" \n"
|
|
" 3. You proxy's remote server is out of service.\n"
|
|
" \n"
|
|
" In future vcpkg releases, if you are using Windows, you no longer need to set\n"
|
|
" HTTP(S)_PROXY environment variables. Vcpkg will simply apply Windows IE Proxy\n"
|
|
" Settings set by your proxy software. See (https://github.com/microsoft/vcpkg-tool/pull/49)\n"
|
|
" and (https://github.com/microsoft/vcpkg-tool/pull/77)\n"
|
|
" \n"
|
|
" Otherwise, please submit an issue at https://github.com/Microsoft/vcpkg/issues\n")
|
|
endfunction()
|
|
|
|
function(z_vcpkg_download_distfile_via_aria filename urls headers sha512 skip_sha512)
|
|
vcpkg_find_acquire_program(ARIA2)
|
|
message(STATUS "Downloading ${filename}...")
|
|
|
|
vcpkg_list(SET headers_param)
|
|
foreach(header IN LISTS headers)
|
|
vcpkg_list(APPEND headers_param "--header=${header}")
|
|
endforeach()
|
|
|
|
vcpkg_execute_in_download_mode(
|
|
COMMAND ${ARIA2} ${urls}
|
|
-o temp/${filename}
|
|
-l download-${filename}-detailed.log
|
|
${headers_param}
|
|
OUTPUT_FILE download-${filename}-out.log
|
|
ERROR_FILE download-${filename}-err.log
|
|
RESULT_VARIABLE error_code
|
|
WORKING_DIRECTORY "${DOWNLOADS}"
|
|
)
|
|
if (NOT "${error_code}" STREQUAL "0")
|
|
message(STATUS
|
|
"Downloading ${filename}... Failed.\n"
|
|
" Exit Code: ${error_code}\n"
|
|
" See logs for more information:\n"
|
|
" ${DOWNLOADS}/download-${filename}-out.log\n"
|
|
" ${DOWNLOADS}/download-${filename}-err.log\n"
|
|
" ${DOWNLOADS}/download-${filename}-detailed.log\n"
|
|
)
|
|
z_vcpkg_download_distfile_show_proxy_and_fail()
|
|
else()
|
|
z_vcpkg_download_distfile_test_hash(
|
|
"${DOWNLOADS}/temp/${filename}"
|
|
"downloaded file"
|
|
"The file may have been corrupted in transit."
|
|
)
|
|
file(REMOVE
|
|
${DOWNLOADS}/download-${filename}-out.log
|
|
${DOWNLOADS}/download-${filename}-err.log
|
|
${DOWNLOADS}/download-${filename}-detailed.log
|
|
)
|
|
get_filename_component(downloaded_file_dir "${downloaded_file_path}" DIRECTORY)
|
|
file(MAKE_DIRECTORY "${downloaded_file_dir}")
|
|
file(RENAME "${DOWNLOADS}/temp/${filename}" "${downloaded_file_path}")
|
|
endif()
|
|
endfunction()
|
|
|
|
function(vcpkg_download_distfile out_var)
|
|
cmake_parse_arguments(PARSE_ARGV 1 arg
|
|
"SKIP_SHA512;SILENT_EXIT;QUIET;ALWAYS_REDOWNLOAD"
|
|
"FILENAME;SHA512"
|
|
"URLS;HEADERS"
|
|
)
|
|
|
|
if(NOT DEFINED arg_URLS)
|
|
message(FATAL_ERROR "vcpkg_download_distfile requires a URLS argument.")
|
|
endif()
|
|
if(NOT DEFINED arg_FILENAME)
|
|
message(FATAL_ERROR "vcpkg_download_distfile requires a FILENAME argument.")
|
|
endif()
|
|
if(arg_SILENT_EXIT)
|
|
message(WARNING "SILENT_EXIT has been deprecated as an argument to vcpkg_download_distfile -- remove the argument to resolve this warning")
|
|
endif()
|
|
if(arg_ALWAYS_REDOWNLOAD AND NOT arg_SKIP_SHA512)
|
|
message(FATAL_ERROR "ALWAYS_REDOWNLOAD option requires SKIP_SHA512 as well")
|
|
endif()
|
|
|
|
if(NOT arg_SKIP_SHA512 AND NOT DEFINED arg_SHA512)
|
|
message(FATAL_ERROR "vcpkg_download_distfile requires a SHA512 argument.
|
|
If you do not know the SHA512, add it as 'SHA512 0' and re-run this command.")
|
|
elseif(arg_SKIP_SHA512 AND DEFINED arg_SHA512)
|
|
message(FATAL_ERROR "vcpkg_download_distfile must not be passed both SHA512 and SKIP_SHA512.")
|
|
endif()
|
|
|
|
if(_VCPKG_INTERNAL_NO_HASH_CHECK)
|
|
set(arg_SKIP_SHA512 1)
|
|
endif()
|
|
|
|
if(NOT arg_SKIP_SHA512)
|
|
if("${arg_SHA512}" STREQUAL "0")
|
|
string(REPEAT 0 128 arg_SHA512)
|
|
else()
|
|
string(LENGTH "${arg_SHA512}" arg_SHA512_length)
|
|
if(NOT "${arg_SHA512_length}" EQUAL "128" OR NOT "${arg_SHA512}" MATCHES "^[a-zA-Z0-9]*$")
|
|
message(FATAL_ERROR "Invalid SHA512: ${arg_SHA512}.
|
|
If you do not know the file's SHA512, set this to \"0\".")
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
set(downloaded_file_path "${DOWNLOADS}/${arg_FILENAME}")
|
|
set(download_file_path_part "${DOWNLOADS}/temp/${arg_FILENAME}")
|
|
|
|
# Works around issue #3399
|
|
# Delete "temp0" directory created by the old version of vcpkg
|
|
file(REMOVE_RECURSE "${DOWNLOADS}/temp0")
|
|
file(REMOVE_RECURSE "${DOWNLOADS}/temp")
|
|
file(MAKE_DIRECTORY "${DOWNLOADS}/temp")
|
|
|
|
# vcpkg_download_distfile_ALWAYS_REDOWNLOAD only triggers when NOT _VCPKG_NO_DOWNLOADS
|
|
# this could be de-morgan'd out but it's more clear this way
|
|
if(_VCPKG_NO_DOWNLOADS)
|
|
if(NOT EXISTS "${downloaded_file_path}")
|
|
message(FATAL_ERROR "Downloads are disabled, but '${downloaded_file_path}' does not exist.")
|
|
endif()
|
|
if(NOT arg_QUIET)
|
|
message(STATUS "Using ${downloaded_file_path}")
|
|
endif()
|
|
|
|
z_vcpkg_download_distfile_test_hash(
|
|
"${downloaded_file_path}"
|
|
"cached file"
|
|
"Please delete the file and retry if this file should be downloaded again."
|
|
)
|
|
set("${out_var}" "${downloaded_file_path}" PARENT_SCOPE)
|
|
return()
|
|
endif()
|
|
|
|
if(_VCPKG_DOWNLOAD_TOOL STREQUAL "ARIA2" AND NOT EXISTS "${downloaded_file_path}")
|
|
z_vcpkg_download_distfile_via_aria(
|
|
"${arg_FILENAME}"
|
|
"${arg_URLS}"
|
|
"${arg_HEADERS}"
|
|
"${arg_SHA512}"
|
|
"${arg_skip_sha512}"
|
|
)
|
|
set("${out_var}" "${downloaded_file_path}" PARENT_SCOPE)
|
|
return()
|
|
endif()
|
|
|
|
vcpkg_list(SET urls_param)
|
|
foreach(url IN LISTS arg_URLS)
|
|
vcpkg_list(APPEND urls_param "--url=${url}")
|
|
endforeach()
|
|
if(NOT vcpkg_download_distfile_QUIET)
|
|
message(STATUS "Downloading ${arg_URLS} -> ${arg_FILENAME}...")
|
|
endif()
|
|
|
|
vcpkg_list(SET headers_param)
|
|
foreach(header IN LISTS arg_HEADERS)
|
|
list(APPEND headers_param "--header=${header}")
|
|
endforeach()
|
|
|
|
if(arg_SKIP_SHA512)
|
|
vcpkg_list(SET sha512_param "--skip-sha512")
|
|
else()
|
|
vcpkg_list(SET sha512_param "--sha512=${arg_SHA512}")
|
|
endif()
|
|
|
|
if(NOT EXISTS "${downloaded_file_path}" OR arg_ALWAYS_REDOWNLOAD)
|
|
vcpkg_execute_in_download_mode(
|
|
COMMAND "$ENV{VCPKG_COMMAND}" x-download
|
|
"${downloaded_file_path}"
|
|
${sha512_param}
|
|
${urls_param}
|
|
${headers_param}
|
|
--debug
|
|
--feature-flags=-manifests # there's a bug in vcpkg x-download when it finds a manifest-root
|
|
OUTPUT_VARIABLE output
|
|
ERROR_VARIABLE output
|
|
RESULT_VARIABLE error_code
|
|
WORKING_DIRECTORY "${DOWNLOADS}"
|
|
)
|
|
|
|
if(NOT "${error_code}" EQUAL "0")
|
|
message("${output}")
|
|
z_vcpkg_download_distfile_show_proxy_and_fail("${error_code}")
|
|
endif()
|
|
endif()
|
|
|
|
set("${out_var}" "${downloaded_file_path}" PARENT_SCOPE)
|
|
endfunction()
|