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. */
|
2008-10-12 18:41:06 +02:00
|
|
|
#ifndef cmDependsC_h
|
|
|
|
#define cmDependsC_h
|
|
|
|
|
2018-01-26 17:06:56 +01:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-10-30 18:24:19 +01:00
|
|
|
|
2008-10-12 18:41:06 +02:00
|
|
|
#include "cmDepends.h"
|
2016-07-09 11:21:54 +02:00
|
|
|
|
2017-07-20 19:35:53 +02:00
|
|
|
#include "cmsys/RegularExpression.hxx"
|
2016-10-30 18:24:19 +01:00
|
|
|
#include <iosfwd>
|
|
|
|
#include <map>
|
2008-10-12 18:41:06 +02:00
|
|
|
#include <queue>
|
2016-10-30 18:24:19 +01:00
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class cmLocalGenerator;
|
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
|
|
|
{
|
2017-07-20 19:35:53 +02:00
|
|
|
CM_DISABLE_COPY(cmDependsC)
|
|
|
|
|
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();
|
2015-04-27 22:25:09 +02:00
|
|
|
cmDependsC(cmLocalGenerator* lg, const char* targetDir,
|
|
|
|
const std::string& lang,
|
2009-10-04 10:30:41 +03:00
|
|
|
const std::map<std::string, DependencyVector>* 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
|
|
|
|
|
|
|
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.
|
|
|
|
void Scan(std::istream& is, const char* 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;
|
2015-04-27 22:25:09 +02:00
|
|
|
typedef std::map<std::string, std::string> TransformRulesType;
|
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
|
|
|
|
{
|
2016-07-09 11:21:54 +02:00
|
|
|
cmIncludeLines()
|
|
|
|
: Used(false)
|
|
|
|
{
|
|
|
|
}
|
2008-10-12 18:41:06 +02:00
|
|
|
std::vector<UnscannedEntry> UnscannedEntries;
|
|
|
|
bool Used;
|
|
|
|
};
|
2016-07-09 11:21:54 +02:00
|
|
|
|
2008-10-12 18:41:06 +02:00
|
|
|
protected:
|
2009-10-04 10:30:41 +03:00
|
|
|
const std::map<std::string, DependencyVector>* ValidDeps;
|
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;
|
|
|
|
|
2016-07-09 11:21:54 +02: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();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|