cmake/Source/cmSetPropertyCommand.cxx

435 lines
12 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 "cmSetPropertyCommand.h"
2016-07-09 11:21:54 +02:00
2017-04-14 19:02:05 +02:00
#include <sstream>
#include "cmGlobalGenerator.h"
#include "cmInstalledFile.h"
#include "cmMakefile.h"
#include "cmProperty.h"
#include "cmSourceFile.h"
#include "cmState.h"
#include "cmSystemTools.h"
#include "cmTarget.h"
#include "cmTest.h"
#include "cmake.h"
class cmExecutionStatus;
cmSetPropertyCommand::cmSetPropertyCommand()
{
this->AppendMode = false;
2012-02-18 12:40:36 +02:00
this->AppendAsString = false;
this->Remove = true;
}
2016-07-09 11:21:54 +02:00
bool cmSetPropertyCommand::InitialPass(std::vector<std::string> const& args,
cmExecutionStatus&)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 2) {
this->SetError("called with incorrect number of arguments");
return false;
2016-07-09 11:21:54 +02:00
}
// Get the scope on which to set the property.
std::vector<std::string>::const_iterator arg = args.begin();
cmProperty::ScopeType scope;
2016-07-09 11:21:54 +02:00
if (*arg == "GLOBAL") {
scope = cmProperty::GLOBAL;
2016-07-09 11:21:54 +02:00
} else if (*arg == "DIRECTORY") {
scope = cmProperty::DIRECTORY;
2016-07-09 11:21:54 +02:00
} else if (*arg == "TARGET") {
scope = cmProperty::TARGET;
2016-07-09 11:21:54 +02:00
} else if (*arg == "SOURCE") {
scope = cmProperty::SOURCE_FILE;
2016-07-09 11:21:54 +02:00
} else if (*arg == "TEST") {
scope = cmProperty::TEST;
2016-07-09 11:21:54 +02:00
} else if (*arg == "CACHE") {
2009-10-04 10:30:41 +03:00
scope = cmProperty::CACHE;
2016-07-09 11:21:54 +02:00
} else if (*arg == "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 " << *arg << ". "
2015-04-27 22:25:09 +02:00
<< "Valid scopes are GLOBAL, DIRECTORY, "
2016-07-09 11:21:54 +02:00
"TARGET, SOURCE, TEST, CACHE, INSTALL.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
return false;
2016-07-09 11:21:54 +02:00
}
// Parse the rest of the arguments up to the values.
2016-07-09 11:21:54 +02:00
enum Doing
{
DoingNone,
DoingNames,
DoingProperty,
DoingValues
};
Doing doing = DoingNames;
const char* sep = "";
2016-07-09 11:21:54 +02:00
for (++arg; arg != args.end(); ++arg) {
if (*arg == "PROPERTY") {
doing = DoingProperty;
2016-07-09 11:21:54 +02:00
} else if (*arg == "APPEND") {
doing = DoingNone;
this->AppendMode = true;
2013-11-03 12:27:13 +02:00
this->Remove = false;
2012-02-18 12:40:36 +02:00
this->AppendAsString = false;
2016-07-09 11:21:54 +02:00
} else if (*arg == "APPEND_STRING") {
2012-02-18 12:40:36 +02:00
doing = DoingNone;
this->AppendMode = true;
2013-11-03 12:27:13 +02:00
this->Remove = false;
2012-02-18 12:40:36 +02:00
this->AppendAsString = true;
2016-07-09 11:21:54 +02:00
} else if (doing == DoingNames) {
this->Names.insert(*arg);
2016-07-09 11:21:54 +02:00
} else if (doing == DoingProperty) {
this->PropertyName = *arg;
doing = DoingValues;
2016-07-09 11:21:54 +02:00
} else if (doing == DoingValues) {
this->PropertyValue += sep;
sep = ";";
this->PropertyValue += *arg;
this->Remove = false;
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
e << "given invalid argument \"" << *arg << "\".";
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
}
// Dispatch property setting.
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::CACHE:
return this->HandleCacheMode();
case cmProperty::INSTALL:
return this->HandleInstallMode();
case cmProperty::VARIABLE:
case cmProperty::CACHED_VARIABLE:
break; // should never happen
2016-07-09 11:21:54 +02:00
}
return true;
}
bool cmSetPropertyCommand::HandleGlobalMode()
{
2016-07-09 11:21:54 +02:00
if (!this->Names.empty()) {
this->SetError("given names for GLOBAL scope.");
return false;
2016-07-09 11:21:54 +02:00
}
// Set or append the property.
cmake* cm = this->Makefile->GetCMakeInstance();
2017-07-20 19:35:53 +02:00
std::string const& name = this->PropertyName;
2016-07-09 11:21:54 +02:00
const char* value = this->PropertyValue.c_str();
if (this->Remove) {
2018-01-26 17:06:56 +01:00
value = nullptr;
2016-07-09 11:21:54 +02:00
}
if (this->AppendMode) {
2013-11-03 12:27:13 +02:00
cm->AppendProperty(name, value ? value : "", this->AppendAsString);
2016-07-09 11:21:54 +02:00
} else {
cm->SetProperty(name, value);
2016-07-09 11:21:54 +02:00
}
return true;
}
bool cmSetPropertyCommand::HandleDirectoryMode()
{
2016-07-09 11:21:54 +02:00
if (this->Names.size() > 1) {
this->SetError("allows at most one name for DIRECTORY scope.");
return false;
2016-07-09 11:21:54 +02:00
}
// Default to the current directory.
cmMakefile* mf = this->Makefile;
// Lookup the directory if given.
2016-07-09 11:21:54 +02:00
if (!this->Names.empty()) {
// Construct the directory name. Interpret relative paths with
// respect to the current directory.
std::string dir = *this->Names.begin();
2016-07-09 11:21:54 +02:00
if (!cmSystemTools::FileIsFullPath(dir.c_str())) {
2015-08-17 11:37:30 +02:00
dir = this->Makefile->GetCurrentSourceDirectory();
dir += "/";
dir += *this->Names.begin();
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);
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
}
// Set or append the property.
2017-07-20 19:35:53 +02:00
std::string const& name = this->PropertyName;
2016-07-09 11:21:54 +02:00
const char* value = this->PropertyValue.c_str();
if (this->Remove) {
2018-01-26 17:06:56 +01:00
value = nullptr;
2016-07-09 11:21:54 +02:00
}
if (this->AppendMode) {
2013-11-03 12:27:13 +02:00
mf->AppendProperty(name, value ? value : "", this->AppendAsString);
2016-07-09 11:21:54 +02:00
} else {
mf->SetProperty(name, value);
2016-07-09 11:21:54 +02:00
}
return true;
}
bool cmSetPropertyCommand::HandleTargetMode()
{
2018-01-26 17:06:56 +01:00
for (std::string const& name : this->Names) {
if (this->Makefile->IsAlias(name)) {
2013-11-03 12:27:13 +02:00
this->SetError("can not be used on an ALIAS target.");
return false;
2016-07-09 11:21:54 +02:00
}
2018-01-26 17:06:56 +01:00
if (cmTarget* target = this->Makefile->FindTargetToUse(name)) {
// Handle the current target.
2016-07-09 11:21:54 +02:00
if (!this->HandleTarget(target)) {
return false;
}
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2018-01-26 17:06:56 +01:00
e << "could not find TARGET " << name
<< ". Perhaps it has not yet been created.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
return false;
}
2016-07-09 11:21:54 +02:00
}
return true;
}
bool cmSetPropertyCommand::HandleTarget(cmTarget* target)
{
// Set or append the property.
2017-07-20 19:35:53 +02:00
std::string const& name = this->PropertyName;
2016-07-09 11:21:54 +02:00
const char* value = this->PropertyValue.c_str();
if (this->Remove) {
2018-01-26 17:06:56 +01:00
value = nullptr;
2016-07-09 11:21:54 +02:00
}
if (this->AppendMode) {
2012-02-18 12:40:36 +02:00
target->AppendProperty(name, value, this->AppendAsString);
2016-07-09 11:21:54 +02:00
} else {
target->SetProperty(name, value);
2016-07-09 11:21:54 +02:00
}
// Check the resulting value.
target->CheckProperty(name, this->Makefile);
return true;
}
bool cmSetPropertyCommand::HandleSourceMode()
{
2018-01-26 17:06:56 +01:00
for (std::string const& name : this->Names) {
// Get the source file.
2018-01-26 17:06:56 +01:00
if (cmSourceFile* sf = this->Makefile->GetOrCreateSource(name)) {
2016-07-09 11:21:54 +02:00
if (!this->HandleSource(sf)) {
return false;
}
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2018-01-26 17:06:56 +01:00
e << "given SOURCE name that could not be found or created: " << name;
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
return false;
}
2016-07-09 11:21:54 +02:00
}
return true;
}
bool cmSetPropertyCommand::HandleSource(cmSourceFile* sf)
{
// Set or append the property.
2017-07-20 19:35:53 +02:00
std::string const& name = this->PropertyName;
2016-07-09 11:21:54 +02:00
const char* value = this->PropertyValue.c_str();
if (this->Remove) {
2018-01-26 17:06:56 +01:00
value = nullptr;
2016-07-09 11:21:54 +02:00
}
2016-07-09 11:21:54 +02:00
if (this->AppendMode) {
2012-02-18 12:40:36 +02:00
sf->AppendProperty(name, value, this->AppendAsString);
2016-07-09 11:21:54 +02:00
} else {
sf->SetProperty(name, value);
2016-07-09 11:21:54 +02:00
}
return true;
}
bool cmSetPropertyCommand::HandleTestMode()
{
2009-10-04 10:30:41 +03:00
// Look for tests with all names given.
2015-04-27 22:25:09 +02:00
std::set<std::string>::iterator next;
2016-07-09 11:21:54 +02:00
for (std::set<std::string>::iterator ni = this->Names.begin();
ni != this->Names.end(); ni = next) {
2009-10-04 10:30:41 +03:00
next = ni;
++next;
2016-07-09 11:21:54 +02:00
if (cmTest* test = this->Makefile->GetTest(*ni)) {
if (this->HandleTest(test)) {
this->Names.erase(ni);
2016-07-09 11:21:54 +02:00
} else {
return false;
}
}
2016-07-09 11:21:54 +02:00
}
// Names that are still left were not found.
2016-07-09 11:21:54 +02:00
if (!this->Names.empty()) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
e << "given TEST names that do not exist:\n";
2018-01-26 17:06:56 +01:00
for (std::string const& name : this->Names) {
e << " " << name << "\n";
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
return false;
2016-07-09 11:21:54 +02:00
}
return true;
}
bool cmSetPropertyCommand::HandleTest(cmTest* test)
{
// Set or append the property.
2017-07-20 19:35:53 +02:00
std::string const& name = this->PropertyName;
2016-07-09 11:21:54 +02:00
const char* value = this->PropertyValue.c_str();
if (this->Remove) {
2018-01-26 17:06:56 +01:00
value = nullptr;
2016-07-09 11:21:54 +02:00
}
if (this->AppendMode) {
2012-02-18 12:40:36 +02:00
test->AppendProperty(name, value, this->AppendAsString);
2016-07-09 11:21:54 +02:00
} else {
test->SetProperty(name, value);
2016-07-09 11:21:54 +02:00
}
return true;
}
2009-10-04 10:30:41 +03:00
bool cmSetPropertyCommand::HandleCacheMode()
{
2016-07-09 11:21:54 +02:00
if (this->PropertyName == "ADVANCED") {
if (!this->Remove && !cmSystemTools::IsOn(this->PropertyValue.c_str()) &&
!cmSystemTools::IsOff(this->PropertyValue.c_str())) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2009-10-04 10:30:41 +03:00
e << "given non-boolean value \"" << this->PropertyValue
<< "\" for CACHE property \"ADVANCED\". ";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2009-10-04 10:30:41 +03:00
return false;
}
2016-07-09 11:21:54 +02:00
} else if (this->PropertyName == "TYPE") {
2017-04-14 19:02:05 +02:00
if (!cmState::IsCacheEntryType(this->PropertyValue)) {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2009-10-04 10:30:41 +03:00
e << "given invalid CACHE entry TYPE \"" << this->PropertyValue << "\"";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2009-10-04 10:30:41 +03:00
return false;
}
2016-07-09 11:21:54 +02:00
} else if (this->PropertyName != "HELPSTRING" &&
this->PropertyName != "STRINGS" &&
this->PropertyName != "VALUE") {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2009-10-04 10:30:41 +03:00
e << "given invalid CACHE property " << this->PropertyName << ". "
<< "Settable CACHE properties are: "
<< "ADVANCED, HELPSTRING, STRINGS, TYPE, and VALUE.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2009-10-04 10:30:41 +03:00
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
for (std::string const& name : this->Names) {
2009-10-04 10:30:41 +03:00
// Get the source file.
cmMakefile* mf = this->GetMakefile();
cmake* cm = mf->GetCMakeInstance();
2018-01-26 17:06:56 +01:00
const char* existingValue = cm->GetState()->GetCacheEntryValue(name);
2016-07-09 11:21:54 +02:00
if (existingValue) {
2018-01-26 17:06:56 +01:00
if (!this->HandleCacheEntry(name)) {
2009-10-04 10:30:41 +03:00
return false;
}
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2018-01-26 17:06:56 +01:00
e << "could not find CACHE variable " << name
2009-10-04 10:30:41 +03:00
<< ". Perhaps it has not yet been created.";
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
2009-10-04 10:30:41 +03:00
return false;
}
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
return true;
}
2015-08-17 11:37:30 +02:00
bool cmSetPropertyCommand::HandleCacheEntry(std::string const& cacheKey)
2009-10-04 10:30:41 +03:00
{
// Set or append the property.
2017-07-20 19:35:53 +02:00
std::string const& name = this->PropertyName;
2009-10-04 10:30:41 +03:00
const char* value = this->PropertyValue.c_str();
2015-08-17 11:37:30 +02:00
cmState* state = this->Makefile->GetState();
2016-07-09 11:21:54 +02:00
if (this->Remove) {
2015-08-17 11:37:30 +02:00
state->RemoveCacheEntryProperty(cacheKey, name);
2016-07-09 11:21:54 +02:00
}
if (this->AppendMode) {
2015-08-17 11:37:30 +02:00
state->AppendCacheEntryProperty(cacheKey, name, value,
2016-07-09 11:21:54 +02:00
this->AppendAsString);
} else {
2015-08-17 11:37:30 +02:00
state->SetCacheEntryProperty(cacheKey, name, value);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
return true;
}
2015-04-27 22:25:09 +02:00
bool cmSetPropertyCommand::HandleInstallMode()
{
cmake* cm = this->Makefile->GetCMakeInstance();
2018-01-26 17:06:56 +01:00
for (std::string const& name : this->Names) {
2016-07-09 11:21:54 +02:00
if (cmInstalledFile* file =
2018-01-26 17:06:56 +01:00
cm->GetOrCreateInstalledFile(this->Makefile, name)) {
2016-07-09 11:21:54 +02:00
if (!this->HandleInstall(file)) {
2015-04-27 22:25:09 +02:00
return false;
}
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2018-01-26 17:06:56 +01:00
e << "given INSTALL name that could not be found or created: " << name;
2015-04-27 22:25:09 +02:00
this->SetError(e.str());
return false;
}
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
return true;
}
bool cmSetPropertyCommand::HandleInstall(cmInstalledFile* file)
{
// Set or append the property.
std::string const& name = this->PropertyName;
cmMakefile* mf = this->Makefile;
2016-07-09 11:21:54 +02:00
const char* value = this->PropertyValue.c_str();
if (this->Remove) {
2015-04-27 22:25:09 +02:00
file->RemoveProperty(name);
2016-07-09 11:21:54 +02:00
} else if (this->AppendMode) {
2015-04-27 22:25:09 +02:00
file->AppendProperty(mf, name, value, this->AppendAsString);
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
file->SetProperty(mf, name, value);
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
return true;
}