cmake/Source/cmGetFilenameComponentCommand.cxx

141 lines
4.9 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmGetFilenameComponentCommand.h"
2016-07-09 11:21:54 +02:00
2020-02-01 23:06:01 +01:00
#include "cmExecutionStatus.h"
2017-04-14 19:02:05 +02:00
#include "cmMakefile.h"
#include "cmStateTypes.h"
2020-02-01 23:06:01 +01:00
#include "cmStringAlgorithms.h"
#include "cmSystemTools.h"
2021-11-20 13:41:27 +01:00
#include "cmValue.h"
// cmGetFilenameComponentCommand
2020-02-01 23:06:01 +01:00
bool cmGetFilenameComponentCommand(std::vector<std::string> const& args,
cmExecutionStatus& status)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 3) {
2020-02-01 23:06:01 +01:00
status.SetError("called with incorrect number of arguments");
2022-08-04 22:12:04 +02:00
cmSystemTools::SetFatalErrorOccurred();
return false;
2016-07-09 11:21:54 +02:00
}
// Check and see if the value has been stored in the cache
// already, if so use that value
2019-11-11 23:01:05 +01:00
if (args.size() >= 4 && args.back() == "CACHE") {
2021-11-20 13:41:27 +01:00
cmValue cacheValue = status.GetMakefile().GetDefinition(args.front());
2021-09-14 00:13:48 +02:00
if (cacheValue && !cmIsNOTFOUND(*cacheValue)) {
return true;
}
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
std::string result;
std::string filename = args[1];
2017-07-20 19:35:53 +02:00
if (filename.find("[HKEY") != std::string::npos) {
2009-10-04 10:30:41 +03:00
// Check the registry as the target application would view it.
cmSystemTools::KeyWOW64 view = cmSystemTools::KeyWOW64_32;
cmSystemTools::KeyWOW64 other_view = cmSystemTools::KeyWOW64_64;
2020-02-01 23:06:01 +01:00
if (status.GetMakefile().PlatformIs64Bit()) {
2009-10-04 10:30:41 +03:00
view = cmSystemTools::KeyWOW64_64;
other_view = cmSystemTools::KeyWOW64_32;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
cmSystemTools::ExpandRegistryValues(filename, view);
2017-07-20 19:35:53 +02:00
if (filename.find("/registry") != std::string::npos) {
2009-10-04 10:30:41 +03:00
std::string other = args[1];
cmSystemTools::ExpandRegistryValues(other, other_view);
2017-07-20 19:35:53 +02:00
if (other.find("/registry") == std::string::npos) {
2009-10-04 10:30:41 +03:00
filename = other;
}
}
2016-07-09 11:21:54 +02:00
}
std::string storeArgs;
std::string programArgs;
2016-07-09 11:21:54 +02:00
if (args[2] == "DIRECTORY" || args[2] == "PATH") {
result = cmSystemTools::GetFilenamePath(filename);
2016-07-09 11:21:54 +02:00
} else if (args[2] == "NAME") {
result = cmSystemTools::GetFilenameName(filename);
2016-07-09 11:21:54 +02:00
} else if (args[2] == "PROGRAM") {
for (unsigned int i = 2; i < args.size(); ++i) {
if (args[i] == "PROGRAM_ARGS") {
i++;
2016-07-09 11:21:54 +02:00
if (i < args.size()) {
storeArgs = args[i];
}
}
}
2018-01-26 17:06:56 +01: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.
2020-02-01 23:06:01 +01:00
if (!cmTrimWhitespace(filename).empty()) {
2018-01-26 17:06:56 +01: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-07-09 11:21:54 +02:00
} else if (args[2] == "EXT") {
result = cmSystemTools::GetFilenameExtension(filename);
2016-07-09 11:21:54 +02:00
} else if (args[2] == "NAME_WE") {
result = cmSystemTools::GetFilenameWithoutExtension(filename);
2019-11-11 23:01:05 +01:00
} else if (args[2] == "LAST_EXT") {
result = cmSystemTools::GetFilenameLastExtension(filename);
} else if (args[2] == "NAME_WLE") {
result = cmSystemTools::GetFilenameWithoutLastExtension(filename);
2016-07-09 11:21:54 +02:00
} else if (args[2] == "ABSOLUTE" || args[2] == "REALPATH") {
2015-11-17 17:22:37 +01:00
// If the path given is relative, evaluate it relative to the
// current source directory unless the user passes a different
// base directory.
2020-02-01 23:06:01 +01:00
std::string baseDir = status.GetMakefile().GetCurrentSourceDirectory();
2016-07-09 11:21:54 +02:00
for (unsigned int i = 3; i < args.size(); ++i) {
if (args[i] == "BASE_DIR") {
2015-11-17 17:22:37 +01:00
++i;
2016-07-09 11:21:54 +02:00
if (i < args.size()) {
2015-11-17 17:22:37 +01:00
baseDir = args[i];
}
}
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// Collapse the path to its simplest form.
2015-11-17 17:22:37 +01:00
result = cmSystemTools::CollapseFullPath(filename, baseDir);
2016-07-09 11:21:54 +02:00
if (args[2] == "REALPATH") {
2009-05-01 17:43:35 +03:00
// Resolve symlinks if possible
2015-04-27 22:25:09 +02:00
result = cmSystemTools::GetRealPath(result);
}
2016-07-09 11:21:54 +02:00
} else {
std::string err = "unknown component " + args[2];
2020-02-01 23:06:01 +01:00
status.SetError(err);
2022-08-04 22:12:04 +02:00
cmSystemTools::SetFatalErrorOccurred();
return false;
2016-07-09 11:21:54 +02:00
}
2019-11-11 23:01:05 +01:00
if (args.size() >= 4 && args.back() == "CACHE") {
2016-07-09 11:21:54 +02:00
if (!programArgs.empty() && !storeArgs.empty()) {
2020-02-01 23:06:01 +01:00
status.GetMakefile().AddCacheDefinition(
2020-08-30 11:54:41 +02:00
storeArgs, programArgs, "",
2017-04-14 19:02:05 +02:00
args[2] == "PATH" ? cmStateEnums::FILEPATH : cmStateEnums::STRING);
}
2020-02-01 23:06:01 +01:00
status.GetMakefile().AddCacheDefinition(
2020-08-30 11:54:41 +02:00
args.front(), result, "",
2017-04-14 19:02:05 +02:00
args[2] == "PATH" ? cmStateEnums::FILEPATH : cmStateEnums::STRING);
2016-07-09 11:21:54 +02:00
} else {
if (!programArgs.empty() && !storeArgs.empty()) {
2020-02-01 23:06:01 +01:00
status.GetMakefile().AddDefinition(storeArgs, programArgs);
}
2020-02-01 23:06:01 +01:00
status.GetMakefile().AddDefinition(args.front(), result);
2016-07-09 11:21:54 +02:00
}
return true;
}