ExternalData.cmake 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066
  1. #[=======================================================================[.rst:
  2. ExternalData
  3. ------------
  4. .. only:: html
  5. .. contents::
  6. Manage data files stored outside source tree
  7. Introduction
  8. ^^^^^^^^^^^^
  9. Use this module to unambiguously reference data files stored outside
  10. the source tree and fetch them at build time from arbitrary local and
  11. remote content-addressed locations. Functions provided by this module
  12. recognize arguments with the syntax ``DATA{<name>}`` as references to
  13. external data, replace them with full paths to local copies of those
  14. data, and create build rules to fetch and update the local copies.
  15. For example:
  16. .. code-block:: cmake
  17. include(ExternalData)
  18. set(ExternalData_URL_TEMPLATES "file:///local/%(algo)/%(hash)"
  19. "file:////host/share/%(algo)/%(hash)"
  20. "http://data.org/%(algo)/%(hash)")
  21. ExternalData_Add_Test(MyData
  22. NAME MyTest
  23. COMMAND MyExe DATA{MyInput.png}
  24. )
  25. ExternalData_Add_Target(MyData)
  26. When test ``MyTest`` runs the ``DATA{MyInput.png}`` argument will be
  27. replaced by the full path to a real instance of the data file
  28. ``MyInput.png`` on disk. If the source tree contains a content link
  29. such as ``MyInput.png.md5`` then the ``MyData`` target creates a real
  30. ``MyInput.png`` in the build tree.
  31. Module Functions
  32. ^^^^^^^^^^^^^^^^
  33. .. command:: ExternalData_Expand_Arguments
  34. The ``ExternalData_Expand_Arguments`` function evaluates ``DATA{}``
  35. references in its arguments and constructs a new list of arguments::
  36. ExternalData_Expand_Arguments(
  37. <target> # Name of data management target
  38. <outVar> # Output variable
  39. [args...] # Input arguments, DATA{} allowed
  40. )
  41. It replaces each ``DATA{}`` reference in an argument with the full path of
  42. a real data file on disk that will exist after the ``<target>`` builds.
  43. .. command:: ExternalData_Add_Test
  44. The ``ExternalData_Add_Test`` function wraps around the CMake
  45. :command:`add_test` command but supports ``DATA{}`` references in
  46. its arguments::
  47. ExternalData_Add_Test(
  48. <target> # Name of data management target
  49. ... # Arguments of add_test(), DATA{} allowed
  50. )
  51. It passes its arguments through ``ExternalData_Expand_Arguments`` and then
  52. invokes the :command:`add_test` command using the results.
  53. .. command:: ExternalData_Add_Target
  54. The ``ExternalData_Add_Target`` function creates a custom target to
  55. manage local instances of data files stored externally::
  56. ExternalData_Add_Target(
  57. <target> # Name of data management target
  58. )
  59. It creates custom commands in the target as necessary to make data
  60. files available for each ``DATA{}`` reference previously evaluated by
  61. other functions provided by this module.
  62. Data files may be fetched from one of the URL templates specified in
  63. the ``ExternalData_URL_TEMPLATES`` variable, or may be found locally
  64. in one of the paths specified in the ``ExternalData_OBJECT_STORES``
  65. variable.
  66. Module Variables
  67. ^^^^^^^^^^^^^^^^
  68. The following variables configure behavior. They should be set before
  69. calling any of the functions provided by this module.
  70. .. variable:: ExternalData_BINARY_ROOT
  71. The ``ExternalData_BINARY_ROOT`` variable may be set to the directory to
  72. hold the real data files named by expanded ``DATA{}`` references. The
  73. default is ``CMAKE_BINARY_DIR``. The directory layout will mirror that of
  74. content links under ``ExternalData_SOURCE_ROOT``.
  75. .. variable:: ExternalData_CUSTOM_SCRIPT_<key>
  76. Specify a full path to a ``.cmake`` custom fetch script identified by
  77. ``<key>`` in entries of the ``ExternalData_URL_TEMPLATES`` list.
  78. See `Custom Fetch Scripts`_.
  79. .. variable:: ExternalData_LINK_CONTENT
  80. The ``ExternalData_LINK_CONTENT`` variable may be set to the name of a
  81. supported hash algorithm to enable automatic conversion of real data
  82. files referenced by the ``DATA{}`` syntax into content links. For each
  83. such ``<file>`` a content link named ``<file><ext>`` is created. The
  84. original file is renamed to the form ``.ExternalData_<algo>_<hash>`` to
  85. stage it for future transmission to one of the locations in the list
  86. of URL templates (by means outside the scope of this module). The
  87. data fetch rule created for the content link will use the staged
  88. object if it cannot be found using any URL template.
  89. .. variable:: ExternalData_NO_SYMLINKS
  90. The real data files named by expanded ``DATA{}`` references may be made
  91. available under ``ExternalData_BINARY_ROOT`` using symbolic links on
  92. some platforms. The ``ExternalData_NO_SYMLINKS`` variable may be set
  93. to disable use of symbolic links and enable use of copies instead.
  94. .. variable:: ExternalData_OBJECT_STORES
  95. The ``ExternalData_OBJECT_STORES`` variable may be set to a list of local
  96. directories that store objects using the layout ``<dir>/%(algo)/%(hash)``.
  97. These directories will be searched first for a needed object. If the
  98. object is not available in any store then it will be fetched remotely
  99. using the URL templates and added to the first local store listed. If
  100. no stores are specified the default is a location inside the build
  101. tree.
  102. .. variable:: ExternalData_SERIES_PARSE
  103. ExternalData_SERIES_PARSE_PREFIX
  104. ExternalData_SERIES_PARSE_NUMBER
  105. ExternalData_SERIES_PARSE_SUFFIX
  106. ExternalData_SERIES_MATCH
  107. See `Referencing File Series`_.
  108. .. variable:: ExternalData_SOURCE_ROOT
  109. The ``ExternalData_SOURCE_ROOT`` variable may be set to the highest source
  110. directory containing any path named by a ``DATA{}`` reference. The
  111. default is ``CMAKE_SOURCE_DIR``. ``ExternalData_SOURCE_ROOT`` and
  112. ``CMAKE_SOURCE_DIR`` must refer to directories within a single source
  113. distribution (e.g. they come together in one tarball).
  114. .. variable:: ExternalData_TIMEOUT_ABSOLUTE
  115. The ``ExternalData_TIMEOUT_ABSOLUTE`` variable sets the download
  116. absolute timeout, in seconds, with a default of ``300`` seconds.
  117. Set to ``0`` to disable enforcement.
  118. .. variable:: ExternalData_TIMEOUT_INACTIVITY
  119. The ``ExternalData_TIMEOUT_INACTIVITY`` variable sets the download
  120. inactivity timeout, in seconds, with a default of ``60`` seconds.
  121. Set to ``0`` to disable enforcement.
  122. .. variable:: ExternalData_URL_ALGO_<algo>_<key>
  123. Specify a custom URL component to be substituted for URL template
  124. placeholders of the form ``%(algo:<key>)``, where ``<key>`` is a
  125. valid C identifier, when fetching an object referenced via hash
  126. algorithm ``<algo>``. If not defined, the default URL component
  127. is just ``<algo>`` for any ``<key>``.
  128. .. variable:: ExternalData_URL_TEMPLATES
  129. The ``ExternalData_URL_TEMPLATES`` may be set to provide a list of
  130. of URL templates using the placeholders ``%(algo)`` and ``%(hash)``
  131. in each template. Data fetch rules try each URL template in order
  132. by substituting the hash algorithm name for ``%(algo)`` and the hash
  133. value for ``%(hash)``. Alternatively one may use ``%(algo:<key>)``
  134. with ``ExternalData_URL_ALGO_<algo>_<key>`` variables to gain more
  135. flexibility in remote URLs.
  136. Referencing Files
  137. ^^^^^^^^^^^^^^^^^
  138. Referencing Single Files
  139. """"""""""""""""""""""""
  140. The ``DATA{}`` syntax is literal and the ``<name>`` is a full or relative path
  141. within the source tree. The source tree must contain either a real
  142. data file at ``<name>`` or a "content link" at ``<name><ext>`` containing a
  143. hash of the real file using a hash algorithm corresponding to ``<ext>``.
  144. For example, the argument ``DATA{img.png}`` may be satisfied by either a
  145. real ``img.png`` file in the current source directory or a ``img.png.md5``
  146. file containing its MD5 sum.
  147. Referencing File Series
  148. """""""""""""""""""""""
  149. The ``DATA{}`` syntax can be told to fetch a file series using the form
  150. ``DATA{<name>,:}``, where the ``:`` is literal. If the source tree
  151. contains a group of files or content links named like a series then a
  152. reference to one member adds rules to fetch all of them. Although all
  153. members of a series are fetched, only the file originally named by the
  154. ``DATA{}`` argument is substituted for it. The default configuration
  155. recognizes file series names ending with ``#.ext``, ``_#.ext``, ``.#.ext``,
  156. or ``-#.ext`` where ``#`` is a sequence of decimal digits and ``.ext`` is
  157. any single extension. Configure it with a regex that parses ``<number>``
  158. and ``<suffix>`` parts from the end of ``<name>``::
  159. ExternalData_SERIES_PARSE = regex of the form (<number>)(<suffix>)$
  160. For more complicated cases set::
  161. ExternalData_SERIES_PARSE = regex with at least two () groups
  162. ExternalData_SERIES_PARSE_PREFIX = <prefix> regex group number, if any
  163. ExternalData_SERIES_PARSE_NUMBER = <number> regex group number
  164. ExternalData_SERIES_PARSE_SUFFIX = <suffix> regex group number
  165. Configure series number matching with a regex that matches the
  166. ``<number>`` part of series members named ``<prefix><number><suffix>``::
  167. ExternalData_SERIES_MATCH = regex matching <number> in all series members
  168. Note that the ``<suffix>`` of a series does not include a hash-algorithm
  169. extension.
  170. Referencing Associated Files
  171. """"""""""""""""""""""""""""
  172. The ``DATA{}`` syntax can alternatively match files associated with the
  173. named file and contained in the same directory. Associated files may
  174. be specified by options using the syntax
  175. ``DATA{<name>,<opt1>,<opt2>,...}``. Each option may specify one file by
  176. name or specify a regular expression to match file names using the
  177. syntax ``REGEX:<regex>``. For example, the arguments::
  178. DATA{MyData/MyInput.mhd,MyInput.img} # File pair
  179. DATA{MyData/MyFrames00.png,REGEX:MyFrames[0-9]+\\.png} # Series
  180. will pass ``MyInput.mha`` and ``MyFrames00.png`` on the command line but
  181. ensure that the associated files are present next to them.
  182. Referencing Directories
  183. """""""""""""""""""""""
  184. The ``DATA{}`` syntax may reference a directory using a trailing slash and
  185. a list of associated files. The form ``DATA{<name>/,<opt1>,<opt2>,...}``
  186. adds rules to fetch any files in the directory that match one of the
  187. associated file options. For example, the argument
  188. ``DATA{MyDataDir/,REGEX:.*}`` will pass the full path to a ``MyDataDir``
  189. directory on the command line and ensure that the directory contains
  190. files corresponding to every file or content link in the ``MyDataDir``
  191. source directory. In order to match associated files in subdirectories,
  192. specify a ``RECURSE:`` option, e.g. ``DATA{MyDataDir/,RECURSE:,REGEX:.*}``.
  193. Hash Algorithms
  194. ^^^^^^^^^^^^^^^
  195. The following hash algorithms are supported::
  196. %(algo) <ext> Description
  197. ------- ----- -----------
  198. MD5 .md5 Message-Digest Algorithm 5, RFC 1321
  199. SHA1 .sha1 US Secure Hash Algorithm 1, RFC 3174
  200. SHA224 .sha224 US Secure Hash Algorithms, RFC 4634
  201. SHA256 .sha256 US Secure Hash Algorithms, RFC 4634
  202. SHA384 .sha384 US Secure Hash Algorithms, RFC 4634
  203. SHA512 .sha512 US Secure Hash Algorithms, RFC 4634
  204. Note that the hashes are used only for unique data identification and
  205. download verification.
  206. .. _`ExternalData Custom Fetch Scripts`:
  207. Custom Fetch Scripts
  208. ^^^^^^^^^^^^^^^^^^^^
  209. When a data file must be fetched from one of the URL templates
  210. specified in the ``ExternalData_URL_TEMPLATES`` variable, it is
  211. normally downloaded using the :command:`file(DOWNLOAD)` command.
  212. One may specify usage of a custom fetch script by using a URL
  213. template of the form ``ExternalDataCustomScript://<key>/<loc>``.
  214. The ``<key>`` must be a C identifier, and the ``<loc>`` must
  215. contain the ``%(algo)`` and ``%(hash)`` placeholders.
  216. A variable corresponding to the key, ``ExternalData_CUSTOM_SCRIPT_<key>``,
  217. must be set to the full path to a ``.cmake`` script file. The script
  218. will be included to perform the actual fetch, and provided with
  219. the following variables:
  220. .. variable:: ExternalData_CUSTOM_LOCATION
  221. When a custom fetch script is loaded, this variable is set to the
  222. location part of the URL, which will contain the substituted hash
  223. algorithm name and content hash value.
  224. .. variable:: ExternalData_CUSTOM_FILE
  225. When a custom fetch script is loaded, this variable is set to the
  226. full path to a file in which the script must store the fetched
  227. content. The name of the file is unspecified and should not be
  228. interpreted in any way.
  229. The custom fetch script is expected to store fetched content in the
  230. file or set a variable:
  231. .. variable:: ExternalData_CUSTOM_ERROR
  232. When a custom fetch script fails to fetch the requested content,
  233. it must set this variable to a short one-line message describing
  234. the reason for failure.
  235. #]=======================================================================]
  236. #=============================================================================
  237. # Copyright 2010-2015 Kitware, Inc.
  238. #
  239. # Distributed under the OSI-approved BSD License (the "License");
  240. # see accompanying file Copyright.txt for details.
  241. #
  242. # This software is distributed WITHOUT ANY WARRANTY; without even the
  243. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  244. # See the License for more information.
  245. #=============================================================================
  246. # (To distribute this file outside of CMake, substitute the full
  247. # License text for the above reference.)
  248. function(ExternalData_add_test target)
  249. # Expand all arguments as a single string to preserve escaped semicolons.
  250. ExternalData_expand_arguments("${target}" testArgs "${ARGN}")
  251. add_test(${testArgs})
  252. endfunction()
  253. function(ExternalData_add_target target)
  254. if(NOT ExternalData_URL_TEMPLATES AND NOT ExternalData_OBJECT_STORES)
  255. message(FATAL_ERROR
  256. "Neither ExternalData_URL_TEMPLATES nor ExternalData_OBJECT_STORES is set!")
  257. endif()
  258. if(NOT ExternalData_OBJECT_STORES)
  259. set(ExternalData_OBJECT_STORES ${CMAKE_BINARY_DIR}/ExternalData/Objects)
  260. endif()
  261. set(_ExternalData_CONFIG_CODE "")
  262. # Store custom script configuration.
  263. foreach(url_template IN LISTS ExternalData_URL_TEMPLATES)
  264. if("${url_template}" MATCHES "^ExternalDataCustomScript://([^/]*)/(.*)$")
  265. set(key "${CMAKE_MATCH_1}")
  266. if(key MATCHES "^[A-Za-z_][A-Za-z0-9_]*$")
  267. if(ExternalData_CUSTOM_SCRIPT_${key})
  268. if(IS_ABSOLUTE "${ExternalData_CUSTOM_SCRIPT_${key}}")
  269. string(CONCAT _ExternalData_CONFIG_CODE "${_ExternalData_CONFIG_CODE}\n"
  270. "set(ExternalData_CUSTOM_SCRIPT_${key} \"${ExternalData_CUSTOM_SCRIPT_${key}}\")")
  271. else()
  272. message(FATAL_ERROR
  273. "No ExternalData_CUSTOM_SCRIPT_${key} is not set to a full path:\n"
  274. " ${ExternalData_CUSTOM_SCRIPT_${key}}")
  275. endif()
  276. else()
  277. message(FATAL_ERROR
  278. "No ExternalData_CUSTOM_SCRIPT_${key} is set for URL template:\n"
  279. " ${url_template}")
  280. endif()
  281. else()
  282. message(FATAL_ERROR
  283. "Bad ExternalDataCustomScript key '${key}' in URL template:\n"
  284. " ${url_template}\n"
  285. "The key must be a valid C identifier.")
  286. endif()
  287. endif()
  288. # Store custom algorithm name to URL component maps.
  289. if("${url_template}" MATCHES "%\\(algo:([^)]*)\\)")
  290. set(key "${CMAKE_MATCH_1}")
  291. if(key MATCHES "^[A-Za-z_][A-Za-z0-9_]*$")
  292. string(REPLACE "|" ";" _algos "${_ExternalData_REGEX_ALGO}")
  293. foreach(algo ${_algos})
  294. if(DEFINED ExternalData_URL_ALGO_${algo}_${key})
  295. string(CONCAT _ExternalData_CONFIG_CODE "${_ExternalData_CONFIG_CODE}\n"
  296. "set(ExternalData_URL_ALGO_${algo}_${key} \"${ExternalData_URL_ALGO_${algo}_${key}}\")")
  297. endif()
  298. endforeach()
  299. else()
  300. message(FATAL_ERROR
  301. "Bad %(algo:${key}) in URL template:\n"
  302. " ${url_template}\n"
  303. "The transform name must be a valid C identifier.")
  304. endif()
  305. endif()
  306. endforeach()
  307. # Store configuration for use by build-time script.
  308. set(config ${CMAKE_CURRENT_BINARY_DIR}/${target}_config.cmake)
  309. configure_file(${_ExternalData_SELF_DIR}/ExternalData_config.cmake.in ${config} @ONLY)
  310. set(files "")
  311. # Set "_ExternalData_FILE_${file}" for each output file to avoid duplicate
  312. # rules. Use local data first to prefer real files over content links.
  313. # Custom commands to copy or link local data.
  314. get_property(data_local GLOBAL PROPERTY _ExternalData_${target}_LOCAL)
  315. foreach(entry IN LISTS data_local)
  316. string(REPLACE "|" ";" tuple "${entry}")
  317. list(GET tuple 0 file)
  318. list(GET tuple 1 name)
  319. if(NOT DEFINED "_ExternalData_FILE_${file}")
  320. set("_ExternalData_FILE_${file}" 1)
  321. add_custom_command(
  322. COMMENT "Generating ${file}"
  323. OUTPUT "${file}"
  324. COMMAND ${CMAKE_COMMAND} -Drelative_top=${CMAKE_BINARY_DIR}
  325. -Dfile=${file} -Dname=${name}
  326. -DExternalData_ACTION=local
  327. -DExternalData_CONFIG=${config}
  328. -P ${_ExternalData_SELF}
  329. MAIN_DEPENDENCY "${name}"
  330. )
  331. list(APPEND files "${file}")
  332. endif()
  333. endforeach()
  334. # Custom commands to fetch remote data.
  335. get_property(data_fetch GLOBAL PROPERTY _ExternalData_${target}_FETCH)
  336. foreach(entry IN LISTS data_fetch)
  337. string(REPLACE "|" ";" tuple "${entry}")
  338. list(GET tuple 0 file)
  339. list(GET tuple 1 name)
  340. list(GET tuple 2 ext)
  341. set(stamp "${ext}-stamp")
  342. if(NOT DEFINED "_ExternalData_FILE_${file}")
  343. set("_ExternalData_FILE_${file}" 1)
  344. add_custom_command(
  345. # Users care about the data file, so hide the hash/timestamp file.
  346. COMMENT "Generating ${file}"
  347. # The hash/timestamp file is the output from the build perspective.
  348. # List the real file as a second output in case it is a broken link.
  349. # The files must be listed in this order so CMake can hide from the
  350. # make tool that a symlink target may not be newer than the input.
  351. OUTPUT "${file}${stamp}" "${file}"
  352. # Run the data fetch/update script.
  353. COMMAND ${CMAKE_COMMAND} -Drelative_top=${CMAKE_BINARY_DIR}
  354. -Dfile=${file} -Dname=${name} -Dext=${ext}
  355. -DExternalData_ACTION=fetch
  356. -DExternalData_CONFIG=${config}
  357. -P ${_ExternalData_SELF}
  358. # Update whenever the object hash changes.
  359. MAIN_DEPENDENCY "${name}${ext}"
  360. )
  361. list(APPEND files "${file}${stamp}")
  362. endif()
  363. endforeach()
  364. # Custom target to drive all update commands.
  365. add_custom_target(${target} ALL DEPENDS ${files})
  366. endfunction()
  367. function(ExternalData_expand_arguments target outArgsVar)
  368. # Replace DATA{} references with real arguments.
  369. set(data_regex "DATA{([^;{}\r\n]*)}")
  370. set(other_regex "([^D]|D[^A]|DA[^T]|DAT[^A]|DATA[^{])+|.")
  371. set(outArgs "")
  372. # This list expansion un-escapes semicolons in list element values so we
  373. # must re-escape them below anywhere a new list expansion will occur.
  374. foreach(arg IN LISTS ARGN)
  375. if("x${arg}" MATCHES "${data_regex}")
  376. # Re-escape in-value semicolons before expansion in foreach below.
  377. string(REPLACE ";" "\\;" tmp "${arg}")
  378. # Split argument into DATA{}-pieces and other pieces.
  379. string(REGEX MATCHALL "${data_regex}|${other_regex}" pieces "${tmp}")
  380. # Compose output argument with DATA{}-pieces replaced.
  381. set(outArg "")
  382. foreach(piece IN LISTS pieces)
  383. if("x${piece}" MATCHES "^x${data_regex}$")
  384. # Replace this DATA{}-piece with a file path.
  385. _ExternalData_arg("${target}" "${piece}" "${CMAKE_MATCH_1}" file)
  386. set(outArg "${outArg}${file}")
  387. else()
  388. # No replacement needed for this piece.
  389. set(outArg "${outArg}${piece}")
  390. endif()
  391. endforeach()
  392. else()
  393. # No replacements needed in this argument.
  394. set(outArg "${arg}")
  395. endif()
  396. # Re-escape in-value semicolons in resulting list.
  397. string(REPLACE ";" "\\;" outArg "${outArg}")
  398. list(APPEND outArgs "${outArg}")
  399. endforeach()
  400. set("${outArgsVar}" "${outArgs}" PARENT_SCOPE)
  401. endfunction()
  402. #-----------------------------------------------------------------------------
  403. # Private helper interface
  404. set(_ExternalData_REGEX_ALGO "MD5|SHA1|SHA224|SHA256|SHA384|SHA512")
  405. set(_ExternalData_REGEX_EXT "md5|sha1|sha224|sha256|sha384|sha512")
  406. set(_ExternalData_SELF "${CMAKE_CURRENT_LIST_FILE}")
  407. get_filename_component(_ExternalData_SELF_DIR "${_ExternalData_SELF}" PATH)
  408. function(_ExternalData_compute_hash var_hash algo file)
  409. if("${algo}" MATCHES "^${_ExternalData_REGEX_ALGO}$")
  410. file("${algo}" "${file}" hash)
  411. set("${var_hash}" "${hash}" PARENT_SCOPE)
  412. else()
  413. message(FATAL_ERROR "Hash algorithm ${algo} unimplemented.")
  414. endif()
  415. endfunction()
  416. function(_ExternalData_random var)
  417. string(RANDOM LENGTH 6 random)
  418. set("${var}" "${random}" PARENT_SCOPE)
  419. endfunction()
  420. function(_ExternalData_exact_regex regex_var string)
  421. string(REGEX REPLACE "([][+.*()^])" "\\\\\\1" regex "${string}")
  422. set("${regex_var}" "${regex}" PARENT_SCOPE)
  423. endfunction()
  424. function(_ExternalData_atomic_write file content)
  425. _ExternalData_random(random)
  426. set(tmp "${file}.tmp${random}")
  427. file(WRITE "${tmp}" "${content}")
  428. file(RENAME "${tmp}" "${file}")
  429. endfunction()
  430. function(_ExternalData_link_content name var_ext)
  431. if("${ExternalData_LINK_CONTENT}" MATCHES "^(${_ExternalData_REGEX_ALGO})$")
  432. set(algo "${ExternalData_LINK_CONTENT}")
  433. else()
  434. message(FATAL_ERROR
  435. "Unknown hash algorithm specified by ExternalData_LINK_CONTENT:\n"
  436. " ${ExternalData_LINK_CONTENT}")
  437. endif()
  438. _ExternalData_compute_hash(hash "${algo}" "${name}")
  439. get_filename_component(dir "${name}" PATH)
  440. set(staged "${dir}/.ExternalData_${algo}_${hash}")
  441. string(TOLOWER ".${algo}" ext)
  442. _ExternalData_atomic_write("${name}${ext}" "${hash}\n")
  443. file(RENAME "${name}" "${staged}")
  444. set("${var_ext}" "${ext}" PARENT_SCOPE)
  445. file(RELATIVE_PATH relname "${ExternalData_SOURCE_ROOT}" "${name}${ext}")
  446. message(STATUS "Linked ${relname} to ExternalData ${algo}/${hash}")
  447. endfunction()
  448. function(_ExternalData_arg target arg options var_file)
  449. # Separate data path from the options.
  450. string(REPLACE "," ";" options "${options}")
  451. list(GET options 0 data)
  452. list(REMOVE_AT options 0)
  453. # Interpret trailing slashes as directories.
  454. set(data_is_directory 0)
  455. if("x${data}" MATCHES "^x(.*)([/\\])$")
  456. set(data_is_directory 1)
  457. set(data "${CMAKE_MATCH_1}")
  458. endif()
  459. # Convert to full path.
  460. if(IS_ABSOLUTE "${data}")
  461. set(absdata "${data}")
  462. else()
  463. set(absdata "${CMAKE_CURRENT_SOURCE_DIR}/${data}")
  464. endif()
  465. get_filename_component(absdata "${absdata}" ABSOLUTE)
  466. # Convert to relative path under the source tree.
  467. if(NOT ExternalData_SOURCE_ROOT)
  468. set(ExternalData_SOURCE_ROOT "${CMAKE_SOURCE_DIR}")
  469. endif()
  470. set(top_src "${ExternalData_SOURCE_ROOT}")
  471. file(RELATIVE_PATH reldata "${top_src}" "${absdata}")
  472. if(IS_ABSOLUTE "${reldata}" OR "${reldata}" MATCHES "^\\.\\./")
  473. message(FATAL_ERROR "Data file referenced by argument\n"
  474. " ${arg}\n"
  475. "does not lie under the top-level source directory\n"
  476. " ${top_src}\n")
  477. endif()
  478. if(data_is_directory AND NOT IS_DIRECTORY "${top_src}/${reldata}")
  479. message(FATAL_ERROR "Data directory referenced by argument\n"
  480. " ${arg}\n"
  481. "corresponds to source tree path\n"
  482. " ${reldata}\n"
  483. "that does not exist as a directory!")
  484. endif()
  485. if(NOT ExternalData_BINARY_ROOT)
  486. set(ExternalData_BINARY_ROOT "${CMAKE_BINARY_DIR}")
  487. endif()
  488. set(top_bin "${ExternalData_BINARY_ROOT}")
  489. # Handle in-source builds gracefully.
  490. if("${top_src}" STREQUAL "${top_bin}")
  491. if(ExternalData_LINK_CONTENT)
  492. message(WARNING "ExternalData_LINK_CONTENT cannot be used in-source")
  493. set(ExternalData_LINK_CONTENT 0)
  494. endif()
  495. set(top_same 1)
  496. endif()
  497. set(external "") # Entries external to the source tree.
  498. set(internal "") # Entries internal to the source tree.
  499. set(have_original ${data_is_directory})
  500. set(have_original_as_dir 0)
  501. # Process options.
  502. set(series_option "")
  503. set(recurse_option "")
  504. set(associated_files "")
  505. set(associated_regex "")
  506. foreach(opt ${options})
  507. # Regular expression to match associated files.
  508. if("x${opt}" MATCHES "^xREGEX:([^:/]+)$")
  509. list(APPEND associated_regex "${CMAKE_MATCH_1}")
  510. elseif(opt STREQUAL ":")
  511. # Activate series matching.
  512. set(series_option "${opt}")
  513. elseif(opt STREQUAL "RECURSE:")
  514. # Activate recursive matching in directories.
  515. set(recurse_option "${opt}")
  516. elseif("x${opt}" MATCHES "^[^][:/*?]+$")
  517. # Specific associated file.
  518. list(APPEND associated_files "${opt}")
  519. else()
  520. message(FATAL_ERROR "Unknown option \"${opt}\" in argument\n"
  521. " ${arg}\n")
  522. endif()
  523. endforeach()
  524. if(series_option)
  525. if(data_is_directory)
  526. message(FATAL_ERROR "Series option \"${series_option}\" not allowed with directories.")
  527. endif()
  528. if(associated_files OR associated_regex)
  529. message(FATAL_ERROR "Series option \"${series_option}\" not allowed with associated files.")
  530. endif()
  531. if(recurse_option)
  532. message(FATAL_ERROR "Recurse option \"${recurse_option}\" allowed only with directories.")
  533. endif()
  534. # Load a whole file series.
  535. _ExternalData_arg_series()
  536. elseif(data_is_directory)
  537. if(associated_files OR associated_regex)
  538. # Load listed/matching associated files in the directory.
  539. _ExternalData_arg_associated()
  540. else()
  541. message(FATAL_ERROR "Data directory referenced by argument\n"
  542. " ${arg}\n"
  543. "must list associated files.")
  544. endif()
  545. else()
  546. if(recurse_option)
  547. message(FATAL_ERROR "Recurse option \"${recurse_option}\" allowed only with directories.")
  548. endif()
  549. # Load the named data file.
  550. _ExternalData_arg_single()
  551. if(associated_files OR associated_regex)
  552. # Load listed/matching associated files.
  553. _ExternalData_arg_associated()
  554. endif()
  555. endif()
  556. if(NOT have_original)
  557. if(have_original_as_dir)
  558. set(msg_kind FATAL_ERROR)
  559. set(msg "that is directory instead of a file!")
  560. else()
  561. set(msg_kind AUTHOR_WARNING)
  562. set(msg "that does not exist as a file (with or without an extension)!")
  563. endif()
  564. message(${msg_kind} "Data file referenced by argument\n"
  565. " ${arg}\n"
  566. "corresponds to source tree path\n"
  567. " ${reldata}\n"
  568. "${msg}")
  569. endif()
  570. if(external)
  571. # Make the series available in the build tree.
  572. set_property(GLOBAL APPEND PROPERTY
  573. _ExternalData_${target}_FETCH "${external}")
  574. set_property(GLOBAL APPEND PROPERTY
  575. _ExternalData_${target}_LOCAL "${internal}")
  576. set("${var_file}" "${top_bin}/${reldata}" PARENT_SCOPE)
  577. else()
  578. # The whole series is in the source tree.
  579. set("${var_file}" "${top_src}/${reldata}" PARENT_SCOPE)
  580. endif()
  581. endfunction()
  582. macro(_ExternalData_arg_associated)
  583. # Associated files lie in the same directory.
  584. if(data_is_directory)
  585. set(reldir "${reldata}")
  586. else()
  587. get_filename_component(reldir "${reldata}" PATH)
  588. endif()
  589. if(reldir)
  590. set(reldir "${reldir}/")
  591. endif()
  592. _ExternalData_exact_regex(reldir_regex "${reldir}")
  593. if(recurse_option)
  594. set(glob GLOB_RECURSE)
  595. set(reldir_regex "${reldir_regex}(.+/)?")
  596. else()
  597. set(glob GLOB)
  598. endif()
  599. # Find files named explicitly.
  600. foreach(file ${associated_files})
  601. _ExternalData_exact_regex(file_regex "${file}")
  602. _ExternalData_arg_find_files(${glob} "${reldir}${file}"
  603. "${reldir_regex}${file_regex}")
  604. endforeach()
  605. # Find files matching the given regular expressions.
  606. set(all "")
  607. set(sep "")
  608. foreach(regex ${associated_regex})
  609. set(all "${all}${sep}${reldir_regex}${regex}")
  610. set(sep "|")
  611. endforeach()
  612. _ExternalData_arg_find_files(${glob} "${reldir}" "${all}")
  613. endmacro()
  614. macro(_ExternalData_arg_single)
  615. # Match only the named data by itself.
  616. _ExternalData_exact_regex(data_regex "${reldata}")
  617. _ExternalData_arg_find_files(GLOB "${reldata}" "${data_regex}")
  618. endmacro()
  619. macro(_ExternalData_arg_series)
  620. # Configure series parsing and matching.
  621. set(series_parse_prefix "")
  622. set(series_parse_number "\\1")
  623. set(series_parse_suffix "\\2")
  624. if(ExternalData_SERIES_PARSE)
  625. if(ExternalData_SERIES_PARSE_NUMBER AND ExternalData_SERIES_PARSE_SUFFIX)
  626. if(ExternalData_SERIES_PARSE_PREFIX)
  627. set(series_parse_prefix "\\${ExternalData_SERIES_PARSE_PREFIX}")
  628. endif()
  629. set(series_parse_number "\\${ExternalData_SERIES_PARSE_NUMBER}")
  630. set(series_parse_suffix "\\${ExternalData_SERIES_PARSE_SUFFIX}")
  631. elseif(NOT "x${ExternalData_SERIES_PARSE}" MATCHES "^x\\([^()]*\\)\\([^()]*\\)\\$$")
  632. message(FATAL_ERROR
  633. "ExternalData_SERIES_PARSE is set to\n"
  634. " ${ExternalData_SERIES_PARSE}\n"
  635. "which is not of the form\n"
  636. " (<number>)(<suffix>)$\n"
  637. "Fix the regular expression or set variables\n"
  638. " ExternalData_SERIES_PARSE_PREFIX = <prefix> regex group number, if any\n"
  639. " ExternalData_SERIES_PARSE_NUMBER = <number> regex group number\n"
  640. " ExternalData_SERIES_PARSE_SUFFIX = <suffix> regex group number\n"
  641. )
  642. endif()
  643. set(series_parse "${ExternalData_SERIES_PARSE}")
  644. else()
  645. set(series_parse "([0-9]*)(\\.[^./]*)$")
  646. endif()
  647. if(ExternalData_SERIES_MATCH)
  648. set(series_match "${ExternalData_SERIES_MATCH}")
  649. else()
  650. set(series_match "[_.-]?[0-9]*")
  651. endif()
  652. # Parse the base, number, and extension components of the series.
  653. string(REGEX REPLACE "${series_parse}" "${series_parse_prefix};${series_parse_number};${series_parse_suffix}" tuple "${reldata}")
  654. list(LENGTH tuple len)
  655. if(NOT "${len}" EQUAL 3)
  656. message(FATAL_ERROR "Data file referenced by argument\n"
  657. " ${arg}\n"
  658. "corresponds to path\n"
  659. " ${reldata}\n"
  660. "that does not match regular expression\n"
  661. " ${series_parse}")
  662. endif()
  663. list(GET tuple 0 relbase)
  664. list(GET tuple 2 ext)
  665. # Glob files that might match the series.
  666. # Then match base, number, and extension.
  667. _ExternalData_exact_regex(series_base "${relbase}")
  668. _ExternalData_exact_regex(series_ext "${ext}")
  669. _ExternalData_arg_find_files(GLOB "${relbase}*${ext}"
  670. "${series_base}${series_match}${series_ext}")
  671. endmacro()
  672. function(_ExternalData_arg_find_files glob pattern regex)
  673. cmake_policy(PUSH)
  674. cmake_policy(SET CMP0009 NEW)
  675. file(${glob} globbed RELATIVE "${top_src}" "${top_src}/${pattern}*")
  676. cmake_policy(POP)
  677. foreach(entry IN LISTS globbed)
  678. if("x${entry}" MATCHES "^x(.*)(\\.(${_ExternalData_REGEX_EXT}))$")
  679. set(relname "${CMAKE_MATCH_1}")
  680. set(alg "${CMAKE_MATCH_2}")
  681. else()
  682. set(relname "${entry}")
  683. set(alg "")
  684. endif()
  685. if("x${relname}" MATCHES "^x${regex}$" # matches
  686. AND NOT "x${relname}" MATCHES "(^x|/)\\.ExternalData_" # not staged obj
  687. )
  688. if(IS_DIRECTORY "${top_src}/${entry}")
  689. if("${relname}" STREQUAL "${reldata}")
  690. set(have_original_as_dir 1)
  691. endif()
  692. else()
  693. set(name "${top_src}/${relname}")
  694. set(file "${top_bin}/${relname}")
  695. if(alg)
  696. list(APPEND external "${file}|${name}|${alg}")
  697. elseif(ExternalData_LINK_CONTENT)
  698. _ExternalData_link_content("${name}" alg)
  699. list(APPEND external "${file}|${name}|${alg}")
  700. elseif(NOT top_same)
  701. list(APPEND internal "${file}|${name}")
  702. endif()
  703. if("${relname}" STREQUAL "${reldata}")
  704. set(have_original 1)
  705. endif()
  706. endif()
  707. endif()
  708. endforeach()
  709. set(external "${external}" PARENT_SCOPE)
  710. set(internal "${internal}" PARENT_SCOPE)
  711. set(have_original "${have_original}" PARENT_SCOPE)
  712. set(have_original_as_dir "${have_original_as_dir}" PARENT_SCOPE)
  713. endfunction()
  714. #-----------------------------------------------------------------------------
  715. # Private script mode interface
  716. if(CMAKE_GENERATOR OR NOT ExternalData_ACTION)
  717. return()
  718. endif()
  719. if(ExternalData_CONFIG)
  720. include(${ExternalData_CONFIG})
  721. endif()
  722. if(NOT ExternalData_URL_TEMPLATES AND NOT ExternalData_OBJECT_STORES)
  723. message(FATAL_ERROR
  724. "Neither ExternalData_URL_TEMPLATES nor ExternalData_OBJECT_STORES is set!")
  725. endif()
  726. function(_ExternalData_link_or_copy src dst)
  727. # Create a temporary file first.
  728. get_filename_component(dst_dir "${dst}" PATH)
  729. file(MAKE_DIRECTORY "${dst_dir}")
  730. _ExternalData_random(random)
  731. set(tmp "${dst}.tmp${random}")
  732. if(UNIX AND NOT ExternalData_NO_SYMLINKS)
  733. # Create a symbolic link.
  734. set(tgt "${src}")
  735. if(relative_top)
  736. # Use relative path if files are close enough.
  737. file(RELATIVE_PATH relsrc "${relative_top}" "${src}")
  738. file(RELATIVE_PATH relfile "${relative_top}" "${dst}")
  739. if(NOT IS_ABSOLUTE "${relsrc}" AND NOT "${relsrc}" MATCHES "^\\.\\./" AND
  740. NOT IS_ABSOLUTE "${reldst}" AND NOT "${reldst}" MATCHES "^\\.\\./")
  741. file(RELATIVE_PATH tgt "${dst_dir}" "${src}")
  742. endif()
  743. endif()
  744. execute_process(COMMAND "${CMAKE_COMMAND}" -E create_symlink "${tgt}" "${tmp}" RESULT_VARIABLE result)
  745. else()
  746. # Create a copy.
  747. execute_process(COMMAND "${CMAKE_COMMAND}" -E copy "${src}" "${tmp}" RESULT_VARIABLE result)
  748. endif()
  749. if(result)
  750. file(REMOVE "${tmp}")
  751. message(FATAL_ERROR "Failed to create\n ${tmp}\nfrom\n ${obj}")
  752. endif()
  753. # Atomically create/replace the real destination.
  754. file(RENAME "${tmp}" "${dst}")
  755. endfunction()
  756. function(_ExternalData_download_file url file err_var msg_var)
  757. set(retry 3)
  758. while(retry)
  759. math(EXPR retry "${retry} - 1")
  760. if(ExternalData_TIMEOUT_INACTIVITY)
  761. set(inactivity_timeout INACTIVITY_TIMEOUT ${ExternalData_TIMEOUT_INACTIVITY})
  762. elseif(NOT "${ExternalData_TIMEOUT_INACTIVITY}" EQUAL 0)
  763. set(inactivity_timeout INACTIVITY_TIMEOUT 60)
  764. else()
  765. set(inactivity_timeout "")
  766. endif()
  767. if(ExternalData_TIMEOUT_ABSOLUTE)
  768. set(absolute_timeout TIMEOUT ${ExternalData_TIMEOUT_ABSOLUTE})
  769. elseif(NOT "${ExternalData_TIMEOUT_ABSOLUTE}" EQUAL 0)
  770. set(absolute_timeout TIMEOUT 300)
  771. else()
  772. set(absolute_timeout "")
  773. endif()
  774. file(DOWNLOAD "${url}" "${file}" STATUS status LOG log ${inactivity_timeout} ${absolute_timeout} SHOW_PROGRESS)
  775. list(GET status 0 err)
  776. list(GET status 1 msg)
  777. if(err)
  778. if("${msg}" MATCHES "HTTP response code said error" AND
  779. "${log}" MATCHES "error: 503")
  780. set(msg "temporarily unavailable")
  781. endif()
  782. elseif("${log}" MATCHES "\nHTTP[^\n]* 503")
  783. set(err TRUE)
  784. set(msg "temporarily unavailable")
  785. endif()
  786. if(NOT err OR NOT "${msg}" MATCHES "partial|timeout|temporarily")
  787. break()
  788. elseif(retry)
  789. message(STATUS "[download terminated: ${msg}, retries left: ${retry}]")
  790. endif()
  791. endwhile()
  792. set("${err_var}" "${err}" PARENT_SCOPE)
  793. set("${msg_var}" "${msg}" PARENT_SCOPE)
  794. endfunction()
  795. function(_ExternalData_custom_fetch key loc file err_var msg_var)
  796. if(NOT ExternalData_CUSTOM_SCRIPT_${key})
  797. set(err 1)
  798. set(msg "No ExternalData_CUSTOM_SCRIPT_${key} set!")
  799. elseif(NOT EXISTS "${ExternalData_CUSTOM_SCRIPT_${key}}")
  800. set(err 1)
  801. set(msg "No '${ExternalData_CUSTOM_SCRIPT_${key}}' exists!")
  802. else()
  803. set(ExternalData_CUSTOM_LOCATION "${loc}")
  804. set(ExternalData_CUSTOM_FILE "${file}")
  805. unset(ExternalData_CUSTOM_ERROR)
  806. include("${ExternalData_CUSTOM_SCRIPT_${key}}")
  807. if(DEFINED ExternalData_CUSTOM_ERROR)
  808. set(err 1)
  809. set(msg "${ExternalData_CUSTOM_ERROR}")
  810. else()
  811. set(err 0)
  812. set(msg "no error")
  813. endif()
  814. endif()
  815. set("${err_var}" "${err}" PARENT_SCOPE)
  816. set("${msg_var}" "${msg}" PARENT_SCOPE)
  817. endfunction()
  818. function(_ExternalData_download_object name hash algo var_obj)
  819. # Search all object stores for an existing object.
  820. foreach(dir ${ExternalData_OBJECT_STORES})
  821. set(obj "${dir}/${algo}/${hash}")
  822. if(EXISTS "${obj}")
  823. message(STATUS "Found object: \"${obj}\"")
  824. set("${var_obj}" "${obj}" PARENT_SCOPE)
  825. return()
  826. endif()
  827. endforeach()
  828. # Download object to the first store.
  829. list(GET ExternalData_OBJECT_STORES 0 store)
  830. set(obj "${store}/${algo}/${hash}")
  831. _ExternalData_random(random)
  832. set(tmp "${obj}.tmp${random}")
  833. set(found 0)
  834. set(tried "")
  835. foreach(url_template IN LISTS ExternalData_URL_TEMPLATES)
  836. string(REPLACE "%(hash)" "${hash}" url_tmp "${url_template}")
  837. string(REPLACE "%(algo)" "${algo}" url "${url_tmp}")
  838. if(url MATCHES "^(.*)%\\(algo:([A-Za-z_][A-Za-z0-9_]*)\\)(.*)$")
  839. set(lhs "${CMAKE_MATCH_1}")
  840. set(key "${CMAKE_MATCH_2}")
  841. set(rhs "${CMAKE_MATCH_3}")
  842. if(DEFINED ExternalData_URL_ALGO_${algo}_${key})
  843. set(url "${lhs}${ExternalData_URL_ALGO_${algo}_${key}}${rhs}")
  844. else()
  845. set(url "${lhs}${algo}${rhs}")
  846. endif()
  847. endif()
  848. message(STATUS "Fetching \"${url}\"")
  849. if(url MATCHES "^ExternalDataCustomScript://([A-Za-z_][A-Za-z0-9_]*)/(.*)$")
  850. _ExternalData_custom_fetch("${CMAKE_MATCH_1}" "${CMAKE_MATCH_2}" "${tmp}" err errMsg)
  851. else()
  852. _ExternalData_download_file("${url}" "${tmp}" err errMsg)
  853. endif()
  854. set(tried "${tried}\n ${url}")
  855. if(err)
  856. set(tried "${tried} (${errMsg})")
  857. else()
  858. # Verify downloaded object.
  859. _ExternalData_compute_hash(dl_hash "${algo}" "${tmp}")
  860. if("${dl_hash}" STREQUAL "${hash}")
  861. set(found 1)
  862. break()
  863. else()
  864. set(tried "${tried} (wrong hash ${algo}=${dl_hash})")
  865. if("$ENV{ExternalData_DEBUG_DOWNLOAD}" MATCHES ".")
  866. file(RENAME "${tmp}" "${store}/${algo}/${dl_hash}")
  867. endif()
  868. endif()
  869. endif()
  870. file(REMOVE "${tmp}")
  871. endforeach()
  872. get_filename_component(dir "${name}" PATH)
  873. set(staged "${dir}/.ExternalData_${algo}_${hash}")
  874. if(found)
  875. file(RENAME "${tmp}" "${obj}")
  876. message(STATUS "Downloaded object: \"${obj}\"")
  877. elseif(EXISTS "${staged}")
  878. set(obj "${staged}")
  879. message(STATUS "Staged object: \"${obj}\"")
  880. else()
  881. if(NOT tried)
  882. set(tried "\n (No ExternalData_URL_TEMPLATES given)")
  883. endif()
  884. message(FATAL_ERROR "Object ${algo}=${hash} not found at:${tried}")
  885. endif()
  886. set("${var_obj}" "${obj}" PARENT_SCOPE)
  887. endfunction()
  888. if("${ExternalData_ACTION}" STREQUAL "fetch")
  889. foreach(v ExternalData_OBJECT_STORES file name ext)
  890. if(NOT DEFINED "${v}")
  891. message(FATAL_ERROR "No \"-D${v}=\" value provided!")
  892. endif()
  893. endforeach()
  894. file(READ "${name}${ext}" hash)
  895. string(STRIP "${hash}" hash)
  896. if("${ext}" MATCHES "^\\.(${_ExternalData_REGEX_EXT})$")
  897. string(TOUPPER "${CMAKE_MATCH_1}" algo)
  898. else()
  899. message(FATAL_ERROR "Unknown hash algorithm extension \"${ext}\"")
  900. endif()
  901. _ExternalData_download_object("${name}" "${hash}" "${algo}" obj)
  902. # Check if file already corresponds to the object.
  903. set(stamp "${ext}-stamp")
  904. set(file_up_to_date 0)
  905. if(EXISTS "${file}" AND EXISTS "${file}${stamp}")
  906. file(READ "${file}${stamp}" f_hash)
  907. string(STRIP "${f_hash}" f_hash)
  908. if("${f_hash}" STREQUAL "${hash}")
  909. #message(STATUS "File already corresponds to object")
  910. set(file_up_to_date 1)
  911. endif()
  912. endif()
  913. if(file_up_to_date)
  914. # Touch the file to convince the build system it is up to date.
  915. execute_process(COMMAND "${CMAKE_COMMAND}" -E touch "${file}")
  916. else()
  917. _ExternalData_link_or_copy("${obj}" "${file}")
  918. endif()
  919. # Atomically update the hash/timestamp file to record the object referenced.
  920. _ExternalData_atomic_write("${file}${stamp}" "${hash}\n")
  921. elseif("${ExternalData_ACTION}" STREQUAL "local")
  922. foreach(v file name)
  923. if(NOT DEFINED "${v}")
  924. message(FATAL_ERROR "No \"-D${v}=\" value provided!")
  925. endif()
  926. endforeach()
  927. _ExternalData_link_or_copy("${name}" "${file}")
  928. else()
  929. message(FATAL_ERROR "Unknown ExternalData_ACTION=[${ExternalData_ACTION}]")
  930. endif()