cmFileCommand.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*=========================================================================
  2. Program: CMake - Cross-Platform Makefile Generator
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. #ifndef cmFileCommand_h
  14. #define cmFileCommand_h
  15. #include "cmCommand.h"
  16. /** \class cmFileCommand
  17. * \brief Command for manipulation of files
  18. *
  19. */
  20. class cmFileCommand : public cmCommand
  21. {
  22. public:
  23. /**
  24. * This is a virtual constructor for the command.
  25. */
  26. virtual cmCommand* Clone()
  27. {
  28. return new cmFileCommand;
  29. }
  30. /**
  31. * This is called when the command is first encountered in
  32. * the CMakeLists.txt file.
  33. */
  34. virtual bool InitialPass(std::vector<std::string> const& args);
  35. /**
  36. * This determines if the command gets propagated down
  37. * to makefiles located in subdirectories.
  38. */
  39. virtual bool IsInherited() {return true;}
  40. /**
  41. * The name of the command as specified in CMakeList.txt.
  42. */
  43. virtual const char* GetName() { return "FILE";}
  44. /**
  45. * Succinct documentation.
  46. */
  47. virtual const char* GetTerseDocumentation()
  48. {
  49. return "File manipulation command.";
  50. }
  51. /**
  52. * More documentation.
  53. */
  54. virtual const char* GetFullDocumentation()
  55. {
  56. return
  57. " FILE(WRITE filename \"message to write\"... )\n"
  58. " FILE(APPEND filename \"message to write\"... )\n"
  59. " FILE(READ filename variable)\n"
  60. " FILE(GLOB variable [globbing expressions]...)\n"
  61. " FILE(GLOB_RECURSE variable [globbing expressions]...)\n"
  62. " FILE(MAKE_DIRECTORY [directory]...)\n"
  63. "WRITE will write a message into a file called 'filename'. It "
  64. "overwrites the file if it already exists, and creates the file "
  65. "if it does not exists.\n"
  66. "APPEND will write a message into a file same as WRITE, except "
  67. "it will append it to the end of the file\n"
  68. "READ will read the content of a file and store it into the "
  69. "variable.\n"
  70. "GLOB will generate a list of all files that match the globbing "
  71. "expressions and store it into the variable. Globbing expressions "
  72. "are similar to regular expressions, but much simpler..\n"
  73. "Examples of globbing expressions:\n"
  74. " *.cxx - match all files with extension cxx\n"
  75. " *.vt? - match all files with extension vta, vtb, ... vtz\n"
  76. " f[3-5].txt - match files f3.txt, f4.txt, f5.txt\n"
  77. "GLOB_RECURSE will generate similar list as the regular GLOB, except "
  78. "it will traverse all the subdirectories of the matched directory and "
  79. "match the files.\n"
  80. "Example of recursive globbing:\n"
  81. " /dir/*.py - match all python files /dir and subdirectories\n"
  82. "MAKE_DIRECTORY will create a directory at the specified location";
  83. }
  84. cmTypeMacro(cmFileCommand, cmCommand);
  85. protected:
  86. bool HandleWriteCommand(std::vector<std::string> const& args, bool append);
  87. bool HandleReadCommand(std::vector<std::string> const& args);
  88. bool HandleGlobCommand(std::vector<std::string> const& args, bool recurse);
  89. bool HandleMakeDirectoryCommand(std::vector<std::string> const& args);
  90. };
  91. #endif