cmake/Source/cmGetDirectoryPropertyCommand.cxx

104 lines
3.1 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"
2020-08-30 11:54:41 +02:00
#include "cmProperty.h"
2017-04-14 19:02:05 +02:00
#include "cmSystemTools.h"
2020-02-01 23:06:01 +01:00
namespace {
void StoreResult(cmMakefile& makefile, std::string const& variable,
const char* prop);
}
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;
}
// 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
}
2018-01-26 17:06:56 +01:00
const char* prop = nullptr;
2016-07-09 11:21:54 +02:00
if (!i->empty()) {
if (*i == "DEFINITIONS") {
2020-02-01 23:06:01 +01:00
switch (status.GetMakefile().GetPolicyStatus(cmPolicies::CMP0059)) {
2015-11-17 17:22:37 +01:00
case cmPolicies::WARN:
2020-02-01 23:06:01 +01:00
status.GetMakefile().IssueMessage(
2019-11-11 23:01:05 +01:00
MessageType::AUTHOR_WARNING,
2016-07-09 11:21:54 +02:00
cmPolicies::GetPolicyWarning(cmPolicies::CMP0059));
2017-07-20 19:35:53 +02:00
CM_FALLTHROUGH;
2015-11-17 17:22:37 +01:00
case cmPolicies::OLD:
2020-02-01 23:06:01 +01:00
StoreResult(status.GetMakefile(), variable,
status.GetMakefile().GetDefineFlagsCMP0059());
2016-07-09 11:21:54 +02:00
return true;
2015-11-17 17:22:37 +01:00
case cmPolicies::NEW:
case cmPolicies::REQUIRED_ALWAYS:
case cmPolicies::REQUIRED_IF_USED:
break;
}
}
2020-08-30 11:54:41 +02:00
if (cmProp p = dir->GetProperty(*i)) {
prop = p->c_str();
}
2016-07-09 11:21:54 +02:00
}
2020-02-01 23:06:01 +01:00
StoreResult(status.GetMakefile(), variable, prop);
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 : "");
}
}