2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-08-13 23:46:33 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-08-13 23:46:33 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2002-08-13 23:46:33 +04:00
|
|
|
#include "cmMacroCommand.h"
|
|
|
|
|
2015-03-08 15:51:20 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmake.h"
|
2005-06-14 20:48:59 +04:00
|
|
|
|
2005-03-18 18:41:41 +03:00
|
|
|
// define the class for macro commands
|
|
|
|
class cmMacroHelperCommand : public cmCommand
|
2002-08-13 23:46:33 +04:00
|
|
|
{
|
2005-03-18 18:41:41 +03:00
|
|
|
public:
|
|
|
|
cmMacroHelperCommand() {}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-03-18 18:41:41 +03:00
|
|
|
///! clean up any memory allocated by the macro
|
2016-06-27 22:25:27 +03:00
|
|
|
~cmMacroHelperCommand() CM_OVERRIDE {}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2012-01-03 03:54:08 +04:00
|
|
|
/**
|
|
|
|
* This is used to avoid including this command
|
|
|
|
* in documentation. This is mainly used by
|
|
|
|
* cmMacroHelperCommand and cmFunctionHelperCommand
|
|
|
|
* which cannot provide appropriate documentation.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
bool ShouldAppearInDocumentation() const CM_OVERRIDE { return false; }
|
2012-01-03 03:54:08 +04:00
|
|
|
|
2005-03-18 18:41:41 +03:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
cmCommand* Clone() CM_OVERRIDE
|
2005-03-18 18:41:41 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
cmMacroHelperCommand* newC = new cmMacroHelperCommand;
|
2005-03-18 18:41:41 +03:00
|
|
|
// we must copy when we clone
|
2006-03-15 19:02:08 +03:00
|
|
|
newC->Args = this->Args;
|
|
|
|
newC->Functions = this->Functions;
|
2010-04-13 16:56:11 +04:00
|
|
|
newC->FilePath = this->FilePath;
|
2009-01-22 21:16:47 +03:00
|
|
|
newC->Policies = this->Policies;
|
2005-03-18 18:41:41 +03:00
|
|
|
return newC;
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-06-14 20:48:59 +04:00
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
bool IsScriptable() const CM_OVERRIDE { return true; }
|
2005-06-14 20:48:59 +04:00
|
|
|
|
2005-03-18 18:41:41 +03:00
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
bool InvokeInitialPass(const std::vector<cmListFileArgument>& args,
|
|
|
|
cmExecutionStatus&) CM_OVERRIDE;
|
2005-03-18 18:41:41 +03:00
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
bool InitialPass(std::vector<std::string> const&,
|
|
|
|
cmExecutionStatus&) CM_OVERRIDE
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-03-18 18:41:41 +03:00
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
std::string GetName() const CM_OVERRIDE { return this->Args[0]; }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2005-03-18 18:41:41 +03:00
|
|
|
cmTypeMacro(cmMacroHelperCommand, cmCommand);
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<std::string> Args;
|
|
|
|
std::vector<cmListFileFunction> Functions;
|
2009-01-22 21:16:47 +03:00
|
|
|
cmPolicies::PolicyMap Policies;
|
2010-04-13 16:56:11 +04:00
|
|
|
std::string FilePath;
|
2005-03-18 18:41:41 +03:00
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmMacroHelperCommand::InvokeInitialPass(
|
|
|
|
const std::vector<cmListFileArgument>& args, cmExecutionStatus& inStatus)
|
2005-03-18 18:41:41 +03:00
|
|
|
{
|
|
|
|
// Expand the argument list to the macro.
|
|
|
|
std::vector<std::string> expandedArgs;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->ExpandArguments(args, expandedArgs);
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-03-18 18:41:41 +03:00
|
|
|
// make sure the number of arguments passed is at least the number
|
|
|
|
// required by the signature
|
2016-05-16 17:34:04 +03:00
|
|
|
if (expandedArgs.size() < this->Args.size() - 1) {
|
2006-03-10 21:06:26 +03:00
|
|
|
std::string errorMsg =
|
2005-03-18 18:41:41 +03:00
|
|
|
"Macro invoked with incorrect arguments for macro named: ";
|
2006-03-15 19:02:08 +03:00
|
|
|
errorMsg += this->Args[0];
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetError(errorMsg);
|
2005-03-18 18:41:41 +03:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmMakefile::MacroPushPop macroScope(this->Makefile, this->FilePath,
|
2015-05-31 19:32:01 +03:00
|
|
|
this->Policies);
|
2009-01-22 21:16:47 +03:00
|
|
|
|
2005-03-18 18:41:41 +03:00
|
|
|
// set the value of argc
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream argcDefStream;
|
2005-03-18 18:41:41 +03:00
|
|
|
argcDefStream << expandedArgs.size();
|
|
|
|
std::string argcDef = argcDefStream.str();
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::vector<std::string>::const_iterator eit =
|
|
|
|
expandedArgs.begin() + (this->Args.size() - 1);
|
2015-07-18 11:45:18 +03:00
|
|
|
std::string expandedArgn = cmJoin(cmMakeRange(eit, expandedArgs.end()), ";");
|
2015-02-11 22:47:16 +03:00
|
|
|
std::string expandedArgv = cmJoin(expandedArgs, ";");
|
2015-02-11 21:51:15 +03:00
|
|
|
std::vector<std::string> variables;
|
|
|
|
variables.reserve(this->Args.size() - 1);
|
2016-05-16 17:34:04 +03:00
|
|
|
for (unsigned int j = 1; j < this->Args.size(); ++j) {
|
2015-02-11 22:14:30 +03:00
|
|
|
variables.push_back("${" + this->Args[j] + "}");
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-02-11 22:16:40 +03:00
|
|
|
std::vector<std::string> argVs;
|
|
|
|
argVs.reserve(expandedArgs.size());
|
|
|
|
char argvName[60];
|
2016-05-16 17:34:04 +03:00
|
|
|
for (unsigned int j = 0; j < expandedArgs.size(); ++j) {
|
|
|
|
sprintf(argvName, "${ARGV%i}", j);
|
2015-02-11 22:16:40 +03:00
|
|
|
argVs.push_back(argvName);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-07-05 18:08:46 +04:00
|
|
|
// Invoke all the functions that were collected in the block.
|
|
|
|
cmListFileFunction newLFF;
|
|
|
|
// for each function
|
2016-05-16 17:34:04 +03:00
|
|
|
for (unsigned int c = 0; c < this->Functions.size(); ++c) {
|
2005-07-05 18:08:46 +04:00
|
|
|
// Replace the formal arguments and then invoke the command.
|
2006-03-15 19:02:08 +03:00
|
|
|
newLFF.Arguments.clear();
|
|
|
|
newLFF.Arguments.reserve(this->Functions[c].Arguments.size());
|
|
|
|
newLFF.Name = this->Functions[c].Name;
|
|
|
|
newLFF.Line = this->Functions[c].Line;
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-07-05 18:08:46 +04:00
|
|
|
// for each argument of the current function
|
2010-04-13 16:56:11 +04:00
|
|
|
for (std::vector<cmListFileArgument>::iterator k =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Functions[c].Arguments.begin();
|
2016-05-16 17:34:04 +03:00
|
|
|
k != this->Functions[c].Arguments.end(); ++k) {
|
2015-02-11 22:23:36 +03:00
|
|
|
cmListFileArgument arg;
|
2015-02-12 00:16:03 +03:00
|
|
|
arg.Value = k->Value;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (k->Delim != cmListFileArgument::Bracket) {
|
2013-10-31 03:04:18 +04:00
|
|
|
// replace formal arguments
|
2016-05-16 17:34:04 +03:00
|
|
|
for (unsigned int j = 0; j < variables.size(); ++j) {
|
2016-01-15 16:19:33 +03:00
|
|
|
cmSystemTools::ReplaceString(arg.Value, variables[j],
|
|
|
|
expandedArgs[j]);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-10-31 03:04:18 +04:00
|
|
|
// replace argc
|
2016-01-15 16:19:33 +03:00
|
|
|
cmSystemTools::ReplaceString(arg.Value, "${ARGC}", argcDef);
|
2013-10-31 03:04:18 +04:00
|
|
|
|
2016-01-15 16:19:33 +03:00
|
|
|
cmSystemTools::ReplaceString(arg.Value, "${ARGN}", expandedArgn);
|
|
|
|
cmSystemTools::ReplaceString(arg.Value, "${ARGV}", expandedArgv);
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2013-10-31 03:04:18 +04:00
|
|
|
// if the current argument of the current function has ${ARGV in it
|
|
|
|
// then try replacing ARGV values
|
2016-05-16 17:34:04 +03:00
|
|
|
if (arg.Value.find("${ARGV") != std::string::npos) {
|
|
|
|
for (unsigned int t = 0; t < expandedArgs.size(); ++t) {
|
|
|
|
cmSystemTools::ReplaceString(arg.Value, argVs[t], expandedArgs[t]);
|
2005-07-05 18:08:46 +04:00
|
|
|
}
|
2013-10-31 03:12:28 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-08-06 18:07:58 +04:00
|
|
|
arg.Delim = k->Delim;
|
2008-09-24 16:51:26 +04:00
|
|
|
arg.Line = k->Line;
|
2006-03-15 19:02:08 +03:00
|
|
|
newLFF.Arguments.push_back(arg);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-01-23 18:28:26 +03:00
|
|
|
cmExecutionStatus status;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->Makefile->ExecuteCommand(newLFF, status) ||
|
2016-09-06 22:25:26 +03:00
|
|
|
status.GetNestedError()) {
|
2008-03-07 16:40:36 +03:00
|
|
|
// The error message should have already included the call stack
|
|
|
|
// so we do not need to report an error here.
|
2015-05-31 19:32:01 +03:00
|
|
|
macroScope.Quiet();
|
2016-09-06 22:25:26 +03:00
|
|
|
inStatus.SetNestedError(true);
|
2005-03-18 18:41:41 +03:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (status.GetReturnInvoked()) {
|
2008-01-23 18:28:26 +03:00
|
|
|
inStatus.SetReturnInvoked(true);
|
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (status.GetBreakInvoked()) {
|
2008-01-23 18:28:26 +03:00
|
|
|
inStatus.SetBreakInvoked(true);
|
|
|
|
return true;
|
2005-03-18 18:41:41 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-03-18 18:41:41 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmMacroFunctionBlocker::IsFunctionBlocked(const cmListFileFunction& lff,
|
|
|
|
cmMakefile& mf,
|
|
|
|
cmExecutionStatus&)
|
2005-03-18 18:41:41 +03:00
|
|
|
{
|
|
|
|
// record commands until we hit the ENDMACRO
|
|
|
|
// at the ENDMACRO call we shift gears and start looking for invocations
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::Strucmp(lff.Name.c_str(), "macro")) {
|
2006-05-23 17:11:46 +04:00
|
|
|
this->Depth++;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (!cmSystemTools::Strucmp(lff.Name.c_str(), "endmacro")) {
|
2006-05-23 17:11:46 +04:00
|
|
|
// if this is the endmacro for this macro then execute
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->Depth) {
|
2015-07-18 15:32:09 +03:00
|
|
|
mf.AppendProperty("MACROS", this->Args[0].c_str());
|
2005-03-18 18:41:41 +03:00
|
|
|
// create a new command and add it to cmake
|
2016-05-16 17:34:04 +03:00
|
|
|
cmMacroHelperCommand* f = new cmMacroHelperCommand();
|
2006-03-15 19:02:08 +03:00
|
|
|
f->Args = this->Args;
|
|
|
|
f->Functions = this->Functions;
|
2015-05-23 22:28:30 +03:00
|
|
|
f->FilePath = this->GetStartingContext().FilePath;
|
2009-01-22 21:16:47 +03:00
|
|
|
mf.RecordPolicies(f->Policies);
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string newName = "_" + this->Args[0];
|
2015-04-11 13:52:14 +03:00
|
|
|
mf.GetState()->RenameCommand(this->Args[0], newName);
|
|
|
|
mf.GetState()->AddCommand(f);
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-03-18 18:41:41 +03:00
|
|
|
// remove the function blocker now that the macro is defined
|
2009-01-21 17:49:00 +03:00
|
|
|
mf.RemoveFunctionBlocker(this, lff);
|
2005-03-18 18:41:41 +03:00
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2006-05-23 17:11:46 +04:00
|
|
|
// decrement for each nested macro that ends
|
|
|
|
this->Depth--;
|
2002-08-13 23:46:33 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-03-18 18:41:41 +03:00
|
|
|
// if it wasn't an endmacro and we are not executing then we must be
|
|
|
|
// recording
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Functions.push_back(lff);
|
2005-03-18 18:41:41 +03:00
|
|
|
return true;
|
2002-08-13 23:46:33 +04:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmMacroFunctionBlocker::ShouldRemove(const cmListFileFunction& lff,
|
|
|
|
cmMakefile& mf)
|
2002-08-13 23:46:33 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::Strucmp(lff.Name.c_str(), "endmacro")) {
|
2005-03-18 18:41:41 +03:00
|
|
|
std::vector<std::string> expandedArguments;
|
2015-05-23 21:32:05 +03:00
|
|
|
mf.ExpandArguments(lff.Arguments, expandedArguments,
|
|
|
|
this->GetStartingContext().FilePath.c_str());
|
2008-02-29 20:18:11 +03:00
|
|
|
// if the endmacro has arguments make sure they
|
|
|
|
// match the arguments of the macro
|
|
|
|
if ((expandedArguments.empty() ||
|
2016-05-16 17:34:04 +03:00
|
|
|
(expandedArguments[0] == this->Args[0]))) {
|
2005-03-18 18:41:41 +03:00
|
|
|
return true;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-05-23 17:11:46 +04:00
|
|
|
|
2002-08-13 23:46:33 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmMacroCommand::InitialPass(std::vector<std::string> const& args,
|
2016-05-16 17:34:04 +03:00
|
|
|
cmExecutionStatus&)
|
2002-08-13 23:46:33 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args.size() < 1) {
|
2002-08-13 23:46:33 +04:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2002-08-13 23:46:33 +04:00
|
|
|
// create a function blocker
|
2016-05-16 17:34:04 +03:00
|
|
|
cmMacroFunctionBlocker* f = new cmMacroFunctionBlocker();
|
2014-11-22 13:00:45 +03:00
|
|
|
f->Args.insert(f->Args.end(), args.begin(), args.end());
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddFunctionBlocker(f);
|
2002-08-13 23:46:33 +04:00
|
|
|
return true;
|
|
|
|
}
|