CMake/Source/cmOutputRequiredFilesComman...

548 lines
17 KiB
C++
Raw Normal View History

Simplify CMake per-source license notices Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
2016-09-27 22:01:08 +03:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2001-06-12 19:08:25 +04:00
#include "cmOutputRequiredFilesCommand.h"
2015-03-08 15:51:20 +03:00
#include "cmAlgorithms.h"
#include <cmsys/FStream.hxx>
2001-06-12 19:08:25 +04:00
2015-10-21 01:12:31 +03:00
/** \class cmDependInformation
* \brief Store dependency information for a single source file.
*
* This structure stores the depend information for a single source file.
*/
class cmDependInformation
{
public:
/**
* Construct with dependency generation marked not done; instance
* not placed in cmMakefile's list.
*/
cmDependInformation()
: DependDone(false)
2016-06-27 23:44:16 +03:00
, SourceFile(CM_NULLPTR)
{
}
2015-10-21 01:12:31 +03:00
/**
* The set of files on which this one depends.
*/
typedef std::set<cmDependInformation*> DependencySetType;
DependencySetType DependencySet;
/**
* This flag indicates whether dependency checking has been
* performed for this file.
*/
bool DependDone;
/**
* If this object corresponds to a cmSourceFile instance, this points
* to it.
*/
const cmSourceFile* SourceFile;
2015-10-21 01:12:31 +03:00
/**
* Full path to this file.
*/
std::string FullPath;
/**
* Full path not including file name.
*/
std::string PathOnly;
/**
* Name used to #include this file.
*/
std::string IncludeName;
/**
* This method adds the dependencies of another file to this one.
*/
void AddDependencies(cmDependInformation* info)
{
if (this != info) {
this->DependencySet.insert(info);
2015-10-21 01:12:31 +03:00
}
}
};
class cmLBDepend
2015-10-21 01:12:31 +03:00
{
public:
/**
* Construct the object with verbose turned off.
*/
cmLBDepend()
2015-10-21 01:12:31 +03:00
{
this->Verbose = false;
this->IncludeFileRegularExpression.compile("^.*$");
this->ComplainFileRegularExpression.compile("^$");
}
/**
* Destructor.
*/
~cmLBDepend() { cmDeleteAll(this->DependInformationMap); }
2015-10-21 01:12:31 +03:00
/**
* Set the makefile that is used as a source of classes.
*/
void SetMakefile(cmMakefile* makefile)
2015-10-21 01:12:31 +03:00
{
this->Makefile = makefile;
// Now extract the include file regular expression from the makefile.
this->IncludeFileRegularExpression.compile(
this->Makefile->GetIncludeRegularExpression());
2015-10-21 01:12:31 +03:00
this->ComplainFileRegularExpression.compile(
this->Makefile->GetComplainRegularExpression());
2015-10-21 01:12:31 +03:00
// Now extract any include paths from the targets
std::set<std::string> uniqueIncludes;
std::vector<std::string> orderedAndUniqueIncludes;
cmTargets& targets = this->Makefile->GetTargets();
for (cmTargets::iterator l = targets.begin(); l != targets.end(); ++l) {
const char* incDirProp = l->second.GetProperty("INCLUDE_DIRECTORIES");
if (!incDirProp) {
2015-10-21 01:12:31 +03:00
continue;
}
2015-10-21 01:12:31 +03:00
std::string incDirs = cmGeneratorExpression::Preprocess(
incDirProp, cmGeneratorExpression::StripAllGeneratorExpressions);
2015-10-21 01:12:31 +03:00
std::vector<std::string> includes;
cmSystemTools::ExpandListArgument(incDirs, includes);
for (std::vector<std::string>::const_iterator j = includes.begin();
j != includes.end(); ++j) {
2015-10-21 01:12:31 +03:00
std::string path = *j;
this->Makefile->ExpandVariablesInString(path);
if (uniqueIncludes.insert(path).second) {
2015-10-21 01:12:31 +03:00
orderedAndUniqueIncludes.push_back(path);
}
}
}
2015-10-21 01:12:31 +03:00
for (std::vector<std::string>::const_iterator it =
orderedAndUniqueIncludes.begin();
it != orderedAndUniqueIncludes.end(); ++it) {
2015-10-21 01:12:31 +03:00
this->AddSearchPath(*it);
}
2015-10-21 01:12:31 +03:00
}
/**
* Add a directory to the search path for include files.
*/
void AddSearchPath(const std::string& path)
2015-10-21 01:12:31 +03:00
{
this->IncludeDirectories.push_back(path);
}
/**
* Generate dependencies for the file given. Returns a pointer to
* the cmDependInformation object for the file.
*/
const cmDependInformation* FindDependencies(const char* file)
{
2016-06-27 23:44:16 +03:00
cmDependInformation* info = this->GetDependInformation(file, CM_NULLPTR);
2015-10-21 01:12:31 +03:00
this->GenerateDependInformation(info);
return info;
}
protected:
/**
* Compute the depend information for this class.
*/
void DependWalk(cmDependInformation* info)
2015-10-21 01:12:31 +03:00
{
cmsys::ifstream fin(info->FullPath.c_str());
if (!fin) {
cmSystemTools::Error("error can not open ", info->FullPath.c_str());
2015-10-21 01:12:31 +03:00
return;
}
2015-10-21 01:12:31 +03:00
std::string line;
while (cmSystemTools::GetLineFromStream(fin, line)) {
if (cmHasLiteralPrefix(line.c_str(), "#include")) {
// if it is an include line then create a string class
std::string currentline = line;
size_t qstart = currentline.find('\"', 8);
size_t qend;
// if a quote is not found look for a <
if (qstart == std::string::npos) {
qstart = currentline.find('<', 8);
// if a < is not found then move on
if (qstart == std::string::npos) {
cmSystemTools::Error("unknown include directive ",
currentline.c_str());
continue;
} else {
qend = currentline.find('>', qstart + 1);
}
} else {
qend = currentline.find('\"', qstart + 1);
}
2015-10-21 01:12:31 +03:00
// extract the file being included
std::string includeFile =
currentline.substr(qstart + 1, qend - qstart - 1);
2015-10-21 01:12:31 +03:00
// see if the include matches the regular expression
if (!this->IncludeFileRegularExpression.find(includeFile)) {
if (this->Verbose) {
2015-10-21 01:12:31 +03:00
std::string message = "Skipping ";
message += includeFile;
message += " for file ";
message += info->FullPath.c_str();
2016-06-27 23:44:16 +03:00
cmSystemTools::Error(message.c_str(), CM_NULLPTR);
2015-10-21 01:12:31 +03:00
}
continue;
}
2015-10-21 01:12:31 +03:00
// Add this file and all its dependencies.
this->AddDependency(info, includeFile.c_str());
/// add the cxx file if it exists
std::string cxxFile = includeFile;
std::string::size_type pos = cxxFile.rfind('.');
if (pos != std::string::npos) {
std::string root = cxxFile.substr(0, pos);
cxxFile = root + ".cxx";
bool found = false;
// try jumping to .cxx .cpp and .c in order
if (cmSystemTools::FileExists(cxxFile.c_str())) {
found = true;
}
for (std::vector<std::string>::iterator i =
this->IncludeDirectories.begin();
i != this->IncludeDirectories.end(); ++i) {
std::string path = *i;
path = path + "/";
path = path + cxxFile;
if (cmSystemTools::FileExists(path.c_str())) {
found = true;
}
}
if (!found) {
cxxFile = root + ".cpp";
if (cmSystemTools::FileExists(cxxFile.c_str())) {
found = true;
}
for (std::vector<std::string>::iterator i =
this->IncludeDirectories.begin();
i != this->IncludeDirectories.end(); ++i) {
std::string path = *i;
path = path + "/";
path = path + cxxFile;
if (cmSystemTools::FileExists(path.c_str())) {
found = true;
}
}
}
if (!found) {
cxxFile = root + ".c";
if (cmSystemTools::FileExists(cxxFile.c_str())) {
found = true;
}
for (std::vector<std::string>::iterator i =
this->IncludeDirectories.begin();
i != this->IncludeDirectories.end(); ++i) {
std::string path = *i;
path = path + "/";
path = path + cxxFile;
if (cmSystemTools::FileExists(path.c_str())) {
found = true;
}
}
}
if (!found) {
cxxFile = root + ".txx";
if (cmSystemTools::FileExists(cxxFile.c_str())) {
found = true;
}
for (std::vector<std::string>::iterator i =
this->IncludeDirectories.begin();
i != this->IncludeDirectories.end(); ++i) {
std::string path = *i;
path = path + "/";
path = path + cxxFile;
if (cmSystemTools::FileExists(path.c_str())) {
found = true;
}
}
}
if (found) {
this->AddDependency(info, cxxFile.c_str());
}
2015-10-21 01:12:31 +03:00
}
}
}
2015-10-21 01:12:31 +03:00
}
/**
* Add a dependency. Possibly walk it for more dependencies.
*/
void AddDependency(cmDependInformation* info, const char* file)
2015-10-21 01:12:31 +03:00
{
cmDependInformation* dependInfo =
this->GetDependInformation(file, info->PathOnly.c_str());
2015-10-21 01:12:31 +03:00
this->GenerateDependInformation(dependInfo);
info->AddDependencies(dependInfo);
}
/**
* Fill in the given object with dependency information. If the
* information is already complete, nothing is done.
*/
void GenerateDependInformation(cmDependInformation* info)
{
// If dependencies are already done, stop now.
if (info->DependDone) {
2015-10-21 01:12:31 +03:00
return;
}
2016-09-16 23:45:24 +03:00
// Make sure we don't visit the same file more than once.
info->DependDone = true;
2015-10-21 01:12:31 +03:00
const char* path = info->FullPath.c_str();
if (!path) {
2015-10-21 01:12:31 +03:00
cmSystemTools::Error(
"Attempt to find dependencies for file without path!");
2015-10-21 01:12:31 +03:00
return;
}
2015-10-21 01:12:31 +03:00
bool found = false;
// If the file exists, use it to find dependency information.
if (cmSystemTools::FileExists(path, true)) {
2015-10-21 01:12:31 +03:00
// Use the real file to find its dependencies.
this->DependWalk(info);
found = true;
}
2015-10-21 01:12:31 +03:00
// See if the cmSourceFile for it has any files specified as
// dependency hints.
2016-06-27 23:44:16 +03:00
if (info->SourceFile != CM_NULLPTR) {
2015-10-21 01:12:31 +03:00
// Get the cmSourceFile corresponding to this.
const cmSourceFile& cFile = *(info->SourceFile);
// See if there are any hints for finding dependencies for the missing
// file.
if (!cFile.GetDepends().empty()) {
2015-10-21 01:12:31 +03:00
// Dependency hints have been given. Use them to begin the
// recursion.
for (std::vector<std::string>::const_iterator file =
cFile.GetDepends().begin();
file != cFile.GetDepends().end(); ++file) {
2015-10-21 01:12:31 +03:00
this->AddDependency(info, file->c_str());
}
2015-10-21 01:12:31 +03:00
// Found dependency information. We are done.
found = true;
}
}
2015-10-21 01:12:31 +03:00
if (!found) {
2015-10-21 01:12:31 +03:00
// Try to find the file amongst the sources
cmSourceFile* srcFile = this->Makefile->GetSource(
cmSystemTools::GetFilenameWithoutExtension(path));
if (srcFile) {
if (srcFile->GetFullPath() == path) {
found = true;
} else {
// try to guess which include path to use
for (std::vector<std::string>::iterator t =
this->IncludeDirectories.begin();
t != this->IncludeDirectories.end(); ++t) {
2015-10-21 01:12:31 +03:00
std::string incpath = *t;
if (!incpath.empty() && incpath[incpath.size() - 1] != '/') {
2015-10-21 01:12:31 +03:00
incpath = incpath + "/";
}
2015-10-21 01:12:31 +03:00
incpath = incpath + path;
if (srcFile->GetFullPath() == incpath) {
2015-10-21 01:12:31 +03:00
// set the path to the guessed path
info->FullPath = incpath;
found = true;
2015-10-21 01:12:31 +03:00
}
}
}
}
}
2015-10-21 01:12:31 +03:00
if (!found) {
2015-10-21 01:12:31 +03:00
// Couldn't find any dependency information.
if (this->ComplainFileRegularExpression.find(
info->IncludeName.c_str())) {
2015-10-21 01:12:31 +03:00
cmSystemTools::Error("error cannot find dependencies for ", path);
} else {
2015-10-21 01:12:31 +03:00
// Destroy the name of the file so that it won't be output as a
// dependency.
info->FullPath = "";
}
}
2015-10-21 01:12:31 +03:00
}
/**
* Get an instance of cmDependInformation corresponding to the given file
* name.
*/
cmDependInformation* GetDependInformation(const char* file,
const char* extraPath)
2015-10-21 01:12:31 +03:00
{
// Get the full path for the file so that lookup is unambiguous.
std::string fullPath = this->FullPath(file, extraPath);
// Try to find the file's instance of cmDependInformation.
DependInformationMapType::const_iterator result =
this->DependInformationMap.find(fullPath);
if (result != this->DependInformationMap.end()) {
2015-10-21 01:12:31 +03:00
// Found an instance, return it.
return result->second;
}
2016-09-16 23:45:24 +03:00
// Didn't find an instance. Create a new one and save it.
cmDependInformation* info = new cmDependInformation;
info->FullPath = fullPath;
info->PathOnly = cmSystemTools::GetFilenamePath(fullPath);
info->IncludeName = file;
this->DependInformationMap[fullPath] = info;
return info;
2015-10-21 01:12:31 +03:00
}
/**
* Find the full path name for the given file name.
* This uses the include directories.
* TODO: Cache path conversions to reduce FileExists calls.
*/
std::string FullPath(const char* fname, const char* extraPath)
2015-10-21 01:12:31 +03:00
{
DirectoryToFileToPathMapType::iterator m;
if (extraPath) {
2015-10-21 01:12:31 +03:00
m = this->DirectoryToFileToPathMap.find(extraPath);
} else {
2015-10-21 01:12:31 +03:00
m = this->DirectoryToFileToPathMap.find("");
}
2015-10-21 01:12:31 +03:00
if (m != this->DirectoryToFileToPathMap.end()) {
2015-10-21 01:12:31 +03:00
FileToPathMapType& map = m->second;
FileToPathMapType::iterator p = map.find(fname);
if (p != map.end()) {
2015-10-21 01:12:31 +03:00
return p->second;
}
}
2015-10-21 01:12:31 +03:00
if (cmSystemTools::FileExists(fname, true)) {
2015-10-21 01:12:31 +03:00
std::string fp = cmSystemTools::CollapseFullPath(fname);
this->DirectoryToFileToPathMap[extraPath ? extraPath : ""][fname] = fp;
2015-10-21 01:12:31 +03:00
return fp;
}
2015-10-21 01:12:31 +03:00
for (std::vector<std::string>::iterator i =
this->IncludeDirectories.begin();
i != this->IncludeDirectories.end(); ++i) {
2015-10-21 01:12:31 +03:00
std::string path = *i;
if (!path.empty() && path[path.size() - 1] != '/') {
2015-10-21 01:12:31 +03:00
path = path + "/";
}
2015-10-21 01:12:31 +03:00
path = path + fname;
if (cmSystemTools::FileExists(path.c_str(), true) &&
!cmSystemTools::FileIsDirectory(path)) {
2015-10-21 01:12:31 +03:00
std::string fp = cmSystemTools::CollapseFullPath(path);
this->DirectoryToFileToPathMap[extraPath ? extraPath : ""][fname] = fp;
2015-10-21 01:12:31 +03:00
return fp;
}
}
2015-10-21 01:12:31 +03:00
if (extraPath) {
2015-10-21 01:12:31 +03:00
std::string path = extraPath;
if (!path.empty() && path[path.size() - 1] != '/') {
2015-10-21 01:12:31 +03:00
path = path + "/";
}
2015-10-21 01:12:31 +03:00
path = path + fname;
if (cmSystemTools::FileExists(path.c_str(), true) &&
!cmSystemTools::FileIsDirectory(path)) {
2015-10-21 01:12:31 +03:00
std::string fp = cmSystemTools::CollapseFullPath(path);
this->DirectoryToFileToPathMap[extraPath][fname] = fp;
return fp;
}
}
2015-10-21 01:12:31 +03:00
// Couldn't find the file.
return std::string(fname);
}
cmMakefile* Makefile;
bool Verbose;
cmsys::RegularExpression IncludeFileRegularExpression;
cmsys::RegularExpression ComplainFileRegularExpression;
std::vector<std::string> IncludeDirectories;
typedef std::map<std::string, std::string> FileToPathMapType;
typedef std::map<std::string, FileToPathMapType>
DirectoryToFileToPathMapType;
typedef std::map<std::string, cmDependInformation*> DependInformationMapType;
2015-10-21 01:12:31 +03:00
DependInformationMapType DependInformationMap;
DirectoryToFileToPathMapType DirectoryToFileToPathMap;
};
2001-06-12 19:08:25 +04:00
// cmOutputRequiredFilesCommand
bool cmOutputRequiredFilesCommand::InitialPass(
std::vector<std::string> const& args, cmExecutionStatus&)
2001-06-12 19:08:25 +04:00
{
if (this->Disallowed(cmPolicies::CMP0032, "The output_required_files "
"command should not be called; "
"see CMP0032.")) {
return true;
}
if (args.size() != 2) {
2001-06-12 19:08:25 +04:00
this->SetError("called with incorrect number of arguments");
return false;
}
2001-06-12 19:08:25 +04:00
// store the arg for final pass
2006-03-15 19:02:08 +03:00
this->File = args[0];
this->OutputFile = args[1];
// compute the list of files
cmLBDepend md;
md.SetMakefile(this->Makefile);
md.AddSearchPath(this->Makefile->GetCurrentSourceDirectory());
// find the depends for a file
const cmDependInformation* info = md.FindDependencies(this->File.c_str());
if (info) {
// write them out
FILE* fout = cmsys::SystemTools::Fopen(this->OutputFile.c_str(), "w");
if (!fout) {
std::string err = "Can not open output file: ";
err += this->OutputFile;
this->SetError(err);
return false;
}
std::set<cmDependInformation const*> visited;
this->ListDependencies(info, fout, &visited);
fclose(fout);
}
2001-06-12 19:08:25 +04:00
return true;
}
void cmOutputRequiredFilesCommand::ListDependencies(
cmDependInformation const* info, FILE* fout,
std::set<cmDependInformation const*>* visited)
2002-12-10 22:10:15 +03:00
{
// add info to the visited set
visited->insert(info);
// now recurse with info's dependencies
for (cmDependInformation::DependencySetType::const_iterator d =
info->DependencySet.begin();
d != info->DependencySet.end(); ++d) {
if (visited->find(*d) == visited->end()) {
if (info->FullPath != "") {
2006-03-15 19:02:08 +03:00
std::string tmp = (*d)->FullPath;
2002-12-10 22:10:15 +03:00
std::string::size_type pos = tmp.rfind('.');
if (pos != std::string::npos && (tmp.substr(pos) != ".h")) {
2002-12-10 22:10:15 +03:00
tmp = tmp.substr(0, pos);
fprintf(fout, "%s\n", (*d)->FullPath.c_str());
2002-12-10 22:10:15 +03:00
}
}
this->ListDependencies(*d, fout, visited);
2002-12-10 22:10:15 +03:00
}
}
2002-12-10 22:10:15 +03:00
}