cmake/Source/cmGetDirectoryPropertyCommand.cxx

114 lines
3.4 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 "cmGetDirectoryPropertyCommand.h"
2020-02-01 23:06:01 +01:00
#include "cmExecutionStatus.h"
2017-04-14 19:02:05 +02:00
#include "cmGlobalGenerator.h"
#include "cmMakefile.h"
2019-11-11 23:01:05 +01:00
#include "cmMessageType.h"
2017-04-14 19:02:05 +02:00
#include "cmPolicies.h"
#include "cmSystemTools.h"
2021-11-20 13:41:27 +01:00
#include "cmValue.h"
2020-02-01 23:06:01 +01:00
namespace {
void StoreResult(cmMakefile& makefile, std::string const& variable,
const char* prop);
2021-11-20 13:41:27 +01:00
void StoreResult(cmMakefile& makefile, std::string const& variable,
cmValue prop);
2020-02-01 23:06:01 +01:00
}
2017-04-14 19:02:05 +02:00
// cmGetDirectoryPropertyCommand
2020-02-01 23:06:01 +01:00
bool cmGetDirectoryPropertyCommand(std::vector<std::string> const& args,
cmExecutionStatus& status)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 2) {
2020-02-01 23:06:01 +01:00
status.SetError("called with incorrect number of arguments");
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
2020-02-01 23:06:01 +01:00
auto i = args.begin();
2017-07-20 19:35:53 +02:00
std::string const& variable = *i;
++i;
2013-03-16 19:13:01 +02:00
// get the directory argument if there is one
2020-02-01 23:06:01 +01:00
cmMakefile* dir = &status.GetMakefile();
2016-07-09 11:21:54 +02:00
if (*i == "DIRECTORY") {
++i;
2016-07-09 11:21:54 +02:00
if (i == args.end()) {
2020-02-01 23:06:01 +01:00
status.SetError(
2016-07-09 11:21:54 +02:00
"DIRECTORY argument provided without subsequent arguments");
return false;
2016-07-09 11:21:54 +02:00
}
2020-08-30 11:54:41 +02:00
std::string sd = cmSystemTools::CollapseFullPath(
*i, status.GetMakefile().GetCurrentSourceDirectory());
// lookup the makefile from the directory name
2020-02-01 23:06:01 +01:00
dir = status.GetMakefile().GetGlobalGenerator()->FindMakefile(sd);
2016-07-09 11:21:54 +02:00
if (!dir) {
2020-02-01 23:06:01 +01:00
status.SetError(
2016-07-09 11:21:54 +02:00
"DIRECTORY argument provided but requested directory not found. "
"This could be because the directory argument was invalid or, "
"it is valid but has not been processed yet.");
return false;
}
2016-07-09 11:21:54 +02:00
++i;
2021-09-14 00:13:48 +02:00
if (i == args.end()) {
status.SetError("called with incorrect number of arguments");
return false;
}
2016-07-09 11:21:54 +02:00
}
// OK, now we have the directory to process, we just get the requested
// information out of it
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
if (*i == "DEFINITION") {
++i;
2016-07-09 11:21:54 +02:00
if (i == args.end()) {
2020-02-01 23:06:01 +01:00
status.SetError("A request for a variable definition was made without "
"providing the name of the variable to get.");
return false;
2016-07-09 11:21:54 +02:00
}
2018-10-28 12:09:07 +01:00
std::string const& output = dir->GetSafeDefinition(*i);
2020-02-01 23:06:01 +01:00
status.GetMakefile().AddDefinition(variable, output);
return true;
2016-07-09 11:21:54 +02:00
}
2021-09-14 00:13:48 +02:00
if (i->empty()) {
status.SetError("given empty string for the property name to get");
return false;
}
if (*i == "DEFINITIONS") {
switch (status.GetMakefile().GetPolicyStatus(cmPolicies::CMP0059)) {
case cmPolicies::WARN:
status.GetMakefile().IssueMessage(
MessageType::AUTHOR_WARNING,
cmPolicies::GetPolicyWarning(cmPolicies::CMP0059));
CM_FALLTHROUGH;
case cmPolicies::OLD:
StoreResult(status.GetMakefile(), variable,
status.GetMakefile().GetDefineFlagsCMP0059());
return true;
case cmPolicies::NEW:
case cmPolicies::REQUIRED_ALWAYS:
case cmPolicies::REQUIRED_IF_USED:
break;
2020-08-30 11:54:41 +02:00
}
2016-07-09 11:21:54 +02:00
}
2021-11-20 13:41:27 +01:00
StoreResult(status.GetMakefile(), variable, dir->GetProperty(*i));
2015-11-17 17:22:37 +01:00
return true;
}
2020-02-01 23:06:01 +01:00
namespace {
void StoreResult(cmMakefile& makefile, std::string const& variable,
const char* prop)
2015-11-17 17:22:37 +01:00
{
2020-02-01 23:06:01 +01:00
makefile.AddDefinition(variable, prop ? prop : "");
}
2021-11-20 13:41:27 +01:00
void StoreResult(cmMakefile& makefile, std::string const& variable,
cmValue prop)
{
makefile.AddDefinition(variable, prop);
}
}