diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-07-01 08:49:36 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-07-01 08:49:36 -0400 |
commit | a43a65bf34285b55393fc1d8ec9df008e010bdd2 (patch) | |
tree | 8a48b0a91beb78179ae5ff1fe9ef3353b8ab3df2 /Source/cmElseCommand.cxx | |
parent | e0c3d1e959961bc4f531bee5bff23bc7607ef7af (diff) | |
download | cmake-a43a65bf34285b55393fc1d8ec9df008e010bdd2.tar.gz |
consolidated IF handling and added checks for bad arguments
Diffstat (limited to 'Source/cmElseCommand.cxx')
-rw-r--r-- | Source/cmElseCommand.cxx | 145 |
1 files changed, 8 insertions, 137 deletions
diff --git a/Source/cmElseCommand.cxx b/Source/cmElseCommand.cxx index ad11fe7677..dd396901f7 100644 --- a/Source/cmElseCommand.cxx +++ b/Source/cmElseCommand.cxx @@ -19,148 +19,19 @@ bool cmElseCommand::InitialPass(std::vector<std::string> const& args) { - if(args.size() < 1 ) - { - this->SetError("called with incorrect number of arguments"); - return false; - } - - // create a function blocker - cmIfFunctionBlocker *f = NULL; - - // check for the different signatures - const char *def; - const char *def2; - - if (args.size() == 1) - { - def = m_Makefile->GetDefinition(args[0].c_str()); - if(!cmSystemTools::IsOff(def)) - { - f = new cmIfFunctionBlocker(); - } - } - - if (args.size() == 2 && (args[0] == "COMMAND")) - { - if(m_Makefile->CommandExists(args[1].c_str())) - { - f = new cmIfFunctionBlocker(); - } - } - - if (args.size() == 2 && (args[0] == "EXISTS")) - { - if(cmSystemTools::FileExists(args[1].c_str())) - { - f = new cmIfFunctionBlocker(); - } - } - - if (args.size() == 2 && (args[0] == "NOT")) - { - def = m_Makefile->GetDefinition(args[1].c_str()); - if(cmSystemTools::IsOff(def)) - { - f = new cmIfFunctionBlocker(); - } - } - - if (args.size() == 3 && (args[1] == "AND")) - { - def = m_Makefile->GetDefinition(args[0].c_str()); - def2 = m_Makefile->GetDefinition(args[2].c_str()); - if(!cmSystemTools::IsOff(def) && !cmSystemTools::IsOff(def2)) - { - f = new cmIfFunctionBlocker(); - } - } + bool isValid; + bool isTrue = cmIfCommand::IsTrue(args,isValid,m_Makefile); - if (args.size() == 3 && (args[1] == "OR")) + if (!isValid) { - def = m_Makefile->GetDefinition(args[0].c_str()); - def2 = m_Makefile->GetDefinition(args[2].c_str()); - if(!cmSystemTools::IsOff(def) || !cmSystemTools::IsOff(def2)) - { - f = new cmIfFunctionBlocker(); - } - } - - if (args.size() == 3 && (args[1] == "LESS")) - { - def = m_Makefile->GetDefinition(args[0].c_str()); - def2 = m_Makefile->GetDefinition(args[2].c_str()); - if (!def) - { - def = args[0].c_str(); - } - if (!def2) - { - def2 = args[2].c_str(); - } - if(atof(def) < atof(def2)) - { - f = new cmIfFunctionBlocker(); - } - } - - if (args.size() == 3 && (args[1] == "GREATER")) - { - def = m_Makefile->GetDefinition(args[0].c_str()); - def2 = m_Makefile->GetDefinition(args[2].c_str()); - if (!def) - { - def = args[0].c_str(); - } - if (!def2) - { - def2 = args[2].c_str(); - } - if(atof(def) > atof(def2)) - { - f = new cmIfFunctionBlocker(); - } - } - - if (args.size() == 3 && (args[1] == "STRLESS")) - { - def = m_Makefile->GetDefinition(args[0].c_str()); - def2 = m_Makefile->GetDefinition(args[2].c_str()); - if(strcmp(def,def2) < 0) - { - f = new cmIfFunctionBlocker(); - } - } - - if (args.size() == 3 && (args[1] == "STRGREATER")) - { - def = m_Makefile->GetDefinition(args[0].c_str()); - def2 = m_Makefile->GetDefinition(args[2].c_str()); - if(strcmp(def,def2) > 0) - { - f = new cmIfFunctionBlocker(); - } - } - - if (args.size() == 3 && (args[1] == "MATCHES")) - { - def = m_Makefile->GetDefinition(args[0].c_str()); - if (!def) - { - def = args[0].c_str(); - } - cmRegularExpression regEntry(args[2].c_str()); - - // check for black line or comment - if (regEntry.find(def)) - { - f = new cmIfFunctionBlocker(); - } + this->SetError("An ELSE command had incorrect arguments"); + return false; } - // if we created a function blocker then set its args - if (f) + // if is true create a blocker for the else + if (isTrue) { + cmIfFunctionBlocker *f = new cmIfFunctionBlocker(); for(std::vector<std::string>::const_iterator j = args.begin(); j != args.end(); ++j) { |