mirror of
https://github.com/reactos/CMake.git
synced 2025-01-31 17:12:49 +00:00
cmCommand refactor: cmMathCommand
This commit is contained in:
parent
2b58ae7577
commit
71724633a2
@ -148,7 +148,7 @@ void GetScriptingCommands(cmState* state)
|
|||||||
state->AddBuiltinCommand("macro", cmMacroCommand);
|
state->AddBuiltinCommand("macro", cmMacroCommand);
|
||||||
state->AddBuiltinCommand("make_directory", cmMakeDirectoryCommand);
|
state->AddBuiltinCommand("make_directory", cmMakeDirectoryCommand);
|
||||||
state->AddBuiltinCommand("mark_as_advanced", cmMarkAsAdvancedCommand);
|
state->AddBuiltinCommand("mark_as_advanced", cmMarkAsAdvancedCommand);
|
||||||
state->AddBuiltinCommand("math", cm::make_unique<cmMathCommand>());
|
state->AddBuiltinCommand("math", cmMathCommand);
|
||||||
state->AddBuiltinCommand("message", cm::make_unique<cmMessageCommand>());
|
state->AddBuiltinCommand("message", cm::make_unique<cmMessageCommand>());
|
||||||
state->AddBuiltinCommand("option", cm::make_unique<cmOptionCommand>());
|
state->AddBuiltinCommand("option", cm::make_unique<cmOptionCommand>());
|
||||||
state->AddBuiltinCommand("cmake_parse_arguments",
|
state->AddBuiltinCommand("cmake_parse_arguments",
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||||
#include "cmMathCommand.h"
|
#include "cmMathCommand.h"
|
||||||
|
|
||||||
|
#include "cmExecutionStatus.h"
|
||||||
#include "cmExprParserHelper.h"
|
#include "cmExprParserHelper.h"
|
||||||
#include "cmMakefile.h"
|
#include "cmMakefile.h"
|
||||||
#include "cmMessageType.h"
|
#include "cmMessageType.h"
|
||||||
@ -9,28 +10,33 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
class cmExecutionStatus;
|
namespace {
|
||||||
|
bool HandleExprCommand(std::vector<std::string> const& args,
|
||||||
|
cmExecutionStatus& status);
|
||||||
|
}
|
||||||
|
|
||||||
bool cmMathCommand::InitialPass(std::vector<std::string> const& args,
|
bool cmMathCommand(std::vector<std::string> const& args,
|
||||||
cmExecutionStatus&)
|
cmExecutionStatus& status)
|
||||||
{
|
{
|
||||||
if (args.empty()) {
|
if (args.empty()) {
|
||||||
this->SetError("must be called with at least one argument.");
|
status.SetError("must be called with at least one argument.");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const std::string& subCommand = args[0];
|
const std::string& subCommand = args[0];
|
||||||
if (subCommand == "EXPR") {
|
if (subCommand == "EXPR") {
|
||||||
return this->HandleExprCommand(args);
|
return HandleExprCommand(args, status);
|
||||||
}
|
}
|
||||||
std::string e = "does not recognize sub-command " + subCommand;
|
std::string e = "does not recognize sub-command " + subCommand;
|
||||||
this->SetError(e);
|
status.SetError(e);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool cmMathCommand::HandleExprCommand(std::vector<std::string> const& args)
|
namespace {
|
||||||
|
bool HandleExprCommand(std::vector<std::string> const& args,
|
||||||
|
cmExecutionStatus& status)
|
||||||
{
|
{
|
||||||
if ((args.size() != 3) && (args.size() != 5)) {
|
if ((args.size() != 3) && (args.size() != 5)) {
|
||||||
this->SetError("EXPR called with incorrect arguments.");
|
status.SetError("EXPR called with incorrect arguments.");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -46,7 +52,7 @@ bool cmMathCommand::HandleExprCommand(std::vector<std::string> const& args)
|
|||||||
size_t argumentIndex = 3;
|
size_t argumentIndex = 3;
|
||||||
NumericFormat outputFormat = NumericFormat::UNINITIALIZED;
|
NumericFormat outputFormat = NumericFormat::UNINITIALIZED;
|
||||||
|
|
||||||
this->Makefile->AddDefinition(outputVariable, "ERROR");
|
status.GetMakefile().AddDefinition(outputVariable, "ERROR");
|
||||||
|
|
||||||
if (argumentIndex < args.size()) {
|
if (argumentIndex < args.size()) {
|
||||||
const std::string messageHint = "sub-command EXPR ";
|
const std::string messageHint = "sub-command EXPR ";
|
||||||
@ -61,19 +67,19 @@ bool cmMathCommand::HandleExprCommand(std::vector<std::string> const& args)
|
|||||||
} else {
|
} else {
|
||||||
std::string error = messageHint + "value \"" + argument +
|
std::string error = messageHint + "value \"" + argument +
|
||||||
"\" for option \"" + option + "\" is invalid.";
|
"\" for option \"" + option + "\" is invalid.";
|
||||||
this->SetError(error);
|
status.SetError(error);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
std::string error =
|
std::string error =
|
||||||
messageHint + "missing argument for option \"" + option + "\".";
|
messageHint + "missing argument for option \"" + option + "\".";
|
||||||
this->SetError(error);
|
status.SetError(error);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
std::string error =
|
std::string error =
|
||||||
messageHint + "option \"" + option + "\" is unknown.";
|
messageHint + "option \"" + option + "\" is unknown.";
|
||||||
this->SetError(error);
|
status.SetError(error);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -84,7 +90,7 @@ bool cmMathCommand::HandleExprCommand(std::vector<std::string> const& args)
|
|||||||
|
|
||||||
cmExprParserHelper helper;
|
cmExprParserHelper helper;
|
||||||
if (!helper.ParseString(expression.c_str(), 0)) {
|
if (!helper.ParseString(expression.c_str(), 0)) {
|
||||||
this->SetError(helper.GetError());
|
status.SetError(helper.GetError());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -104,9 +110,10 @@ bool cmMathCommand::HandleExprCommand(std::vector<std::string> const& args)
|
|||||||
|
|
||||||
std::string const& w = helper.GetWarning();
|
std::string const& w = helper.GetWarning();
|
||||||
if (!w.empty()) {
|
if (!w.empty()) {
|
||||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, w);
|
status.GetMakefile().IssueMessage(MessageType::AUTHOR_WARNING, w);
|
||||||
}
|
}
|
||||||
|
|
||||||
this->Makefile->AddDefinition(outputVariable, buffer);
|
status.GetMakefile().AddDefinition(outputVariable, buffer);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
@ -8,33 +8,10 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "cm_memory.hxx"
|
|
||||||
|
|
||||||
#include "cmCommand.h"
|
|
||||||
|
|
||||||
class cmExecutionStatus;
|
class cmExecutionStatus;
|
||||||
|
|
||||||
/// Mathematical expressions: math(EXPR ...) command.
|
/// Mathematical expressions: math(EXPR ...) command.
|
||||||
class cmMathCommand : public cmCommand
|
bool cmMathCommand(std::vector<std::string> const& args,
|
||||||
{
|
cmExecutionStatus& status);
|
||||||
public:
|
|
||||||
/**
|
|
||||||
* This is a virtual constructor for the command.
|
|
||||||
*/
|
|
||||||
std::unique_ptr<cmCommand> Clone() override
|
|
||||||
{
|
|
||||||
return cm::make_unique<cmMathCommand>();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This is called when the command is first encountered in
|
|
||||||
* the CMakeLists.txt file.
|
|
||||||
*/
|
|
||||||
bool InitialPass(std::vector<std::string> const& args,
|
|
||||||
cmExecutionStatus& status) override;
|
|
||||||
|
|
||||||
protected:
|
|
||||||
bool HandleExprCommand(std::vector<std::string> const& args);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user