2001-07-26 00:52:51 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-07-26 00:52:51 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-07-26 00:52:51 +04:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-07-26 00:52:51 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmForEachCommand.h"
|
|
|
|
|
|
|
|
bool cmForEachFunctionBlocker::
|
2002-12-12 02:13:33 +03:00
|
|
|
IsFunctionBlocked(const cmListFileFunction& lff, cmMakefile &mf)
|
2001-07-26 00:52:51 +04:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
// Prevent recusion and don't let this blobker block its own
|
|
|
|
// commands.
|
2002-07-17 18:48:39 +04:00
|
|
|
if (m_Executing)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2001-07-26 00:52:51 +04:00
|
|
|
|
|
|
|
// at end of for each execute recorded commands
|
2005-06-23 19:03:57 +04:00
|
|
|
if (cmSystemTools::LowerCase(lff.m_Name) == "endforeach")
|
2001-07-26 00:52:51 +04:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
std::vector<std::string> expandedArguments;
|
|
|
|
mf.ExpandArguments(lff.m_Arguments, expandedArguments);
|
|
|
|
if(!expandedArguments.empty() && (expandedArguments[0] == m_Args[0]))
|
|
|
|
{
|
2005-06-22 21:32:11 +04:00
|
|
|
// store the old value
|
2005-06-22 22:16:18 +04:00
|
|
|
std::string oldDef;
|
|
|
|
if (mf.GetDefinition(m_Args[0].c_str()))
|
|
|
|
{
|
|
|
|
oldDef = mf.GetDefinition(m_Args[0].c_str());
|
|
|
|
}
|
2002-12-12 02:13:33 +03:00
|
|
|
m_Executing = true;
|
|
|
|
std::vector<std::string>::const_iterator j = m_Args.begin();
|
|
|
|
++j;
|
|
|
|
|
2003-06-24 00:26:48 +04:00
|
|
|
std::string tmps;
|
|
|
|
cmListFileArgument arg;
|
2002-12-12 02:13:33 +03:00
|
|
|
for( ; j != m_Args.end(); ++j)
|
|
|
|
{
|
2005-06-22 21:32:11 +04:00
|
|
|
// set the variable to the loop value
|
|
|
|
mf.AddDefinition(m_Args[0].c_str(),j->c_str());
|
2002-12-12 02:13:33 +03:00
|
|
|
// Invoke all the functions that were collected in the block.
|
|
|
|
for(unsigned int c = 0; c < m_Functions.size(); ++c)
|
2001-07-26 00:52:51 +04:00
|
|
|
{
|
2005-06-22 21:32:11 +04:00
|
|
|
mf.ExecuteCommand(m_Functions[c]);
|
2001-07-26 00:52:51 +04:00
|
|
|
}
|
|
|
|
}
|
2005-06-22 21:32:11 +04:00
|
|
|
// restore the variable to its prior value
|
2005-06-22 22:16:18 +04:00
|
|
|
mf.AddDefinition(m_Args[0].c_str(),oldDef.c_str());
|
2004-05-12 22:32:25 +04:00
|
|
|
mf.RemoveFunctionBlocker(lff);
|
|
|
|
return true;
|
2001-07-26 00:52:51 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// record the command
|
2002-12-12 02:13:33 +03:00
|
|
|
m_Functions.push_back(lff);
|
2001-07-26 00:52:51 +04:00
|
|
|
|
|
|
|
// always return true
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmForEachFunctionBlocker::
|
2002-12-12 02:13:33 +03:00
|
|
|
ShouldRemove(const cmListFileFunction& lff, cmMakefile& mf)
|
2001-07-26 00:52:51 +04:00
|
|
|
{
|
2005-06-23 19:03:57 +04:00
|
|
|
if(cmSystemTools::LowerCase(lff.m_Name) == "endforeach")
|
2001-07-26 00:52:51 +04:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
std::vector<std::string> expandedArguments;
|
|
|
|
mf.ExpandArguments(lff.m_Arguments, expandedArguments);
|
|
|
|
if(!expandedArguments.empty() && (expandedArguments[0] == m_Args[0]))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2001-07-26 00:52:51 +04:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmForEachFunctionBlocker::
|
|
|
|
ScopeEnded(cmMakefile &mf)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("The end of a CMakeLists file was reached with a FOREACH statement that was not closed properly. Within the directory: ",
|
|
|
|
mf.GetCurrentDirectory());
|
|
|
|
}
|
|
|
|
|
2002-12-12 02:13:33 +03:00
|
|
|
bool cmForEachCommand::InitialPass(std::vector<std::string> const& args)
|
2001-07-26 00:52:51 +04:00
|
|
|
{
|
2002-07-17 18:48:39 +04:00
|
|
|
if(args.size() < 1)
|
2001-07-26 00:52:51 +04:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// create a function blocker
|
|
|
|
cmForEachFunctionBlocker *f = new cmForEachFunctionBlocker();
|
2004-04-29 23:12:40 +04:00
|
|
|
if ( args.size() > 1 )
|
|
|
|
{
|
|
|
|
if ( args[1] == "RANGE" )
|
|
|
|
{
|
|
|
|
int start = 0;
|
|
|
|
int stop = 0;
|
|
|
|
int step = 0;
|
|
|
|
if ( args.size() == 3 )
|
|
|
|
{
|
|
|
|
stop = atoi(args[2].c_str());
|
|
|
|
}
|
|
|
|
if ( args.size() == 4 )
|
|
|
|
{
|
|
|
|
start = atoi(args[2].c_str());
|
|
|
|
stop = atoi(args[3].c_str());
|
|
|
|
}
|
|
|
|
if ( args.size() == 5 )
|
|
|
|
{
|
|
|
|
start = atoi(args[2].c_str());
|
|
|
|
stop = atoi(args[3].c_str());
|
|
|
|
step = atoi(args[4].c_str());
|
|
|
|
}
|
|
|
|
if ( step == 0 )
|
|
|
|
{
|
|
|
|
if ( start > stop )
|
|
|
|
{
|
|
|
|
step = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
step = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
(start > stop && step > 0) ||
|
|
|
|
(start < stop && step < 0) ||
|
|
|
|
step == 0
|
|
|
|
)
|
|
|
|
{
|
|
|
|
cmOStringStream str;
|
|
|
|
str << "called with incorrect range specification: start ";
|
|
|
|
str << start << ", stop " << stop << ", step " << step;
|
|
|
|
this->SetError(str.str().c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
std::vector<std::string> range;
|
|
|
|
char buffer[100];
|
|
|
|
range.push_back(args[0]);
|
|
|
|
int cc;
|
|
|
|
for ( cc = start; ; cc += step )
|
|
|
|
{
|
|
|
|
if ( (step > 0 && cc > stop) || (step < 0 && cc < stop) )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
sprintf(buffer, "%d", cc);
|
|
|
|
range.push_back(buffer);
|
|
|
|
if ( cc == stop )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f->m_Args = range;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
f->m_Args = args;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
f->m_Args = args;
|
|
|
|
}
|
2001-07-26 00:52:51 +04:00
|
|
|
m_Makefile->AddFunctionBlocker(f);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|