2020-12-02 05:37:26 +08:00
|
|
|
#[===[.md:
|
|
|
|
# vcpkg_execute_required_process_repeat
|
|
|
|
|
|
|
|
Execute a process until the command succeeds, or until the COUNT is reached.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
```cmake
|
|
|
|
vcpkg_execute_required_process_repeat(
|
|
|
|
COMMAND <cmd> [<arguments>]
|
2021-07-15 03:45:18 +08:00
|
|
|
COUNT <num>
|
2020-12-02 05:37:26 +08:00
|
|
|
WORKING_DIRECTORY <directory>
|
|
|
|
LOGNAME <name>
|
2021-07-15 03:45:18 +08:00
|
|
|
[ALLOW_IN_DOWNLOAD_MODE]
|
2020-12-02 05:37:26 +08:00
|
|
|
)
|
|
|
|
```
|
|
|
|
#]===]
|
|
|
|
|
2016-10-25 17:56:02 +08:00
|
|
|
function(vcpkg_execute_required_process_repeat)
|
2021-07-15 03:45:18 +08:00
|
|
|
cmake_parse_arguments(PARSE_ARGV 0 arg
|
|
|
|
"ALLOW_IN_DOWNLOAD_MODE"
|
|
|
|
"COUNT;WORKING_DIRECTORY;LOGNAME"
|
|
|
|
"COMMAND"
|
|
|
|
)
|
|
|
|
|
|
|
|
if(DEFINED arg_UNPARSED_ARGUMENTS)
|
|
|
|
message(WARNING "${CMAKE_CURRENT_FUNCTION} was passed extra arguments: ${arg_UNPARSED_ARGUMENTS}")
|
|
|
|
endif()
|
|
|
|
foreach(required_arg IN ITEMS COUNT WORKING_DIRECTORY LOGNAME COMMAND)
|
|
|
|
if(NOT DEFINED arg_${required_arg})
|
|
|
|
message(FATAL_ERROR "${required_arg} must be specified.")
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# also checks for COUNT being an integer
|
|
|
|
if(NOT arg_COUNT GREATER_EQUAL "1")
|
|
|
|
message(FATAL_ERROR "COUNT (${arg_COUNT}) must be greater than or equal to 1.")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (DEFINED VCPKG_DOWNLOAD_MODE AND NOT arg_ALLOW_IN_DOWNLOAD_MODE)
|
2021-02-10 07:53:36 +08:00
|
|
|
message(FATAL_ERROR
|
2020-10-27 10:30:27 +08:00
|
|
|
[[
|
|
|
|
This command cannot be executed in Download Mode.
|
|
|
|
Halting portfile execution.
|
|
|
|
]])
|
|
|
|
endif()
|
2021-07-15 03:45:18 +08:00
|
|
|
|
|
|
|
set(all_logs "")
|
|
|
|
foreach(loop_count RANGE 1 ${arg_COUNT})
|
|
|
|
set(out_log "${CURRENT_BUILDTREES_DIR}/${arg_LOGNAME}-out-${loop_count}.log")
|
|
|
|
set(err_log "${CURRENT_BUILDTREES_DIR}/${arg_LOGNAME}-out-${loop_count}.log")
|
|
|
|
list(APPEND all_logs "${out_log}" "${err_log}")
|
|
|
|
|
2020-10-27 10:30:27 +08:00
|
|
|
vcpkg_execute_in_download_mode(
|
2021-07-15 03:45:18 +08:00
|
|
|
COMMAND ${arg_COMMAND}
|
|
|
|
OUTPUT_FILE "${out_log}"
|
|
|
|
ERROR_FILE "${err_log}"
|
2016-10-25 17:56:02 +08:00
|
|
|
RESULT_VARIABLE error_code
|
2021-07-15 03:45:18 +08:00
|
|
|
WORKING_DIRECTORY "${arg_WORKING_DIRECTORY}"
|
2016-10-25 17:56:02 +08:00
|
|
|
)
|
2021-07-15 03:45:18 +08:00
|
|
|
if(error_code EQUAL "0")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
set(stringified_logs "")
|
|
|
|
foreach(log IN LISTS all_logs)
|
|
|
|
if(NOT EXISTS "${log}")
|
|
|
|
continue()
|
|
|
|
endif()
|
|
|
|
file(SIZE "${log}" log_size)
|
|
|
|
if(NOT log_size EQUAL "0")
|
|
|
|
file(TO_NATIVE_PATH "${log}" native_log)
|
|
|
|
string(APPEND stringified_logs " ${native_log}\n")
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
z_vcpkg_prettify_command_line(pretty_command ${arg_COMMAND})
|
|
|
|
message(FATAL_ERROR
|
|
|
|
" Command failed: ${pretty_command}\n"
|
|
|
|
" Working Directory: ${arg_WORKING_DIRECTORY}\n"
|
|
|
|
" See logs for more information:\n"
|
|
|
|
"${stringifed_logs}"
|
|
|
|
)
|
2016-10-25 17:56:02 +08:00
|
|
|
endfunction()
|