cmOutputRequiredFilesCommand.cxx 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #include "cmOutputRequiredFilesCommand.h"
  4. #include "cmsys/FStream.hxx"
  5. #include "cmsys/RegularExpression.hxx"
  6. #include <map>
  7. #include <set>
  8. #include <stdio.h>
  9. #include <utility>
  10. #include "cmAlgorithms.h"
  11. #include "cmExecutionStatus.h"
  12. #include "cmGeneratorExpression.h"
  13. #include "cmMakefile.h"
  14. #include "cmSourceFile.h"
  15. #include "cmStringAlgorithms.h"
  16. #include "cmSystemTools.h"
  17. #include "cmTarget.h"
  18. namespace {
  19. /** \class cmDependInformation
  20. * \brief Store dependency information for a single source file.
  21. *
  22. * This structure stores the depend information for a single source file.
  23. */
  24. class cmDependInformation
  25. {
  26. public:
  27. /**
  28. * Construct with dependency generation marked not done; instance
  29. * not placed in cmMakefile's list.
  30. */
  31. cmDependInformation() = default;
  32. /**
  33. * The set of files on which this one depends.
  34. */
  35. using DependencySetType = std::set<cmDependInformation*>;
  36. DependencySetType DependencySet;
  37. /**
  38. * This flag indicates whether dependency checking has been
  39. * performed for this file.
  40. */
  41. bool DependDone = false;
  42. /**
  43. * If this object corresponds to a cmSourceFile instance, this points
  44. * to it.
  45. */
  46. const cmSourceFile* SourceFile = nullptr;
  47. /**
  48. * Full path to this file.
  49. */
  50. std::string FullPath;
  51. /**
  52. * Full path not including file name.
  53. */
  54. std::string PathOnly;
  55. /**
  56. * Name used to #include this file.
  57. */
  58. std::string IncludeName;
  59. /**
  60. * This method adds the dependencies of another file to this one.
  61. */
  62. void AddDependencies(cmDependInformation* info)
  63. {
  64. if (this != info) {
  65. this->DependencySet.insert(info);
  66. }
  67. }
  68. };
  69. class cmLBDepend
  70. {
  71. public:
  72. /**
  73. * Construct the object with verbose turned off.
  74. */
  75. cmLBDepend()
  76. {
  77. this->Verbose = false;
  78. this->IncludeFileRegularExpression.compile("^.*$");
  79. this->ComplainFileRegularExpression.compile("^$");
  80. }
  81. /**
  82. * Destructor.
  83. */
  84. ~cmLBDepend() { cmDeleteAll(this->DependInformationMap); }
  85. cmLBDepend(const cmLBDepend&) = delete;
  86. cmLBDepend& operator=(const cmLBDepend&) = delete;
  87. /**
  88. * Set the makefile that is used as a source of classes.
  89. */
  90. void SetMakefile(cmMakefile* makefile)
  91. {
  92. this->Makefile = makefile;
  93. // Now extract the include file regular expression from the makefile.
  94. this->IncludeFileRegularExpression.compile(
  95. this->Makefile->GetIncludeRegularExpression());
  96. this->ComplainFileRegularExpression.compile(
  97. this->Makefile->GetComplainRegularExpression());
  98. // Now extract any include paths from the targets
  99. std::set<std::string> uniqueIncludes;
  100. std::vector<std::string> orderedAndUniqueIncludes;
  101. for (auto const& target : this->Makefile->GetTargets()) {
  102. const char* incDirProp =
  103. target.second.GetProperty("INCLUDE_DIRECTORIES");
  104. if (!incDirProp) {
  105. continue;
  106. }
  107. std::string incDirs = cmGeneratorExpression::Preprocess(
  108. incDirProp, cmGeneratorExpression::StripAllGeneratorExpressions);
  109. std::vector<std::string> includes = cmExpandedList(incDirs);
  110. for (std::string& path : includes) {
  111. this->Makefile->ExpandVariablesInString(path);
  112. if (uniqueIncludes.insert(path).second) {
  113. orderedAndUniqueIncludes.push_back(path);
  114. }
  115. }
  116. }
  117. for (std::string const& inc : orderedAndUniqueIncludes) {
  118. this->AddSearchPath(inc);
  119. }
  120. }
  121. /**
  122. * Add a directory to the search path for include files.
  123. */
  124. void AddSearchPath(const std::string& path)
  125. {
  126. this->IncludeDirectories.push_back(path);
  127. }
  128. /**
  129. * Generate dependencies for the file given. Returns a pointer to
  130. * the cmDependInformation object for the file.
  131. */
  132. const cmDependInformation* FindDependencies(const char* file)
  133. {
  134. cmDependInformation* info = this->GetDependInformation(file, nullptr);
  135. this->GenerateDependInformation(info);
  136. return info;
  137. }
  138. protected:
  139. /**
  140. * Compute the depend information for this class.
  141. */
  142. void DependWalk(cmDependInformation* info)
  143. {
  144. cmsys::ifstream fin(info->FullPath.c_str());
  145. if (!fin) {
  146. cmSystemTools::Error("error can not open " + info->FullPath);
  147. return;
  148. }
  149. std::string line;
  150. while (cmSystemTools::GetLineFromStream(fin, line)) {
  151. if (cmHasLiteralPrefix(line, "#include")) {
  152. // if it is an include line then create a string class
  153. size_t qstart = line.find('\"', 8);
  154. size_t qend;
  155. // if a quote is not found look for a <
  156. if (qstart == std::string::npos) {
  157. qstart = line.find('<', 8);
  158. // if a < is not found then move on
  159. if (qstart == std::string::npos) {
  160. cmSystemTools::Error("unknown include directive " + line);
  161. continue;
  162. }
  163. qend = line.find('>', qstart + 1);
  164. } else {
  165. qend = line.find('\"', qstart + 1);
  166. }
  167. // extract the file being included
  168. std::string includeFile = line.substr(qstart + 1, qend - qstart - 1);
  169. // see if the include matches the regular expression
  170. if (!this->IncludeFileRegularExpression.find(includeFile)) {
  171. if (this->Verbose) {
  172. std::string message =
  173. cmStrCat("Skipping ", includeFile, " for file ", info->FullPath);
  174. cmSystemTools::Error(message);
  175. }
  176. continue;
  177. }
  178. // Add this file and all its dependencies.
  179. this->AddDependency(info, includeFile.c_str());
  180. /// add the cxx file if it exists
  181. std::string cxxFile = includeFile;
  182. std::string::size_type pos = cxxFile.rfind('.');
  183. if (pos != std::string::npos) {
  184. std::string root = cxxFile.substr(0, pos);
  185. cxxFile = root + ".cxx";
  186. bool found = false;
  187. // try jumping to .cxx .cpp and .c in order
  188. if (cmSystemTools::FileExists(cxxFile)) {
  189. found = true;
  190. }
  191. for (std::string const& path : this->IncludeDirectories) {
  192. if (cmSystemTools::FileExists(cmStrCat(path, "/", cxxFile))) {
  193. found = true;
  194. }
  195. }
  196. if (!found) {
  197. cxxFile = root + ".cpp";
  198. if (cmSystemTools::FileExists(cxxFile)) {
  199. found = true;
  200. }
  201. for (std::string const& path : this->IncludeDirectories) {
  202. if (cmSystemTools::FileExists(cmStrCat(path, "/", cxxFile))) {
  203. found = true;
  204. }
  205. }
  206. }
  207. if (!found) {
  208. cxxFile = root + ".c";
  209. if (cmSystemTools::FileExists(cxxFile)) {
  210. found = true;
  211. }
  212. for (std::string const& path : this->IncludeDirectories) {
  213. if (cmSystemTools::FileExists(cmStrCat(path, "/", cxxFile))) {
  214. found = true;
  215. }
  216. }
  217. }
  218. if (!found) {
  219. cxxFile = root + ".txx";
  220. if (cmSystemTools::FileExists(cxxFile)) {
  221. found = true;
  222. }
  223. for (std::string const& path : this->IncludeDirectories) {
  224. if (cmSystemTools::FileExists(cmStrCat(path, "/", cxxFile))) {
  225. found = true;
  226. }
  227. }
  228. }
  229. if (found) {
  230. this->AddDependency(info, cxxFile.c_str());
  231. }
  232. }
  233. }
  234. }
  235. }
  236. /**
  237. * Add a dependency. Possibly walk it for more dependencies.
  238. */
  239. void AddDependency(cmDependInformation* info, const char* file)
  240. {
  241. cmDependInformation* dependInfo =
  242. this->GetDependInformation(file, info->PathOnly.c_str());
  243. this->GenerateDependInformation(dependInfo);
  244. info->AddDependencies(dependInfo);
  245. }
  246. /**
  247. * Fill in the given object with dependency information. If the
  248. * information is already complete, nothing is done.
  249. */
  250. void GenerateDependInformation(cmDependInformation* info)
  251. {
  252. // If dependencies are already done, stop now.
  253. if (info->DependDone) {
  254. return;
  255. }
  256. // Make sure we don't visit the same file more than once.
  257. info->DependDone = true;
  258. const std::string& path = info->FullPath;
  259. if (path.empty()) {
  260. cmSystemTools::Error(
  261. "Attempt to find dependencies for file without path!");
  262. return;
  263. }
  264. bool found = false;
  265. // If the file exists, use it to find dependency information.
  266. if (cmSystemTools::FileExists(path, true)) {
  267. // Use the real file to find its dependencies.
  268. this->DependWalk(info);
  269. found = true;
  270. }
  271. // See if the cmSourceFile for it has any files specified as
  272. // dependency hints.
  273. if (info->SourceFile != nullptr) {
  274. // Get the cmSourceFile corresponding to this.
  275. const cmSourceFile& cFile = *(info->SourceFile);
  276. // See if there are any hints for finding dependencies for the missing
  277. // file.
  278. if (!cFile.GetDepends().empty()) {
  279. // Dependency hints have been given. Use them to begin the
  280. // recursion.
  281. for (std::string const& file : cFile.GetDepends()) {
  282. this->AddDependency(info, file.c_str());
  283. }
  284. // Found dependency information. We are done.
  285. found = true;
  286. }
  287. }
  288. if (!found) {
  289. // Try to find the file amongst the sources
  290. cmSourceFile* srcFile = this->Makefile->GetSource(
  291. cmSystemTools::GetFilenameWithoutExtension(path));
  292. if (srcFile) {
  293. if (srcFile->ResolveFullPath() == path) {
  294. found = true;
  295. } else {
  296. // try to guess which include path to use
  297. for (std::string incpath : this->IncludeDirectories) {
  298. if (!incpath.empty() && incpath.back() != '/') {
  299. incpath += "/";
  300. }
  301. incpath += path;
  302. if (srcFile->ResolveFullPath() == incpath) {
  303. // set the path to the guessed path
  304. info->FullPath = incpath;
  305. found = true;
  306. }
  307. }
  308. }
  309. }
  310. }
  311. if (!found) {
  312. // Couldn't find any dependency information.
  313. if (this->ComplainFileRegularExpression.find(info->IncludeName)) {
  314. cmSystemTools::Error("error cannot find dependencies for " + path);
  315. } else {
  316. // Destroy the name of the file so that it won't be output as a
  317. // dependency.
  318. info->FullPath.clear();
  319. }
  320. }
  321. }
  322. /**
  323. * Get an instance of cmDependInformation corresponding to the given file
  324. * name.
  325. */
  326. cmDependInformation* GetDependInformation(const char* file,
  327. const char* extraPath)
  328. {
  329. // Get the full path for the file so that lookup is unambiguous.
  330. std::string fullPath = this->FullPath(file, extraPath);
  331. // Try to find the file's instance of cmDependInformation.
  332. auto result = this->DependInformationMap.find(fullPath);
  333. if (result != this->DependInformationMap.end()) {
  334. // Found an instance, return it.
  335. return result->second;
  336. }
  337. // Didn't find an instance. Create a new one and save it.
  338. cmDependInformation* info = new cmDependInformation;
  339. info->FullPath = fullPath;
  340. info->PathOnly = cmSystemTools::GetFilenamePath(fullPath);
  341. info->IncludeName = file;
  342. this->DependInformationMap[fullPath] = info;
  343. return info;
  344. }
  345. /**
  346. * Find the full path name for the given file name.
  347. * This uses the include directories.
  348. * TODO: Cache path conversions to reduce FileExists calls.
  349. */
  350. std::string FullPath(const char* fname, const char* extraPath)
  351. {
  352. DirectoryToFileToPathMapType::iterator m;
  353. if (extraPath) {
  354. m = this->DirectoryToFileToPathMap.find(extraPath);
  355. } else {
  356. m = this->DirectoryToFileToPathMap.find("");
  357. }
  358. if (m != this->DirectoryToFileToPathMap.end()) {
  359. FileToPathMapType& map = m->second;
  360. auto p = map.find(fname);
  361. if (p != map.end()) {
  362. return p->second;
  363. }
  364. }
  365. if (cmSystemTools::FileExists(fname, true)) {
  366. std::string fp = cmSystemTools::CollapseFullPath(fname);
  367. this->DirectoryToFileToPathMap[extraPath ? extraPath : ""][fname] = fp;
  368. return fp;
  369. }
  370. for (std::string path : this->IncludeDirectories) {
  371. if (!path.empty() && path.back() != '/') {
  372. path += "/";
  373. }
  374. path += fname;
  375. if (cmSystemTools::FileExists(path, true) &&
  376. !cmSystemTools::FileIsDirectory(path)) {
  377. std::string fp = cmSystemTools::CollapseFullPath(path);
  378. this->DirectoryToFileToPathMap[extraPath ? extraPath : ""][fname] = fp;
  379. return fp;
  380. }
  381. }
  382. if (extraPath) {
  383. std::string path = extraPath;
  384. if (!path.empty() && path.back() != '/') {
  385. path = path + "/";
  386. }
  387. path = path + fname;
  388. if (cmSystemTools::FileExists(path, true) &&
  389. !cmSystemTools::FileIsDirectory(path)) {
  390. std::string fp = cmSystemTools::CollapseFullPath(path);
  391. this->DirectoryToFileToPathMap[extraPath][fname] = fp;
  392. return fp;
  393. }
  394. }
  395. // Couldn't find the file.
  396. return std::string(fname);
  397. }
  398. cmMakefile* Makefile;
  399. bool Verbose;
  400. cmsys::RegularExpression IncludeFileRegularExpression;
  401. cmsys::RegularExpression ComplainFileRegularExpression;
  402. std::vector<std::string> IncludeDirectories;
  403. using FileToPathMapType = std::map<std::string, std::string>;
  404. using DirectoryToFileToPathMapType =
  405. std::map<std::string, FileToPathMapType>;
  406. using DependInformationMapType = std::map<std::string, cmDependInformation*>;
  407. DependInformationMapType DependInformationMap;
  408. DirectoryToFileToPathMapType DirectoryToFileToPathMap;
  409. };
  410. void ListDependencies(cmDependInformation const* info, FILE* fout,
  411. std::set<cmDependInformation const*>* visited);
  412. }
  413. // cmOutputRequiredFilesCommand
  414. bool cmOutputRequiredFilesCommand(std::vector<std::string> const& args,
  415. cmExecutionStatus& status)
  416. {
  417. if (args.size() != 2) {
  418. status.SetError("called with incorrect number of arguments");
  419. return false;
  420. }
  421. // store the arg for final pass
  422. const std::string& file = args[0];
  423. const std::string& outputFile = args[1];
  424. // compute the list of files
  425. cmLBDepend md;
  426. md.SetMakefile(&status.GetMakefile());
  427. md.AddSearchPath(status.GetMakefile().GetCurrentSourceDirectory());
  428. // find the depends for a file
  429. const cmDependInformation* info = md.FindDependencies(file.c_str());
  430. if (info) {
  431. // write them out
  432. FILE* fout = cmsys::SystemTools::Fopen(outputFile, "w");
  433. if (!fout) {
  434. status.SetError(cmStrCat("Can not open output file: ", outputFile));
  435. return false;
  436. }
  437. std::set<cmDependInformation const*> visited;
  438. ListDependencies(info, fout, &visited);
  439. fclose(fout);
  440. }
  441. return true;
  442. }
  443. namespace {
  444. void ListDependencies(cmDependInformation const* info, FILE* fout,
  445. std::set<cmDependInformation const*>* visited)
  446. {
  447. // add info to the visited set
  448. visited->insert(info);
  449. // now recurse with info's dependencies
  450. for (cmDependInformation* d : info->DependencySet) {
  451. if (visited->find(d) == visited->end()) {
  452. if (!info->FullPath.empty()) {
  453. std::string tmp = d->FullPath;
  454. std::string::size_type pos = tmp.rfind('.');
  455. if (pos != std::string::npos && (tmp.substr(pos) != ".h")) {
  456. tmp = tmp.substr(0, pos);
  457. fprintf(fout, "%s\n", d->FullPath.c_str());
  458. }
  459. }
  460. ListDependencies(d, fout, visited);
  461. }
  462. }
  463. }
  464. }