cmFileCommand.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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() { return true; }
  38. /**
  39. * The name of the command as specified in CMakeList.txt.
  40. */
  41. virtual const char* GetName() { return "file";}
  42. /**
  43. * Succinct documentation.
  44. */
  45. virtual const char* GetTerseDocumentation()
  46. {
  47. return "File manipulation command.";
  48. }
  49. /**
  50. * More documentation.
  51. */
  52. virtual const char* GetFullDocumentation()
  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(STRINGS filename variable [LIMIT_COUNT num]\n"
  59. " [LIMIT_INPUT numBytes] [LIMIT_OUTPUT numBytes]\n"
  60. " [LENGTH_MINIMUM numBytes] [LENGTH_MAXIMUM numBytes]\n"
  61. " [NEWLINE_CONSUME] [REGEX regex]\n"
  62. " [NO_HEX_CONVERSION])\n"
  63. " file(GLOB variable [RELATIVE path] [globbing expressions]...)\n"
  64. " file(GLOB_RECURSE variable [RELATIVE path] \n"
  65. " [FOLLOW_SYMLINKS] [globbing expressions]...)\n"
  66. " file(RENAME <oldname> <newname>)\n"
  67. " file(REMOVE [file1 ...])\n"
  68. " file(REMOVE_RECURSE [file1 ...])\n"
  69. " file(MAKE_DIRECTORY [directory1 directory2 ...])\n"
  70. " file(RELATIVE_PATH variable directory file)\n"
  71. " file(TO_CMAKE_PATH path result)\n"
  72. " file(TO_NATIVE_PATH path result)\n"
  73. " file(DOWNLOAD url file [TIMEOUT timeout] [STATUS status] [LOG log])\n"
  74. "WRITE will write a message into a file called 'filename'. It "
  75. "overwrites the file if it already exists, and creates the file "
  76. "if it does not exist.\n"
  77. "APPEND will write a message into a file same as WRITE, except "
  78. "it will append it to the end of the file\n"
  79. "READ will read the content of a file and store it into the "
  80. "variable. It will start at the given offset and read up to numBytes. "
  81. "If the argument HEX is given, the binary data will be converted to "
  82. "hexadecimal representation and this will be stored in the variable.\n"
  83. "STRINGS will parse a list of ASCII strings from a file and "
  84. "store it in a variable. Binary data in the file are ignored. Carriage "
  85. "return (CR) characters are ignored. It works also for Intel Hex and "
  86. "Motorola S-record files, which are automatically converted to binary "
  87. "format when reading them. Disable this using NO_HEX_CONVERSION.\n"
  88. "LIMIT_COUNT sets the maximum number of strings to return. "
  89. "LIMIT_INPUT sets the maximum number of bytes to read from "
  90. "the input file. "
  91. "LIMIT_OUTPUT sets the maximum number of bytes to store in the "
  92. "output variable. "
  93. "LENGTH_MINIMUM sets the minimum length of a string to return. "
  94. "Shorter strings are ignored. "
  95. "LENGTH_MAXIMUM sets the maximum length of a string to return. Longer "
  96. "strings are split into strings no longer than the maximum length. "
  97. "NEWLINE_CONSUME allows newlines to be included in strings instead "
  98. "of terminating them.\n"
  99. "REGEX specifies a regular expression that a string must match to be "
  100. "returned. Typical usage \n"
  101. " file(STRINGS myfile.txt myfile)\n"
  102. "stores a list in the variable \"myfile\" in which each item is "
  103. "a line from the input file.\n"
  104. "GLOB will generate a list of all files that match the globbing "
  105. "expressions and store it into the variable. Globbing expressions "
  106. "are similar to regular expressions, but much simpler. If RELATIVE "
  107. "flag is specified for an expression, the results will be returned "
  108. "as a relative path to the given path.\n"
  109. "Examples of globbing expressions include:\n"
  110. " *.cxx - match all files with extension cxx\n"
  111. " *.vt? - match all files with extension vta,...,vtz\n"
  112. " f[3-5].txt - match files f3.txt, f4.txt, f5.txt\n"
  113. "GLOB_RECURSE will generate a list similar to the regular GLOB, except "
  114. "it will traverse all the subdirectories of the matched directory and "
  115. "match the files. Subdirectories that are symlinks are only traversed "
  116. "if FOLLOW_SYMLINKS is given or cmake policy CMP0009 is not set to NEW. "
  117. "See cmake --help-policy CMP0009 for more information.\n"
  118. "Examples of recursive globbing include:\n"
  119. " /dir/*.py - match all python files in /dir and subdirectories\n"
  120. "MAKE_DIRECTORY will create the given directories, also if their parent "
  121. "directories don't exist yet\n"
  122. "RENAME moves a file or directory within a filesystem, "
  123. "replacing the destination atomically."
  124. "\n"
  125. "REMOVE will remove the given files, also in subdirectories\n"
  126. "REMOVE_RECURSE will remove the given files and directories, also "
  127. "non-empty directories\n"
  128. "RELATIVE_PATH will determine relative path from directory to the given"
  129. " file.\n"
  130. "TO_CMAKE_PATH will convert path into a cmake style path with unix /. "
  131. " The input can be a single path or a system path like \"$ENV{PATH}\". "
  132. " Note the double quotes around the ENV call TO_CMAKE_PATH only takes "
  133. " one argument.\n"
  134. "TO_NATIVE_PATH works just like TO_CMAKE_PATH, but will convert from "
  135. " a cmake style path into the native path style \\ for windows and / "
  136. "for UNIX.\n"
  137. "DOWNLOAD will download the given URL to the given file. "
  138. "If LOG var is specified a log of the download will be put in var. "
  139. "If STATUS var is specified the status of the operation will"
  140. " be put in var. The status is returned in a list of length 2. "
  141. "The first element is the numeric return value for the operation, "
  142. "and the second element is a string value for the error. A 0 "
  143. "numeric error means no error in the operation. "
  144. "If TIMEOUT time is specified, the operation will "
  145. "timeout after time seconds, time should be specified as an integer."
  146. "\n"
  147. "The file() command also provides COPY and INSTALL signatures:\n"
  148. " file(<COPY|INSTALL> files... DESTINATION <dir>\n"
  149. " [FILE_PERMISSIONS permissions...]\n"
  150. " [DIRECTORY_PERMISSIONS permissions...]\n"
  151. " [NO_SOURCE_PERMISSIONS] [USE_SOURCE_PERMISSIONS]\n"
  152. " [FILES_MATCHING]\n"
  153. " [[PATTERN <pattern> | REGEX <regex>]\n"
  154. " [EXCLUDE] [PERMISSIONS permissions...]] [...])\n"
  155. "The COPY signature copies files, directories, and symlinks to a "
  156. "destination folder. "
  157. "Relative input paths are evaluated with respect to the current "
  158. "source directory, and a relative destination is evaluated with "
  159. "respect to the current build directory. "
  160. "Copying preserves input file timestamps, and optimizes out a file "
  161. "if it exists at the destination with the same timestamp. "
  162. "Copying preserves input permissions unless explicit permissions or "
  163. "NO_SOURCE_PERMISSIONS are given (default is USE_SOURCE_PERMISSIONS). "
  164. "See the install(DIRECTORY) command for documentation of permissions, "
  165. "PATTERN, REGEX, and EXCLUDE options. "
  166. "\n"
  167. "The INSTALL signature differs slightly from COPY: "
  168. "it prints status messages, and NO_SOURCE_PERMISSIONS is default. "
  169. "Installation scripts generated by the install() command use this "
  170. "signature (with some undocumented options for internal use)."
  171. // Undocumented INSTALL options:
  172. // - RENAME <name>
  173. // - OPTIONAL
  174. // - FILES keyword to re-enter files... list
  175. // - PERMISSIONS before REGEX is alias for FILE_PERMISSIONS
  176. // - DIR_PERMISSIONS is alias for DIRECTORY_PERMISSIONS
  177. // - TYPE <FILE|DIRECTORY|EXECUTABLE|PROGRAM|
  178. // STATIC_LIBRARY|SHARED_LIBRARY|MODULE>
  179. // - COMPONENTS, CONFIGURATIONS, PROPERTIES (ignored for compat)
  180. ;
  181. }
  182. cmTypeMacro(cmFileCommand, cmCommand);
  183. protected:
  184. bool HandleRename(std::vector<std::string> const& args);
  185. bool HandleRemove(std::vector<std::string> const& args, bool recurse);
  186. bool HandleWriteCommand(std::vector<std::string> const& args, bool append);
  187. bool HandleReadCommand(std::vector<std::string> const& args);
  188. bool HandleStringsCommand(std::vector<std::string> const& args);
  189. bool HandleGlobCommand(std::vector<std::string> const& args, bool recurse);
  190. bool HandleMakeDirectoryCommand(std::vector<std::string> const& args);
  191. bool HandleRelativePathCommand(std::vector<std::string> const& args);
  192. bool HandleCMakePathCommand(std::vector<std::string> const& args,
  193. bool nativePath);
  194. bool HandleRPathChangeCommand(std::vector<std::string> const& args);
  195. bool HandleRPathCheckCommand(std::vector<std::string> const& args);
  196. bool HandleRPathRemoveCommand(std::vector<std::string> const& args);
  197. bool HandleDifferentCommand(std::vector<std::string> const& args);
  198. bool HandleCopyCommand(std::vector<std::string> const& args);
  199. bool HandleInstallCommand(std::vector<std::string> const& args);
  200. bool HandleDownloadCommand(std::vector<std::string> const& args);
  201. };
  202. #endif