cmFileCommand.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #ifndef cmFileCommand_h
  11. #define cmFileCommand_h
  12. #include "cmCommand.h"
  13. struct cmFileInstaller;
  14. /** \class cmFileCommand
  15. * \brief Command for manipulation of files
  16. *
  17. */
  18. class cmFileCommand : public cmCommand
  19. {
  20. public:
  21. /**
  22. * This is a virtual constructor for the command.
  23. */
  24. virtual cmCommand* Clone()
  25. {
  26. return new cmFileCommand;
  27. }
  28. /**
  29. * This is called when the command is first encountered in
  30. * the CMakeLists.txt file.
  31. */
  32. virtual bool InitialPass(std::vector<std::string> const& args,
  33. cmExecutionStatus &status);
  34. /**
  35. * This determines if the command is invoked when in script mode.
  36. */
  37. virtual bool IsScriptable() const { return true; }
  38. /**
  39. * The name of the command as specified in CMakeList.txt.
  40. */
  41. virtual const char* GetName() const { return "file";}
  42. /**
  43. * Succinct documentation.
  44. */
  45. virtual const char* GetTerseDocumentation() const
  46. {
  47. return "File manipulation command.";
  48. }
  49. /**
  50. * More documentation.
  51. */
  52. virtual const char* GetFullDocumentation() const
  53. {
  54. return
  55. " file(WRITE filename \"message to write\"... )\n"
  56. " file(APPEND filename \"message to write\"... )\n"
  57. " file(READ filename variable [LIMIT numBytes] [OFFSET offset] [HEX])\n"
  58. " file(<MD5|SHA1|SHA224|SHA256|SHA384|SHA512> filename variable)\n"
  59. " file(STRINGS filename variable [LIMIT_COUNT num]\n"
  60. " [LIMIT_INPUT numBytes] [LIMIT_OUTPUT numBytes]\n"
  61. " [LENGTH_MINIMUM numBytes] [LENGTH_MAXIMUM numBytes]\n"
  62. " [NEWLINE_CONSUME] [REGEX regex]\n"
  63. " [NO_HEX_CONVERSION])\n"
  64. " file(GLOB variable [RELATIVE path] [globbing expressions]...)\n"
  65. " file(GLOB_RECURSE variable [RELATIVE path] \n"
  66. " [FOLLOW_SYMLINKS] [globbing expressions]...)\n"
  67. " file(RENAME <oldname> <newname>)\n"
  68. " file(REMOVE [file1 ...])\n"
  69. " file(REMOVE_RECURSE [file1 ...])\n"
  70. " file(MAKE_DIRECTORY [directory1 directory2 ...])\n"
  71. " file(RELATIVE_PATH variable directory file)\n"
  72. " file(TO_CMAKE_PATH path result)\n"
  73. " file(TO_NATIVE_PATH path result)\n"
  74. " file(DOWNLOAD url file [INACTIVITY_TIMEOUT timeout]\n"
  75. " [TIMEOUT timeout] [STATUS status] [LOG log] [SHOW_PROGRESS]\n"
  76. " [EXPECTED_HASH MD5|SHA1|SHA224|SHA256|SHA384|SHA512 hash]\n"
  77. " [EXPECTED_MD5 sum]\n"
  78. " [SSL_VERIFY on|off] [SSL_CAINFO_FILE file])\n"
  79. " file(UPLOAD filename url [INACTIVITY_TIMEOUT timeout]\n"
  80. " [TIMEOUT timeout] [STATUS status] [LOG log] [SHOW_PROGRESS])\n"
  81. "WRITE will write a message into a file called 'filename'. It "
  82. "overwrites the file if it already exists, and creates the file "
  83. "if it does not exist.\n"
  84. "APPEND will write a message into a file same as WRITE, except "
  85. "it will append it to the end of the file\n"
  86. "READ will read the content of a file and store it into the "
  87. "variable. It will start at the given offset and read up to numBytes. "
  88. "If the argument HEX is given, the binary data will be converted to "
  89. "hexadecimal representation and this will be stored in the variable.\n"
  90. "MD5, SHA1, SHA224, SHA256, SHA384, and SHA512 "
  91. "will compute a cryptographic hash of the content of a file.\n"
  92. "STRINGS will parse a list of ASCII strings from a file and "
  93. "store it in a variable. Binary data in the file are ignored. Carriage "
  94. "return (CR) characters are ignored. It works also for Intel Hex and "
  95. "Motorola S-record files, which are automatically converted to binary "
  96. "format when reading them. Disable this using NO_HEX_CONVERSION.\n"
  97. "LIMIT_COUNT sets the maximum number of strings to return. "
  98. "LIMIT_INPUT sets the maximum number of bytes to read from "
  99. "the input file. "
  100. "LIMIT_OUTPUT sets the maximum number of bytes to store in the "
  101. "output variable. "
  102. "LENGTH_MINIMUM sets the minimum length of a string to return. "
  103. "Shorter strings are ignored. "
  104. "LENGTH_MAXIMUM sets the maximum length of a string to return. Longer "
  105. "strings are split into strings no longer than the maximum length. "
  106. "NEWLINE_CONSUME allows newlines to be included in strings instead "
  107. "of terminating them.\n"
  108. "REGEX specifies a regular expression that a string must match to be "
  109. "returned. Typical usage \n"
  110. " file(STRINGS myfile.txt myfile)\n"
  111. "stores a list in the variable \"myfile\" in which each item is "
  112. "a line from the input file.\n"
  113. "GLOB will generate a list of all files that match the globbing "
  114. "expressions and store it into the variable. Globbing expressions "
  115. "are similar to regular expressions, but much simpler. If RELATIVE "
  116. "flag is specified for an expression, the results will be returned "
  117. "as a relative path to the given path. "
  118. "(We do not recommend using GLOB to collect a list of source files "
  119. "from your source tree. If no CMakeLists.txt file changes when a "
  120. "source is added or removed then the generated build system cannot "
  121. "know when to ask CMake to regenerate.)"
  122. "\n"
  123. "Examples of globbing expressions include:\n"
  124. " *.cxx - match all files with extension cxx\n"
  125. " *.vt? - match all files with extension vta,...,vtz\n"
  126. " f[3-5].txt - match files f3.txt, f4.txt, f5.txt\n"
  127. "GLOB_RECURSE will generate a list similar to the regular GLOB, except "
  128. "it will traverse all the subdirectories of the matched directory and "
  129. "match the files. Subdirectories that are symlinks are only traversed "
  130. "if FOLLOW_SYMLINKS is given or cmake policy CMP0009 is not set to NEW. "
  131. "See cmake --help-policy CMP0009 for more information.\n"
  132. "Examples of recursive globbing include:\n"
  133. " /dir/*.py - match all python files in /dir and subdirectories\n"
  134. "MAKE_DIRECTORY will create the given directories, also if their parent "
  135. "directories don't exist yet\n"
  136. "RENAME moves a file or directory within a filesystem, "
  137. "replacing the destination atomically."
  138. "\n"
  139. "REMOVE will remove the given files, also in subdirectories\n"
  140. "REMOVE_RECURSE will remove the given files and directories, also "
  141. "non-empty directories\n"
  142. "RELATIVE_PATH will determine relative path from directory to the given"
  143. " file.\n"
  144. "TO_CMAKE_PATH will convert path into a cmake style path with unix /. "
  145. " The input can be a single path or a system path like \"$ENV{PATH}\". "
  146. " Note the double quotes around the ENV call TO_CMAKE_PATH only takes "
  147. " one argument. This command will also convert the native list"
  148. " delimiters for a list of paths like the PATH environment variable.\n"
  149. "TO_NATIVE_PATH works just like TO_CMAKE_PATH, but will convert from "
  150. " a cmake style path into the native path style \\ for windows and / "
  151. "for UNIX.\n"
  152. "DOWNLOAD will download the given URL to the given file. "
  153. "If LOG var is specified a log of the download will be put in var. "
  154. "If STATUS var is specified the status of the operation will"
  155. " be put in var. The status is returned in a list of length 2. "
  156. "The first element is the numeric return value for the operation, "
  157. "and the second element is a string value for the error. A 0 "
  158. "numeric error means no error in the operation. "
  159. "If TIMEOUT time is specified, the operation will "
  160. "timeout after time seconds, time should be specified as an integer. "
  161. "The INACTIVITY_TIMEOUT specifies an integer number of seconds of "
  162. "inactivity after which the operation should terminate. "
  163. "If EXPECTED_HASH is specified, the operation will verify that the "
  164. "downloaded file's actual hash matches the expected value. If it "
  165. "does not match, the operation fails with an error. "
  166. "(EXPECTED_MD5 is short-hand for EXPECTED_HASH MD5.) "
  167. "If SHOW_PROGRESS is specified, progress information will be printed "
  168. "as status messages until the operation is complete. "
  169. "For https URLs CMake must be built with OpenSSL. "
  170. "SSL certificates are not checked by default. "
  171. "Set SSL_VERIFY to ON to check certificates and/or use "
  172. "EXPECTED_HASH to verify downloaded content. "
  173. "Set SSL_CAINFO_FILE to specify a custom Certificate Authority file. "
  174. "If either SSL option is not given CMake will check variables "
  175. "CMAKE_CURLOPT_SSL_VERIFYPEER and CMAKE_CURLOPT_CAINFO_FILE, "
  176. "respectively."
  177. "\n"
  178. "UPLOAD will upload the given file to the given URL. "
  179. "If LOG var is specified a log of the upload will be put in var. "
  180. "If STATUS var is specified the status of the operation will"
  181. " be put in var. The status is returned in a list of length 2. "
  182. "The first element is the numeric return value for the operation, "
  183. "and the second element is a string value for the error. A 0 "
  184. "numeric error means no error in the operation. "
  185. "If TIMEOUT time is specified, the operation will "
  186. "timeout after time seconds, time should be specified as an integer. "
  187. "The INACTIVITY_TIMEOUT specifies an integer number of seconds of "
  188. "inactivity after which the operation should terminate. "
  189. "If SHOW_PROGRESS is specified, progress information will be printed "
  190. "as status messages until the operation is complete."
  191. "\n"
  192. "The file() command also provides COPY and INSTALL signatures:\n"
  193. " file(<COPY|INSTALL> files... DESTINATION <dir>\n"
  194. " [FILE_PERMISSIONS permissions...]\n"
  195. " [DIRECTORY_PERMISSIONS permissions...]\n"
  196. " [NO_SOURCE_PERMISSIONS] [USE_SOURCE_PERMISSIONS]\n"
  197. " [FILES_MATCHING]\n"
  198. " [[PATTERN <pattern> | REGEX <regex>]\n"
  199. " [EXCLUDE] [PERMISSIONS permissions...]] [...])\n"
  200. "The COPY signature copies files, directories, and symlinks to a "
  201. "destination folder. "
  202. "Relative input paths are evaluated with respect to the current "
  203. "source directory, and a relative destination is evaluated with "
  204. "respect to the current build directory. "
  205. "Copying preserves input file timestamps, and optimizes out a file "
  206. "if it exists at the destination with the same timestamp. "
  207. "Copying preserves input permissions unless explicit permissions or "
  208. "NO_SOURCE_PERMISSIONS are given (default is USE_SOURCE_PERMISSIONS). "
  209. "See the install(DIRECTORY) command for documentation of permissions, "
  210. "PATTERN, REGEX, and EXCLUDE options. "
  211. "\n"
  212. "The INSTALL signature differs slightly from COPY: "
  213. "it prints status messages, and NO_SOURCE_PERMISSIONS is default. "
  214. "Installation scripts generated by the install() command use this "
  215. "signature (with some undocumented options for internal use)."
  216. // Undocumented INSTALL options:
  217. // - RENAME <name>
  218. // - OPTIONAL
  219. // - FILES keyword to re-enter files... list
  220. // - PERMISSIONS before REGEX is alias for FILE_PERMISSIONS
  221. // - DIR_PERMISSIONS is alias for DIRECTORY_PERMISSIONS
  222. // - TYPE <FILE|DIRECTORY|EXECUTABLE|PROGRAM|
  223. // STATIC_LIBRARY|SHARED_LIBRARY|MODULE>
  224. // - COMPONENTS, CONFIGURATIONS, PROPERTIES (ignored for compat)
  225. ;
  226. }
  227. cmTypeMacro(cmFileCommand, cmCommand);
  228. protected:
  229. bool HandleRename(std::vector<std::string> const& args);
  230. bool HandleRemove(std::vector<std::string> const& args, bool recurse);
  231. bool HandleWriteCommand(std::vector<std::string> const& args, bool append);
  232. bool HandleReadCommand(std::vector<std::string> const& args);
  233. bool HandleHashCommand(std::vector<std::string> const& args);
  234. bool HandleStringsCommand(std::vector<std::string> const& args);
  235. bool HandleGlobCommand(std::vector<std::string> const& args, bool recurse);
  236. bool HandleMakeDirectoryCommand(std::vector<std::string> const& args);
  237. bool HandleRelativePathCommand(std::vector<std::string> const& args);
  238. bool HandleCMakePathCommand(std::vector<std::string> const& args,
  239. bool nativePath);
  240. bool HandleRPathChangeCommand(std::vector<std::string> const& args);
  241. bool HandleRPathCheckCommand(std::vector<std::string> const& args);
  242. bool HandleRPathRemoveCommand(std::vector<std::string> const& args);
  243. bool HandleDifferentCommand(std::vector<std::string> const& args);
  244. bool HandleCopyCommand(std::vector<std::string> const& args);
  245. bool HandleInstallCommand(std::vector<std::string> const& args);
  246. bool HandleDownloadCommand(std::vector<std::string> const& args);
  247. bool HandleUploadCommand(std::vector<std::string> const& args);
  248. };
  249. #endif