1
0

cmForEachCommand.cxx 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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. if ( args.size() > 1 )
  97. {
  98. if ( args[1] == "RANGE" )
  99. {
  100. int start = 0;
  101. int stop = 0;
  102. int step = 0;
  103. if ( args.size() == 3 )
  104. {
  105. stop = atoi(args[2].c_str());
  106. }
  107. if ( args.size() == 4 )
  108. {
  109. start = atoi(args[2].c_str());
  110. stop = atoi(args[3].c_str());
  111. }
  112. if ( args.size() == 5 )
  113. {
  114. start = atoi(args[2].c_str());
  115. stop = atoi(args[3].c_str());
  116. step = atoi(args[4].c_str());
  117. }
  118. if ( step == 0 )
  119. {
  120. if ( start > stop )
  121. {
  122. step = -1;
  123. }
  124. else
  125. {
  126. step = 1;
  127. }
  128. }
  129. if (
  130. (start > stop && step > 0) ||
  131. (start < stop && step < 0) ||
  132. step == 0
  133. )
  134. {
  135. cmOStringStream str;
  136. str << "called with incorrect range specification: start ";
  137. str << start << ", stop " << stop << ", step " << step;
  138. this->SetError(str.str().c_str());
  139. return false;
  140. }
  141. std::vector<std::string> range;
  142. char buffer[100];
  143. range.push_back(args[0]);
  144. int cc;
  145. for ( cc = start; ; cc += step )
  146. {
  147. if ( (step > 0 && cc > stop) || (step < 0 && cc < stop) )
  148. {
  149. break;
  150. }
  151. sprintf(buffer, "%d", cc);
  152. range.push_back(buffer);
  153. if ( cc == stop )
  154. {
  155. break;
  156. }
  157. }
  158. f->m_Args = range;
  159. }
  160. else
  161. {
  162. f->m_Args = args;
  163. }
  164. }
  165. else
  166. {
  167. f->m_Args = args;
  168. }
  169. m_Makefile->AddFunctionBlocker(f);
  170. return true;
  171. }