2001-01-11 22:55:47 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2000 National Library of Medicine
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See COPYRIGHT.txt for copyright details.
|
|
|
|
|
|
|
|
=========================================================================*/
|
2000-08-29 23:26:29 +04:00
|
|
|
#include "cmMakeDepend.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
#include "cmStandardIncludes.h"
|
2000-09-12 13:30:35 +04:00
|
|
|
#include "cmSystemTools.h"
|
2000-08-29 23:26:29 +04:00
|
|
|
|
|
|
|
cmMakeDepend::cmMakeDepend()
|
|
|
|
{
|
|
|
|
m_Verbose = false;
|
2001-03-16 02:09:16 +03:00
|
|
|
m_IncludeFileRegularExpression.compile("");
|
2000-09-12 13:30:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
cmMakeDepend::~cmMakeDepend()
|
|
|
|
{
|
|
|
|
for(DependArray::iterator i = m_DependInformation.begin();
|
|
|
|
i != m_DependInformation.end(); ++i)
|
|
|
|
{
|
|
|
|
delete *i;
|
|
|
|
}
|
|
|
|
m_DependInformation.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Set the makefile that depends will be made from.
|
|
|
|
// The pointer is kept so the cmClassFile array can
|
2000-09-12 13:30:35 +04:00
|
|
|
// be updated with the depend information in the cmMakefile.
|
2000-08-29 23:26:29 +04:00
|
|
|
|
|
|
|
void cmMakeDepend::SetMakefile(cmMakefile* makefile)
|
|
|
|
{
|
|
|
|
m_Makefile = makefile;
|
2001-03-16 02:09:16 +03:00
|
|
|
|
|
|
|
// Now extract the include file regular expression from the makefile.
|
|
|
|
m_IncludeFileRegularExpression.compile(
|
|
|
|
m_Makefile->m_IncludeFileRegularExpression.c_str());
|
2000-09-12 13:30:35 +04:00
|
|
|
|
|
|
|
// Now extract any include paths from the makefile flags
|
2001-01-05 19:41:20 +03:00
|
|
|
std::vector<std::string>& includes = m_Makefile->GetIncludeDirectories();
|
2000-09-12 13:30:35 +04:00
|
|
|
std::vector<std::string>::iterator j;
|
|
|
|
for(j = includes.begin(); j != includes.end(); ++j)
|
|
|
|
{
|
|
|
|
this->AddSearchPath(j->c_str());
|
|
|
|
}
|
|
|
|
// Now create cmDependInformation objects for files in the directory
|
2001-04-11 22:59:02 +04:00
|
|
|
cmMakefile::ClassMap &Classes = m_Makefile->GetClasses();
|
|
|
|
for(cmMakefile::ClassMap::iterator l = Classes.begin();
|
|
|
|
l != Classes.end(); l++)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-04-11 22:59:02 +04:00
|
|
|
for(std::vector<cmClassFile>::iterator i = l->second.begin();
|
|
|
|
i != l->second.end(); ++i)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-04-11 22:59:02 +04:00
|
|
|
if(!i->m_HeaderFileOnly)
|
|
|
|
{
|
|
|
|
cmDependInformation* info = new cmDependInformation;
|
|
|
|
info->m_FullPath = this->FullPath(i->m_FullPath.c_str());
|
|
|
|
this->AddFileToSearchPath(info->m_FullPath.c_str());
|
|
|
|
info->m_IncludeName = i->m_FullPath;
|
|
|
|
info->m_ClassFileIndex = i;
|
|
|
|
m_DependInformation.push_back(info);
|
|
|
|
}
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Compute the depends.
|
|
|
|
void cmMakeDepend::DoDepends()
|
|
|
|
{
|
|
|
|
// The size of the m_DependInformation will change as
|
|
|
|
// Depend is called so do not use an iterater but rather
|
|
|
|
// depend on the size of the array.
|
2001-01-05 19:41:20 +03:00
|
|
|
unsigned int j = 0;
|
2000-08-29 23:26:29 +04:00
|
|
|
while(j != m_DependInformation.size())
|
|
|
|
{
|
|
|
|
cmDependInformation* info = m_DependInformation[j];
|
|
|
|
// compute the depend information for the info object
|
|
|
|
// this may add more objects to the m_DependInformation
|
|
|
|
// array
|
|
|
|
this->Depend(info);
|
|
|
|
++j;
|
|
|
|
}
|
|
|
|
// Now update the depend information for each cmClassFile
|
|
|
|
// in the cmMakefile m_Makefile
|
|
|
|
for(DependArray::iterator i = m_DependInformation.begin();
|
|
|
|
i != m_DependInformation.end(); ++i)
|
|
|
|
{
|
|
|
|
cmDependInformation* info = *i;
|
|
|
|
// find the class
|
2001-04-11 22:59:02 +04:00
|
|
|
if(info->m_ClassFileIndex != 0)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-04-11 22:59:02 +04:00
|
|
|
cmClassFile& cfile = *(info->m_ClassFileIndex);
|
2001-04-16 20:31:56 +04:00
|
|
|
for( cmDependInformation::IndexSet::const_iterator indx = info->m_IndexSet.begin();
|
|
|
|
indx != info->m_IndexSet.end(); ++indx)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
|
|
|
cfile.m_Depends.push_back(m_DependInformation[*indx]->m_FullPath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-09 00:12:16 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
void cmMakeDepend::Depend(cmDependInformation* info)
|
|
|
|
{
|
|
|
|
const char* path = info->m_FullPath.c_str();
|
|
|
|
if(!path)
|
|
|
|
{
|
2001-01-05 19:41:20 +03:00
|
|
|
cmSystemTools::Error("no full path for object", 0);
|
2000-08-29 23:26:29 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-03-09 00:12:16 +03:00
|
|
|
// If the file exists, use it to find dependency information.
|
|
|
|
if(cmSystemTools::FileExists(path))
|
|
|
|
{
|
|
|
|
// The cmClassFile may have had hints for dependencies. Delete any that
|
|
|
|
// exist since we can find the dependencies for real.
|
2001-04-11 22:59:02 +04:00
|
|
|
if(info->m_ClassFileIndex != 0)
|
2001-03-09 00:12:16 +03:00
|
|
|
{
|
2001-04-11 22:59:02 +04:00
|
|
|
cmClassFile& cFile = *(info->m_ClassFileIndex);
|
2001-03-09 00:12:16 +03:00
|
|
|
cFile.m_Depends.erase(cFile.m_Depends.begin(), cFile.m_Depends.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use the real file to find its dependencies.
|
|
|
|
this->DependWalk(info, path);
|
|
|
|
info->m_DependDone = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The file doesn't exist. See if the cmClassFile for it has any files
|
|
|
|
// specified as dependency hints.
|
2001-04-11 22:59:02 +04:00
|
|
|
if(info->m_ClassFileIndex != 0)
|
2001-03-09 00:12:16 +03:00
|
|
|
{
|
|
|
|
// Get the cmClassFile corresponding to this.
|
2001-04-11 22:59:02 +04:00
|
|
|
cmClassFile& cFile = *(info->m_ClassFileIndex);
|
2001-03-09 00:12:16 +03:00
|
|
|
// See if there are any hints for finding dependencies for the missing
|
|
|
|
// file.
|
|
|
|
if(!cFile.m_Depends.empty())
|
|
|
|
{
|
|
|
|
// Initial dependencies have been given. Use them to begin the
|
|
|
|
// recursion.
|
|
|
|
for(std::vector<std::string>::iterator file =
|
|
|
|
cFile.m_Depends.begin(); file != cFile.m_Depends.end(); ++file)
|
|
|
|
{
|
|
|
|
this->AddDependency(info, file->c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Erase the dependency hints from the cmClassFile. They will be
|
|
|
|
// put in again as real dependencies later.
|
|
|
|
cFile.m_Depends.erase(cFile.m_Depends.begin(), cFile.m_Depends.end());
|
|
|
|
|
|
|
|
// Found dependency information. We are done.
|
|
|
|
return;
|
2001-04-16 20:31:56 +04:00
|
|
|
}
|
2001-03-09 00:12:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Couldn't find any dependency information.
|
|
|
|
cmSystemTools::Error("error cannot find dependencies for ", path);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This function actually reads the file specified and scans it for
|
|
|
|
// #include directives
|
|
|
|
void cmMakeDepend::DependWalk(cmDependInformation* info, const char* file)
|
|
|
|
{
|
|
|
|
std::ifstream fin(file);
|
2000-08-29 23:26:29 +04:00
|
|
|
if(!fin)
|
|
|
|
{
|
2001-03-09 00:12:16 +03:00
|
|
|
cmSystemTools::Error("error can not open ", file);
|
2000-08-29 23:26:29 +04:00
|
|
|
return;
|
|
|
|
}
|
2001-03-09 00:12:16 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
char line[255];
|
|
|
|
while(!fin.eof() && !fin.fail())
|
|
|
|
{
|
|
|
|
fin.getline(line, 255);
|
|
|
|
if(!strncmp(line, "#include", 8))
|
|
|
|
{
|
|
|
|
// 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)
|
|
|
|
{
|
2001-01-05 19:41:20 +03:00
|
|
|
cmSystemTools::Error("unknown include directive ",
|
|
|
|
currentline.c_str() );
|
2000-08-29 23:26:29 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qend = currentline.find('>', qstart+1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qend = currentline.find('\"', qstart+1);
|
|
|
|
}
|
|
|
|
// extract the file being included
|
|
|
|
std::string includeFile = currentline.substr(qstart+1, qend - qstart-1);
|
|
|
|
// see if the include matches the regular expression
|
|
|
|
if(!m_IncludeFileRegularExpression.find(includeFile))
|
|
|
|
{
|
|
|
|
if(m_Verbose)
|
|
|
|
{
|
2001-01-05 19:41:20 +03:00
|
|
|
std::string message = "Skipping ";
|
|
|
|
message += includeFile;
|
|
|
|
message += " for file ";
|
2001-03-09 00:12:16 +03:00
|
|
|
message += file;
|
2001-01-05 19:41:20 +03:00
|
|
|
cmSystemTools::Error(message.c_str(), 0);
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2001-03-09 00:12:16 +03:00
|
|
|
|
|
|
|
// Add this file and all its dependencies.
|
|
|
|
this->AddDependency(info, includeFile.c_str());
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
}
|
2001-03-09 00:12:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmMakeDepend::AddDependency(cmDependInformation* info, const char* file)
|
|
|
|
{
|
|
|
|
// find the index of the include file in the
|
|
|
|
// m_DependInformation array, if it is not
|
|
|
|
// there then FindInformation will create it
|
|
|
|
int index = this->FindInformation(file);
|
|
|
|
// add the index to the depends of the current
|
|
|
|
// depend info object
|
2001-04-16 20:31:56 +04:00
|
|
|
info->m_IndexSet.insert(index);
|
2001-03-09 00:12:16 +03:00
|
|
|
// Get the depend information object for the include file
|
|
|
|
cmDependInformation* dependInfo = m_DependInformation[index];
|
|
|
|
// if the depends are not known for an include file, then compute them
|
|
|
|
// recursively
|
|
|
|
if(!dependInfo->m_DependDone)
|
|
|
|
{
|
|
|
|
// stop the recursion here
|
|
|
|
dependInfo->m_DependDone = true;
|
|
|
|
this->Depend(dependInfo);
|
|
|
|
}
|
|
|
|
// add the depends of the included file to the includer
|
|
|
|
info->MergeInfo(dependInfo);
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Find the cmDependInformation array index of the
|
|
|
|
// given include file. Create a new cmDependInformation
|
|
|
|
// object if one is not found
|
|
|
|
int cmMakeDepend::FindInformation(const char* fname)
|
|
|
|
{
|
2001-01-05 19:41:20 +03:00
|
|
|
unsigned int i = 0;
|
2000-08-29 23:26:29 +04:00
|
|
|
|
|
|
|
while(i < m_DependInformation.size())
|
|
|
|
{
|
|
|
|
if(m_DependInformation[i]->m_IncludeName == fname)
|
|
|
|
{
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
cmDependInformation* newinfo = new cmDependInformation;
|
|
|
|
newinfo->m_FullPath = this->FullPath(fname);
|
2000-09-12 13:30:35 +04:00
|
|
|
// Add the directory where this file was found to the search path
|
|
|
|
// may have been foo/bar.h, but bar may include files from the foo
|
|
|
|
// directory without the foo prefix
|
2000-08-29 23:26:29 +04:00
|
|
|
this->AddFileToSearchPath(newinfo->m_FullPath.c_str());
|
|
|
|
newinfo->m_IncludeName = fname;
|
|
|
|
m_DependInformation.push_back(newinfo);
|
|
|
|
return m_DependInformation.size()-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-04-16 20:31:56 +04:00
|
|
|
// add the depend information from info to the m_IndexSet varible of this class.
|
2000-08-29 23:26:29 +04:00
|
|
|
void cmDependInformation::MergeInfo(cmDependInformation* info)
|
|
|
|
{
|
2001-04-16 20:31:56 +04:00
|
|
|
if(this != info)
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
2001-04-16 20:31:56 +04:00
|
|
|
m_IndexSet.insert(info->m_IndexSet.begin(), info->m_IndexSet.end());
|
2000-08-29 23:26:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// find the full path to fname by searching the m_IncludeDirectories array
|
|
|
|
std::string cmMakeDepend::FullPath(const char* fname)
|
|
|
|
{
|
2000-11-22 19:02:30 +03:00
|
|
|
if(cmSystemTools::FileExists(fname))
|
|
|
|
{
|
|
|
|
return std::string(fname);
|
|
|
|
}
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
for(std::vector<std::string>::iterator i = m_IncludeDirectories.begin();
|
|
|
|
i != m_IncludeDirectories.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string path = *i;
|
|
|
|
path = path + "/";
|
|
|
|
path = path + fname;
|
2000-09-12 13:30:35 +04:00
|
|
|
if(cmSystemTools::FileExists(path.c_str()))
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
}
|
2001-03-09 00:12:16 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
return std::string(fname);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a directory to the search path
|
|
|
|
void cmMakeDepend::AddSearchPath(const char* path)
|
|
|
|
{
|
|
|
|
m_IncludeDirectories.push_back(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a directory to the search path
|
|
|
|
void cmMakeDepend::AddFileToSearchPath(const char* file)
|
|
|
|
{
|
|
|
|
std::string filepath = file;
|
|
|
|
std::string::size_type pos = filepath.rfind('/');
|
|
|
|
if(pos != std::string::npos)
|
|
|
|
{
|
|
|
|
std::string path = filepath.substr(0, pos);
|
2001-01-05 19:41:20 +03:00
|
|
|
if(std::find(m_IncludeDirectories.begin(),
|
|
|
|
m_IncludeDirectories.end(), path)
|
2000-08-29 23:26:29 +04:00
|
|
|
== m_IncludeDirectories.end())
|
|
|
|
{
|
|
|
|
m_IncludeDirectories.push_back(path);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|