cmForEachCommand.cxx 3.3 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 "cmForEachCommand.h"
  14. bool cmForEachFunctionBlocker::
  15. IsFunctionBlocked(const cmListFileFunction& lff, cmMakefile &mf)
  16. {
  17. // Prevent recusion and don't let this blobker block its own
  18. // commands.
  19. if (m_Executing)
  20. {
  21. return false;
  22. }
  23. // at end of for each execute recorded commands
  24. if (lff.m_Name == "ENDFOREACH")
  25. {
  26. std::vector<std::string> expandedArguments;
  27. mf.ExpandArguments(lff.m_Arguments, expandedArguments);
  28. if(!expandedArguments.empty() && (expandedArguments[0] == m_Args[0]))
  29. {
  30. m_Executing = true;
  31. std::string variable = "${";
  32. variable += m_Args[0];
  33. variable += "}";
  34. std::vector<std::string>::const_iterator j = m_Args.begin();
  35. ++j;
  36. std::string tmps;
  37. cmListFileArgument arg;
  38. for( ; j != m_Args.end(); ++j)
  39. {
  40. // Invoke all the functions that were collected in the block.
  41. for(unsigned int c = 0; c < m_Functions.size(); ++c)
  42. {
  43. // Replace the loop variable and then invoke the command.
  44. cmListFileFunction newLFF;
  45. newLFF.m_Name = m_Functions[c].m_Name;
  46. for (std::vector<cmListFileArgument>::const_iterator k =
  47. m_Functions[c].m_Arguments.begin();
  48. k != m_Functions[c].m_Arguments.end(); ++k)
  49. {
  50. tmps = k->Value;
  51. cmSystemTools::ReplaceString(tmps, variable.c_str(), j->c_str());
  52. arg.Value = tmps;
  53. arg.Quoted = k->Quoted;
  54. newLFF.m_Arguments.push_back(arg);
  55. }
  56. mf.ExecuteCommand(newLFF);
  57. }
  58. }
  59. return false;
  60. }
  61. }
  62. // record the command
  63. m_Functions.push_back(lff);
  64. // always return true
  65. return true;
  66. }
  67. bool cmForEachFunctionBlocker::
  68. ShouldRemove(const cmListFileFunction& lff, cmMakefile& mf)
  69. {
  70. if(lff.m_Name == "ENDFOREACH")
  71. {
  72. std::vector<std::string> expandedArguments;
  73. mf.ExpandArguments(lff.m_Arguments, expandedArguments);
  74. if(!expandedArguments.empty() && (expandedArguments[0] == m_Args[0]))
  75. {
  76. return true;
  77. }
  78. }
  79. return false;
  80. }
  81. void cmForEachFunctionBlocker::
  82. ScopeEnded(cmMakefile &mf)
  83. {
  84. cmSystemTools::Error("The end of a CMakeLists file was reached with a FOREACH statement that was not closed properly. Within the directory: ",
  85. mf.GetCurrentDirectory());
  86. }
  87. bool cmForEachCommand::InitialPass(std::vector<std::string> const& args)
  88. {
  89. if(args.size() < 1)
  90. {
  91. this->SetError("called with incorrect number of arguments");
  92. return false;
  93. }
  94. // create a function blocker
  95. cmForEachFunctionBlocker *f = new cmForEachFunctionBlocker();
  96. f->m_Args = args;
  97. m_Makefile->AddFunctionBlocker(f);
  98. return true;
  99. }