cmConfigureFileCommand.cxx 2.5 KB

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