cmConfigureFileCommand.cxx 2.7 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. #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->OutputFile = args[1];
  26. if ( !this->Makefile->CanIWriteThisFile(this->OutputFile.c_str()) )
  27. {
  28. std::string e = "attempted to configure a file: " + this->OutputFile
  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 = !this->Makefile->NeedBackwardsCompatibility(2,0);
  39. this->AtOnly = false;
  40. for(unsigned int i=2;i < args.size();++i)
  41. {
  42. if(args[i] == "COPYONLY")
  43. {
  44. this->CopyOnly = true;
  45. }
  46. else if(args[i] == "ESCAPE_QUOTES")
  47. {
  48. this->EscapeQuotes = true;
  49. }
  50. else if(args[i] == "@ONLY")
  51. {
  52. this->AtOnly = true;
  53. }
  54. else if(args[i] == "IMMEDIATE")
  55. {
  56. this->Immediate = true;
  57. }
  58. }
  59. // If we were told to copy the file immediately, then do it on the
  60. // first pass (now).
  61. if(this->Immediate)
  62. {
  63. if ( !this->ConfigureFile() )
  64. {
  65. this->SetError("Problem configuring file");
  66. return false;
  67. }
  68. }
  69. return true;
  70. }
  71. void cmConfigureFileCommand::FinalPass()
  72. {
  73. if(!this->Immediate)
  74. {
  75. this->ConfigureFile();
  76. }
  77. }
  78. int cmConfigureFileCommand::ConfigureFile()
  79. {
  80. std::string inFile = this->InputFile;
  81. if (!cmSystemTools::FileIsFullPath(inFile.c_str()))
  82. {
  83. inFile = this->Makefile->GetStartDirectory();
  84. inFile += "/";
  85. inFile += this->InputFile;
  86. }
  87. return this->Makefile->ConfigureFile(inFile.c_str(),
  88. this->OutputFile.c_str(),
  89. this->CopyOnly,
  90. this->AtOnly,
  91. this->EscapeQuotes);
  92. }