2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-05-25 05:13:56 +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.
|
2001-05-25 05:13:56 +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.
|
|
|
|
============================================================================*/
|
2001-05-25 05:13:56 +04:00
|
|
|
#include "cmGetFilenameComponentCommand.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2001-05-25 05:13:56 +04:00
|
|
|
#include "cmSystemTools.h"
|
|
|
|
|
|
|
|
// cmGetFilenameComponentCommand
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmGetFilenameComponentCommand::InitialPass(
|
|
|
|
std::vector<std::string> const& args, cmExecutionStatus&)
|
2001-05-25 05:13:56 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args.size() < 3) {
|
2001-05-25 05:13:56 +04:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2001-05-25 05:13:56 +04:00
|
|
|
|
2001-10-24 01:49:13 +04:00
|
|
|
// Check and see if the value has been stored in the cache
|
|
|
|
// already, if so use that value
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args.size() >= 4 && args[args.size() - 1] == "CACHE") {
|
2014-03-11 03:04:11 +04:00
|
|
|
const char* cacheValue = this->Makefile->GetDefinition(args[0]);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cacheValue && !cmSystemTools::IsNOTFOUND(cacheValue)) {
|
2001-10-24 01:49:13 +04:00
|
|
|
return true;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2001-05-25 05:13:56 +04:00
|
|
|
std::string result;
|
|
|
|
std::string filename = args[1];
|
2016-05-16 17:34:04 +03:00
|
|
|
if (filename.find("[HKEY") != filename.npos) {
|
2009-09-30 21:45:24 +04:00
|
|
|
// Check the registry as the target application would view it.
|
|
|
|
cmSystemTools::KeyWOW64 view = cmSystemTools::KeyWOW64_32;
|
|
|
|
cmSystemTools::KeyWOW64 other_view = cmSystemTools::KeyWOW64_64;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->Makefile->PlatformIs64Bit()) {
|
2009-09-30 21:45:24 +04:00
|
|
|
view = cmSystemTools::KeyWOW64_64;
|
|
|
|
other_view = cmSystemTools::KeyWOW64_32;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-09-30 21:45:24 +04:00
|
|
|
cmSystemTools::ExpandRegistryValues(filename, view);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (filename.find("/registry") != filename.npos) {
|
2009-09-30 21:45:24 +04:00
|
|
|
std::string other = args[1];
|
|
|
|
cmSystemTools::ExpandRegistryValues(other, other_view);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (other.find("/registry") == other.npos) {
|
2009-09-30 21:45:24 +04:00
|
|
|
filename = other;
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-11-20 02:17:17 +03:00
|
|
|
std::string storeArgs;
|
|
|
|
std::string programArgs;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args[2] == "DIRECTORY" || args[2] == "PATH") {
|
2001-05-25 05:13:56 +04:00
|
|
|
result = cmSystemTools::GetFilenamePath(filename);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (args[2] == "NAME") {
|
2001-05-25 05:13:56 +04:00
|
|
|
result = cmSystemTools::GetFilenameName(filename);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (args[2] == "PROGRAM") {
|
|
|
|
for (unsigned int i = 2; i < args.size(); ++i) {
|
|
|
|
if (args[i] == "PROGRAM_ARGS") {
|
2002-11-20 02:17:17 +03:00
|
|
|
i++;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (i < args.size()) {
|
2002-11-20 02:17:17 +03:00
|
|
|
storeArgs = args[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
cmSystemTools::SplitProgramFromArgs(filename, result, programArgs);
|
|
|
|
} else if (args[2] == "EXT") {
|
2001-05-25 05:13:56 +04:00
|
|
|
result = cmSystemTools::GetFilenameExtension(filename);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (args[2] == "NAME_WE") {
|
2002-06-27 23:57:09 +04:00
|
|
|
result = cmSystemTools::GetFilenameWithoutExtension(filename);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (args[2] == "ABSOLUTE" || args[2] == "REALPATH") {
|
2015-08-18 06:55:38 +03:00
|
|
|
// If the path given is relative, evaluate it relative to the
|
|
|
|
// current source directory unless the user passes a different
|
|
|
|
// base directory.
|
|
|
|
std::string baseDir = this->Makefile->GetCurrentSourceDirectory();
|
2016-05-16 17:34:04 +03:00
|
|
|
for (unsigned int i = 3; i < args.size(); ++i) {
|
|
|
|
if (args[i] == "BASE_DIR") {
|
2015-08-18 06:55:38 +03:00
|
|
|
++i;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (i < args.size()) {
|
2015-08-18 06:55:38 +03:00
|
|
|
baseDir = args[i];
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-07-23 16:10:02 +04:00
|
|
|
// Collapse the path to its simplest form.
|
2015-08-18 06:55:38 +03:00
|
|
|
result = cmSystemTools::CollapseFullPath(filename, baseDir);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args[2] == "REALPATH") {
|
2009-02-09 17:23:55 +03:00
|
|
|
// Resolve symlinks if possible
|
2014-10-15 16:54:05 +04:00
|
|
|
result = cmSystemTools::GetRealPath(result);
|
2003-02-07 22:04:16 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2003-02-07 22:04:16 +03:00
|
|
|
std::string err = "unknown component " + args[2];
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetError(err);
|
2001-05-25 05:13:56 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2001-05-25 05:13:56 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args.size() >= 4 && args[args.size() - 1] == "CACHE") {
|
|
|
|
if (!programArgs.empty() && !storeArgs.empty()) {
|
|
|
|
this->Makefile->AddCacheDefinition(storeArgs, programArgs.c_str(), "",
|
|
|
|
args[2] == "PATH" ? cmState::FILEPATH
|
|
|
|
: cmState::STRING);
|
2001-10-24 01:49:13 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->AddCacheDefinition(args[0], result.c_str(), "",
|
|
|
|
args[2] == "PATH" ? cmState::FILEPATH
|
|
|
|
: cmState::STRING);
|
|
|
|
} else {
|
|
|
|
if (!programArgs.empty() && !storeArgs.empty()) {
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(storeArgs, programArgs.c_str());
|
2001-10-24 01:49:13 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->AddDefinition(args[0], result.c_str());
|
|
|
|
}
|
2001-05-25 05:13:56 +04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|