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
|
# (C) Copyright 2011- ECMWF.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
# In applying this licence, ECMWF does not waive the privileges and immunities
# granted to it by virtue of its status as an intergovernmental organisation nor
# does it submit to any jurisdiction.
##############################################################################
# function for downloading test data
function( _download_test_data _p_NAME _p_DIR_URL _p_DIRLOCAL _p_CHECK_FILE_EXISTS _p_INSECURE )
# TODO: make that 'at ecmwf'
#if(1)
#unset(ENV{no_proxy})
#unset(ENV{NO_PROXY})
#set(ENV{http_proxy} "http://proxy.ecmwf.int:3333")
#endif()
# Do not retry downloads by default (ECBUILD-307)
if( NOT DEFINED ECBUILD_DOWNLOAD_RETRIES )
set( ECBUILD_DOWNLOAD_RETRIES 0 )
endif()
# Use default timeout of 30s if not specified (ECBUILD-307)
if( NOT DEFINED ECBUILD_DOWNLOAD_TIMEOUT )
set( ECBUILD_DOWNLOAD_TIMEOUT 30 )
endif()
# Allow insecure download as a global option
if( NOT DEFINED ECBUILD_DOWNLOAD_INSECURE OR NOT ECBUILD_DOWNLOAD_INSECURE )
set( ECBUILD_DOWNLOAD_INSECURE _p_INSECURE )
endif()
find_program( CURL_PROGRAM curl )
mark_as_advanced(CURL_PROGRAM)
find_program( WGET_PROGRAM wget )
mark_as_advanced(WGET_PROGRAM)
if( NOT CURL_PROGRAM AND NOT WGET_PROGRAM )
if( NOT WARNING_CANNOT_DOWNLOAD_TEST_DATA )
ecbuild_warn( "Couldn't find curl neither wget -- cannot download test data from server.\nPlease obtain the test data by other means and pleace it in the build directory." )
set( WARNING_CANNOT_DOWNLOAD_TEST_DATA 1 CACHE INTERNAL "Couldn't find curl neither wget -- cannot download test data from server" )
mark_as_advanced( WARNING_CANNOT_DOWNLOAD_TEST_DATA )
return()
endif()
endif()
set( use_curl TRUE )
if( _p_CHECK_FILE_EXISTS )
# The "--continue-at - " option of curl is buggy... (ask Google)
# Error message is: "curl: (33) HTTP server doesn't seem to support byte ranges. Cannot resume."
# Switch to wget if _p_CHECK_FILE_EXISTS is activated
if( WGET_PROGRAM )
set( use_curl FALSE )
else()
set( _p_CHECK_FILE_EXISTS FALSE )
endif()
elseif( NOT CURL_PROGRAM )
set( use_curl FALSE )
endif()
if( use_curl )
if( ECBUILD_DOWNLOAD_INSECURE )
set( INSECURE_CURL "--insecure" )
else()
set( INSECURE_CURL "" )
endif()
add_custom_command( OUTPUT ${_p_NAME}
COMMENT "(curl) downloading ${_p_DIR_URL}/${_p_NAME}"
COMMAND ${CURL_PROGRAM} ${INSECURE_CURL} --silent --show-error --fail --output ${_p_DIRLOCAL}/${_p_NAME}
--retry ${ECBUILD_DOWNLOAD_RETRIES}
--connect-timeout ${ECBUILD_DOWNLOAD_TIMEOUT}
${_p_DIR_URL}/${_p_NAME} )
else()
# wget takes the total number of tries, curl the number or retries
math( EXPR ECBUILD_DOWNLOAD_RETRIES "${ECBUILD_DOWNLOAD_RETRIES} + 1" )
if( ECBUILD_DOWNLOAD_INSECURE )
set( INSECURE_WGET "--no-check-certificate" )
else()
set( INSECURE_WGET "" )
endif()
if( _p_CHECK_FILE_EXISTS )
add_custom_command( OUTPUT ${_p_NAME}
COMMENT "(wget) downloading ${_p_DIR_URL}/${_p_NAME}"
COMMAND ${WGET_PROGRAM} -c -nv -O ${_p_DIRLOCAL}/${_p_NAME} ${INSECURE_WGET}
-t ${ECBUILD_DOWNLOAD_RETRIES} -T ${ECBUILD_DOWNLOAD_TIMEOUT}
${_p_DIR_URL}/${_p_NAME} )
else()
add_custom_command( OUTPUT ${_p_NAME}
COMMENT "(wget) downloading ${_p_DIR_URL}/${_p_NAME}"
COMMAND ${WGET_PROGRAM} -nv -O ${_p_DIRLOCAL}/${_p_NAME} ${INSECURE_WGET}
-t ${ECBUILD_DOWNLOAD_RETRIES} -T ${ECBUILD_DOWNLOAD_TIMEOUT}
${_p_DIR_URL}/${_p_NAME} )
endif()
endif()
endfunction()
##############################################################################
#.rst:
#
# ecbuild_get_test_data
# =====================
#
# Download a test data set at build time. ::
#
# ecbuild_get_test_data( NAME <name>
# [ TARGET <target> ]
# [ DIRNAME <dir> ]
# [ DIRLOCAL <dir> ]
# [ MD5 <hash> ]
# [ EXTRACT ]
# [ NOCHECK ]
# [ INSECURE ])
#
# curl or wget is required (curl is preferred if available).
#
# Options
# -------
#
# NAME : required
# name of the test data file
#
# TARGET : optional, defaults to test_data_<name>
# CMake target name
#
# DIRNAME : optional
# use when there is a directory structure on the server that
# hosts test files
#
# DIRLOCAL : optional, defaults to ".", local directory in which the test data is copied
#
# MD5 : optional, ignored if NOCHECK is given
# md5 checksum of the data set to verify. If not given and NOCHECK is *not*
# set, download the md5 checksum and verify
#
# EXTRACT : optional
# extract the downloaded file (supported archives: tar, zip, tar.gz, tar.bz2)
#
# NOCHECK : optional
# do not verify the md5 checksum of the data file
#
# INSECURE : optional
# explicitly allows curl and wget to perform "insecure" SSL connections
#
# Usage
# -----
#
# Download test data from ``<ECBUILD_DOWNLOAD_BASE_URL>/<DIRNAME>/<NAME>``
#
# If the ``ECBUILD_DOWNLOAD_BASE_URL`` variable is not set, the default URL
# ``https://sites.ecmwf.int/repository`` is used.
#
# If the ``DIRNAME`` argument is not given, test data will be downloaded
# from ``<ECBUILD_DOWNLOAD_BASE_URL>/<project>/test-data/<relative path to current dir>/<NAME>``
# where ``<project>`` is the name of the project with all '_' replaced by '-'.
#
# By default, the downloaded file is verified against an md5 checksum, either
# given as the ``MD5`` argument or downloaded from the server otherwise. Use
# the argument ``NOCHECK`` to disable this check.
#
# The default timeout is 30 seconds, which can be overridden with
# ``ECBUILD_DOWNLOAD_TIMEOUT``. Downloads are by default only tried once, use
# ``ECBUILD_DOWNLOAD_RETRIES`` to set the number of retries.
#
# Examples
# --------
#
# Do not verify the checksum: ::
#
# ecbuild_get_test_data( NAME msl.grib NOCHECK )
#
# Checksum agains remote md5 file: ::
#
# ecbuild_get_test_data( NAME msl.grib )
#
# Checksum agains local md5: ::
#
# ecbuild_get_test_data( NAME msl.grib MD5 f69ca0929d1122c7878d19f32401abe9 )
#
##############################################################################
function( ecbuild_get_test_data )
set( options NOCHECK EXTRACT INSECURE )
set( single_value_args TARGET NAME DIRNAME DIRLOCAL MD5 SHA1 )
set( multi_value_args )
cmake_parse_arguments( _p "${options}" "${single_value_args}" "${multi_value_args}" ${_FIRST_ARG} ${ARGN} )
if(_p_UNPARSED_ARGUMENTS)
ecbuild_critical("Unknown keywords given to ecbuild_get_test_data(): \"${_p_UNPARSED_ARGUMENTS}\"")
endif()
file( RELATIVE_PATH currdir ${PROJECT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR} )
### check parameters
if( NOT _p_NAME )
ecbuild_critical("ecbuild_get_test_data() expects a NAME")
endif()
if( NOT _p_TARGET )
string( REGEX REPLACE "[^A-Za-z0-9_]" "_" _p_TARGET "test_data_${_p_NAME}")
# string( REGEX REPLACE "[^A-Za-z0-9_]" "_" _p_TARGET "${_p_NAME}")
# set( _p_TARGET ${_p_NAME} )
endif()
if( NOT _p_DIRLOCAL )
set( _p_DIRLOCAL "." )
endif()
# Allow the user to override the base download URL (ECBUILD-447)
if( NOT DEFINED ECBUILD_DOWNLOAD_BASE_URL )
set( ECBUILD_DOWNLOAD_BASE_URL https://sites.ecmwf.int/repository )
endif()
# Set download URL
if( NOT _p_DIRNAME )
string( REGEX REPLACE "_" "-" NORMALIZED_PROJECT_NAME "${PROJECT_NAME}") # replace all '_' by '-'
set( DOWNLOAD_URL ${ECBUILD_DOWNLOAD_BASE_URL}/${NORMALIZED_PROJECT_NAME}/test-data/${currdir})
else()
set( DOWNLOAD_URL ${ECBUILD_DOWNLOAD_BASE_URL}/${_p_DIRNAME} )
endif()
if( NOT _p_NOCHECK AND NOT _p_MD5 AND NOT _p_SHA1 )
# special case where data might have been downloaded already and will be checked with the remote md5 anyway
set( CHECK_FILE_EXISTS ON)
else()
# always download the data
set( CHECK_FILE_EXISTS OFF)
endif()
if( _p_INSECURE )
# allow insecure SSL connection
set( ALLOW_INSECURE ON)
else()
# do not allow insecure SSL connection
set( ALLOW_INSECURE OFF)
endif()
# download the data
_download_test_data( ${_p_NAME} ${DOWNLOAD_URL} ${_p_DIRLOCAL} ${CHECK_FILE_EXISTS} ${ALLOW_INSECURE})
# perform the checksum if requested
set( _deps ${_p_NAME} )
if( NOT _p_NOCHECK )
if( NOT _p_MD5 AND NOT _p_SHA1) # use remote md5
add_custom_command( OUTPUT ${_p_NAME}.localmd5
COMMAND ${CMAKE_COMMAND} -E md5sum ${_p_NAME} > ${_p_NAME}.localmd5
WORKING_DIRECTORY ${_p_DIRLOCAL}
DEPENDS ${_p_NAME} )
_download_test_data( ${_p_NAME}.md5 ${DOWNLOAD_URL} ${_p_DIRLOCAL} OFF ${ALLOW_INSECURE})
add_custom_command( OUTPUT ${_p_NAME}.ok
COMMAND ${CMAKE_COMMAND} -E compare_files ${_p_NAME}.md5 ${_p_NAME}.localmd5 &&
${CMAKE_COMMAND} -E touch ${_p_NAME}.ok
WORKING_DIRECTORY ${_p_DIRLOCAL}
DEPENDS ${_p_NAME}.localmd5 ${_p_NAME}.md5 )
list( APPEND _deps ${_p_NAME}.localmd5 ${_p_NAME}.ok )
endif()
if( _p_MD5 )
add_custom_command( OUTPUT ${_p_NAME}.localmd5
COMMAND ${CMAKE_COMMAND} -E md5sum ${_p_NAME} > ${_p_NAME}.localmd5
WORKING_DIRECTORY ${_p_DIRLOCAL}
DEPENDS ${_p_NAME} )
configure_file( "${ECBUILD_MACROS_DIR}/md5.in" ${_p_DIRLOCAL}/${_p_NAME}.md5 @ONLY NEWLINE_STYLE LF )
add_custom_command( OUTPUT ${_p_NAME}.ok
COMMAND ${CMAKE_COMMAND} -E compare_files ${_p_NAME}.md5 ${_p_NAME}.localmd5 &&
${CMAKE_COMMAND} -E touch ${_p_NAME}.ok
WORKING_DIRECTORY ${_p_DIRLOCAL}
DEPENDS ${_p_NAME}.localmd5 )
list( APPEND _deps ${_p_NAME}.localmd5 ${_p_NAME}.ok )
endif()
# if( _p_SHA1 )
# find_program( SHASUM NAMES sha1sum shasum )
# if( SHASUM )
# add_custom_command( OUTPUT ${_p_NAME}.localsha1
# COMMAND ${SHASUM} ${_p_DIRLOCAL}/${_p_NAME} > ${_p_DIRLOCAL}/${_p_NAME}.localsha1 )
# add_custom_command( OUTPUT ${_p_NAME}.ok
# COMMAND diff ${_p_DIRLOCAL}/${_p_NAME}.sha1 ${_p_DIRLOCAL}/${_p_NAME}.localsha1 && touch ${_p_DIRLOCAL}/${_p_NAME}.ok )
# configure_file( "${ECBUILD_MACROS_DIR}/sha1.in" ${_p_DIRLOCAL}/${_p_NAME}.sha1 @ONLY )
# list( APPEND _deps ${_p_NAME}.localsha1 ${_p_NAME}.ok )
# endif()
# endif()
endif()
add_custom_target( ${_p_TARGET} DEPENDS ${_deps} )
if( _p_EXTRACT )
ecbuild_debug("ecbuild_get_test_data: extracting ${_p_DIRLOCAL}/${_p_NAME} (post-build for target ${_p_TARGET}")
add_custom_command( TARGET ${_p_TARGET} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E chdir ${_p_DIRLOCAL} tar xvf ${_p_NAME} )
endif()
endfunction(ecbuild_get_test_data)
##############################################################################
#.rst:
#
# ecbuild_get_test_multidata
# ==========================
#
# Download multiple test data sets at build time. ::
#
# ecbuild_get_test_multidata( NAMES <name1> [ <name2> ... ]
# TARGET <target>
# [ DIRNAME <dir> ]
# [ DIRLOCAL <dir> ]
# [ LABELS <label1> [<label2> ...] ]
# [ EXTRACT ]
# [ NOCHECK ]
# [ INSECURE ] )
#
# curl or wget is required (curl is preferred if available).
#
# Options
# -------
#
# NAMES : required
# list of names of the test data files
#
# TARGET : optional
# CMake target name
#
# DIRNAME : optional
# use when there is a directory structure on the server that
# hosts test files
#
# DIRLOCAL : optional, defaults to ".", local directory in which the test data is copied
#
# LABELS : optional
# list of labels to assign to the test
#
# Lower case project name and ``download_data`` are always added as labels.
#
# This allows selecting tests to run via ``ctest -L <regex>`` or tests
# to exclude via ``ctest -LE <regex>``.
#
# EXTRACT : optional
# extract downloaded files (supported archives: tar, zip, tar.gz, tar.bz2)
#
# NOCHECK : optional
# do not verify the md5 checksum of the data file
#
# INSECURE : optional
# explicitly allows curl and wget to perform "insecure" SSL connections
#
# Usage
# -----
#
# Download test data from ``<ECBUILD_DOWNLOAD_BASE_URL>/<DIRNAME>``
# for each name given in the list of ``NAMES``. Each name may contain a
# relative path, which is appended to ``DIRNAME`` and may be followed by an
# md5 checksum, separated with a ``:`` (the name must not contain spaces).
#
# If the ``ECBUILD_DOWNLOAD_BASE_URL`` variable is not set, the default URL
# ``https://get.ecmwf.int/repository/test-data`` is used.
#
# If the ``DIRNAME`` argument is not given, test data will be downloaded
# from ``<ECBUILD_DOWNLOAD_BASE_URL>/<project>/<relative path to current dir>/<NAME>``
#
# By default, each downloaded file is verified against an md5 checksum, either
# given as part of the name as described above or a remote checksum downloaded
# from the server. Use the argument ``NOCHECK`` to disable this check.
#
# Examples
# --------
#
# Do not verify checksums: ::
#
# ecbuild_get_test_multidata( TARGET get_grib_data NAMES foo.grib bar.grib
# DIRNAME test/data/dir NOCHECK )
#
# Checksums agains remote md5 file: ::
#
# ecbuild_get_test_multidata( TARGET get_grib_data NAMES foo.grib bar.grib
# DIRNAME test/data/dir )
#
# Checksum agains local md5: ::
#
# ecbuild_get_test_multidata( TARGET get_grib_data DIRNAME test/data/dir
# NAMES msl.grib:f69ca0929d1122c7878d19f32401abe9 )
#
##############################################################################
function( ecbuild_get_test_multidata )
set( options EXTRACT NOCHECK INSECURE )
set( single_value_args TARGET DIRNAME DIRLOCAL )
set( multi_value_args NAMES LABELS )
cmake_parse_arguments( _p "${options}" "${single_value_args}" "${multi_value_args}" ${_FIRST_ARG} ${ARGN} )
if(_p_UNPARSED_ARGUMENTS)
ecbuild_critical("Unknown keywords given to ecbuild_get_test_multidata(): \"${_p_UNPARSED_ARGUMENTS}\"")
endif()
### check parameters
if( NOT _p_NAMES )
ecbuild_critical("ecbuild_get_test_multidata() expects a NAMES")
endif()
if( NOT _p_TARGET )
ecbuild_critical("ecbuild_get_test_multidata() expects a TARGET")
endif()
if( NOT _p_DIRLOCAL )
set( _p_DIRLOCAL ".")
endif()
if( _p_EXTRACT )
set( _extract EXTRACT )
endif()
if( _p_NOCHECK )
set( _nocheck NOCHECK )
endif()
if( _p_INSECURE )
set( _insecure INSECURE )
endif()
### prepare file
set( _script ${CMAKE_CURRENT_BINARY_DIR}/get_data_${_p_TARGET}.cmake )
file( WRITE ${_script} "
function(EXEC_CHECK)
execute_process(COMMAND \${ARGV} RESULT_VARIABLE CMD_RESULT)
if(CMD_RESULT)
message(FATAL_ERROR \"Error running ${CMD}\")
endif()
endfunction()\n\n" )
foreach( _d ${_p_NAMES} )
string( REGEX MATCH "[^:]+" _f "${_d}" )
get_filename_component( _file ${_f} NAME )
get_filename_component( _dir ${_f} PATH )
set( _path_comps "" )
list( APPEND _path_comps ${_p_DIRNAME} ${_dir} )
join( _path_comps "/" _DIRNAME )
if( _DIRNAME )
set( _DIRNAME DIRNAME ${_DIRNAME} )
endif()
unset( _path_comps )
string( REPLACE "." "_" _name "${_file}" )
string( REGEX MATCH ":.*" _md5 "${_d}" )
string( REPLACE ":" "" _md5 "${_md5}" )
if( _md5 )
set( _md5 MD5 ${_md5} )
endif()
ecbuild_get_test_data(
TARGET __get_data_${_p_TARGET}_${_name}
DIRLOCAL ${_p_DIRLOCAL}
NAME ${_file} ${_DIRNAME} ${_md5} ${_extract} ${_nocheck} ${_insecure})
if ( ${CMAKE_GENERATOR} MATCHES Ninja )
set( _fast "" )
else()
# The option /fast disables dependency checking on a target, see
# https://cmake.org/Wiki/CMake_FAQ#Is_there_a_way_to_skip_checking_of_dependent_libraries_when_compiling.3F
set( _fast "/fast" )
endif()
file( APPEND ${_script}
"exec_check( \"${CMAKE_COMMAND}\" --build \"${CMAKE_BINARY_DIR}\" --target __get_data_${_p_TARGET}_${_name}${_fast} )\n" )
endforeach()
if( HAVE_TESTS )
add_test( NAME ${_p_TARGET} COMMAND ${CMAKE_COMMAND} -P ${_script} )
string( TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWCASE )
set( _p_LABELS ${PROJECT_NAME_LOWCASE} download_data ${_p_LABELS} )
list( REMOVE_DUPLICATES _p_LABELS )
set_property( TEST ${_p_TARGET} APPEND PROPERTY LABELS "${_p_LABELS}" )
endif()
endfunction(ecbuild_get_test_multidata)
|