2005-01-19 01:09:05 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#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();
|
2005-07-27 17:49:37 +04:00
|
|
|
cmDependsC(std::vector<std::string> const& includes,
|
2005-08-17 19:43:58 +04:00
|
|
|
const char* scanRegex, const char* complainRegex,
|
2005-12-09 21:58:55 +03:00
|
|
|
std::set<cmStdString> const& generatedFiles, const cmStdString& cachFileName);
|
2005-01-19 01:09:05 +03:00
|
|
|
|
|
|
|
/** Virtual destructor to cleanup subclasses properly. */
|
|
|
|
virtual ~cmDependsC();
|
2005-07-27 17:49:37 +04:00
|
|
|
|
2005-01-19 01:09:05 +03:00
|
|
|
protected:
|
2005-10-12 21:52:29 +04:00
|
|
|
typedef std::vector<char> t_CharBuffer;
|
|
|
|
|
2005-01-19 01:09:05 +03:00
|
|
|
// Implement writing/checking methods required by superclass.
|
2005-07-27 17:49:37 +04:00
|
|
|
virtual bool WriteDependencies(const char *src,
|
2005-10-12 21:52:29 +04:00
|
|
|
const char *file,
|
|
|
|
std::ostream& makeDepends,
|
|
|
|
std::ostream& internalDepends);
|
2005-01-19 01:09:05 +03:00
|
|
|
|
|
|
|
// Method to scan a single file.
|
2005-12-09 21:58:55 +03:00
|
|
|
void Scan(std::istream& is, const char* directory, const cmStdString& fullName);
|
2005-01-19 01:09:05 +03:00
|
|
|
|
2005-08-17 19:43:58 +04:00
|
|
|
// Method to test for the existence of a file.
|
|
|
|
bool FileExistsOrIsGenerated(const std::string& fname,
|
|
|
|
std::set<cmStdString>& scanned,
|
|
|
|
std::set<cmStdString>& dependencies);
|
|
|
|
|
2005-01-19 01:09:05 +03:00
|
|
|
// The include file search path.
|
|
|
|
std::vector<std::string> const* m_IncludePath;
|
|
|
|
|
|
|
|
// Regular expression to identify C preprocessor include directives.
|
2005-02-08 00:11:01 +03:00
|
|
|
cmsys::RegularExpression m_IncludeRegexLine;
|
|
|
|
|
|
|
|
// Regular expressions to choose which include files to scan
|
|
|
|
// recursively and which to complain about not finding.
|
|
|
|
cmsys::RegularExpression m_IncludeRegexScan;
|
|
|
|
cmsys::RegularExpression m_IncludeRegexComplain;
|
2005-08-17 19:43:58 +04:00
|
|
|
|
|
|
|
// Set of generated files available.
|
|
|
|
std::set<cmStdString> const* m_GeneratedFiles;
|
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
|
|
|
|
{
|
2005-12-09 22:30:11 +03:00
|
|
|
cmIncludeLines(): m_Used(false) {}
|
2005-12-10 07:04:33 +03:00
|
|
|
std::vector<UnscannedEntry> m_UnscannedEntries;
|
2005-12-09 22:30:11 +03:00
|
|
|
bool m_Used;
|
2005-12-09 21:58:55 +03:00
|
|
|
};
|
2005-12-10 00:32:19 +03:00
|
|
|
protected:
|
2005-01-19 01:09:05 +03:00
|
|
|
std::set<cmStdString> m_Encountered;
|
2005-03-03 23:22:18 +03:00
|
|
|
std::queue<UnscannedEntry> m_Unscanned;
|
2005-10-12 21:52:29 +04:00
|
|
|
t_CharBuffer m_Buffer;
|
2005-01-19 01:09:05 +03:00
|
|
|
|
2005-12-09 21:58:55 +03:00
|
|
|
std::map<cmStdString, cmIncludeLines *> m_fileCache;
|
|
|
|
|
|
|
|
cmStdString m_cacheFileName;
|
|
|
|
|
|
|
|
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
|