Mercurial > hg > orthanc
annotate Resources/CMake/DownloadPackage.cmake @ 3084:195ba4cbac3f db-changes
reorganization
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 04 Jan 2019 16:42:55 +0100 |
parents | f5ce33d3295c |
children | 5d78df37c62f |
rev | line source |
---|---|
735 | 1 macro(GetUrlFilename TargetVariable Url) |
2 string(REGEX REPLACE "^.*/" "" ${TargetVariable} "${Url}") | |
3 endmacro() | |
4 | |
5 | |
6 macro(GetUrlExtension TargetVariable Url) | |
7 #string(REGEX REPLACE "^.*/[^.]*\\." "" TMP "${Url}") | |
8 string(REGEX REPLACE "^.*\\." "" TMP "${Url}") | |
9 string(TOLOWER "${TMP}" "${TargetVariable}") | |
10 endmacro() | |
11 | |
12 | |
1537
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1111
diff
changeset
|
13 |
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1111
diff
changeset
|
14 ## |
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1111
diff
changeset
|
15 ## Setup the patch command-line tool |
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1111
diff
changeset
|
16 ## |
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1111
diff
changeset
|
17 |
2130
72cb107a7346
option ORTHANC_DISABLE_PATCH
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2111
diff
changeset
|
18 if (NOT ORTHANC_DISABLE_PATCH) |
72cb107a7346
option ORTHANC_DISABLE_PATCH
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2111
diff
changeset
|
19 if ("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "Windows") |
72cb107a7346
option ORTHANC_DISABLE_PATCH
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2111
diff
changeset
|
20 set(PATCH_EXECUTABLE ${CMAKE_CURRENT_LIST_DIR}/../ThirdParty/patch/patch.exe) |
72cb107a7346
option ORTHANC_DISABLE_PATCH
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2111
diff
changeset
|
21 if (NOT EXISTS ${PATCH_EXECUTABLE}) |
72cb107a7346
option ORTHANC_DISABLE_PATCH
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2111
diff
changeset
|
22 message(FATAL_ERROR "Unable to find the patch.exe tool that is shipped with Orthanc") |
72cb107a7346
option ORTHANC_DISABLE_PATCH
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2111
diff
changeset
|
23 endif() |
2111 | 24 |
2130
72cb107a7346
option ORTHANC_DISABLE_PATCH
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2111
diff
changeset
|
25 else () |
72cb107a7346
option ORTHANC_DISABLE_PATCH
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2111
diff
changeset
|
26 find_program(PATCH_EXECUTABLE patch) |
72cb107a7346
option ORTHANC_DISABLE_PATCH
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2111
diff
changeset
|
27 if (${PATCH_EXECUTABLE} MATCHES "PATCH_EXECUTABLE-NOTFOUND") |
72cb107a7346
option ORTHANC_DISABLE_PATCH
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2111
diff
changeset
|
28 message(FATAL_ERROR "Please install the 'patch' standard command-line tool") |
72cb107a7346
option ORTHANC_DISABLE_PATCH
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2111
diff
changeset
|
29 endif() |
1537
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1111
diff
changeset
|
30 endif() |
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1111
diff
changeset
|
31 endif() |
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1111
diff
changeset
|
32 |
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1111
diff
changeset
|
33 |
fbf763bb1fa3
error detection in patches
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1111
diff
changeset
|
34 |
735 | 35 ## |
36 ## Check the existence of the required decompression tools | |
37 ## | |
38 | |
39 if ("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "Windows") | |
1111
929bf8c2123d
Fixes for Visual Studio 2013 64bit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
735
diff
changeset
|
40 find_program(ZIP_EXECUTABLE 7z |
929bf8c2123d
Fixes for Visual Studio 2013 64bit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
735
diff
changeset
|
41 PATHS |
929bf8c2123d
Fixes for Visual Studio 2013 64bit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
735
diff
changeset
|
42 "$ENV{ProgramFiles}/7-Zip" |
929bf8c2123d
Fixes for Visual Studio 2013 64bit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
735
diff
changeset
|
43 "$ENV{ProgramW6432}/7-Zip" |
929bf8c2123d
Fixes for Visual Studio 2013 64bit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
735
diff
changeset
|
44 ) |
929bf8c2123d
Fixes for Visual Studio 2013 64bit
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
735
diff
changeset
|
45 |
735 | 46 if (${ZIP_EXECUTABLE} MATCHES "ZIP_EXECUTABLE-NOTFOUND") |
47 message(FATAL_ERROR "Please install the '7-zip' software (http://www.7-zip.org/)") | |
48 endif() | |
49 | |
50 else() | |
51 find_program(UNZIP_EXECUTABLE unzip) | |
52 if (${UNZIP_EXECUTABLE} MATCHES "UNZIP_EXECUTABLE-NOTFOUND") | |
53 message(FATAL_ERROR "Please install the 'unzip' package") | |
54 endif() | |
55 | |
56 find_program(TAR_EXECUTABLE tar) | |
57 if (${TAR_EXECUTABLE} MATCHES "TAR_EXECUTABLE-NOTFOUND") | |
58 message(FATAL_ERROR "Please install the 'tar' package") | |
59 endif() | |
60 endif() | |
61 | |
62 | |
63 macro(DownloadPackage MD5 Url TargetDirectory) | |
64 if (NOT IS_DIRECTORY "${TargetDirectory}") | |
65 GetUrlFilename(TMP_FILENAME "${Url}") | |
66 | |
67 set(TMP_PATH "${CMAKE_SOURCE_DIR}/ThirdPartyDownloads/${TMP_FILENAME}") | |
68 if (NOT EXISTS "${TMP_PATH}") | |
69 message("Downloading ${Url}") | |
70 | |
71 # This fixes issue 6: "I think cmake shouldn't download the | |
72 # packages which are not in the system, it should stop and let | |
73 # user know." | |
74 # https://code.google.com/p/orthanc/issues/detail?id=6 | |
75 if (NOT STATIC_BUILD AND NOT ALLOW_DOWNLOADS) | |
2855
706da802f1e3
fix checking of MD5 in CMake, new option "no-check" for MD5
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2852
diff
changeset
|
76 message(FATAL_ERROR "CMake is not allowed to download from Internet. Please set the ALLOW_DOWNLOADS option to ON") |
735 | 77 endif() |
78 | |
2855
706da802f1e3
fix checking of MD5 in CMake, new option "no-check" for MD5
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2852
diff
changeset
|
79 if ("${MD5}" STREQUAL "no-check") |
706da802f1e3
fix checking of MD5 in CMake, new option "no-check" for MD5
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2852
diff
changeset
|
80 message(WARNING "Not checking the MD5 of: ${Url}") |
2890
f5ce33d3295c
increased DownloadPackage Timeout since we've seen that 60sec is not always enough
am@osimis.io
parents:
2855
diff
changeset
|
81 file(DOWNLOAD "${Url}" "${TMP_PATH}" SHOW_PROGRESS TIMEOUT 300 INACTIVITY_TIMEOUT 60) |
2855
706da802f1e3
fix checking of MD5 in CMake, new option "no-check" for MD5
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2852
diff
changeset
|
82 else() |
2890
f5ce33d3295c
increased DownloadPackage Timeout since we've seen that 60sec is not always enough
am@osimis.io
parents:
2855
diff
changeset
|
83 file(DOWNLOAD "${Url}" "${TMP_PATH}" SHOW_PROGRESS TIMEOUT 300 INACTIVITY_TIMEOUT 60 EXPECTED_MD5 "${MD5}") |
2852
d4f44a8028a1
allow passing FALSE as expeted MD5 in DownloadPackage when we don't wan't to check the MD5
am@osimis.io
parents:
2530
diff
changeset
|
84 endif() |
d4f44a8028a1
allow passing FALSE as expeted MD5 in DownloadPackage when we don't wan't to check the MD5
am@osimis.io
parents:
2530
diff
changeset
|
85 |
735 | 86 else() |
87 message("Using local copy of ${Url}") | |
2530
3eda46f91834
check md5 of previously downloaded files
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2154
diff
changeset
|
88 |
2855
706da802f1e3
fix checking of MD5 in CMake, new option "no-check" for MD5
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2852
diff
changeset
|
89 if ("${MD5}" STREQUAL "no-check") |
706da802f1e3
fix checking of MD5 in CMake, new option "no-check" for MD5
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2852
diff
changeset
|
90 message(WARNING "Not checking the MD5 of: ${Url}") |
706da802f1e3
fix checking of MD5 in CMake, new option "no-check" for MD5
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2852
diff
changeset
|
91 else() |
2852
d4f44a8028a1
allow passing FALSE as expeted MD5 in DownloadPackage when we don't wan't to check the MD5
am@osimis.io
parents:
2530
diff
changeset
|
92 file(MD5 ${TMP_PATH} ActualMD5) |
d4f44a8028a1
allow passing FALSE as expeted MD5 in DownloadPackage when we don't wan't to check the MD5
am@osimis.io
parents:
2530
diff
changeset
|
93 if (NOT "${ActualMD5}" STREQUAL "${MD5}") |
d4f44a8028a1
allow passing FALSE as expeted MD5 in DownloadPackage when we don't wan't to check the MD5
am@osimis.io
parents:
2530
diff
changeset
|
94 message(FATAL_ERROR "The MD5 hash of a previously download file is invalid: ${TMP_PATH}") |
d4f44a8028a1
allow passing FALSE as expeted MD5 in DownloadPackage when we don't wan't to check the MD5
am@osimis.io
parents:
2530
diff
changeset
|
95 endif() |
2530
3eda46f91834
check md5 of previously downloaded files
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2154
diff
changeset
|
96 endif() |
735 | 97 endif() |
98 | |
99 GetUrlExtension(TMP_EXTENSION "${Url}") | |
100 #message(${TMP_EXTENSION}) | |
101 message("Uncompressing ${TMP_FILENAME}") | |
102 | |
103 if ("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "Windows") | |
104 # How to silently extract files using 7-zip | |
105 # http://superuser.com/questions/331148/7zip-command-line-extract-silently-quietly | |
106 | |
2001
1d3a7c7d84c1
download of xz packages
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1543
diff
changeset
|
107 if (("${TMP_EXTENSION}" STREQUAL "gz") OR |
1d3a7c7d84c1
download of xz packages
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1543
diff
changeset
|
108 ("${TMP_EXTENSION}" STREQUAL "tgz") OR |
1d3a7c7d84c1
download of xz packages
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1543
diff
changeset
|
109 ("${TMP_EXTENSION}" STREQUAL "xz")) |
735 | 110 execute_process( |
111 COMMAND ${ZIP_EXECUTABLE} e -y ${TMP_PATH} | |
112 WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | |
113 RESULT_VARIABLE Failure | |
114 OUTPUT_QUIET | |
115 ) | |
116 | |
117 if (Failure) | |
118 message(FATAL_ERROR "Error while running the uncompression tool") | |
119 endif() | |
120 | |
121 if ("${TMP_EXTENSION}" STREQUAL "tgz") | |
122 string(REGEX REPLACE ".tgz$" ".tar" TMP_FILENAME2 "${TMP_FILENAME}") | |
2001
1d3a7c7d84c1
download of xz packages
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1543
diff
changeset
|
123 elseif ("${TMP_EXTENSION}" STREQUAL "gz") |
735 | 124 string(REGEX REPLACE ".gz$" "" TMP_FILENAME2 "${TMP_FILENAME}") |
2001
1d3a7c7d84c1
download of xz packages
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1543
diff
changeset
|
125 elseif ("${TMP_EXTENSION}" STREQUAL "xz") |
1d3a7c7d84c1
download of xz packages
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1543
diff
changeset
|
126 string(REGEX REPLACE ".xz" "" TMP_FILENAME2 "${TMP_FILENAME}") |
735 | 127 endif() |
128 | |
129 execute_process( | |
130 COMMAND ${ZIP_EXECUTABLE} x -y ${TMP_FILENAME2} | |
131 WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | |
132 RESULT_VARIABLE Failure | |
133 OUTPUT_QUIET | |
134 ) | |
135 elseif ("${TMP_EXTENSION}" STREQUAL "zip") | |
136 execute_process( | |
137 COMMAND ${ZIP_EXECUTABLE} x -y ${TMP_PATH} | |
138 WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | |
139 RESULT_VARIABLE Failure | |
140 OUTPUT_QUIET | |
141 ) | |
142 else() | |
143 message(FATAL_ERROR "Support your platform here") | |
144 endif() | |
145 | |
146 else() | |
147 if ("${TMP_EXTENSION}" STREQUAL "zip") | |
148 execute_process( | |
149 COMMAND sh -c "${UNZIP_EXECUTABLE} -q ${TMP_PATH}" | |
150 WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | |
151 RESULT_VARIABLE Failure | |
152 ) | |
153 elseif (("${TMP_EXTENSION}" STREQUAL "gz") OR ("${TMP_EXTENSION}" STREQUAL "tgz")) | |
154 #message("tar xvfz ${TMP_PATH}") | |
155 execute_process( | |
156 COMMAND sh -c "${TAR_EXECUTABLE} xfz ${TMP_PATH}" | |
157 WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | |
158 RESULT_VARIABLE Failure | |
159 ) | |
160 elseif ("${TMP_EXTENSION}" STREQUAL "bz2") | |
161 execute_process( | |
162 COMMAND sh -c "${TAR_EXECUTABLE} xfj ${TMP_PATH}" | |
163 WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | |
164 RESULT_VARIABLE Failure | |
165 ) | |
2002 | 166 elseif ("${TMP_EXTENSION}" STREQUAL "xz") |
167 execute_process( | |
168 COMMAND sh -c "${TAR_EXECUTABLE} xf ${TMP_PATH}" | |
169 WORKING_DIRECTORY ${CMAKE_BINARY_DIR} | |
170 RESULT_VARIABLE Failure | |
171 ) | |
735 | 172 else() |
173 message(FATAL_ERROR "Unknown package format.") | |
174 endif() | |
175 endif() | |
176 | |
177 if (Failure) | |
178 message(FATAL_ERROR "Error while running the uncompression tool") | |
179 endif() | |
180 | |
181 if (NOT IS_DIRECTORY "${TargetDirectory}") | |
182 message(FATAL_ERROR "The package was not uncompressed at the proper location. Check the CMake instructions.") | |
183 endif() | |
184 endif() | |
185 endmacro() |