cmFileCommand.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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_MD5 sum])\n"
  77. " file(UPLOAD filename url [INACTIVITY_TIMEOUT timeout]\n"
  78. " [TIMEOUT timeout] [STATUS status] [LOG log] [SHOW_PROGRESS])\n"
  79. "WRITE will write a message into a file called 'filename'. It "
  80. "overwrites the file if it already exists, and creates the file "
  81. "if it does not exist.\n"
  82. "APPEND will write a message into a file same as WRITE, except "
  83. "it will append it to the end of the file\n"
  84. "READ will read the content of a file and store it into the "
  85. "variable. It will start at the given offset and read up to numBytes. "
  86. "If the argument HEX is given, the binary data will be converted to "
  87. "hexadecimal representation and this will be stored in the variable.\n"
  88. "MD5, SHA1, SHA224, SHA256, SHA384, and SHA512 "
  89. "will compute a cryptographic hash of the content of a file.\n"
  90. "STRINGS will parse a list of ASCII strings from a file and "
  91. "store it in a variable. Binary data in the file are ignored. Carriage "
  92. "return (CR) characters are ignored. It works also for Intel Hex and "
  93. "Motorola S-record files, which are automatically converted to binary "
  94. "format when reading them. Disable this using NO_HEX_CONVERSION.\n"
  95. "LIMIT_COUNT sets the maximum number of strings to return. "
  96. "LIMIT_INPUT sets the maximum number of bytes to read from "
  97. "the input file. "
  98. "LIMIT_OUTPUT sets the maximum number of bytes to store in the "
  99. "output variable. "
  100. "LENGTH_MINIMUM sets the minimum length of a string to return. "
  101. "Shorter strings are ignored. "
  102. "LENGTH_MAXIMUM sets the maximum length of a string to return. Longer "
  103. "strings are split into strings no longer than the maximum length. "
  104. "NEWLINE_CONSUME allows newlines to be included in strings instead "
  105. "of terminating them.\n"
  106. "REGEX specifies a regular expression that a string must match to be "
  107. "returned. Typical usage \n"
  108. " file(STRINGS myfile.txt myfile)\n"
  109. "stores a list in the variable \"myfile\" in which each item is "
  110. "a line from the input file.\n"
  111. "GLOB will generate a list of all files that match the globbing "
  112. "expressions and store it into the variable. Globbing expressions "
  113. "are similar to regular expressions, but much simpler. If RELATIVE "
  114. "flag is specified for an expression, the results will be returned "
  115. "as a relative path to the given path. "
  116. "(We do not recommend using GLOB to collect a list of source files "
  117. "from your source tree. If no CMakeLists.txt file changes when a "
  118. "source is added or removed then the generated build system cannot "
  119. "know when to ask CMake to regenerate.)"
  120. "\n"
  121. "Examples of globbing expressions include:\n"
  122. " *.cxx - match all files with extension cxx\n"
  123. " *.vt? - match all files with extension vta,...,vtz\n"
  124. " f[3-5].txt - match files f3.txt, f4.txt, f5.txt\n"
  125. "GLOB_RECURSE will generate a list similar to the regular GLOB, except "
  126. "it will traverse all the subdirectories of the matched directory and "
  127. "match the files. Subdirectories that are symlinks are only traversed "
  128. "if FOLLOW_SYMLINKS is given or cmake policy CMP0009 is not set to NEW. "
  129. "See cmake --help-policy CMP0009 for more information.\n"
  130. "Examples of recursive globbing include:\n"
  131. " /dir/*.py - match all python files in /dir and subdirectories\n"
  132. "MAKE_DIRECTORY will create the given directories, also if their parent "
  133. "directories don't exist yet\n"
  134. "RENAME moves a file or directory within a filesystem, "
  135. "replacing the destination atomically."
  136. "\n"
  137. "REMOVE will remove the given files, also in subdirectories\n"
  138. "REMOVE_RECURSE will remove the given files and directories, also "
  139. "non-empty directories\n"
  140. "RELATIVE_PATH will determine relative path from directory to the given"
  141. " file.\n"
  142. "TO_CMAKE_PATH will convert path into a cmake style path with unix /. "
  143. " The input can be a single path or a system path like \"$ENV{PATH}\". "
  144. " Note the double quotes around the ENV call TO_CMAKE_PATH only takes "
  145. " one argument.\n"
  146. "TO_NATIVE_PATH works just like TO_CMAKE_PATH, but will convert from "
  147. " a cmake style path into the native path style \\ for windows and / "
  148. "for UNIX.\n"
  149. "DOWNLOAD will download the given URL to the given file. "
  150. "If LOG var is specified a log of the download will be put in var. "
  151. "If STATUS var is specified the status of the operation will"
  152. " be put in var. The status is returned in a list of length 2. "
  153. "The first element is the numeric return value for the operation, "
  154. "and the second element is a string value for the error. A 0 "
  155. "numeric error means no error in the operation. "
  156. "If TIMEOUT time is specified, the operation will "
  157. "timeout after time seconds, time should be specified as an integer. "
  158. "The INACTIVITY_TIMEOUT specifies an integer number of seconds of "
  159. "inactivity after which the operation should terminate. "
  160. "If EXPECTED_MD5 sum is specified, the operation will verify that the "
  161. "downloaded file's actual md5 sum matches the expected value. If it "
  162. "does not match, the operation fails with an error. "
  163. "If SHOW_PROGRESS is specified, progress information will be printed "
  164. "as status messages until the operation is complete."
  165. "\n"
  166. "UPLOAD will upload the given file to the given URL. "
  167. "If LOG var is specified a log of the upload will be put in var. "
  168. "If STATUS var is specified the status of the operation will"
  169. " be put in var. The status is returned in a list of length 2. "
  170. "The first element is the numeric return value for the operation, "
  171. "and the second element is a string value for the error. A 0 "
  172. "numeric error means no error in the operation. "
  173. "If TIMEOUT time is specified, the operation will "
  174. "timeout after time seconds, time should be specified as an integer. "
  175. "The INACTIVITY_TIMEOUT specifies an integer number of seconds of "
  176. "inactivity after which the operation should terminate. "
  177. "If SHOW_PROGRESS is specified, progress information will be printed "
  178. "as status messages until the operation is complete."
  179. "\n"
  180. "The file() command also provides COPY and INSTALL signatures:\n"
  181. " file(<COPY|INSTALL> files... DESTINATION <dir>\n"
  182. " [FILE_PERMISSIONS permissions...]\n"
  183. " [DIRECTORY_PERMISSIONS permissions...]\n"
  184. " [NO_SOURCE_PERMISSIONS] [USE_SOURCE_PERMISSIONS]\n"
  185. " [FILES_MATCHING]\n"
  186. " [[PATTERN <pattern> | REGEX <regex>]\n"
  187. " [EXCLUDE] [PERMISSIONS permissions...]] [...])\n"
  188. "The COPY signature copies files, directories, and symlinks to a "
  189. "destination folder. "
  190. "Relative input paths are evaluated with respect to the current "
  191. "source directory, and a relative destination is evaluated with "
  192. "respect to the current build directory. "
  193. "Copying preserves input file timestamps, and optimizes out a file "
  194. "if it exists at the destination with the same timestamp. "
  195. "Copying preserves input permissions unless explicit permissions or "
  196. "NO_SOURCE_PERMISSIONS are given (default is USE_SOURCE_PERMISSIONS). "
  197. "See the install(DIRECTORY) command for documentation of permissions, "
  198. "PATTERN, REGEX, and EXCLUDE options. "
  199. "\n"
  200. "The INSTALL signature differs slightly from COPY: "
  201. "it prints status messages, and NO_SOURCE_PERMISSIONS is default. "
  202. "Installation scripts generated by the install() command use this "
  203. "signature (with some undocumented options for internal use)."
  204. // Undocumented INSTALL options:
  205. // - RENAME <name>
  206. // - OPTIONAL
  207. // - FILES keyword to re-enter files... list
  208. // - PERMISSIONS before REGEX is alias for FILE_PERMISSIONS
  209. // - DIR_PERMISSIONS is alias for DIRECTORY_PERMISSIONS
  210. // - TYPE <FILE|DIRECTORY|EXECUTABLE|PROGRAM|
  211. // STATIC_LIBRARY|SHARED_LIBRARY|MODULE>
  212. // - COMPONENTS, CONFIGURATIONS, PROPERTIES (ignored for compat)
  213. ;
  214. }
  215. cmTypeMacro(cmFileCommand, cmCommand);
  216. protected:
  217. bool HandleRename(std::vector<std::string> const& args);
  218. bool HandleRemove(std::vector<std::string> const& args, bool recurse);
  219. bool HandleWriteCommand(std::vector<std::string> const& args, bool append);
  220. bool HandleReadCommand(std::vector<std::string> const& args);
  221. bool HandleHashCommand(std::vector<std::string> const& args);
  222. bool HandleStringsCommand(std::vector<std::string> const& args);
  223. bool HandleGlobCommand(std::vector<std::string> const& args, bool recurse);
  224. bool HandleMakeDirectoryCommand(std::vector<std::string> const& args);
  225. bool HandleRelativePathCommand(std::vector<std::string> const& args);
  226. bool HandleCMakePathCommand(std::vector<std::string> const& args,
  227. bool nativePath);
  228. bool HandleRPathChangeCommand(std::vector<std::string> const& args);
  229. bool HandleRPathCheckCommand(std::vector<std::string> const& args);
  230. bool HandleRPathRemoveCommand(std::vector<std::string> const& args);
  231. bool HandleDifferentCommand(std::vector<std::string> const& args);
  232. bool HandleCopyCommand(std::vector<std::string> const& args);
  233. bool HandleInstallCommand(std::vector<std::string> const& args);
  234. bool HandleDownloadCommand(std::vector<std::string> const& args);
  235. bool HandleUploadCommand(std::vector<std::string> const& args);
  236. };
  237. #endif