cmForEachCommand.cxx 5.0 KB

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