cmGeneratorExpression.cxx 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #include "cmGeneratorExpression.h"
  11. #include "cmMakefile.h"
  12. #include "cmTarget.h"
  13. #include "assert.h"
  14. #include <cmsys/String.h>
  15. #include "cmGeneratorExpressionEvaluator.h"
  16. #include "cmGeneratorExpressionLexer.h"
  17. #include "cmGeneratorExpressionParser.h"
  18. #include "cmGeneratorExpressionDAGChecker.h"
  19. //----------------------------------------------------------------------------
  20. cmGeneratorExpression::cmGeneratorExpression(
  21. cmListFileBacktrace const& backtrace):
  22. Backtrace(backtrace)
  23. {
  24. }
  25. //----------------------------------------------------------------------------
  26. cmsys::auto_ptr<cmCompiledGeneratorExpression>
  27. cmGeneratorExpression::Parse(std::string const& input)
  28. {
  29. return this->Parse(input.c_str());
  30. }
  31. //----------------------------------------------------------------------------
  32. cmsys::auto_ptr<cmCompiledGeneratorExpression>
  33. cmGeneratorExpression::Parse(const char* input)
  34. {
  35. return cmsys::auto_ptr<cmCompiledGeneratorExpression>(
  36. new cmCompiledGeneratorExpression(
  37. this->Backtrace,
  38. input));
  39. }
  40. cmGeneratorExpression::~cmGeneratorExpression()
  41. {
  42. }
  43. //----------------------------------------------------------------------------
  44. const char *cmCompiledGeneratorExpression::Evaluate(
  45. cmMakefile* mf, const char* config, bool quiet,
  46. cmTarget *headTarget,
  47. cmGeneratorExpressionDAGChecker *dagChecker) const
  48. {
  49. return this->Evaluate(mf,
  50. config,
  51. quiet,
  52. headTarget,
  53. headTarget,
  54. dagChecker);
  55. }
  56. //----------------------------------------------------------------------------
  57. const char *cmCompiledGeneratorExpression::Evaluate(
  58. cmMakefile* mf, const char* config, bool quiet,
  59. cmTarget *headTarget,
  60. cmTarget *currentTarget,
  61. cmGeneratorExpressionDAGChecker *dagChecker) const
  62. {
  63. if (!this->NeedsParsing)
  64. {
  65. return this->Input.c_str();
  66. }
  67. this->Output = "";
  68. std::vector<cmGeneratorExpressionEvaluator*>::const_iterator it
  69. = this->Evaluators.begin();
  70. const std::vector<cmGeneratorExpressionEvaluator*>::const_iterator end
  71. = this->Evaluators.end();
  72. cmGeneratorExpressionContext context;
  73. context.Makefile = mf;
  74. context.Config = config;
  75. context.Quiet = quiet;
  76. context.HadError = false;
  77. context.HadContextSensitiveCondition = false;
  78. context.HeadTarget = headTarget;
  79. context.CurrentTarget = currentTarget ? currentTarget : headTarget;
  80. context.Backtrace = this->Backtrace;
  81. for ( ; it != end; ++it)
  82. {
  83. this->Output += (*it)->Evaluate(&context, dagChecker);
  84. for(std::set<cmStdString>::const_iterator
  85. p = context.SeenTargetProperties.begin();
  86. p != context.SeenTargetProperties.end(); ++p)
  87. {
  88. this->SeenTargetProperties.insert(*p);
  89. }
  90. if (context.HadError)
  91. {
  92. this->Output = "";
  93. break;
  94. }
  95. }
  96. if (!context.HadError)
  97. {
  98. this->HadContextSensitiveCondition = context.HadContextSensitiveCondition;
  99. }
  100. this->DependTargets = context.DependTargets;
  101. this->AllTargetsSeen = context.AllTargets;
  102. // TODO: Return a std::string from here instead?
  103. return this->Output.c_str();
  104. }
  105. cmCompiledGeneratorExpression::cmCompiledGeneratorExpression(
  106. cmListFileBacktrace const& backtrace,
  107. const char *input)
  108. : Backtrace(backtrace), Input(input ? input : ""),
  109. HadContextSensitiveCondition(false)
  110. {
  111. cmGeneratorExpressionLexer l;
  112. std::vector<cmGeneratorExpressionToken> tokens =
  113. l.Tokenize(this->Input.c_str());
  114. this->NeedsParsing = l.GetSawGeneratorExpression();
  115. if (this->NeedsParsing)
  116. {
  117. cmGeneratorExpressionParser p(tokens);
  118. p.Parse(this->Evaluators);
  119. }
  120. }
  121. //----------------------------------------------------------------------------
  122. cmCompiledGeneratorExpression::~cmCompiledGeneratorExpression()
  123. {
  124. std::vector<cmGeneratorExpressionEvaluator*>::const_iterator it
  125. = this->Evaluators.begin();
  126. const std::vector<cmGeneratorExpressionEvaluator*>::const_iterator end
  127. = this->Evaluators.end();
  128. for ( ; it != end; ++it)
  129. {
  130. delete *it;
  131. }
  132. }
  133. //----------------------------------------------------------------------------
  134. std::string cmGeneratorExpression::StripEmptyListElements(
  135. const std::string &input)
  136. {
  137. std::string result;
  138. const char *c = input.c_str();
  139. bool skipSemiColons = true;
  140. for ( ; *c; ++c)
  141. {
  142. if(c[0] == ';')
  143. {
  144. if(skipSemiColons)
  145. {
  146. continue;
  147. }
  148. skipSemiColons = true;
  149. }
  150. else
  151. {
  152. skipSemiColons = false;
  153. }
  154. result += *c;
  155. }
  156. if (!result.empty() && *(result.end() - 1) == ';')
  157. {
  158. result.resize(result.size() - 1);
  159. }
  160. return result;
  161. }
  162. //----------------------------------------------------------------------------
  163. static std::string stripAllGeneratorExpressions(const std::string &input)
  164. {
  165. std::string result;
  166. std::string::size_type pos = 0;
  167. std::string::size_type lastPos = pos;
  168. while((pos = input.find("$<", lastPos)) != input.npos)
  169. {
  170. result += input.substr(lastPos, pos - lastPos);
  171. pos += 2;
  172. int nestingLevel = 1;
  173. const char *c = input.c_str() + pos;
  174. const char * const cStart = c;
  175. for ( ; *c; ++c)
  176. {
  177. if(c[0] == '$' && c[1] == '<')
  178. {
  179. ++nestingLevel;
  180. ++c;
  181. continue;
  182. }
  183. if(c[0] == '>')
  184. {
  185. --nestingLevel;
  186. if (nestingLevel == 0)
  187. {
  188. break;
  189. }
  190. }
  191. }
  192. const std::string::size_type traversed = (c - cStart) + 1;
  193. if (!*c)
  194. {
  195. result += "$<" + input.substr(pos, traversed);
  196. }
  197. pos += traversed;
  198. lastPos = pos;
  199. }
  200. result += input.substr(lastPos);
  201. return cmGeneratorExpression::StripEmptyListElements(result);
  202. }
  203. //----------------------------------------------------------------------------
  204. static std::string stripExportInterface(const std::string &input,
  205. cmGeneratorExpression::PreprocessContext context)
  206. {
  207. std::string result;
  208. std::string::size_type pos = 0;
  209. std::string::size_type lastPos = pos;
  210. while (true)
  211. {
  212. std::string::size_type bPos = input.find("$<BUILD_INTERFACE:", lastPos);
  213. std::string::size_type iPos = input.find("$<INSTALL_INTERFACE:", lastPos);
  214. if (bPos == std::string::npos && iPos == std::string::npos)
  215. {
  216. break;
  217. }
  218. if (bPos == std::string::npos)
  219. {
  220. pos = iPos;
  221. }
  222. else if (iPos == std::string::npos)
  223. {
  224. pos = bPos;
  225. }
  226. else
  227. {
  228. pos = (bPos < iPos) ? bPos : iPos;
  229. }
  230. result += input.substr(lastPos, pos - lastPos);
  231. const bool gotInstallInterface = input[pos + 2] == 'I';
  232. pos += gotInstallInterface ? sizeof("$<INSTALL_INTERFACE:") - 1
  233. : sizeof("$<BUILD_INTERFACE:") - 1;
  234. int nestingLevel = 1;
  235. const char *c = input.c_str() + pos;
  236. const char * const cStart = c;
  237. for ( ; *c; ++c)
  238. {
  239. if(c[0] == '$' && c[1] == '<')
  240. {
  241. ++nestingLevel;
  242. ++c;
  243. continue;
  244. }
  245. if(c[0] == '>')
  246. {
  247. --nestingLevel;
  248. if (nestingLevel != 0)
  249. {
  250. continue;
  251. }
  252. if(context == cmGeneratorExpression::BuildInterface
  253. && !gotInstallInterface)
  254. {
  255. result += input.substr(pos, c - cStart);
  256. }
  257. else if(context == cmGeneratorExpression::InstallInterface
  258. && gotInstallInterface)
  259. {
  260. result += input.substr(pos, c - cStart);
  261. }
  262. break;
  263. }
  264. }
  265. const std::string::size_type traversed = (c - cStart) + 1;
  266. if (!*c)
  267. {
  268. result += std::string(gotInstallInterface ? "$<INSTALL_INTERFACE:"
  269. : "$<BUILD_INTERFACE:")
  270. + input.substr(pos, traversed);
  271. }
  272. pos += traversed;
  273. lastPos = pos;
  274. }
  275. result += input.substr(lastPos);
  276. return cmGeneratorExpression::StripEmptyListElements(result);
  277. }
  278. //----------------------------------------------------------------------------
  279. void cmGeneratorExpression::Split(const std::string &input,
  280. std::vector<std::string> &output)
  281. {
  282. std::string::size_type pos = 0;
  283. std::string::size_type lastPos = pos;
  284. while((pos = input.find("$<", lastPos)) != input.npos)
  285. {
  286. std::string part = input.substr(lastPos, pos - lastPos);
  287. std::string preGenex;
  288. if (!part.empty())
  289. {
  290. std::string::size_type startPos = input.rfind(";", pos);
  291. if (startPos == std::string::npos)
  292. {
  293. preGenex = part;
  294. part = "";
  295. }
  296. else if (startPos != pos - 1 && startPos >= lastPos)
  297. {
  298. part = input.substr(lastPos, startPos - lastPos);
  299. preGenex = input.substr(startPos + 1, pos - startPos - 1);
  300. }
  301. if(!part.empty())
  302. {
  303. cmSystemTools::ExpandListArgument(part.c_str(), output);
  304. }
  305. }
  306. pos += 2;
  307. int nestingLevel = 1;
  308. const char *c = input.c_str() + pos;
  309. const char * const cStart = c;
  310. for ( ; *c; ++c)
  311. {
  312. if(c[0] == '$' && c[1] == '<')
  313. {
  314. ++nestingLevel;
  315. ++c;
  316. continue;
  317. }
  318. if(c[0] == '>')
  319. {
  320. --nestingLevel;
  321. if (nestingLevel == 0)
  322. {
  323. break;
  324. }
  325. }
  326. }
  327. for ( ; *c; ++c)
  328. {
  329. // Capture the part after the genex and before the next ';'
  330. if(c[0] == ';')
  331. {
  332. --c;
  333. break;
  334. }
  335. }
  336. const std::string::size_type traversed = (c - cStart) + 1;
  337. output.push_back(preGenex + "$<" + input.substr(pos, traversed));
  338. pos += traversed;
  339. lastPos = pos;
  340. }
  341. if (lastPos < input.size())
  342. {
  343. cmSystemTools::ExpandListArgument(input.substr(lastPos), output);
  344. }
  345. }
  346. //----------------------------------------------------------------------------
  347. std::string cmGeneratorExpression::Preprocess(const std::string &input,
  348. PreprocessContext context)
  349. {
  350. if (context == StripAllGeneratorExpressions)
  351. {
  352. return stripAllGeneratorExpressions(input);
  353. }
  354. else if (context == BuildInterface || context == InstallInterface)
  355. {
  356. return stripExportInterface(input, context);
  357. }
  358. assert(!"cmGeneratorExpression::Preprocess called with invalid args");
  359. return std::string();
  360. }
  361. //----------------------------------------------------------------------------
  362. std::string::size_type cmGeneratorExpression::Find(const std::string &input)
  363. {
  364. const std::string::size_type openpos = input.find("$<");
  365. if (openpos != std::string::npos
  366. && input.find(">", openpos) != std::string::npos)
  367. {
  368. return openpos;
  369. }
  370. return std::string::npos;
  371. }
  372. //----------------------------------------------------------------------------
  373. bool cmGeneratorExpression::IsValidTargetName(const std::string &input)
  374. {
  375. cmsys::RegularExpression targetNameValidator;
  376. // The ':' is supported to allow use with IMPORTED targets. At least
  377. // Qt 4 and 5 IMPORTED targets use ':' as the namespace delimiter.
  378. targetNameValidator.compile("^[A-Za-z0-9_.:+-]+$");
  379. return targetNameValidator.find(input.c_str());
  380. }