2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2007-06-18 19:59:23 +04: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.
|
2007-06-18 19:59:23 +04: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.
|
|
|
|
============================================================================*/
|
2007-06-18 19:59:23 +04:00
|
|
|
#include "cmSourceFileLocation.h"
|
|
|
|
|
|
|
|
#include "cmMakefile.h"
|
2008-07-30 19:06:11 +04:00
|
|
|
#include "cmGlobalGenerator.h"
|
2007-06-18 19:59:23 +04:00
|
|
|
#include "cmSystemTools.h"
|
2015-03-08 15:51:20 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2007-06-18 19:59:23 +04:00
|
|
|
|
2014-02-26 16:26:05 +04:00
|
|
|
#include "assert.h"
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmSourceFileLocation::cmSourceFileLocation()
|
|
|
|
: Makefile(0), AmbiguousDirectory(true), AmbiguousExtension(true)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmSourceFileLocation::cmSourceFileLocation(const cmSourceFileLocation& loc)
|
|
|
|
: Makefile(loc.Makefile)
|
|
|
|
{
|
|
|
|
this->AmbiguousDirectory = loc.AmbiguousDirectory;
|
|
|
|
this->AmbiguousExtension = loc.AmbiguousExtension;
|
|
|
|
this->Directory = loc.Directory;
|
|
|
|
this->Name = loc.Name;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmSourceFileLocation&
|
|
|
|
cmSourceFileLocation::operator=(const cmSourceFileLocation& loc)
|
|
|
|
{
|
|
|
|
if(this == &loc)
|
|
|
|
{
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
this->Makefile = loc.Makefile;
|
|
|
|
this->AmbiguousDirectory = loc.AmbiguousDirectory;
|
|
|
|
this->AmbiguousExtension = loc.AmbiguousExtension;
|
|
|
|
this->Directory = loc.Directory;
|
|
|
|
this->Name = loc.Name;
|
|
|
|
this->UpdateExtension(this->Name);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmSourceFileLocation
|
2014-02-06 23:05:57 +04:00
|
|
|
::cmSourceFileLocation(cmMakefile const* mf, const std::string& name)
|
|
|
|
: Makefile(mf)
|
2007-06-18 19:59:23 +04:00
|
|
|
{
|
2014-02-06 23:05:57 +04:00
|
|
|
this->AmbiguousDirectory = !cmSystemTools::FileIsFullPath(name.c_str());
|
2007-06-18 19:59:23 +04:00
|
|
|
this->AmbiguousExtension = true;
|
|
|
|
this->Directory = cmSystemTools::GetFilenamePath(name);
|
2014-03-28 01:56:36 +04:00
|
|
|
if (cmSystemTools::FileIsFullPath(this->Directory.c_str()))
|
|
|
|
{
|
|
|
|
this->Directory
|
2014-10-15 16:54:05 +04:00
|
|
|
= cmSystemTools::CollapseFullPath(this->Directory);
|
2014-03-28 01:56:36 +04:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
this->Name = cmSystemTools::GetFilenameName(name);
|
|
|
|
this->UpdateExtension(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmSourceFileLocation::Update(cmSourceFileLocation const& loc)
|
|
|
|
{
|
|
|
|
if(this->AmbiguousDirectory && !loc.AmbiguousDirectory)
|
|
|
|
{
|
|
|
|
this->Directory = loc.Directory;
|
|
|
|
this->AmbiguousDirectory = false;
|
|
|
|
}
|
|
|
|
if(this->AmbiguousExtension && !loc.AmbiguousExtension)
|
|
|
|
{
|
|
|
|
this->Name = loc.Name;
|
|
|
|
this->AmbiguousExtension = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmSourceFileLocation::DirectoryUseSource()
|
|
|
|
{
|
2014-02-26 16:26:05 +04:00
|
|
|
assert(this->Makefile);
|
2007-06-18 19:59:23 +04:00
|
|
|
if(this->AmbiguousDirectory)
|
|
|
|
{
|
|
|
|
this->Directory =
|
|
|
|
cmSystemTools::CollapseFullPath(
|
2015-04-16 22:17:41 +03:00
|
|
|
this->Directory, this->Makefile->GetCurrentSourceDirectory());
|
2007-06-18 19:59:23 +04:00
|
|
|
this->AmbiguousDirectory = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmSourceFileLocation::DirectoryUseBinary()
|
|
|
|
{
|
2014-02-26 16:26:05 +04:00
|
|
|
assert(this->Makefile);
|
2007-06-18 19:59:23 +04:00
|
|
|
if(this->AmbiguousDirectory)
|
|
|
|
{
|
|
|
|
this->Directory =
|
|
|
|
cmSystemTools::CollapseFullPath(
|
2015-04-16 22:33:09 +03:00
|
|
|
this->Directory, this->Makefile->GetCurrentBinaryDirectory());
|
2007-06-18 19:59:23 +04:00
|
|
|
this->AmbiguousDirectory = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2014-02-06 23:05:57 +04:00
|
|
|
void cmSourceFileLocation::UpdateExtension(const std::string& name)
|
2007-06-18 19:59:23 +04:00
|
|
|
{
|
2014-02-26 16:26:05 +04:00
|
|
|
assert(this->Makefile);
|
2007-06-18 19:59:23 +04:00
|
|
|
// Check the extension.
|
|
|
|
std::string ext = cmSystemTools::GetFilenameLastExtension(name);
|
|
|
|
if(!ext.empty()) { ext = ext.substr(1); }
|
|
|
|
|
2008-07-30 19:06:11 +04:00
|
|
|
// The global generator checks extensions of enabled languages.
|
2015-05-03 12:10:30 +03:00
|
|
|
cmGlobalGenerator* gg = this->Makefile->GetGlobalGenerator();
|
2014-01-21 20:07:59 +04:00
|
|
|
cmMakefile const* mf = this->Makefile;
|
2015-10-24 15:58:23 +03:00
|
|
|
const std::vector<std::string>& srcExts =
|
|
|
|
mf->GetCMakeInstance()->GetSourceExtensions();
|
|
|
|
const std::vector<std::string>& hdrExts =
|
|
|
|
mf->GetCMakeInstance()->GetHeaderExtensions();
|
2014-02-04 06:20:56 +04:00
|
|
|
if(!gg->GetLanguageFromExtension(ext.c_str()).empty() ||
|
2008-07-30 19:06:11 +04:00
|
|
|
std::find(srcExts.begin(), srcExts.end(), ext) != srcExts.end() ||
|
2007-06-18 19:59:23 +04:00
|
|
|
std::find(hdrExts.begin(), hdrExts.end(), ext) != hdrExts.end())
|
|
|
|
{
|
|
|
|
// This is a known extension. Use the given filename with extension.
|
|
|
|
this->Name = cmSystemTools::GetFilenameName(name);
|
|
|
|
this->AmbiguousExtension = false;
|
|
|
|
}
|
2008-07-26 02:00:47 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// This is not a known extension. See if the file exists on disk as
|
|
|
|
// named.
|
|
|
|
std::string tryPath;
|
|
|
|
if(this->AmbiguousDirectory)
|
|
|
|
{
|
|
|
|
// Check the source tree only because a file in the build tree should
|
|
|
|
// be specified by full path at least once. We do not want this
|
|
|
|
// detection to depend on whether the project has already been built.
|
2015-04-16 22:17:41 +03:00
|
|
|
tryPath = this->Makefile->GetCurrentSourceDirectory();
|
2008-07-26 02:00:47 +04:00
|
|
|
tryPath += "/";
|
|
|
|
}
|
2008-07-30 19:06:06 +04:00
|
|
|
if(!this->Directory.empty())
|
|
|
|
{
|
|
|
|
tryPath += this->Directory;
|
|
|
|
tryPath += "/";
|
|
|
|
}
|
2008-07-26 02:00:47 +04:00
|
|
|
tryPath += this->Name;
|
|
|
|
if(cmSystemTools::FileExists(tryPath.c_str(), true))
|
|
|
|
{
|
|
|
|
// We found a source file named by the user on disk. Trust it's
|
|
|
|
// extension.
|
|
|
|
this->Name = cmSystemTools::GetFilenameName(name);
|
|
|
|
this->AmbiguousExtension = false;
|
|
|
|
|
|
|
|
// If the directory was ambiguous, it isn't anymore.
|
|
|
|
if(this->AmbiguousDirectory)
|
|
|
|
{
|
|
|
|
this->DirectoryUseSource();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
}
|
|
|
|
|
2008-08-05 21:27:01 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool
|
|
|
|
cmSourceFileLocation
|
|
|
|
::MatchesAmbiguousExtension(cmSourceFileLocation const& loc) const
|
|
|
|
{
|
2014-02-26 16:26:05 +04:00
|
|
|
assert(this->Makefile);
|
2008-08-05 21:27:01 +04:00
|
|
|
// This location's extension is not ambiguous but loc's extension
|
|
|
|
// is. See if the names match as-is.
|
|
|
|
if(this->Name == loc.Name)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if loc's name could possibly be extended to our name by
|
|
|
|
// adding an extension.
|
|
|
|
if(!(this->Name.size() > loc.Name.size() &&
|
2014-02-10 10:39:33 +04:00
|
|
|
this->Name[loc.Name.size()] == '.' &&
|
|
|
|
cmHasLiteralPrefixImpl(this->Name.c_str(),
|
|
|
|
loc.Name.c_str(), loc.Name.size())))
|
2008-08-05 21:27:01 +04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only a fixed set of extensions will be tried to match a file on
|
|
|
|
// disk. One of these must match if loc refers to this source file.
|
2014-03-11 09:49:11 +04:00
|
|
|
std::string const& ext = this->Name.substr(loc.Name.size()+1);
|
2014-01-21 20:07:59 +04:00
|
|
|
cmMakefile const* mf = this->Makefile;
|
2015-10-24 15:58:23 +03:00
|
|
|
const std::vector<std::string>& srcExts =
|
|
|
|
mf->GetCMakeInstance()->GetSourceExtensions();
|
2008-08-05 21:27:01 +04:00
|
|
|
if(std::find(srcExts.begin(), srcExts.end(), ext) != srcExts.end())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2015-10-24 15:58:23 +03:00
|
|
|
std::vector<std::string> hdrExts =
|
|
|
|
mf->GetCMakeInstance()->GetHeaderExtensions();
|
2008-08-05 21:27:01 +04:00
|
|
|
if(std::find(hdrExts.begin(), hdrExts.end(), ext) != hdrExts.end())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-06-18 19:59:23 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmSourceFileLocation::Matches(cmSourceFileLocation const& loc)
|
|
|
|
{
|
2014-02-26 16:26:05 +04:00
|
|
|
assert(this->Makefile);
|
2014-02-04 01:06:54 +04:00
|
|
|
if(this->AmbiguousExtension == loc.AmbiguousExtension)
|
2007-06-18 19:59:23 +04:00
|
|
|
{
|
2014-02-04 01:06:54 +04:00
|
|
|
// Both extensions are similarly ambiguous. Since only the old fixed set
|
|
|
|
// of extensions will be tried, the names must match at this point to be
|
|
|
|
// the same file.
|
2014-11-27 00:14:49 +03:00
|
|
|
if(this->Name.size() != loc.Name.size() ||
|
|
|
|
!cmSystemTools::ComparePath(this->Name, loc.Name))
|
2007-06-18 19:59:23 +04:00
|
|
|
{
|
2008-08-05 21:27:01 +04:00
|
|
|
return false;
|
2007-06-18 19:59:23 +04:00
|
|
|
}
|
2008-08-05 21:27:01 +04:00
|
|
|
}
|
2014-02-04 01:06:54 +04:00
|
|
|
else
|
2008-08-05 21:27:01 +04:00
|
|
|
{
|
2014-02-04 01:06:54 +04:00
|
|
|
const cmSourceFileLocation* loc1;
|
|
|
|
const cmSourceFileLocation* loc2;
|
|
|
|
if(this->AmbiguousExtension)
|
2007-06-18 19:59:23 +04:00
|
|
|
{
|
2014-02-04 01:06:54 +04:00
|
|
|
// Only "this" extension is ambiguous.
|
|
|
|
loc1 = &loc;
|
|
|
|
loc2 = this;
|
2007-06-18 19:59:23 +04:00
|
|
|
}
|
2014-02-04 01:06:54 +04:00
|
|
|
else
|
2007-06-18 19:59:23 +04:00
|
|
|
{
|
2014-02-04 01:06:54 +04:00
|
|
|
// Only "loc" extension is ambiguous.
|
|
|
|
loc1 = this;
|
|
|
|
loc2 = &loc;
|
2007-06-18 19:59:23 +04:00
|
|
|
}
|
2014-02-04 01:06:54 +04:00
|
|
|
if(!loc1->MatchesAmbiguousExtension(*loc2))
|
2007-06-18 19:59:23 +04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!this->AmbiguousDirectory && !loc.AmbiguousDirectory)
|
|
|
|
{
|
|
|
|
// Both sides have absolute directories.
|
|
|
|
if(this->Directory != loc.Directory)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2014-02-04 01:06:54 +04:00
|
|
|
else if(this->AmbiguousDirectory && loc.AmbiguousDirectory)
|
2007-06-18 19:59:23 +04:00
|
|
|
{
|
2014-02-04 01:06:54 +04:00
|
|
|
if (this->Makefile == loc.Makefile)
|
|
|
|
{
|
|
|
|
// Both sides have directories relative to the same location.
|
|
|
|
if(this->Directory != loc.Directory)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2007-06-18 19:59:23 +04:00
|
|
|
{
|
2014-02-04 01:06:54 +04:00
|
|
|
// Each side has a directory relative to a different location.
|
|
|
|
// This can occur when referencing a source file from a different
|
|
|
|
// directory. This is not yet allowed.
|
|
|
|
this->Makefile->IssueMessage(
|
|
|
|
cmake::INTERNAL_ERROR,
|
|
|
|
"Matches error: Each side has a directory relative to a different "
|
|
|
|
"location. This can occur when referencing a source file from a "
|
|
|
|
"different directory. This is not yet allowed."
|
|
|
|
);
|
2007-06-18 19:59:23 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(this->AmbiguousDirectory)
|
|
|
|
{
|
|
|
|
// Compare possible directory combinations.
|
2014-03-11 09:49:11 +04:00
|
|
|
std::string const& srcDir =
|
2007-06-18 19:59:23 +04:00
|
|
|
cmSystemTools::CollapseFullPath(
|
2015-04-16 22:17:41 +03:00
|
|
|
this->Directory, this->Makefile->GetCurrentSourceDirectory());
|
2014-03-11 09:49:11 +04:00
|
|
|
std::string const& binDir =
|
2007-06-18 19:59:23 +04:00
|
|
|
cmSystemTools::CollapseFullPath(
|
2015-04-16 22:33:09 +03:00
|
|
|
this->Directory, this->Makefile->GetCurrentBinaryDirectory());
|
2007-06-18 19:59:23 +04:00
|
|
|
if(srcDir != loc.Directory &&
|
|
|
|
binDir != loc.Directory)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(loc.AmbiguousDirectory)
|
|
|
|
{
|
|
|
|
// Compare possible directory combinations.
|
2014-03-11 09:49:11 +04:00
|
|
|
std::string const& srcDir =
|
2007-06-18 19:59:23 +04:00
|
|
|
cmSystemTools::CollapseFullPath(
|
2015-04-16 22:17:41 +03:00
|
|
|
loc.Directory, loc.Makefile->GetCurrentSourceDirectory());
|
2014-03-11 09:49:11 +04:00
|
|
|
std::string const& binDir =
|
2007-06-18 19:59:23 +04:00
|
|
|
cmSystemTools::CollapseFullPath(
|
2015-04-16 22:33:09 +03:00
|
|
|
loc.Directory, loc.Makefile->GetCurrentBinaryDirectory());
|
2007-06-18 19:59:23 +04:00
|
|
|
if(srcDir != this->Directory &&
|
|
|
|
binDir != this->Directory)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// File locations match.
|
|
|
|
this->Update(loc);
|
|
|
|
return true;
|
|
|
|
}
|