mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-15 20:46:37 +08:00
cmCommand refactor: cmSetPropertyCommand
This commit is contained in:
@@ -156,8 +156,7 @@ void GetScriptingCommands(cmState* state)
|
||||
state->AddBuiltinCommand("set", cmSetCommand);
|
||||
state->AddBuiltinCommand("set_directory_properties",
|
||||
cmSetDirectoryPropertiesCommand);
|
||||
state->AddBuiltinCommand("set_property",
|
||||
cm::make_unique<cmSetPropertyCommand>());
|
||||
state->AddBuiltinCommand("set_property", cmSetPropertyCommand);
|
||||
state->AddBuiltinCommand("site_name", cmSiteNameCommand);
|
||||
state->AddBuiltinCommand("string", cm::make_unique<cmStringCommand>());
|
||||
state->AddBuiltinCommand("unset", cmUnsetCommand);
|
||||
|
@@ -2,8 +2,10 @@
|
||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||
#include "cmSetPropertyCommand.h"
|
||||
|
||||
#include <set>
|
||||
#include <sstream>
|
||||
|
||||
#include "cmExecutionStatus.h"
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmInstalledFile.h"
|
||||
#include "cmMakefile.h"
|
||||
@@ -17,20 +19,66 @@
|
||||
#include "cmTest.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
cmSetPropertyCommand::cmSetPropertyCommand()
|
||||
{
|
||||
this->AppendMode = false;
|
||||
this->AppendAsString = false;
|
||||
this->Remove = true;
|
||||
namespace {
|
||||
bool HandleGlobalMode(cmExecutionStatus& status,
|
||||
const std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue, bool appendAsString,
|
||||
bool appendMode, bool remove);
|
||||
bool HandleDirectoryMode(cmExecutionStatus& status,
|
||||
const std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue, bool appendAsString,
|
||||
bool appendMode, bool remove);
|
||||
bool HandleTargetMode(cmExecutionStatus& status,
|
||||
const std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue, bool appendAsString,
|
||||
bool appendMode, bool remove);
|
||||
bool HandleTarget(cmTarget* target, cmMakefile& makefile,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue, bool appendAsString,
|
||||
bool appendMode, bool remove);
|
||||
bool HandleSourceMode(cmExecutionStatus& status,
|
||||
const std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue, bool appendAsString,
|
||||
bool appendMode, bool remove);
|
||||
bool HandleSource(cmSourceFile* sf, const std::string& propertyName,
|
||||
const std::string& propertyValue, bool appendAsString,
|
||||
bool appendMode, bool remove);
|
||||
bool HandleTestMode(cmExecutionStatus& status, std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue, bool appendAsString,
|
||||
bool appendMode, bool remove);
|
||||
bool HandleTest(cmTest* test, const std::string& propertyName,
|
||||
const std::string& propertyValue, bool appendAsString,
|
||||
bool appendMode, bool remove);
|
||||
bool HandleCacheMode(cmExecutionStatus& status,
|
||||
const std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue, bool appendAsString,
|
||||
bool appendMode, bool remove);
|
||||
bool HandleCacheEntry(std::string const& cacheKey, const cmMakefile& makefile,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue, bool appendAsString,
|
||||
bool appendMode, bool remove);
|
||||
bool HandleInstallMode(cmExecutionStatus& status,
|
||||
const std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue, bool appendAsString,
|
||||
bool appendMode, bool remove);
|
||||
bool HandleInstall(cmInstalledFile* file, cmMakefile& makefile,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue, bool appendAsString,
|
||||
bool appendMode, bool remove);
|
||||
}
|
||||
|
||||
bool cmSetPropertyCommand::InitialPass(std::vector<std::string> const& args,
|
||||
cmExecutionStatus&)
|
||||
bool cmSetPropertyCommand(std::vector<std::string> const& args,
|
||||
cmExecutionStatus& status)
|
||||
{
|
||||
if (args.size() < 2) {
|
||||
this->SetError("called with incorrect number of arguments");
|
||||
status.SetError("called with incorrect number of arguments");
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -56,10 +104,17 @@ bool cmSetPropertyCommand::InitialPass(std::vector<std::string> const& args,
|
||||
e << "given invalid scope " << scopeName << ". "
|
||||
<< "Valid scopes are GLOBAL, DIRECTORY, "
|
||||
"TARGET, SOURCE, TEST, CACHE, INSTALL.";
|
||||
this->SetError(e.str());
|
||||
status.SetError(e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
bool appendAsString = false;
|
||||
bool appendMode = false;
|
||||
bool remove = true;
|
||||
std::set<std::string> names;
|
||||
std::string propertyName;
|
||||
std::string propertyValue;
|
||||
|
||||
// Parse the rest of the arguments up to the values.
|
||||
enum Doing
|
||||
{
|
||||
@@ -75,54 +130,61 @@ bool cmSetPropertyCommand::InitialPass(std::vector<std::string> const& args,
|
||||
doing = DoingProperty;
|
||||
} else if (arg == "APPEND") {
|
||||
doing = DoingNone;
|
||||
this->AppendMode = true;
|
||||
this->Remove = false;
|
||||
this->AppendAsString = false;
|
||||
appendMode = true;
|
||||
remove = false;
|
||||
appendAsString = false;
|
||||
} else if (arg == "APPEND_STRING") {
|
||||
doing = DoingNone;
|
||||
this->AppendMode = true;
|
||||
this->Remove = false;
|
||||
this->AppendAsString = true;
|
||||
appendMode = true;
|
||||
remove = false;
|
||||
appendAsString = true;
|
||||
} else if (doing == DoingNames) {
|
||||
this->Names.insert(arg);
|
||||
names.insert(arg);
|
||||
} else if (doing == DoingProperty) {
|
||||
this->PropertyName = arg;
|
||||
propertyName = arg;
|
||||
doing = DoingValues;
|
||||
} else if (doing == DoingValues) {
|
||||
this->PropertyValue += sep;
|
||||
propertyValue += sep;
|
||||
sep = ";";
|
||||
this->PropertyValue += arg;
|
||||
this->Remove = false;
|
||||
propertyValue += arg;
|
||||
remove = false;
|
||||
} else {
|
||||
std::ostringstream e;
|
||||
e << "given invalid argument \"" << arg << "\".";
|
||||
this->SetError(e.str());
|
||||
status.SetError(e.str());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Make sure a property name was found.
|
||||
if (this->PropertyName.empty()) {
|
||||
this->SetError("not given a PROPERTY <name> argument.");
|
||||
if (propertyName.empty()) {
|
||||
status.SetError("not given a PROPERTY <name> argument.");
|
||||
return false;
|
||||
}
|
||||
|
||||
// Dispatch property setting.
|
||||
switch (scope) {
|
||||
case cmProperty::GLOBAL:
|
||||
return this->HandleGlobalMode();
|
||||
return HandleGlobalMode(status, names, propertyName, propertyValue,
|
||||
appendAsString, appendMode, remove);
|
||||
case cmProperty::DIRECTORY:
|
||||
return this->HandleDirectoryMode();
|
||||
return HandleDirectoryMode(status, names, propertyName, propertyValue,
|
||||
appendAsString, appendMode, remove);
|
||||
case cmProperty::TARGET:
|
||||
return this->HandleTargetMode();
|
||||
return HandleTargetMode(status, names, propertyName, propertyValue,
|
||||
appendAsString, appendMode, remove);
|
||||
case cmProperty::SOURCE_FILE:
|
||||
return this->HandleSourceMode();
|
||||
return HandleSourceMode(status, names, propertyName, propertyValue,
|
||||
appendAsString, appendMode, remove);
|
||||
case cmProperty::TEST:
|
||||
return this->HandleTestMode();
|
||||
return HandleTestMode(status, names, propertyName, propertyValue,
|
||||
appendAsString, appendMode, remove);
|
||||
case cmProperty::CACHE:
|
||||
return this->HandleCacheMode();
|
||||
return HandleCacheMode(status, names, propertyName, propertyValue,
|
||||
appendAsString, appendMode, remove);
|
||||
case cmProperty::INSTALL:
|
||||
return this->HandleInstallMode();
|
||||
return HandleInstallMode(status, names, propertyName, propertyValue,
|
||||
appendAsString, appendMode, remove);
|
||||
|
||||
case cmProperty::VARIABLE:
|
||||
case cmProperty::CACHED_VARIABLE:
|
||||
@@ -131,57 +193,67 @@ bool cmSetPropertyCommand::InitialPass(std::vector<std::string> const& args,
|
||||
return true;
|
||||
}
|
||||
|
||||
bool cmSetPropertyCommand::HandleGlobalMode()
|
||||
namespace {
|
||||
bool HandleGlobalMode(cmExecutionStatus& status,
|
||||
const std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue,
|
||||
const bool appendAsString, const bool appendMode,
|
||||
const bool remove)
|
||||
{
|
||||
if (!this->Names.empty()) {
|
||||
this->SetError("given names for GLOBAL scope.");
|
||||
if (!names.empty()) {
|
||||
status.SetError("given names for GLOBAL scope.");
|
||||
return false;
|
||||
}
|
||||
|
||||
// Set or append the property.
|
||||
cmake* cm = this->Makefile->GetCMakeInstance();
|
||||
std::string const& name = this->PropertyName;
|
||||
const char* value = this->PropertyValue.c_str();
|
||||
if (this->Remove) {
|
||||
cmake* cm = status.GetMakefile().GetCMakeInstance();
|
||||
const char* value = propertyValue.c_str();
|
||||
if (remove) {
|
||||
value = nullptr;
|
||||
}
|
||||
if (this->AppendMode) {
|
||||
cm->AppendProperty(name, value ? value : "", this->AppendAsString);
|
||||
if (appendMode) {
|
||||
cm->AppendProperty(propertyName, value ? value : "", appendAsString);
|
||||
} else {
|
||||
cm->SetProperty(name, value);
|
||||
cm->SetProperty(propertyName, value);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool cmSetPropertyCommand::HandleDirectoryMode()
|
||||
bool HandleDirectoryMode(cmExecutionStatus& status,
|
||||
const std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue,
|
||||
const bool appendAsString, const bool appendMode,
|
||||
const bool remove)
|
||||
{
|
||||
if (this->Names.size() > 1) {
|
||||
this->SetError("allows at most one name for DIRECTORY scope.");
|
||||
if (names.size() > 1) {
|
||||
status.SetError("allows at most one name for DIRECTORY scope.");
|
||||
return false;
|
||||
}
|
||||
|
||||
// Default to the current directory.
|
||||
cmMakefile* mf = this->Makefile;
|
||||
cmMakefile* mf = &status.GetMakefile();
|
||||
|
||||
// Lookup the directory if given.
|
||||
if (!this->Names.empty()) {
|
||||
if (!names.empty()) {
|
||||
// Construct the directory name. Interpret relative paths with
|
||||
// respect to the current directory.
|
||||
std::string dir = *this->Names.begin();
|
||||
std::string dir = *names.begin();
|
||||
if (!cmSystemTools::FileIsFullPath(dir)) {
|
||||
dir = this->Makefile->GetCurrentSourceDirectory();
|
||||
dir = status.GetMakefile().GetCurrentSourceDirectory();
|
||||
dir += "/";
|
||||
dir += *this->Names.begin();
|
||||
dir += *names.begin();
|
||||
}
|
||||
|
||||
// The local generators are associated with collapsed paths.
|
||||
dir = cmSystemTools::CollapseFullPath(dir);
|
||||
|
||||
mf = this->Makefile->GetGlobalGenerator()->FindMakefile(dir);
|
||||
mf = status.GetMakefile().GetGlobalGenerator()->FindMakefile(dir);
|
||||
if (!mf) {
|
||||
// Could not find the directory.
|
||||
this->SetError(
|
||||
status.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.");
|
||||
@@ -190,109 +262,128 @@ bool cmSetPropertyCommand::HandleDirectoryMode()
|
||||
}
|
||||
|
||||
// Set or append the property.
|
||||
std::string const& name = this->PropertyName;
|
||||
const char* value = this->PropertyValue.c_str();
|
||||
if (this->Remove) {
|
||||
const char* value = propertyValue.c_str();
|
||||
if (remove) {
|
||||
value = nullptr;
|
||||
}
|
||||
if (this->AppendMode) {
|
||||
mf->AppendProperty(name, value ? value : "", this->AppendAsString);
|
||||
if (appendMode) {
|
||||
mf->AppendProperty(propertyName, value ? value : "", appendAsString);
|
||||
} else {
|
||||
mf->SetProperty(name, value);
|
||||
mf->SetProperty(propertyName, value);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool cmSetPropertyCommand::HandleTargetMode()
|
||||
bool HandleTargetMode(cmExecutionStatus& status,
|
||||
const std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue,
|
||||
const bool appendAsString, const bool appendMode,
|
||||
const bool remove)
|
||||
{
|
||||
for (std::string const& name : this->Names) {
|
||||
if (this->Makefile->IsAlias(name)) {
|
||||
this->SetError("can not be used on an ALIAS target.");
|
||||
for (std::string const& name : names) {
|
||||
if (status.GetMakefile().IsAlias(name)) {
|
||||
status.SetError("can not be used on an ALIAS target.");
|
||||
return false;
|
||||
}
|
||||
if (cmTarget* target = this->Makefile->FindTargetToUse(name)) {
|
||||
if (cmTarget* target = status.GetMakefile().FindTargetToUse(name)) {
|
||||
// Handle the current target.
|
||||
if (!this->HandleTarget(target)) {
|
||||
if (!HandleTarget(target, status.GetMakefile(), propertyName,
|
||||
propertyValue, appendAsString, appendMode, remove)) {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
std::ostringstream e;
|
||||
e << "could not find TARGET " << name
|
||||
<< ". Perhaps it has not yet been created.";
|
||||
this->SetError(e.str());
|
||||
status.SetError(e.str());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool cmSetPropertyCommand::HandleTarget(cmTarget* target)
|
||||
bool HandleTarget(cmTarget* target, cmMakefile& makefile,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue, const bool appendAsString,
|
||||
const bool appendMode, const bool remove)
|
||||
{
|
||||
// Set or append the property.
|
||||
std::string const& name = this->PropertyName;
|
||||
const char* value = this->PropertyValue.c_str();
|
||||
if (this->Remove) {
|
||||
const char* value = propertyValue.c_str();
|
||||
if (remove) {
|
||||
value = nullptr;
|
||||
}
|
||||
if (this->AppendMode) {
|
||||
target->AppendProperty(name, value, this->AppendAsString);
|
||||
if (appendMode) {
|
||||
target->AppendProperty(propertyName, value, appendAsString);
|
||||
} else {
|
||||
target->SetProperty(name, value);
|
||||
target->SetProperty(propertyName, value);
|
||||
}
|
||||
|
||||
// Check the resulting value.
|
||||
target->CheckProperty(name, this->Makefile);
|
||||
target->CheckProperty(propertyName, &makefile);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool cmSetPropertyCommand::HandleSourceMode()
|
||||
bool HandleSourceMode(cmExecutionStatus& status,
|
||||
const std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue,
|
||||
const bool appendAsString, const bool appendMode,
|
||||
const bool remove)
|
||||
{
|
||||
for (std::string const& name : this->Names) {
|
||||
for (std::string const& name : names) {
|
||||
// Get the source file.
|
||||
if (cmSourceFile* sf = this->Makefile->GetOrCreateSource(name)) {
|
||||
if (!this->HandleSource(sf)) {
|
||||
if (cmSourceFile* sf = status.GetMakefile().GetOrCreateSource(name)) {
|
||||
if (!HandleSource(sf, propertyName, propertyValue, appendAsString,
|
||||
appendMode, remove)) {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
std::ostringstream e;
|
||||
e << "given SOURCE name that could not be found or created: " << name;
|
||||
this->SetError(e.str());
|
||||
status.SetError(e.str());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool cmSetPropertyCommand::HandleSource(cmSourceFile* sf)
|
||||
bool HandleSource(cmSourceFile* sf, const std::string& propertyName,
|
||||
const std::string& propertyValue, const bool appendAsString,
|
||||
const bool appendMode, const bool remove)
|
||||
{
|
||||
// Set or append the property.
|
||||
std::string const& name = this->PropertyName;
|
||||
const char* value = this->PropertyValue.c_str();
|
||||
if (this->Remove) {
|
||||
const char* value = propertyValue.c_str();
|
||||
if (remove) {
|
||||
value = nullptr;
|
||||
}
|
||||
|
||||
if (this->AppendMode) {
|
||||
sf->AppendProperty(name, value, this->AppendAsString);
|
||||
if (appendMode) {
|
||||
sf->AppendProperty(propertyName, value, appendAsString);
|
||||
} else {
|
||||
sf->SetProperty(name, value);
|
||||
sf->SetProperty(propertyName, value);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool cmSetPropertyCommand::HandleTestMode()
|
||||
bool HandleTestMode(cmExecutionStatus& status, std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue,
|
||||
const bool appendAsString, const bool appendMode,
|
||||
const bool remove)
|
||||
{
|
||||
// Look for tests with all names given.
|
||||
std::set<std::string>::iterator next;
|
||||
for (std::set<std::string>::iterator ni = this->Names.begin();
|
||||
ni != this->Names.end(); ni = next) {
|
||||
for (std::set<std::string>::iterator ni = names.begin(); ni != names.end();
|
||||
ni = next) {
|
||||
next = ni;
|
||||
++next;
|
||||
if (cmTest* test = this->Makefile->GetTest(*ni)) {
|
||||
if (this->HandleTest(test)) {
|
||||
this->Names.erase(ni);
|
||||
if (cmTest* test = status.GetMakefile().GetTest(*ni)) {
|
||||
if (HandleTest(test, propertyName, propertyValue, appendAsString,
|
||||
appendMode, remove)) {
|
||||
names.erase(ni);
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
@@ -300,137 +391,151 @@ bool cmSetPropertyCommand::HandleTestMode()
|
||||
}
|
||||
|
||||
// Names that are still left were not found.
|
||||
if (!this->Names.empty()) {
|
||||
if (!names.empty()) {
|
||||
std::ostringstream e;
|
||||
e << "given TEST names that do not exist:\n";
|
||||
for (std::string const& name : this->Names) {
|
||||
for (std::string const& name : names) {
|
||||
e << " " << name << "\n";
|
||||
}
|
||||
this->SetError(e.str());
|
||||
status.SetError(e.str());
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool cmSetPropertyCommand::HandleTest(cmTest* test)
|
||||
bool HandleTest(cmTest* test, const std::string& propertyName,
|
||||
const std::string& propertyValue, const bool appendAsString,
|
||||
const bool appendMode, const bool remove)
|
||||
{
|
||||
// Set or append the property.
|
||||
std::string const& name = this->PropertyName;
|
||||
const char* value = this->PropertyValue.c_str();
|
||||
if (this->Remove) {
|
||||
const char* value = propertyValue.c_str();
|
||||
if (remove) {
|
||||
value = nullptr;
|
||||
}
|
||||
if (this->AppendMode) {
|
||||
test->AppendProperty(name, value, this->AppendAsString);
|
||||
if (appendMode) {
|
||||
test->AppendProperty(propertyName, value, appendAsString);
|
||||
} else {
|
||||
test->SetProperty(name, value);
|
||||
test->SetProperty(propertyName, value);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool cmSetPropertyCommand::HandleCacheMode()
|
||||
bool HandleCacheMode(cmExecutionStatus& status,
|
||||
const std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue,
|
||||
const bool appendAsString, const bool appendMode,
|
||||
const bool remove)
|
||||
{
|
||||
if (this->PropertyName == "ADVANCED") {
|
||||
if (!this->Remove && !cmIsOn(this->PropertyValue) &&
|
||||
!cmIsOff(this->PropertyValue)) {
|
||||
if (propertyName == "ADVANCED") {
|
||||
if (!remove && !cmIsOn(propertyValue) && !cmIsOff(propertyValue)) {
|
||||
std::ostringstream e;
|
||||
e << "given non-boolean value \"" << this->PropertyValue
|
||||
e << "given non-boolean value \"" << propertyValue
|
||||
<< R"(" for CACHE property "ADVANCED". )";
|
||||
this->SetError(e.str());
|
||||
status.SetError(e.str());
|
||||
return false;
|
||||
}
|
||||
} else if (this->PropertyName == "TYPE") {
|
||||
if (!cmState::IsCacheEntryType(this->PropertyValue)) {
|
||||
} else if (propertyName == "TYPE") {
|
||||
if (!cmState::IsCacheEntryType(propertyValue)) {
|
||||
std::ostringstream e;
|
||||
e << "given invalid CACHE entry TYPE \"" << this->PropertyValue << "\"";
|
||||
this->SetError(e.str());
|
||||
e << "given invalid CACHE entry TYPE \"" << propertyValue << "\"";
|
||||
status.SetError(e.str());
|
||||
return false;
|
||||
}
|
||||
} else if (this->PropertyName != "HELPSTRING" &&
|
||||
this->PropertyName != "STRINGS" &&
|
||||
this->PropertyName != "VALUE") {
|
||||
} else if (propertyName != "HELPSTRING" && propertyName != "STRINGS" &&
|
||||
propertyName != "VALUE") {
|
||||
std::ostringstream e;
|
||||
e << "given invalid CACHE property " << this->PropertyName << ". "
|
||||
e << "given invalid CACHE property " << propertyName << ". "
|
||||
<< "Settable CACHE properties are: "
|
||||
<< "ADVANCED, HELPSTRING, STRINGS, TYPE, and VALUE.";
|
||||
this->SetError(e.str());
|
||||
status.SetError(e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
for (std::string const& name : this->Names) {
|
||||
for (std::string const& name : names) {
|
||||
// Get the source file.
|
||||
cmMakefile* mf = this->GetMakefile();
|
||||
cmake* cm = mf->GetCMakeInstance();
|
||||
cmake* cm = status.GetMakefile().GetCMakeInstance();
|
||||
const char* existingValue = cm->GetState()->GetCacheEntryValue(name);
|
||||
if (existingValue) {
|
||||
if (!this->HandleCacheEntry(name)) {
|
||||
if (!HandleCacheEntry(name, status.GetMakefile(), propertyName,
|
||||
propertyValue, appendAsString, appendMode,
|
||||
remove)) {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
std::ostringstream e;
|
||||
e << "could not find CACHE variable " << name
|
||||
<< ". Perhaps it has not yet been created.";
|
||||
this->SetError(e.str());
|
||||
status.SetError(e.str());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool cmSetPropertyCommand::HandleCacheEntry(std::string const& cacheKey)
|
||||
bool HandleCacheEntry(std::string const& cacheKey, const cmMakefile& makefile,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue,
|
||||
const bool appendAsString, const bool appendMode,
|
||||
const bool remove)
|
||||
{
|
||||
// Set or append the property.
|
||||
std::string const& name = this->PropertyName;
|
||||
const char* value = this->PropertyValue.c_str();
|
||||
cmState* state = this->Makefile->GetState();
|
||||
if (this->Remove) {
|
||||
state->RemoveCacheEntryProperty(cacheKey, name);
|
||||
const char* value = propertyValue.c_str();
|
||||
cmState* state = makefile.GetState();
|
||||
if (remove) {
|
||||
state->RemoveCacheEntryProperty(cacheKey, propertyName);
|
||||
}
|
||||
if (this->AppendMode) {
|
||||
state->AppendCacheEntryProperty(cacheKey, name, value,
|
||||
this->AppendAsString);
|
||||
if (appendMode) {
|
||||
state->AppendCacheEntryProperty(cacheKey, propertyName, value,
|
||||
appendAsString);
|
||||
} else {
|
||||
state->SetCacheEntryProperty(cacheKey, name, value);
|
||||
state->SetCacheEntryProperty(cacheKey, propertyName, value);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool cmSetPropertyCommand::HandleInstallMode()
|
||||
bool HandleInstallMode(cmExecutionStatus& status,
|
||||
const std::set<std::string>& names,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue,
|
||||
const bool appendAsString, const bool appendMode,
|
||||
const bool remove)
|
||||
{
|
||||
cmake* cm = this->Makefile->GetCMakeInstance();
|
||||
cmake* cm = status.GetMakefile().GetCMakeInstance();
|
||||
|
||||
for (std::string const& name : this->Names) {
|
||||
for (std::string const& name : names) {
|
||||
if (cmInstalledFile* file =
|
||||
cm->GetOrCreateInstalledFile(this->Makefile, name)) {
|
||||
if (!this->HandleInstall(file)) {
|
||||
cm->GetOrCreateInstalledFile(&status.GetMakefile(), name)) {
|
||||
if (!HandleInstall(file, status.GetMakefile(), propertyName,
|
||||
propertyValue, appendAsString, appendMode, remove)) {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
std::ostringstream e;
|
||||
e << "given INSTALL name that could not be found or created: " << name;
|
||||
this->SetError(e.str());
|
||||
status.SetError(e.str());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool cmSetPropertyCommand::HandleInstall(cmInstalledFile* file)
|
||||
bool HandleInstall(cmInstalledFile* file, cmMakefile& makefile,
|
||||
const std::string& propertyName,
|
||||
const std::string& propertyValue, const bool appendAsString,
|
||||
const bool appendMode, const bool remove)
|
||||
{
|
||||
// Set or append the property.
|
||||
std::string const& name = this->PropertyName;
|
||||
|
||||
cmMakefile* mf = this->Makefile;
|
||||
|
||||
const char* value = this->PropertyValue.c_str();
|
||||
if (this->Remove) {
|
||||
file->RemoveProperty(name);
|
||||
} else if (this->AppendMode) {
|
||||
file->AppendProperty(mf, name, value, this->AppendAsString);
|
||||
const char* value = propertyValue.c_str();
|
||||
if (remove) {
|
||||
file->RemoveProperty(propertyName);
|
||||
} else if (appendMode) {
|
||||
file->AppendProperty(&makefile, propertyName, value, appendAsString);
|
||||
} else {
|
||||
file->SetProperty(mf, name, value);
|
||||
file->SetProperty(&makefile, propertyName, value);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
@@ -5,58 +5,12 @@
|
||||
|
||||
#include "cmConfigure.h" // IWYU pragma: keep
|
||||
|
||||
#include <set>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "cm_memory.hxx"
|
||||
|
||||
#include "cmCommand.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
class cmInstalledFile;
|
||||
class cmSourceFile;
|
||||
class cmTarget;
|
||||
class cmTest;
|
||||
|
||||
class cmSetPropertyCommand : public cmCommand
|
||||
{
|
||||
public:
|
||||
cmSetPropertyCommand();
|
||||
|
||||
std::unique_ptr<cmCommand> Clone() override
|
||||
{
|
||||
return cm::make_unique<cmSetPropertyCommand>();
|
||||
}
|
||||
|
||||
/**
|
||||
* This is called when the command is first encountered in
|
||||
* the input file.
|
||||
*/
|
||||
bool InitialPass(std::vector<std::string> const& args,
|
||||
cmExecutionStatus& status) override;
|
||||
|
||||
private:
|
||||
std::set<std::string> Names;
|
||||
std::string PropertyName;
|
||||
std::string PropertyValue;
|
||||
bool Remove;
|
||||
bool AppendMode;
|
||||
bool AppendAsString;
|
||||
|
||||
// Implementation of each property type.
|
||||
bool HandleGlobalMode();
|
||||
bool HandleDirectoryMode();
|
||||
bool HandleTargetMode();
|
||||
bool HandleTarget(cmTarget* target);
|
||||
bool HandleSourceMode();
|
||||
bool HandleSource(cmSourceFile* sf);
|
||||
bool HandleTestMode();
|
||||
bool HandleTest(cmTest* test);
|
||||
bool HandleCacheMode();
|
||||
bool HandleCacheEntry(std::string const&);
|
||||
bool HandleInstallMode();
|
||||
bool HandleInstall(cmInstalledFile* file);
|
||||
};
|
||||
bool cmSetPropertyCommand(std::vector<std::string> const& args,
|
||||
cmExecutionStatus& status);
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user