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"
|
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2008-07-30 19:06:11 +04:00
|
|
|
#include "cmGlobalGenerator.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmMakefile.h"
|
2007-06-18 19:59:23 +04:00
|
|
|
#include "cmSystemTools.h"
|
2016-09-01 21:59:28 +03:00
|
|
|
#include "cmake.h"
|
2007-06-18 19:59:23 +04:00
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <algorithm>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <vector>
|
2014-02-26 16:26:05 +04:00
|
|
|
|
|
|
|
cmSourceFileLocation::cmSourceFileLocation()
|
2016-06-27 23:44:16 +03:00
|
|
|
: Makefile(CM_NULLPTR)
|
2016-05-16 17:34:04 +03:00
|
|
|
, AmbiguousDirectory(true)
|
|
|
|
, AmbiguousExtension(true)
|
2014-02-26 16:26:05 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
cmSourceFileLocation::cmSourceFileLocation(const cmSourceFileLocation& loc)
|
|
|
|
: Makefile(loc.Makefile)
|
|
|
|
{
|
|
|
|
this->AmbiguousDirectory = loc.AmbiguousDirectory;
|
|
|
|
this->AmbiguousExtension = loc.AmbiguousExtension;
|
|
|
|
this->Directory = loc.Directory;
|
|
|
|
this->Name = loc.Name;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmSourceFileLocation& cmSourceFileLocation::operator=(
|
|
|
|
const cmSourceFileLocation& loc)
|
2014-02-26 16:26:05 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this == &loc) {
|
2014-02-26 16:26:05 +04:00
|
|
|
return *this;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-02-26 16:26:05 +04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmSourceFileLocation::cmSourceFileLocation(cmMakefile const* mf,
|
|
|
|
const std::string& name)
|
2014-02-06 23:05:57 +04:00
|
|
|
: 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);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::FileIsFullPath(this->Directory.c_str())) {
|
|
|
|
this->Directory = cmSystemTools::CollapseFullPath(this->Directory);
|
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
this->Name = cmSystemTools::GetFilenameName(name);
|
|
|
|
this->UpdateExtension(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmSourceFileLocation::Update(cmSourceFileLocation const& loc)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->AmbiguousDirectory && !loc.AmbiguousDirectory) {
|
2007-06-18 19:59:23 +04:00
|
|
|
this->Directory = loc.Directory;
|
|
|
|
this->AmbiguousDirectory = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->AmbiguousExtension && !loc.AmbiguousExtension) {
|
2007-06-18 19:59:23 +04:00
|
|
|
this->Name = loc.Name;
|
|
|
|
this->AmbiguousExtension = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmSourceFileLocation::DirectoryUseSource()
|
|
|
|
{
|
2014-02-26 16:26:05 +04:00
|
|
|
assert(this->Makefile);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->AmbiguousDirectory) {
|
|
|
|
this->Directory = cmSystemTools::CollapseFullPath(
|
|
|
|
this->Directory, this->Makefile->GetCurrentSourceDirectory());
|
2007-06-18 19:59:23 +04:00
|
|
|
this->AmbiguousDirectory = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmSourceFileLocation::DirectoryUseBinary()
|
|
|
|
{
|
2014-02-26 16:26:05 +04:00
|
|
|
assert(this->Makefile);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->AmbiguousDirectory) {
|
|
|
|
this->Directory = cmSystemTools::CollapseFullPath(
|
|
|
|
this->Directory, this->Makefile->GetCurrentBinaryDirectory());
|
2007-06-18 19:59:23 +04:00
|
|
|
this->AmbiguousDirectory = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
}
|
|
|
|
|
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);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!ext.empty()) {
|
|
|
|
ext = ext.substr(1);
|
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
|
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 =
|
2016-05-16 17:34:04 +03:00
|
|
|
mf->GetCMakeInstance()->GetSourceExtensions();
|
2015-10-24 15:58:23 +03:00
|
|
|
const std::vector<std::string>& hdrExts =
|
2016-05-16 17:34:04 +03:00
|
|
|
mf->GetCMakeInstance()->GetHeaderExtensions();
|
|
|
|
if (!gg->GetLanguageFromExtension(ext.c_str()).empty() ||
|
|
|
|
std::find(srcExts.begin(), srcExts.end(), ext) != srcExts.end() ||
|
|
|
|
std::find(hdrExts.begin(), hdrExts.end(), ext) != hdrExts.end()) {
|
2007-06-18 19:59:23 +04:00
|
|
|
// This is a known extension. Use the given filename with extension.
|
|
|
|
this->Name = cmSystemTools::GetFilenameName(name);
|
|
|
|
this->AmbiguousExtension = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2008-07-26 02:00:47 +04:00
|
|
|
// This is not a known extension. See if the file exists on disk as
|
|
|
|
// named.
|
|
|
|
std::string tryPath;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->AmbiguousDirectory) {
|
2008-07-26 02:00:47 +04:00
|
|
|
// 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 += "/";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (!this->Directory.empty()) {
|
2008-07-30 19:06:06 +04:00
|
|
|
tryPath += this->Directory;
|
|
|
|
tryPath += "/";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-07-26 02:00:47 +04:00
|
|
|
tryPath += this->Name;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::FileExists(tryPath.c_str(), true)) {
|
2008-07-26 02:00:47 +04:00
|
|
|
// 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.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->AmbiguousDirectory) {
|
2008-07-26 02:00:47 +04:00
|
|
|
this->DirectoryUseSource();
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmSourceFileLocation::MatchesAmbiguousExtension(
|
|
|
|
cmSourceFileLocation const& loc) const
|
2008-08-05 21:27:01 +04:00
|
|
|
{
|
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.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->Name == loc.Name) {
|
2008-08-05 21:27:01 +04:00
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-08-05 21:27:01 +04:00
|
|
|
|
|
|
|
// Check if loc's name could possibly be extended to our name by
|
|
|
|
// adding an extension.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!(this->Name.size() > loc.Name.size() &&
|
|
|
|
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;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-08-05 21:27:01 +04:00
|
|
|
|
|
|
|
// 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.
|
2016-05-16 17:34:04 +03: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 =
|
2016-05-16 17:34:04 +03:00
|
|
|
mf->GetCMakeInstance()->GetSourceExtensions();
|
|
|
|
if (std::find(srcExts.begin(), srcExts.end(), ext) != srcExts.end()) {
|
2008-08-05 21:27:01 +04:00
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-10-24 15:58:23 +03:00
|
|
|
std::vector<std::string> hdrExts =
|
2016-05-16 17:34:04 +03:00
|
|
|
mf->GetCMakeInstance()->GetHeaderExtensions();
|
2016-06-02 00:29:53 +03:00
|
|
|
return std::find(hdrExts.begin(), hdrExts.end(), ext) != hdrExts.end();
|
2008-08-05 21:27:01 +04:00
|
|
|
}
|
|
|
|
|
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);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->AmbiguousExtension == loc.AmbiguousExtension) {
|
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.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->Name.size() != loc.Name.size() ||
|
|
|
|
!cmSystemTools::ComparePath(this->Name, loc.Name)) {
|
2008-08-05 21:27:01 +04:00
|
|
|
return false;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2014-02-04 01:06:54 +04:00
|
|
|
const cmSourceFileLocation* loc1;
|
|
|
|
const cmSourceFileLocation* loc2;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->AmbiguousExtension) {
|
2014-02-04 01:06:54 +04:00
|
|
|
// Only "this" extension is ambiguous.
|
|
|
|
loc1 = &loc;
|
|
|
|
loc2 = this;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2014-02-04 01:06:54 +04:00
|
|
|
// Only "loc" extension is ambiguous.
|
|
|
|
loc1 = this;
|
|
|
|
loc2 = &loc;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (!loc1->MatchesAmbiguousExtension(*loc2)) {
|
2007-06-18 19:59:23 +04:00
|
|
|
return false;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->AmbiguousDirectory && !loc.AmbiguousDirectory) {
|
2007-06-18 19:59:23 +04:00
|
|
|
// Both sides have absolute directories.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->Directory != loc.Directory) {
|
2007-06-18 19:59:23 +04:00
|
|
|
return false;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (this->AmbiguousDirectory && loc.AmbiguousDirectory) {
|
|
|
|
if (this->Makefile == loc.Makefile) {
|
2014-02-04 01:06:54 +04:00
|
|
|
// Both sides have directories relative to the same location.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->Directory != loc.Directory) {
|
2014-02-04 01:06:54 +04:00
|
|
|
return false;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
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 "
|
2016-05-16 17:34:04 +03:00
|
|
|
"different directory. This is not yet allowed.");
|
2007-06-18 19:59:23 +04:00
|
|
|
return false;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (this->AmbiguousDirectory) {
|
2007-06-18 19:59:23 +04:00
|
|
|
// Compare possible directory combinations.
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string const& srcDir = cmSystemTools::CollapseFullPath(
|
|
|
|
this->Directory, this->Makefile->GetCurrentSourceDirectory());
|
|
|
|
std::string const& binDir = cmSystemTools::CollapseFullPath(
|
|
|
|
this->Directory, this->Makefile->GetCurrentBinaryDirectory());
|
|
|
|
if (srcDir != loc.Directory && binDir != loc.Directory) {
|
2007-06-18 19:59:23 +04:00
|
|
|
return false;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (loc.AmbiguousDirectory) {
|
2007-06-18 19:59:23 +04:00
|
|
|
// Compare possible directory combinations.
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string const& srcDir = cmSystemTools::CollapseFullPath(
|
|
|
|
loc.Directory, loc.Makefile->GetCurrentSourceDirectory());
|
|
|
|
std::string const& binDir = cmSystemTools::CollapseFullPath(
|
|
|
|
loc.Directory, loc.Makefile->GetCurrentBinaryDirectory());
|
|
|
|
if (srcDir != this->Directory && binDir != this->Directory) {
|
2007-06-18 19:59:23 +04:00
|
|
|
return false;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-06-18 19:59:23 +04:00
|
|
|
|
|
|
|
// File locations match.
|
|
|
|
this->Update(loc);
|
|
|
|
return true;
|
|
|
|
}
|