cmake/Source/cmGetPropertyCommand.cxx

367 lines
11 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 "cmGetPropertyCommand.h"
2017-04-14 19:02:05 +02:00
#include <sstream>
2013-11-03 12:27:13 +02:00
#include "cmGlobalGenerator.h"
2017-04-14 19:02:05 +02:00
#include "cmInstalledFile.h"
#include "cmListFileCache.h"
#include "cmMakefile.h"
#include "cmPolicies.h"
#include "cmProperty.h"
#include "cmPropertyDefinition.h"
2016-07-09 11:21:54 +02:00
#include "cmSourceFile.h"
#include "cmState.h"
2017-04-14 19:02:05 +02:00
#include "cmSystemTools.h"
#include "cmTarget.h"
#include "cmTargetPropertyComputer.h"
2016-07-09 11:21:54 +02:00
#include "cmTest.h"
#include "cmake.h"
2017-04-14 19:02:05 +02:00
class cmExecutionStatus;
class cmMessenger;
cmGetPropertyCommand::cmGetPropertyCommand()
{
this->InfoType = OutValue;
}
2016-07-09 11:21:54 +02:00
bool cmGetPropertyCommand::InitialPass(std::vector<std::string> const& args,
cmExecutionStatus&)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 3) {
this->SetError("called with incorrect number of arguments");
return false;
2016-07-09 11:21:54 +02:00
}
// The cmake variable in which to store the result.
this->Variable = args[0];
// Get the scope from which to get the property.
cmProperty::ScopeType scope;
2016-07-09 11:21:54 +02:00
if (args[1] == "GLOBAL") {
scope = cmProperty::GLOBAL;
2016-07-09 11:21:54 +02:00
} else if (args[1] == "DIRECTORY") {
scope = cmProperty::DIRECTORY;
2016-07-09 11:21:54 +02:00
} else if (args[1] == "TARGET") {
scope = cmProperty::TARGET;
2016-07-09 11:21:54 +02:00
} else if (args[1] == "SOURCE") {
scope = cmProperty::SOURCE_FILE;
2016-07-09 11:21:54 +02:00
} else if (args[1] == "TEST") {
scope = cmProperty::TEST;
2016-07-09 11:21:54 +02:00
} else if (args[1] == "VARIABLE") {
scope = cmProperty::VARIABLE;
2016-07-09 11:21:54 +02:00
} else if (args[1] == "CACHE") {
2009-10-04 10:30:41 +03:00
scope = cmProperty::CACHE;
2016-07-09 11:21:54 +02:00
} else if (args[1] == "INSTALL") {
2015-04-27 22:25:09 +02:00
scope = cmProperty::INSTALL;
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
e << "given invalid scope " << args[1] << ". "
<< "Valid scopes are "
2015-04-27 22:25:09 +02:00
<< "GLOBAL, DIRECTORY, TARGET, SOURCE, TEST, VARIABLE, CACHE, INSTALL.";
this->SetError(e.str());
return false;
2016-07-09 11:21:54 +02:00
}
// Parse remaining arguments.
2016-07-09 11:21:54 +02:00
enum Doing
{
DoingNone,
DoingName,
DoingProperty,
DoingType
};
Doing doing = DoingName;
2016-07-09 11:21:54 +02:00
for (unsigned int i = 2; i < args.size(); ++i) {
if (args[i] == "PROPERTY") {
doing = DoingProperty;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "BRIEF_DOCS") {
doing = DoingNone;
this->InfoType = OutBriefDoc;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "FULL_DOCS") {
doing = DoingNone;
this->InfoType = OutFullDoc;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "SET") {
doing = DoingNone;
this->InfoType = OutSet;
2016-07-09 11:21:54 +02:00
} else if (args[i] == "DEFINED") {
doing = DoingNone;
this->InfoType = OutDefined;
2016-07-09 11:21:54 +02:00
} else if (doing == DoingName) {
doing = DoingNone;
this->Name = args[i];
2016-07-09 11:21:54 +02:00
} else if (doing == DoingProperty) {
doing = DoingNone;
this->PropertyName = args[i];
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
e << "given invalid argument \"" << args[i] << "\".";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
return false;
}
2016-07-09 11:21:54 +02:00
}
// Make sure a property name was found.
2016-07-09 11:21:54 +02:00
if (this->PropertyName.empty()) {
this->SetError("not given a PROPERTY <name> argument.");
return false;
2016-07-09 11:21:54 +02:00
}
// Compute requested output.
2016-07-09 11:21:54 +02:00
if (this->InfoType == OutBriefDoc) {
// Lookup brief documentation.
std::string output;
2016-07-09 11:21:54 +02:00
if (cmPropertyDefinition const* def =
this->Makefile->GetState()->GetPropertyDefinition(this->PropertyName,
scope)) {
output = def->GetShortDescription();
2016-07-09 11:21:54 +02:00
} else {
output = "NOTFOUND";
}
2016-07-09 11:21:54 +02:00
this->Makefile->AddDefinition(this->Variable, output.c_str());
} else if (this->InfoType == OutFullDoc) {
// Lookup full documentation.
std::string output;
2016-07-09 11:21:54 +02:00
if (cmPropertyDefinition const* def =
this->Makefile->GetState()->GetPropertyDefinition(this->PropertyName,
scope)) {
output = def->GetFullDescription();
2016-07-09 11:21:54 +02:00
} else {
output = "NOTFOUND";
}
2016-07-09 11:21:54 +02:00
this->Makefile->AddDefinition(this->Variable, output.c_str());
} else if (this->InfoType == OutDefined) {
// Lookup if the property is defined
2016-07-09 11:21:54 +02:00
if (this->Makefile->GetState()->GetPropertyDefinition(this->PropertyName,
scope)) {
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(this->Variable, "1");
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(this->Variable, "0");
}
2016-07-09 11:21:54 +02:00
} else {
// Dispatch property getting.
2016-07-09 11:21:54 +02:00
switch (scope) {
case cmProperty::GLOBAL:
return this->HandleGlobalMode();
case cmProperty::DIRECTORY:
return this->HandleDirectoryMode();
case cmProperty::TARGET:
return this->HandleTargetMode();
case cmProperty::SOURCE_FILE:
return this->HandleSourceMode();
case cmProperty::TEST:
return this->HandleTestMode();
case cmProperty::VARIABLE:
return this->HandleVariableMode();
case cmProperty::CACHE:
return this->HandleCacheMode();
case cmProperty::INSTALL:
return this->HandleInstallMode();
case cmProperty::CACHED_VARIABLE:
break; // should never happen
}
2016-07-09 11:21:54 +02:00
}
return true;
}
bool cmGetPropertyCommand::StoreResult(const char* value)
{
2016-07-09 11:21:54 +02:00
if (this->InfoType == OutSet) {
this->Makefile->AddDefinition(this->Variable, value ? "1" : "0");
} else // if(this->InfoType == OutValue)
{
if (value) {
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(this->Variable, value);
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
this->Makefile->RemoveDefinition(this->Variable);
}
2016-07-09 11:21:54 +02:00
}
return true;
}
bool cmGetPropertyCommand::HandleGlobalMode()
{
2016-07-09 11:21:54 +02:00
if (!this->Name.empty()) {
this->SetError("given name for GLOBAL scope.");
return false;
2016-07-09 11:21:54 +02:00
}
// Get the property.
cmake* cm = this->Makefile->GetCMakeInstance();
2016-07-09 11:21:54 +02:00
return this->StoreResult(
cm->GetState()->GetGlobalProperty(this->PropertyName));
}
bool cmGetPropertyCommand::HandleDirectoryMode()
{
// Default to the current directory.
cmMakefile* mf = this->Makefile;
// Lookup the directory if given.
2016-07-09 11:21:54 +02:00
if (!this->Name.empty()) {
// Construct the directory name. Interpret relative paths with
// respect to the current directory.
std::string dir = this->Name;
2018-04-23 21:13:27 +02:00
if (!cmSystemTools::FileIsFullPath(dir)) {
2015-08-17 11:37:30 +02:00
dir = this->Makefile->GetCurrentSourceDirectory();
dir += "/";
dir += this->Name;
2016-07-09 11:21:54 +02:00
}
// The local generators are associated with collapsed paths.
2015-04-27 22:25:09 +02:00
dir = cmSystemTools::CollapseFullPath(dir);
// Lookup the generator.
2015-11-17 17:22:37 +01:00
mf = this->Makefile->GetGlobalGenerator()->FindMakefile(dir);
2016-07-09 11:21:54 +02:00
if (!mf) {
// Could not find the directory.
2016-07-09 11:21:54 +02:00
this->SetError(
"DIRECTORY scope provided but requested directory was 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
}
2016-07-09 11:21:54 +02:00
if (this->PropertyName == "DEFINITIONS") {
switch (mf->GetPolicyStatus(cmPolicies::CMP0059)) {
2015-11-17 17:22:37 +01:00
case cmPolicies::WARN:
mf->IssueMessage(cmake::AUTHOR_WARNING,
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:
return this->StoreResult(mf->GetDefineFlagsCMP0059());
case cmPolicies::NEW:
case cmPolicies::REQUIRED_ALWAYS:
case cmPolicies::REQUIRED_IF_USED:
break;
}
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
// Get the property.
2015-04-27 22:25:09 +02:00
return this->StoreResult(mf->GetProperty(this->PropertyName));
}
bool cmGetPropertyCommand::HandleTargetMode()
{
2016-07-09 11:21:54 +02:00
if (this->Name.empty()) {
this->SetError("not given name for TARGET scope.");
return false;
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
if (cmTarget* target = this->Makefile->FindTargetToUse(this->Name)) {
if (this->PropertyName == "ALIASED_TARGET") {
if (this->Makefile->IsAlias(this->Name)) {
2015-04-27 22:25:09 +02:00
return this->StoreResult(target->GetName().c_str());
2013-11-03 12:27:13 +02:00
}
2018-01-26 17:06:56 +01:00
return this->StoreResult(nullptr);
}
2018-01-26 17:06:56 +01:00
const char* prop_cstr = nullptr;
2017-04-14 19:02:05 +02:00
cmListFileBacktrace bt = this->Makefile->GetBacktrace();
cmMessenger* messenger = this->Makefile->GetMessenger();
if (cmTargetPropertyComputer::PassesWhitelist(
target->GetType(), this->PropertyName, messenger, bt)) {
prop_cstr =
target->GetComputedProperty(this->PropertyName, messenger, bt);
if (!prop_cstr) {
prop_cstr = target->GetProperty(this->PropertyName);
}
}
return this->StoreResult(prop_cstr);
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
std::ostringstream e;
e << "could not find TARGET " << this->Name
<< ". Perhaps it has not yet been created.";
this->SetError(e.str());
return false;
}
bool cmGetPropertyCommand::HandleSourceMode()
{
2016-07-09 11:21:54 +02:00
if (this->Name.empty()) {
this->SetError("not given name for SOURCE scope.");
return false;
2016-07-09 11:21:54 +02:00
}
// Get the source file.
2016-07-09 11:21:54 +02:00
if (cmSourceFile* sf = this->Makefile->GetOrCreateSource(this->Name)) {
return this->StoreResult(sf->GetPropertyForUser(this->PropertyName));
}
2016-10-30 18:24:19 +01:00
std::ostringstream e;
e << "given SOURCE name that could not be found or created: " << this->Name;
this->SetError(e.str());
return false;
}
bool cmGetPropertyCommand::HandleTestMode()
{
2016-07-09 11:21:54 +02:00
if (this->Name.empty()) {
this->SetError("not given name for TEST scope.");
return false;
2016-07-09 11:21:54 +02:00
}
// Loop over all tests looking for matching names.
2016-07-09 11:21:54 +02:00
if (cmTest* test = this->Makefile->GetTest(this->Name)) {
2015-04-27 22:25:09 +02:00
return this->StoreResult(test->GetProperty(this->PropertyName));
2016-07-09 11:21:54 +02:00
}
// If not found it is an error.
2015-04-27 22:25:09 +02:00
std::ostringstream e;
e << "given TEST name that does not exist: " << this->Name;
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
return false;
}
bool cmGetPropertyCommand::HandleVariableMode()
{
2016-07-09 11:21:54 +02:00
if (!this->Name.empty()) {
this->SetError("given name for VARIABLE scope.");
return false;
2016-07-09 11:21:54 +02:00
}
2016-07-09 11:21:54 +02:00
return this->StoreResult(this->Makefile->GetDefinition(this->PropertyName));
}
2009-10-04 10:30:41 +03:00
bool cmGetPropertyCommand::HandleCacheMode()
{
2016-07-09 11:21:54 +02:00
if (this->Name.empty()) {
2009-10-04 10:30:41 +03:00
this->SetError("not given name for CACHE scope.");
return false;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
2018-01-26 17:06:56 +01:00
const char* value = nullptr;
2016-07-09 11:21:54 +02:00
if (this->Makefile->GetState()->GetCacheEntryValue(this->Name)) {
value = this->Makefile->GetState()->GetCacheEntryProperty(
this->Name, this->PropertyName);
}
2009-10-04 10:30:41 +03:00
this->StoreResult(value);
return true;
}
2015-04-27 22:25:09 +02:00
bool cmGetPropertyCommand::HandleInstallMode()
{
2016-07-09 11:21:54 +02:00
if (this->Name.empty()) {
2015-04-27 22:25:09 +02:00
this->SetError("not given name for INSTALL scope.");
return false;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
// Get the installed file.
cmake* cm = this->Makefile->GetCMakeInstance();
2016-07-09 11:21:54 +02:00
if (cmInstalledFile* file =
cm->GetOrCreateInstalledFile(this->Makefile, this->Name)) {
2015-04-27 22:25:09 +02:00
std::string value;
bool isSet = file->GetProperty(this->PropertyName, value);
2018-01-26 17:06:56 +01:00
return this->StoreResult(isSet ? value.c_str() : nullptr);
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
std::ostringstream e;
e << "given INSTALL name that could not be found or created: " << this->Name;
this->SetError(e.str());
return false;
2015-04-27 22:25:09 +02:00
}