cmConfigureFileCommand.cxx 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. #include "cmConfigureFileCommand.h"
  14. #include <cmsys/RegularExpression.hxx>
  15. // cmConfigureFileCommand
  16. bool cmConfigureFileCommand
  17. ::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
  18. {
  19. if(args.size() < 2 )
  20. {
  21. this->SetError("called with incorrect number of arguments, expected 2");
  22. return false;
  23. }
  24. this->InputFile = args[0];
  25. this->OuputFile = args[1];
  26. if ( !this->Makefile->CanIWriteThisFile(this->OuputFile.c_str()) )
  27. {
  28. std::string e = "attempted to configure a file: " + this->OuputFile
  29. + " into a source directory.";
  30. this->SetError(e.c_str());
  31. cmSystemTools::SetFatalErrorOccured();
  32. return false;
  33. }
  34. this->CopyOnly = false;
  35. this->EscapeQuotes = false;
  36. // for CMake 2.0 and earlier CONFIGURE_FILE defaults to the FinalPass,
  37. // after 2.0 it only does InitialPass
  38. this->Immediate = false;
  39. const char* versionValue
  40. = this->Makefile->GetDefinition("CMAKE_BACKWARDS_COMPATIBILITY");
  41. if (versionValue && atof(versionValue) > 2.0)
  42. {
  43. this->Immediate = true;
  44. }
  45. this->AtOnly = false;
  46. for(unsigned int i=2;i < args.size();++i)
  47. {
  48. if(args[i] == "COPYONLY")
  49. {
  50. this->CopyOnly = true;
  51. }
  52. else if(args[i] == "ESCAPE_QUOTES")
  53. {
  54. this->EscapeQuotes = true;
  55. }
  56. else if(args[i] == "@ONLY")
  57. {
  58. this->AtOnly = true;
  59. }
  60. else if(args[i] == "IMMEDIATE")
  61. {
  62. this->Immediate = true;
  63. }
  64. }
  65. // If we were told to copy the file immediately, then do it on the
  66. // first pass (now).
  67. if(this->Immediate)
  68. {
  69. if ( !this->ConfigureFile() )
  70. {
  71. this->SetError("Problem configuring file");
  72. return false;
  73. }
  74. }
  75. return true;
  76. }
  77. void cmConfigureFileCommand::FinalPass()
  78. {
  79. if(!this->Immediate)
  80. {
  81. this->ConfigureFile();
  82. }
  83. }
  84. int cmConfigureFileCommand::ConfigureFile()
  85. {
  86. std::string inFile = this->InputFile;
  87. if (!cmSystemTools::FileIsFullPath(inFile.c_str()))
  88. {
  89. inFile = this->Makefile->GetStartDirectory();
  90. inFile += "/";
  91. inFile += this->InputFile;
  92. }
  93. return this->Makefile->ConfigureFile(inFile.c_str(),
  94. this->OuputFile.c_str(),
  95. this->CopyOnly,
  96. this->AtOnly,
  97. this->EscapeQuotes);
  98. }