2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-01-19 01:09:05 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-01-19 01:09:05 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2005-01-19 01:09:05 +03:00
|
|
|
#ifndef cmDependsC_h
|
|
|
|
#define cmDependsC_h
|
|
|
|
|
|
|
|
#include "cmDepends.h"
|
|
|
|
#include <cmsys/RegularExpression.hxx>
|
|
|
|
#include <queue>
|
|
|
|
|
|
|
|
/** \class cmDependsC
|
|
|
|
* \brief Dependency scanner for C and C++ object files.
|
|
|
|
*/
|
|
|
|
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. */
|
2005-05-11 21:16:45 +04:00
|
|
|
cmDependsC();
|
2009-09-23 22:02:05 +04:00
|
|
|
cmDependsC(cmLocalGenerator* lg, const char* targetDir, const char* lang,
|
|
|
|
const std::map<std::string, DependencyVector>* validDeps);
|
2005-01-19 01:09:05 +03:00
|
|
|
|
|
|
|
/** Virtual destructor to cleanup subclasses properly. */
|
|
|
|
virtual ~cmDependsC();
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-01-19 01:09:05 +03:00
|
|
|
protected:
|
|
|
|
// Implement writing/checking methods required by superclass.
|
2012-09-30 19:53:01 +04:00
|
|
|
virtual bool WriteDependencies(const std::set<std::string>& sources,
|
|
|
|
const std::string& obj,
|
2005-10-12 21:52:29 +04:00
|
|
|
std::ostream& makeDepends,
|
|
|
|
std::ostream& internalDepends);
|
2005-01-19 01:09:05 +03:00
|
|
|
|
|
|
|
// Method to scan a single file.
|
2006-03-10 21:06:26 +03:00
|
|
|
void Scan(std::istream& is, const char* directory,
|
|
|
|
const cmStdString& fullName);
|
2005-01-19 01:09:05 +03:00
|
|
|
|
|
|
|
// Regular expression to identify C preprocessor include directives.
|
2006-03-15 19:02:08 +03:00
|
|
|
cmsys::RegularExpression IncludeRegexLine;
|
2005-02-08 00:11:01 +03:00
|
|
|
|
|
|
|
// Regular expressions to choose which include files to scan
|
|
|
|
// recursively and which to complain about not finding.
|
2006-03-15 19:02:08 +03:00
|
|
|
cmsys::RegularExpression IncludeRegexScan;
|
|
|
|
cmsys::RegularExpression IncludeRegexComplain;
|
2008-05-08 18:09:14 +04:00
|
|
|
std::string IncludeRegexLineString;
|
|
|
|
std::string IncludeRegexScanString;
|
|
|
|
std::string IncludeRegexComplainString;
|
2005-08-17 19:43:58 +04:00
|
|
|
|
2008-05-14 19:54:32 +04:00
|
|
|
// Regex to transform #include lines.
|
|
|
|
std::string IncludeRegexTransformString;
|
|
|
|
cmsys::RegularExpression IncludeRegexTransform;
|
|
|
|
typedef std::map<cmStdString, cmStdString> TransformRulesType;
|
|
|
|
TransformRulesType TransformRules;
|
|
|
|
void SetupTransforms();
|
|
|
|
void ParseTransform(std::string const& xform);
|
|
|
|
void TransformLine(std::string& line);
|
|
|
|
|
2005-12-10 00:32:19 +03:00
|
|
|
public:
|
2005-01-19 01:09:05 +03:00
|
|
|
// Data structures for dependency graph walk.
|
2005-03-03 23:22:18 +03:00
|
|
|
struct UnscannedEntry
|
|
|
|
{
|
|
|
|
cmStdString FileName;
|
|
|
|
cmStdString QuotedLocation;
|
|
|
|
};
|
2005-12-09 21:58:55 +03:00
|
|
|
|
|
|
|
struct cmIncludeLines
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
cmIncludeLines(): Used(false) {}
|
|
|
|
std::vector<UnscannedEntry> UnscannedEntries;
|
|
|
|
bool Used;
|
2005-12-09 21:58:55 +03:00
|
|
|
};
|
2005-12-10 00:32:19 +03:00
|
|
|
protected:
|
2009-09-23 22:02:05 +04:00
|
|
|
const std::map<std::string, DependencyVector>* ValidDeps;
|
2006-03-15 19:02:08 +03:00
|
|
|
std::set<cmStdString> Encountered;
|
|
|
|
std::queue<UnscannedEntry> Unscanned;
|
2005-01-19 01:09:05 +03:00
|
|
|
|
2006-09-13 20:43:32 +04:00
|
|
|
std::map<cmStdString, cmIncludeLines *> FileCache;
|
|
|
|
std::map<cmStdString, cmStdString> HeaderLocationCache;
|
2005-12-09 21:58:55 +03:00
|
|
|
|
2006-03-16 17:33:23 +03:00
|
|
|
cmStdString CacheFileName;
|
2005-12-09 21:58:55 +03:00
|
|
|
|
|
|
|
void WriteCacheFile() const;
|
|
|
|
void ReadCacheFile();
|
2005-01-19 01:09:05 +03:00
|
|
|
private:
|
|
|
|
cmDependsC(cmDependsC const&); // Purposely not implemented.
|
|
|
|
void operator=(cmDependsC const&); // Purposely not implemented.
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|