cmake/Source/cmDependsC.h

101 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. */
#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
#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>
#include <queue>
2016-10-30 18:24:19 +01:00
#include <set>
#include <string>
#include <vector>
class cmLocalGenerator;
/** \class cmDependsC
* \brief Dependency scanner for C and C++ object files.
*/
2016-07-09 11:21:54 +02:00
class cmDependsC : public cmDepends
{
2017-07-20 19:35:53 +02:00
CM_DISABLE_COPY(cmDependsC)
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);
/** Virtual destructor to cleanup subclasses properly. */
2018-01-26 17:06:56 +01:00
~cmDependsC() override;
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.
void Scan(std::istream& is, const char* 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;
2015-04-27 22:25:09 +02:00
typedef std::map<std::string, std::string> TransformRulesType;
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
{
2016-07-09 11:21:54 +02:00
cmIncludeLines()
: Used(false)
{
}
std::vector<UnscannedEntry> UnscannedEntries;
bool Used;
};
2016-07-09 11:21:54 +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;
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;
2015-04-27 22:25:09 +02:00
std::string CacheFileName;
void WriteCacheFile() const;
void ReadCacheFile();
};
#endif