2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-05-25 01:13:56 +00:00
|
|
|
#include "cmGetFilenameComponentCommand.h"
|
2016-04-29 13:40:20 +00:00
|
|
|
|
2019-07-25 17:24:45 +00:00
|
|
|
#include "cmExecutionStatus.h"
|
2016-10-25 18:35:04 +00:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmStateTypes.h"
|
2019-07-31 07:06:04 +00:00
|
|
|
#include "cmStringAlgorithms.h"
|
2001-05-25 01:13:56 +00:00
|
|
|
#include "cmSystemTools.h"
|
|
|
|
|
|
|
|
// cmGetFilenameComponentCommand
|
2019-07-25 17:24:45 +00:00
|
|
|
bool cmGetFilenameComponentCommand(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus& status)
|
2001-05-25 01:13:56 +00:00
|
|
|
{
|
2016-05-16 14:34:04 +00:00
|
|
|
if (args.size() < 3) {
|
2019-07-25 17:24:45 +00:00
|
|
|
status.SetError("called with incorrect number of arguments");
|
2001-05-25 01:13:56 +00:00
|
|
|
return false;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2001-05-25 01:13:56 +00:00
|
|
|
|
2001-10-23 21:49:13 +00:00
|
|
|
// Check and see if the value has been stored in the cache
|
|
|
|
// already, if so use that value
|
2018-11-06 06:47:40 +00:00
|
|
|
if (args.size() >= 4 && args.back() == "CACHE") {
|
2019-07-25 17:24:45 +00:00
|
|
|
const char* cacheValue = status.GetMakefile().GetDefinition(args.front());
|
2019-08-17 09:04:11 +00:00
|
|
|
if (cacheValue && !cmIsNOTFOUND(cacheValue)) {
|
2001-10-23 21:49:13 +00:00
|
|
|
return true;
|
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2001-05-25 01:13:56 +00:00
|
|
|
std::string result;
|
|
|
|
std::string filename = args[1];
|
2017-05-30 19:37:46 +00:00
|
|
|
if (filename.find("[HKEY") != std::string::npos) {
|
2009-09-30 17:45:24 +00:00
|
|
|
// Check the registry as the target application would view it.
|
|
|
|
cmSystemTools::KeyWOW64 view = cmSystemTools::KeyWOW64_32;
|
|
|
|
cmSystemTools::KeyWOW64 other_view = cmSystemTools::KeyWOW64_64;
|
2019-07-25 17:24:45 +00:00
|
|
|
if (status.GetMakefile().PlatformIs64Bit()) {
|
2009-09-30 17:45:24 +00:00
|
|
|
view = cmSystemTools::KeyWOW64_64;
|
|
|
|
other_view = cmSystemTools::KeyWOW64_32;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2009-09-30 17:45:24 +00:00
|
|
|
cmSystemTools::ExpandRegistryValues(filename, view);
|
2017-05-30 19:37:46 +00:00
|
|
|
if (filename.find("/registry") != std::string::npos) {
|
2009-09-30 17:45:24 +00:00
|
|
|
std::string other = args[1];
|
|
|
|
cmSystemTools::ExpandRegistryValues(other, other_view);
|
2017-05-30 19:37:46 +00:00
|
|
|
if (other.find("/registry") == std::string::npos) {
|
2009-09-30 17:45:24 +00:00
|
|
|
filename = other;
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2002-11-19 23:17:17 +00:00
|
|
|
std::string storeArgs;
|
|
|
|
std::string programArgs;
|
2016-05-16 14:34:04 +00:00
|
|
|
if (args[2] == "DIRECTORY" || args[2] == "PATH") {
|
2001-05-25 01:13:56 +00:00
|
|
|
result = cmSystemTools::GetFilenamePath(filename);
|
2016-05-16 14:34:04 +00:00
|
|
|
} else if (args[2] == "NAME") {
|
2001-05-25 01:13:56 +00:00
|
|
|
result = cmSystemTools::GetFilenameName(filename);
|
2016-05-16 14:34:04 +00:00
|
|
|
} else if (args[2] == "PROGRAM") {
|
|
|
|
for (unsigned int i = 2; i < args.size(); ++i) {
|
|
|
|
if (args[i] == "PROGRAM_ARGS") {
|
2002-11-19 23:17:17 +00:00
|
|
|
i++;
|
2016-05-16 14:34:04 +00:00
|
|
|
if (i < args.size()) {
|
2002-11-19 23:17:17 +00:00
|
|
|
storeArgs = args[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-11 15:05:20 +00:00
|
|
|
|
|
|
|
// First assume the path to the program was specified with no
|
|
|
|
// arguments and with no quoting or escaping for spaces.
|
|
|
|
// Only bother doing this if there is non-whitespace.
|
2019-07-31 07:06:04 +00:00
|
|
|
if (!cmTrimWhitespace(filename).empty()) {
|
2017-09-11 15:05:20 +00:00
|
|
|
result = cmSystemTools::FindProgram(filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If that failed then assume a command-line string was given
|
|
|
|
// and split the program part from the rest of the arguments.
|
|
|
|
if (result.empty()) {
|
|
|
|
std::string program;
|
|
|
|
if (cmSystemTools::SplitProgramFromArgs(filename, program,
|
|
|
|
programArgs)) {
|
|
|
|
if (cmSystemTools::FileExists(program)) {
|
|
|
|
result = program;
|
|
|
|
} else {
|
|
|
|
result = cmSystemTools::FindProgram(program);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (result.empty()) {
|
|
|
|
programArgs.clear();
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
} else if (args[2] == "EXT") {
|
2001-05-25 01:13:56 +00:00
|
|
|
result = cmSystemTools::GetFilenameExtension(filename);
|
2016-05-16 14:34:04 +00:00
|
|
|
} else if (args[2] == "NAME_WE") {
|
2002-06-27 19:57:09 +00:00
|
|
|
result = cmSystemTools::GetFilenameWithoutExtension(filename);
|
2019-01-24 17:08:52 +00:00
|
|
|
} else if (args[2] == "LAST_EXT") {
|
|
|
|
result = cmSystemTools::GetFilenameLastExtension(filename);
|
|
|
|
} else if (args[2] == "NAME_WLE") {
|
|
|
|
result = cmSystemTools::GetFilenameWithoutLastExtension(filename);
|
2016-05-16 14:34:04 +00:00
|
|
|
} else if (args[2] == "ABSOLUTE" || args[2] == "REALPATH") {
|
2015-08-18 03:55:38 +00:00
|
|
|
// If the path given is relative, evaluate it relative to the
|
|
|
|
// current source directory unless the user passes a different
|
|
|
|
// base directory.
|
2019-07-25 17:24:45 +00:00
|
|
|
std::string baseDir = status.GetMakefile().GetCurrentSourceDirectory();
|
2016-05-16 14:34:04 +00:00
|
|
|
for (unsigned int i = 3; i < args.size(); ++i) {
|
|
|
|
if (args[i] == "BASE_DIR") {
|
2015-08-18 03:55:38 +00:00
|
|
|
++i;
|
2016-05-16 14:34:04 +00:00
|
|
|
if (i < args.size()) {
|
2015-08-18 03:55:38 +00:00
|
|
|
baseDir = args[i];
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2009-07-23 12:10:02 +00:00
|
|
|
// Collapse the path to its simplest form.
|
2015-08-18 03:55:38 +00:00
|
|
|
result = cmSystemTools::CollapseFullPath(filename, baseDir);
|
2016-05-16 14:34:04 +00:00
|
|
|
if (args[2] == "REALPATH") {
|
2009-02-09 14:23:55 +00:00
|
|
|
// Resolve symlinks if possible
|
2014-10-15 12:54:05 +00:00
|
|
|
result = cmSystemTools::GetRealPath(result);
|
2003-02-07 19:04:16 +00:00
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
} else {
|
2003-02-07 19:04:16 +00:00
|
|
|
std::string err = "unknown component " + args[2];
|
2019-07-25 17:24:45 +00:00
|
|
|
status.SetError(err);
|
2001-05-25 01:13:56 +00:00
|
|
|
return false;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2001-05-25 01:13:56 +00:00
|
|
|
|
2018-11-06 06:47:40 +00:00
|
|
|
if (args.size() >= 4 && args.back() == "CACHE") {
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!programArgs.empty() && !storeArgs.empty()) {
|
2019-07-25 17:24:45 +00:00
|
|
|
status.GetMakefile().AddCacheDefinition(
|
2016-10-18 19:28:47 +00:00
|
|
|
storeArgs, programArgs.c_str(), "",
|
|
|
|
args[2] == "PATH" ? cmStateEnums::FILEPATH : cmStateEnums::STRING);
|
2001-10-23 21:49:13 +00:00
|
|
|
}
|
2019-07-25 17:24:45 +00:00
|
|
|
status.GetMakefile().AddCacheDefinition(
|
2018-11-06 06:47:40 +00:00
|
|
|
args.front(), result.c_str(), "",
|
2016-10-18 19:28:47 +00:00
|
|
|
args[2] == "PATH" ? cmStateEnums::FILEPATH : cmStateEnums::STRING);
|
2016-05-16 14:34:04 +00:00
|
|
|
} else {
|
|
|
|
if (!programArgs.empty() && !storeArgs.empty()) {
|
2019-07-25 17:24:45 +00:00
|
|
|
status.GetMakefile().AddDefinition(storeArgs, programArgs);
|
2001-10-23 21:49:13 +00:00
|
|
|
}
|
2019-07-25 17:24:45 +00:00
|
|
|
status.GetMakefile().AddDefinition(args.front(), result);
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2001-05-25 01:13:56 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|