cmGeneratorExpression.cxx 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  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->Targets = context.Targets;
  101. // TODO: Return a std::string from here instead?
  102. return this->Output.c_str();
  103. }
  104. cmCompiledGeneratorExpression::cmCompiledGeneratorExpression(
  105. cmListFileBacktrace const& backtrace,
  106. const char *input)
  107. : Backtrace(backtrace), Input(input ? input : ""),
  108. HadContextSensitiveCondition(false)
  109. {
  110. cmGeneratorExpressionLexer l;
  111. std::vector<cmGeneratorExpressionToken> tokens =
  112. l.Tokenize(this->Input.c_str());
  113. this->NeedsParsing = l.GetSawGeneratorExpression();
  114. if (this->NeedsParsing)
  115. {
  116. cmGeneratorExpressionParser p(tokens);
  117. p.Parse(this->Evaluators);
  118. }
  119. }
  120. //----------------------------------------------------------------------------
  121. cmCompiledGeneratorExpression::~cmCompiledGeneratorExpression()
  122. {
  123. std::vector<cmGeneratorExpressionEvaluator*>::const_iterator it
  124. = this->Evaluators.begin();
  125. const std::vector<cmGeneratorExpressionEvaluator*>::const_iterator end
  126. = this->Evaluators.end();
  127. for ( ; it != end; ++it)
  128. {
  129. delete *it;
  130. }
  131. }
  132. //----------------------------------------------------------------------------
  133. static std::string stripEmptyListElements(const std::string &input)
  134. {
  135. std::string result;
  136. const char *c = input.c_str();
  137. bool skipSemiColons = true;
  138. for ( ; *c; ++c)
  139. {
  140. if(c[0] == ';')
  141. {
  142. if(skipSemiColons)
  143. {
  144. continue;
  145. }
  146. skipSemiColons = true;
  147. }
  148. else
  149. {
  150. skipSemiColons = false;
  151. }
  152. result += *c;
  153. }
  154. if (!result.empty() && *(result.end() - 1) == ';')
  155. {
  156. result.resize(result.size() - 1);
  157. }
  158. return result;
  159. }
  160. //----------------------------------------------------------------------------
  161. static std::string stripAllGeneratorExpressions(const std::string &input)
  162. {
  163. std::string result;
  164. std::string::size_type pos = 0;
  165. std::string::size_type lastPos = pos;
  166. while((pos = input.find("$<", lastPos)) != input.npos)
  167. {
  168. result += input.substr(lastPos, pos - lastPos);
  169. pos += 2;
  170. int nestingLevel = 1;
  171. const char *c = input.c_str() + pos;
  172. const char * const cStart = c;
  173. for ( ; *c; ++c)
  174. {
  175. if(c[0] == '$' && c[1] == '<')
  176. {
  177. ++nestingLevel;
  178. ++c;
  179. continue;
  180. }
  181. if(c[0] == '>')
  182. {
  183. --nestingLevel;
  184. if (nestingLevel == 0)
  185. {
  186. break;
  187. }
  188. }
  189. }
  190. const std::string::size_type traversed = (c - cStart) + 1;
  191. if (!*c)
  192. {
  193. result += "$<" + input.substr(pos, traversed);
  194. }
  195. pos += traversed;
  196. lastPos = pos;
  197. }
  198. result += input.substr(lastPos);
  199. return stripEmptyListElements(result);
  200. }
  201. //----------------------------------------------------------------------------
  202. static std::string stripExportInterface(const std::string &input,
  203. cmGeneratorExpression::PreprocessContext context)
  204. {
  205. std::string result;
  206. std::string::size_type pos = 0;
  207. std::string::size_type lastPos = pos;
  208. while((pos = input.find("$<BUILD_INTERFACE:", lastPos)) != input.npos
  209. || (pos = input.find("$<INSTALL_INTERFACE:", lastPos)) != input.npos)
  210. {
  211. result += input.substr(lastPos, pos - lastPos);
  212. const bool gotInstallInterface = input[pos + 2] == 'I';
  213. pos += gotInstallInterface ? sizeof("$<INSTALL_INTERFACE:") - 1
  214. : sizeof("$<BUILD_INTERFACE:") - 1;
  215. int nestingLevel = 1;
  216. const char *c = input.c_str() + pos;
  217. const char * const cStart = c;
  218. for ( ; *c; ++c)
  219. {
  220. if(c[0] == '$' && c[1] == '<')
  221. {
  222. ++nestingLevel;
  223. ++c;
  224. continue;
  225. }
  226. if(c[0] == '>')
  227. {
  228. --nestingLevel;
  229. if (nestingLevel != 0)
  230. {
  231. continue;
  232. }
  233. if(context == cmGeneratorExpression::BuildInterface
  234. && !gotInstallInterface)
  235. {
  236. result += input.substr(pos, c - cStart);
  237. }
  238. else if(context == cmGeneratorExpression::InstallInterface
  239. && gotInstallInterface)
  240. {
  241. result += input.substr(pos, c - cStart);
  242. }
  243. break;
  244. }
  245. }
  246. const std::string::size_type traversed = (c - cStart) + 1;
  247. if (!*c)
  248. {
  249. result += std::string(gotInstallInterface ? "$<INSTALL_INTERFACE:"
  250. : "$<BUILD_INTERFACE:")
  251. + input.substr(pos, traversed);
  252. }
  253. pos += traversed;
  254. lastPos = pos;
  255. }
  256. result += input.substr(lastPos);
  257. return stripEmptyListElements(result);
  258. }
  259. //----------------------------------------------------------------------------
  260. void cmGeneratorExpression::Split(const std::string &input,
  261. std::vector<std::string> &output)
  262. {
  263. std::string::size_type pos = 0;
  264. std::string::size_type lastPos = pos;
  265. while((pos = input.find("$<", lastPos)) != input.npos)
  266. {
  267. std::string part = input.substr(lastPos, pos - lastPos);
  268. std::string preGenex;
  269. if (!part.empty())
  270. {
  271. std::string::size_type startPos = input.rfind(";", pos);
  272. if (startPos != pos - 1 && startPos >= lastPos)
  273. {
  274. part = input.substr(lastPos, startPos - lastPos);
  275. preGenex = input.substr(startPos + 1, pos - startPos - 1);
  276. }
  277. cmSystemTools::ExpandListArgument(part.c_str(), output);
  278. }
  279. pos += 2;
  280. int nestingLevel = 1;
  281. const char *c = input.c_str() + pos;
  282. const char * const cStart = c;
  283. for ( ; *c; ++c)
  284. {
  285. if(c[0] == '$' && c[1] == '<')
  286. {
  287. ++nestingLevel;
  288. ++c;
  289. continue;
  290. }
  291. if(c[0] == '>')
  292. {
  293. --nestingLevel;
  294. if (nestingLevel == 0)
  295. {
  296. break;
  297. }
  298. }
  299. }
  300. for ( ; *c; ++c)
  301. {
  302. // Capture the part after the genex and before the next ';'
  303. if(c[0] == ';')
  304. {
  305. --c;
  306. break;
  307. }
  308. }
  309. const std::string::size_type traversed = (c - cStart) + 1;
  310. output.push_back(preGenex + "$<" + input.substr(pos, traversed));
  311. pos += traversed;
  312. lastPos = pos;
  313. }
  314. if (lastPos < input.size())
  315. {
  316. cmSystemTools::ExpandListArgument(input.substr(lastPos), output);
  317. }
  318. }
  319. //----------------------------------------------------------------------------
  320. std::string cmGeneratorExpression::Preprocess(const std::string &input,
  321. PreprocessContext context)
  322. {
  323. if (context == StripAllGeneratorExpressions)
  324. {
  325. return stripAllGeneratorExpressions(input);
  326. }
  327. else if (context == BuildInterface || context == InstallInterface)
  328. {
  329. return stripExportInterface(input, context);
  330. }
  331. assert(!"cmGeneratorExpression::Preprocess called with invalid args");
  332. return std::string();
  333. }
  334. //----------------------------------------------------------------------------
  335. std::string::size_type cmGeneratorExpression::Find(const std::string &input)
  336. {
  337. const std::string::size_type openpos = input.find("$<");
  338. if (openpos != std::string::npos
  339. && input.find(">", openpos) != std::string::npos)
  340. {
  341. return openpos;
  342. }
  343. return std::string::npos;
  344. }
  345. //----------------------------------------------------------------------------
  346. bool cmGeneratorExpression::IsValidTargetName(const std::string &input)
  347. {
  348. cmsys::RegularExpression targetNameValidator;
  349. // The ':' is supported to allow use with IMPORTED targets. At least
  350. // Qt 4 and 5 IMPORTED targets use ':' as the namespace delimiter.
  351. targetNameValidator.compile("^[A-Za-z0-9_.:-]+$");
  352. return targetNameValidator.find(input.c_str());
  353. }