cmOutputRequiredFilesCommand.cxx 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  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 <utility>
  8. #include "cmAlgorithms.h"
  9. #include "cmGeneratorExpression.h"
  10. #include "cmMakefile.h"
  11. #include "cmSourceFile.h"
  12. #include "cmStringAlgorithms.h"
  13. #include "cmSystemTools.h"
  14. #include "cmTarget.h"
  15. class cmExecutionStatus;
  16. /** \class cmDependInformation
  17. * \brief Store dependency information for a single source file.
  18. *
  19. * This structure stores the depend information for a single source file.
  20. */
  21. class cmDependInformation
  22. {
  23. public:
  24. /**
  25. * Construct with dependency generation marked not done; instance
  26. * not placed in cmMakefile's list.
  27. */
  28. cmDependInformation() = default;
  29. /**
  30. * The set of files on which this one depends.
  31. */
  32. typedef std::set<cmDependInformation*> DependencySetType;
  33. DependencySetType DependencySet;
  34. /**
  35. * This flag indicates whether dependency checking has been
  36. * performed for this file.
  37. */
  38. bool DependDone = false;
  39. /**
  40. * If this object corresponds to a cmSourceFile instance, this points
  41. * to it.
  42. */
  43. const cmSourceFile* SourceFile = nullptr;
  44. /**
  45. * Full path to this file.
  46. */
  47. std::string FullPath;
  48. /**
  49. * Full path not including file name.
  50. */
  51. std::string PathOnly;
  52. /**
  53. * Name used to #include this file.
  54. */
  55. std::string IncludeName;
  56. /**
  57. * This method adds the dependencies of another file to this one.
  58. */
  59. void AddDependencies(cmDependInformation* info)
  60. {
  61. if (this != info) {
  62. this->DependencySet.insert(info);
  63. }
  64. }
  65. };
  66. class cmLBDepend
  67. {
  68. public:
  69. /**
  70. * Construct the object with verbose turned off.
  71. */
  72. cmLBDepend()
  73. {
  74. this->Verbose = false;
  75. this->IncludeFileRegularExpression.compile("^.*$");
  76. this->ComplainFileRegularExpression.compile("^$");
  77. }
  78. /**
  79. * Destructor.
  80. */
  81. ~cmLBDepend() { cmDeleteAll(this->DependInformationMap); }
  82. cmLBDepend(const cmLBDepend&) = delete;
  83. cmLBDepend& operator=(const cmLBDepend&) = delete;
  84. /**
  85. * Set the makefile that is used as a source of classes.
  86. */
  87. void SetMakefile(cmMakefile* makefile)
  88. {
  89. this->Makefile = makefile;
  90. // Now extract the include file regular expression from the makefile.
  91. this->IncludeFileRegularExpression.compile(
  92. this->Makefile->GetIncludeRegularExpression());
  93. this->ComplainFileRegularExpression.compile(
  94. this->Makefile->GetComplainRegularExpression());
  95. // Now extract any include paths from the targets
  96. std::set<std::string> uniqueIncludes;
  97. std::vector<std::string> orderedAndUniqueIncludes;
  98. for (auto const& target : this->Makefile->GetTargets()) {
  99. const char* incDirProp =
  100. target.second.GetProperty("INCLUDE_DIRECTORIES");
  101. if (!incDirProp) {
  102. continue;
  103. }
  104. std::string incDirs = cmGeneratorExpression::Preprocess(
  105. incDirProp, cmGeneratorExpression::StripAllGeneratorExpressions);
  106. std::vector<std::string> includes;
  107. cmSystemTools::ExpandListArgument(incDirs, includes);
  108. for (std::string& path : includes) {
  109. this->Makefile->ExpandVariablesInString(path);
  110. if (uniqueIncludes.insert(path).second) {
  111. orderedAndUniqueIncludes.push_back(path);
  112. }
  113. }
  114. }
  115. for (std::string const& inc : orderedAndUniqueIncludes) {
  116. this->AddSearchPath(inc);
  117. }
  118. }
  119. /**
  120. * Add a directory to the search path for include files.
  121. */
  122. void AddSearchPath(const std::string& path)
  123. {
  124. this->IncludeDirectories.push_back(path);
  125. }
  126. /**
  127. * Generate dependencies for the file given. Returns a pointer to
  128. * the cmDependInformation object for the file.
  129. */
  130. const cmDependInformation* FindDependencies(const char* file)
  131. {
  132. cmDependInformation* info = this->GetDependInformation(file, nullptr);
  133. this->GenerateDependInformation(info);
  134. return info;
  135. }
  136. protected:
  137. /**
  138. * Compute the depend information for this class.
  139. */
  140. void DependWalk(cmDependInformation* info)
  141. {
  142. cmsys::ifstream fin(info->FullPath.c_str());
  143. if (!fin) {
  144. cmSystemTools::Error("error can not open " + info->FullPath);
  145. return;
  146. }
  147. std::string line;
  148. while (cmSystemTools::GetLineFromStream(fin, line)) {
  149. if (cmHasLiteralPrefix(line, "#include")) {
  150. // if it is an include line then create a string class
  151. size_t qstart = line.find('\"', 8);
  152. size_t qend;
  153. // if a quote is not found look for a <
  154. if (qstart == std::string::npos) {
  155. qstart = line.find('<', 8);
  156. // if a < is not found then move on
  157. if (qstart == std::string::npos) {
  158. cmSystemTools::Error("unknown include directive " + line);
  159. continue;
  160. }
  161. qend = line.find('>', qstart + 1);
  162. } else {
  163. qend = line.find('\"', qstart + 1);
  164. }
  165. // extract the file being included
  166. std::string includeFile = line.substr(qstart + 1, qend - qstart - 1);
  167. // see if the include matches the regular expression
  168. if (!this->IncludeFileRegularExpression.find(includeFile)) {
  169. if (this->Verbose) {
  170. std::string message = "Skipping ";
  171. message += includeFile;
  172. message += " for file ";
  173. message += 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->GetFullPath() == 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->GetFullPath() == 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. DependInformationMapType::const_iterator result =
  333. this->DependInformationMap.find(fullPath);
  334. if (result != this->DependInformationMap.end()) {
  335. // Found an instance, return it.
  336. return result->second;
  337. }
  338. // Didn't find an instance. Create a new one and save it.
  339. cmDependInformation* info = new cmDependInformation;
  340. info->FullPath = fullPath;
  341. info->PathOnly = cmSystemTools::GetFilenamePath(fullPath);
  342. info->IncludeName = file;
  343. this->DependInformationMap[fullPath] = info;
  344. return info;
  345. }
  346. /**
  347. * Find the full path name for the given file name.
  348. * This uses the include directories.
  349. * TODO: Cache path conversions to reduce FileExists calls.
  350. */
  351. std::string FullPath(const char* fname, const char* extraPath)
  352. {
  353. DirectoryToFileToPathMapType::iterator m;
  354. if (extraPath) {
  355. m = this->DirectoryToFileToPathMap.find(extraPath);
  356. } else {
  357. m = this->DirectoryToFileToPathMap.find("");
  358. }
  359. if (m != this->DirectoryToFileToPathMap.end()) {
  360. FileToPathMapType& map = m->second;
  361. FileToPathMapType::iterator p = map.find(fname);
  362. if (p != map.end()) {
  363. return p->second;
  364. }
  365. }
  366. if (cmSystemTools::FileExists(fname, true)) {
  367. std::string fp = cmSystemTools::CollapseFullPath(fname);
  368. this->DirectoryToFileToPathMap[extraPath ? extraPath : ""][fname] = fp;
  369. return fp;
  370. }
  371. for (std::string path : this->IncludeDirectories) {
  372. if (!path.empty() && path.back() != '/') {
  373. path += "/";
  374. }
  375. path += fname;
  376. if (cmSystemTools::FileExists(path, true) &&
  377. !cmSystemTools::FileIsDirectory(path)) {
  378. std::string fp = cmSystemTools::CollapseFullPath(path);
  379. this->DirectoryToFileToPathMap[extraPath ? extraPath : ""][fname] = fp;
  380. return fp;
  381. }
  382. }
  383. if (extraPath) {
  384. std::string path = extraPath;
  385. if (!path.empty() && path.back() != '/') {
  386. path = path + "/";
  387. }
  388. path = path + fname;
  389. if (cmSystemTools::FileExists(path, true) &&
  390. !cmSystemTools::FileIsDirectory(path)) {
  391. std::string fp = cmSystemTools::CollapseFullPath(path);
  392. this->DirectoryToFileToPathMap[extraPath][fname] = fp;
  393. return fp;
  394. }
  395. }
  396. // Couldn't find the file.
  397. return std::string(fname);
  398. }
  399. cmMakefile* Makefile;
  400. bool Verbose;
  401. cmsys::RegularExpression IncludeFileRegularExpression;
  402. cmsys::RegularExpression ComplainFileRegularExpression;
  403. std::vector<std::string> IncludeDirectories;
  404. typedef std::map<std::string, std::string> FileToPathMapType;
  405. typedef std::map<std::string, FileToPathMapType>
  406. DirectoryToFileToPathMapType;
  407. typedef std::map<std::string, cmDependInformation*> DependInformationMapType;
  408. DependInformationMapType DependInformationMap;
  409. DirectoryToFileToPathMapType DirectoryToFileToPathMap;
  410. };
  411. // cmOutputRequiredFilesCommand
  412. bool cmOutputRequiredFilesCommand::InitialPass(
  413. std::vector<std::string> const& args, cmExecutionStatus&)
  414. {
  415. if (args.size() != 2) {
  416. this->SetError("called with incorrect number of arguments");
  417. return false;
  418. }
  419. // store the arg for final pass
  420. this->File = args[0];
  421. this->OutputFile = args[1];
  422. // compute the list of files
  423. cmLBDepend md;
  424. md.SetMakefile(this->Makefile);
  425. md.AddSearchPath(this->Makefile->GetCurrentSourceDirectory());
  426. // find the depends for a file
  427. const cmDependInformation* info = md.FindDependencies(this->File.c_str());
  428. if (info) {
  429. // write them out
  430. FILE* fout = cmsys::SystemTools::Fopen(this->OutputFile, "w");
  431. if (!fout) {
  432. this->SetError(cmStrCat("Can not open output file: ", this->OutputFile));
  433. return false;
  434. }
  435. std::set<cmDependInformation const*> visited;
  436. this->ListDependencies(info, fout, &visited);
  437. fclose(fout);
  438. }
  439. return true;
  440. }
  441. void cmOutputRequiredFilesCommand::ListDependencies(
  442. cmDependInformation const* info, FILE* fout,
  443. std::set<cmDependInformation const*>* visited)
  444. {
  445. // add info to the visited set
  446. visited->insert(info);
  447. // now recurse with info's dependencies
  448. for (cmDependInformation* d : info->DependencySet) {
  449. if (visited->find(d) == visited->end()) {
  450. if (!info->FullPath.empty()) {
  451. std::string tmp = d->FullPath;
  452. std::string::size_type pos = tmp.rfind('.');
  453. if (pos != std::string::npos && (tmp.substr(pos) != ".h")) {
  454. tmp = tmp.substr(0, pos);
  455. fprintf(fout, "%s\n", d->FullPath.c_str());
  456. }
  457. }
  458. this->ListDependencies(d, fout, visited);
  459. }
  460. }
  461. }