cmake/Source/cmDependsC.h

95 lines
2.8 KiB
C
Raw Normal View History

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
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;
/** \class cmDependsC
* \brief Dependency scanner for C and C++ object files.
*/
2016-07-09 11:21:54 +02:00
class cmDependsC : public cmDepends
{
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);
/** Virtual destructor to cleanup subclasses properly. */
2018-01-26 17:06:56 +01:00
~cmDependsC() override;
2019-11-11 23:01:05 +01:00
cmDependsC(cmDependsC const&) = delete;
cmDependsC& operator=(cmDependsC const&) = delete;
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;
// 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);
// 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;
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>;
TransformRulesType TransformRules;
void SetupTransforms();
void ParseTransform(std::string const& xform);
void TransformLine(std::string& line);
public:
// Data structures for dependency graph walk.
struct UnscannedEntry
{
2015-04-27 22:25:09 +02:00
std::string FileName;
std::string QuotedLocation;
};
struct cmIncludeLines
{
std::vector<UnscannedEntry> UnscannedEntries;
2019-11-11 23:01:05 +01:00
bool Used = false;
};
2016-07-09 11:21:54 +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;
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;
2015-04-27 22:25:09 +02:00
std::string CacheFileName;
void WriteCacheFile() const;
void ReadCacheFile();
};