cmForEachCommand.cxx 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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. mf.RemoveFunctionBlocker(lff);
  60. return true;
  61. }
  62. }
  63. // record the command
  64. m_Functions.push_back(lff);
  65. // always return true
  66. return true;
  67. }
  68. bool cmForEachFunctionBlocker::
  69. ShouldRemove(const cmListFileFunction& lff, cmMakefile& mf)
  70. {
  71. if(lff.m_Name == "ENDFOREACH")
  72. {
  73. std::vector<std::string> expandedArguments;
  74. mf.ExpandArguments(lff.m_Arguments, expandedArguments);
  75. if(!expandedArguments.empty() && (expandedArguments[0] == m_Args[0]))
  76. {
  77. return true;
  78. }
  79. }
  80. return false;
  81. }
  82. void cmForEachFunctionBlocker::
  83. ScopeEnded(cmMakefile &mf)
  84. {
  85. cmSystemTools::Error("The end of a CMakeLists file was reached with a FOREACH statement that was not closed properly. Within the directory: ",
  86. mf.GetCurrentDirectory());
  87. }
  88. bool cmForEachCommand::InitialPass(std::vector<std::string> const& args)
  89. {
  90. if(args.size() < 1)
  91. {
  92. this->SetError("called with incorrect number of arguments");
  93. return false;
  94. }
  95. // create a function blocker
  96. cmForEachFunctionBlocker *f = new cmForEachFunctionBlocker();
  97. if ( args.size() > 1 )
  98. {
  99. if ( args[1] == "RANGE" )
  100. {
  101. int start = 0;
  102. int stop = 0;
  103. int step = 0;
  104. if ( args.size() == 3 )
  105. {
  106. stop = atoi(args[2].c_str());
  107. }
  108. if ( args.size() == 4 )
  109. {
  110. start = atoi(args[2].c_str());
  111. stop = atoi(args[3].c_str());
  112. }
  113. if ( args.size() == 5 )
  114. {
  115. start = atoi(args[2].c_str());
  116. stop = atoi(args[3].c_str());
  117. step = atoi(args[4].c_str());
  118. }
  119. if ( step == 0 )
  120. {
  121. if ( start > stop )
  122. {
  123. step = -1;
  124. }
  125. else
  126. {
  127. step = 1;
  128. }
  129. }
  130. if (
  131. (start > stop && step > 0) ||
  132. (start < stop && step < 0) ||
  133. step == 0
  134. )
  135. {
  136. cmOStringStream str;
  137. str << "called with incorrect range specification: start ";
  138. str << start << ", stop " << stop << ", step " << step;
  139. this->SetError(str.str().c_str());
  140. return false;
  141. }
  142. std::vector<std::string> range;
  143. char buffer[100];
  144. range.push_back(args[0]);
  145. int cc;
  146. for ( cc = start; ; cc += step )
  147. {
  148. if ( (step > 0 && cc > stop) || (step < 0 && cc < stop) )
  149. {
  150. break;
  151. }
  152. sprintf(buffer, "%d", cc);
  153. range.push_back(buffer);
  154. if ( cc == stop )
  155. {
  156. break;
  157. }
  158. }
  159. f->m_Args = range;
  160. }
  161. else
  162. {
  163. f->m_Args = args;
  164. }
  165. }
  166. else
  167. {
  168. f->m_Args = args;
  169. }
  170. m_Makefile->AddFunctionBlocker(f);
  171. return true;
  172. }