cmMacroCommand.cxx 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  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 "cmMacroCommand.h"
  14. #include "cmake.h"
  15. // define the class for macro commands
  16. class cmMacroHelperCommand : public cmCommand
  17. {
  18. public:
  19. cmMacroHelperCommand() {}
  20. ///! clean up any memory allocated by the macro
  21. ~cmMacroHelperCommand() {};
  22. /**
  23. * This is a virtual constructor for the command.
  24. */
  25. virtual cmCommand* Clone()
  26. {
  27. cmMacroHelperCommand *newC = new cmMacroHelperCommand;
  28. // we must copy when we clone
  29. newC->Args = this->Args;
  30. newC->Functions = this->Functions;
  31. return newC;
  32. }
  33. /**
  34. * This determines if the command is invoked when in script mode.
  35. */
  36. virtual bool IsScriptable() { return true; }
  37. /**
  38. * This is called when the command is first encountered in
  39. * the CMakeLists.txt file.
  40. */
  41. virtual bool InvokeInitialPass(const std::vector<cmListFileArgument>& args,
  42. cmExecutionStatus &);
  43. virtual bool InitialPass(std::vector<std::string> const&,
  44. cmExecutionStatus &) { return false; };
  45. /**
  46. * The name of the command as specified in CMakeList.txt.
  47. */
  48. virtual const char* GetName() { return this->Args[0].c_str(); }
  49. /**
  50. * Succinct documentation.
  51. */
  52. virtual const char* GetTerseDocumentation()
  53. {
  54. std::string docs = "Macro named: ";
  55. docs += this->GetName();
  56. return docs.c_str();
  57. }
  58. /**
  59. * More documentation.
  60. */
  61. virtual const char* GetFullDocumentation()
  62. {
  63. return this->GetTerseDocumentation();
  64. }
  65. cmTypeMacro(cmMacroHelperCommand, cmCommand);
  66. std::vector<std::string> Args;
  67. std::vector<cmListFileFunction> Functions;
  68. };
  69. bool cmMacroHelperCommand::InvokeInitialPass
  70. (const std::vector<cmListFileArgument>& args,
  71. cmExecutionStatus &inStatus)
  72. {
  73. // Expand the argument list to the macro.
  74. std::vector<std::string> expandedArgs;
  75. this->Makefile->ExpandArguments(args, expandedArgs);
  76. std::string tmps;
  77. cmListFileArgument arg;
  78. std::string variable;
  79. // make sure the number of arguments passed is at least the number
  80. // required by the signature
  81. if (expandedArgs.size() < this->Args.size() - 1)
  82. {
  83. std::string errorMsg =
  84. "Macro invoked with incorrect arguments for macro named: ";
  85. errorMsg += this->Args[0];
  86. this->SetError(errorMsg.c_str());
  87. return false;
  88. }
  89. // set the value of argc
  90. cmOStringStream argcDefStream;
  91. argcDefStream << expandedArgs.size();
  92. std::string argcDef = argcDefStream.str();
  93. // declare varuiables for ARGV ARGN but do not compute until needed
  94. std::string argvDef;
  95. std::string argnDef;
  96. bool argnDefInitialized = false;
  97. bool argvDefInitialized = false;
  98. // Invoke all the functions that were collected in the block.
  99. cmListFileFunction newLFF;
  100. // for each function
  101. for(unsigned int c = 0; c < this->Functions.size(); ++c)
  102. {
  103. // Replace the formal arguments and then invoke the command.
  104. newLFF.Arguments.clear();
  105. newLFF.Arguments.reserve(this->Functions[c].Arguments.size());
  106. newLFF.Name = this->Functions[c].Name;
  107. newLFF.FilePath = this->Functions[c].FilePath;
  108. newLFF.Line = this->Functions[c].Line;
  109. // for each argument of the current function
  110. for (std::vector<cmListFileArgument>::const_iterator k =
  111. this->Functions[c].Arguments.begin();
  112. k != this->Functions[c].Arguments.end(); ++k)
  113. {
  114. tmps = k->Value;
  115. // replace formal arguments
  116. for (unsigned int j = 1; j < this->Args.size(); ++j)
  117. {
  118. variable = "${";
  119. variable += this->Args[j];
  120. variable += "}";
  121. cmSystemTools::ReplaceString(tmps, variable.c_str(),
  122. expandedArgs[j-1].c_str());
  123. }
  124. // replace argc
  125. cmSystemTools::ReplaceString(tmps, "${ARGC}",argcDef.c_str());
  126. // repleace ARGN
  127. if (tmps.find("${ARGN}") != std::string::npos)
  128. {
  129. if (!argnDefInitialized)
  130. {
  131. std::vector<std::string>::const_iterator eit;
  132. std::vector<std::string>::size_type cnt = 0;
  133. for ( eit = expandedArgs.begin(); eit != expandedArgs.end(); ++eit )
  134. {
  135. if ( cnt >= this->Args.size()-1 )
  136. {
  137. if ( argnDef.size() > 0 )
  138. {
  139. argnDef += ";";
  140. }
  141. argnDef += *eit;
  142. }
  143. cnt ++;
  144. }
  145. argnDefInitialized = true;
  146. }
  147. cmSystemTools::ReplaceString(tmps, "${ARGN}", argnDef.c_str());
  148. }
  149. // if the current argument of the current function has ${ARGV in it
  150. // then try replacing ARGV values
  151. if (tmps.find("${ARGV") != std::string::npos)
  152. {
  153. char argvName[60];
  154. // repleace ARGV, compute it only once
  155. if (!argvDefInitialized)
  156. {
  157. std::vector<std::string>::const_iterator eit;
  158. for ( eit = expandedArgs.begin(); eit != expandedArgs.end(); ++eit )
  159. {
  160. if ( argvDef.size() > 0 )
  161. {
  162. argvDef += ";";
  163. }
  164. argvDef += *eit;
  165. }
  166. argvDefInitialized = true;
  167. }
  168. cmSystemTools::ReplaceString(tmps, "${ARGV}", argvDef.c_str());
  169. // also replace the ARGV1 ARGV2 ... etc
  170. for (unsigned int t = 0; t < expandedArgs.size(); ++t)
  171. {
  172. sprintf(argvName,"${ARGV%i}",t);
  173. cmSystemTools::ReplaceString(tmps, argvName,
  174. expandedArgs[t].c_str());
  175. }
  176. }
  177. arg.Value = tmps;
  178. arg.Quoted = k->Quoted;
  179. arg.FilePath = k->FilePath;
  180. arg.Line = k->Line;
  181. newLFF.Arguments.push_back(arg);
  182. }
  183. cmExecutionStatus status;
  184. if(!this->Makefile->ExecuteCommand(newLFF, status) ||
  185. status.GetNestedError())
  186. {
  187. // The error message should have already included the call stack
  188. // so we do not need to report an error here.
  189. inStatus.SetNestedError(true);
  190. return false;
  191. }
  192. if (status.GetReturnInvoked())
  193. {
  194. inStatus.SetReturnInvoked(true);
  195. return true;
  196. }
  197. if (status.GetBreakInvoked())
  198. {
  199. inStatus.SetBreakInvoked(true);
  200. return true;
  201. }
  202. }
  203. return true;
  204. }
  205. bool cmMacroFunctionBlocker::
  206. IsFunctionBlocked(const cmListFileFunction& lff, cmMakefile &mf,
  207. cmExecutionStatus &)
  208. {
  209. // record commands until we hit the ENDMACRO
  210. // at the ENDMACRO call we shift gears and start looking for invocations
  211. if(!cmSystemTools::Strucmp(lff.Name.c_str(),"macro"))
  212. {
  213. this->Depth++;
  214. }
  215. else if(!cmSystemTools::Strucmp(lff.Name.c_str(),"endmacro"))
  216. {
  217. // if this is the endmacro for this macro then execute
  218. if (!this->Depth)
  219. {
  220. std::string name = this->Args[0];
  221. std::vector<std::string>::size_type cc;
  222. name += "(";
  223. for ( cc = 0; cc < this->Args.size(); cc ++ )
  224. {
  225. name += " " + this->Args[cc];
  226. }
  227. name += " )";
  228. mf.AddMacro(this->Args[0].c_str(), name.c_str());
  229. // create a new command and add it to cmake
  230. cmMacroHelperCommand *f = new cmMacroHelperCommand();
  231. f->Args = this->Args;
  232. f->Functions = this->Functions;
  233. std::string newName = "_" + this->Args[0];
  234. mf.GetCMakeInstance()->RenameCommand(this->Args[0].c_str(),
  235. newName.c_str());
  236. mf.AddCommand(f);
  237. // remove the function blocker now that the macro is defined
  238. mf.RemoveFunctionBlocker(lff);
  239. return true;
  240. }
  241. else
  242. {
  243. // decrement for each nested macro that ends
  244. this->Depth--;
  245. }
  246. }
  247. // if it wasn't an endmacro and we are not executing then we must be
  248. // recording
  249. this->Functions.push_back(lff);
  250. return true;
  251. }
  252. bool cmMacroFunctionBlocker::
  253. ShouldRemove(const cmListFileFunction& lff, cmMakefile &mf)
  254. {
  255. if(!cmSystemTools::Strucmp(lff.Name.c_str(),"endmacro"))
  256. {
  257. std::vector<std::string> expandedArguments;
  258. mf.ExpandArguments(lff.Arguments, expandedArguments);
  259. // if the endmacro has arguments make sure they
  260. // match the arguments of the macro
  261. if ((expandedArguments.empty() ||
  262. (expandedArguments[0] == this->Args[0])))
  263. {
  264. return true;
  265. }
  266. }
  267. return false;
  268. }
  269. bool cmMacroCommand::InitialPass(std::vector<std::string> const& args,
  270. cmExecutionStatus &)
  271. {
  272. if(args.size() < 1)
  273. {
  274. this->SetError("called with incorrect number of arguments");
  275. return false;
  276. }
  277. // create a function blocker
  278. cmMacroFunctionBlocker *f = new cmMacroFunctionBlocker();
  279. for(std::vector<std::string>::const_iterator j = args.begin();
  280. j != args.end(); ++j)
  281. {
  282. f->Args.push_back(*j);
  283. }
  284. this->Makefile->AddFunctionBlocker(f);
  285. return true;
  286. }