2016-10-30 18:24:19 +01:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2021-09-14 00:13:48 +02:00
|
|
|
#pragma once
|
2008-10-12 18:41:06 +02:00
|
|
|
|
2018-01-26 17:06:56 +01:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-10-30 18:24:19 +01:00
|
|
|
|
|
|
|
#include <iosfwd>
|
|
|
|
#include <map>
|
2020-08-30 11:54:41 +02:00
|
|
|
#include <queue>
|
2016-10-30 18:24:19 +01:00
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2020-02-01 23:06:01 +01:00
|
|
|
#include "cmsys/RegularExpression.hxx"
|
|
|
|
|
|
|
|
#include "cmDepends.h"
|
|
|
|
|
2020-08-30 11:54:41 +02:00
|
|
|
class cmLocalUnixMakefileGenerator3;
|
2008-10-12 18:41:06 +02:00
|
|
|
|
|
|
|
/** \class cmDependsC
|
|
|
|
* \brief Dependency scanner for C and C++ object files.
|
|
|
|
*/
|
2016-07-09 11:21:54 +02:00
|
|
|
class cmDependsC : public cmDepends
|
2008-10-12 18:41:06 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Checking instances need to know the build directory name and the
|
|
|
|
relative path from the build directory to the target file. */
|
|
|
|
cmDependsC();
|
2020-08-30 11:54:41 +02:00
|
|
|
cmDependsC(cmLocalUnixMakefileGenerator3* lg, const std::string& targetDir,
|
2019-11-11 23:01:05 +01:00
|
|
|
const std::string& lang, const DependencyMap* validDeps);
|
2008-10-12 18:41:06 +02:00
|
|
|
|
|
|
|
/** Virtual destructor to cleanup subclasses properly. */
|
2018-01-26 17:06:56 +01:00
|
|
|
~cmDependsC() override;
|
2008-10-12 18:41:06 +02:00
|
|
|
|
2019-11-11 23:01:05 +01:00
|
|
|
cmDependsC(cmDependsC const&) = delete;
|
|
|
|
cmDependsC& operator=(cmDependsC const&) = delete;
|
|
|
|
|
2008-10-12 18:41:06 +02:00
|
|
|
protected:
|
|
|
|
// Implement writing/checking methods required by superclass.
|
2016-10-30 18:24:19 +01:00
|
|
|
bool WriteDependencies(const std::set<std::string>& sources,
|
|
|
|
const std::string& obj, std::ostream& makeDepends,
|
2018-01-26 17:06:56 +01:00
|
|
|
std::ostream& internalDepends) override;
|
2008-10-12 18:41:06 +02:00
|
|
|
|
|
|
|
// Method to scan a single file.
|
2019-11-11 23:01:05 +01:00
|
|
|
void Scan(std::istream& is, const std::string& directory,
|
2016-07-09 11:21:54 +02:00
|
|
|
const std::string& fullName);
|
2008-10-12 18:41:06 +02:00
|
|
|
|
|
|
|
// Regular expression to identify C preprocessor include directives.
|
|
|
|
cmsys::RegularExpression IncludeRegexLine;
|
|
|
|
|
|
|
|
// Regular expressions to choose which include files to scan
|
|
|
|
// recursively and which to complain about not finding.
|
|
|
|
cmsys::RegularExpression IncludeRegexScan;
|
|
|
|
cmsys::RegularExpression IncludeRegexComplain;
|
2008-10-12 21:55:53 +03:00
|
|
|
std::string IncludeRegexLineString;
|
|
|
|
std::string IncludeRegexScanString;
|
|
|
|
std::string IncludeRegexComplainString;
|
|
|
|
|
|
|
|
// Regex to transform #include lines.
|
|
|
|
std::string IncludeRegexTransformString;
|
|
|
|
cmsys::RegularExpression IncludeRegexTransform;
|
2020-02-01 23:06:01 +01:00
|
|
|
using TransformRulesType = std::map<std::string, std::string>;
|
2008-10-12 21:55:53 +03:00
|
|
|
TransformRulesType TransformRules;
|
|
|
|
void SetupTransforms();
|
|
|
|
void ParseTransform(std::string const& xform);
|
|
|
|
void TransformLine(std::string& line);
|
2008-10-12 18:41:06 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
// Data structures for dependency graph walk.
|
|
|
|
struct UnscannedEntry
|
|
|
|
{
|
2015-04-27 22:25:09 +02:00
|
|
|
std::string FileName;
|
|
|
|
std::string QuotedLocation;
|
2008-10-12 18:41:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct cmIncludeLines
|
|
|
|
{
|
|
|
|
std::vector<UnscannedEntry> UnscannedEntries;
|
2019-11-11 23:01:05 +01:00
|
|
|
bool Used = false;
|
2008-10-12 18:41:06 +02:00
|
|
|
};
|
2016-07-09 11:21:54 +02:00
|
|
|
|
2008-10-12 18:41:06 +02:00
|
|
|
protected:
|
2019-11-11 23:01:05 +01:00
|
|
|
const DependencyMap* ValidDeps = nullptr;
|
2015-04-27 22:25:09 +02:00
|
|
|
std::set<std::string> Encountered;
|
2008-10-12 18:41:06 +02:00
|
|
|
std::queue<UnscannedEntry> Unscanned;
|
|
|
|
|
2020-02-01 23:06:01 +01:00
|
|
|
std::map<std::string, cmIncludeLines> FileCache;
|
2015-04-27 22:25:09 +02:00
|
|
|
std::map<std::string, std::string> HeaderLocationCache;
|
2008-10-12 18:41:06 +02:00
|
|
|
|
2015-04-27 22:25:09 +02:00
|
|
|
std::string CacheFileName;
|
2008-10-12 18:41:06 +02:00
|
|
|
|
|
|
|
void WriteCacheFile() const;
|
|
|
|
void ReadCacheFile();
|
|
|
|
};
|