2001-07-26 00:52:51 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
Copyright (c) 2002 Insight Consortium. All rights reserved.
|
|
|
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm 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"
|
|
|
|
#include "cmCacheManager.h"
|
|
|
|
|
|
|
|
bool cmForEachFunctionBlocker::
|
|
|
|
IsFunctionBlocked(const char *name, const std::vector<std::string> &args,
|
|
|
|
cmMakefile &mf)
|
|
|
|
{
|
2002-07-17 18:48:39 +04:00
|
|
|
// prevent recusion and don't let this blobker blobk its own commands
|
|
|
|
if (m_Executing)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2001-07-26 00:52:51 +04:00
|
|
|
|
|
|
|
// at end of for each execute recorded commands
|
|
|
|
if (!strcmp(name,"ENDFOREACH") && args[0] == m_Args[0])
|
|
|
|
{
|
2002-07-17 18:48:39 +04:00
|
|
|
m_Executing = true;
|
2001-07-26 00:52:51 +04:00
|
|
|
std::string variable = "${";
|
|
|
|
variable += m_Args[0];
|
|
|
|
variable += "}";
|
|
|
|
std::vector<std::string>::const_iterator j = m_Args.begin();
|
|
|
|
++j;
|
|
|
|
|
|
|
|
for( ; j != m_Args.end(); ++j)
|
|
|
|
{
|
|
|
|
// perform string replace
|
2001-11-13 20:38:53 +03:00
|
|
|
for(unsigned int c = 0; c < m_Commands.size(); ++c)
|
2001-07-26 00:52:51 +04:00
|
|
|
{
|
|
|
|
std::vector<std::string> newArgs;
|
|
|
|
for (std::vector<std::string>::const_iterator k =
|
|
|
|
m_CommandArguments[c].begin();
|
|
|
|
k != m_CommandArguments[c].end(); ++k)
|
|
|
|
{
|
|
|
|
std::string tmps = *k;
|
|
|
|
cmSystemTools::ReplaceString(tmps, variable.c_str(),
|
|
|
|
j->c_str());
|
|
|
|
newArgs.push_back(tmps);
|
|
|
|
}
|
|
|
|
// execute command
|
|
|
|
mf.ExecuteCommand(m_Commands[c],newArgs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// record the command
|
|
|
|
m_Commands.push_back(name);
|
|
|
|
std::vector<std::string> newArgs;
|
|
|
|
for(std::vector<std::string>::const_iterator j = args.begin();
|
|
|
|
j != args.end(); ++j)
|
|
|
|
{
|
|
|
|
newArgs.push_back(*j);
|
|
|
|
}
|
|
|
|
m_CommandArguments.push_back(newArgs);
|
|
|
|
|
|
|
|
// always return true
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmForEachFunctionBlocker::
|
|
|
|
ShouldRemove(const char *name, const std::vector<std::string> &args,
|
2001-12-01 00:48:52 +03:00
|
|
|
cmMakefile &)
|
2001-07-26 00:52:51 +04:00
|
|
|
{
|
|
|
|
if (!strcmp(name,"ENDFOREACH") && args[0] == m_Args[0])
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
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-03-26 00:24:13 +03:00
|
|
|
bool cmForEachCommand::InitialPass(std::vector<std::string> const& argsIn)
|
2001-07-26 00:52:51 +04:00
|
|
|
{
|
2002-03-26 00:24:13 +03:00
|
|
|
std::vector<std::string> args;
|
|
|
|
cmSystemTools::ExpandListArguments(argsIn, args);
|
|
|
|
|
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();
|
2001-09-20 23:08:30 +04:00
|
|
|
for(std::vector<std::string>::const_iterator j = args.begin();
|
2001-07-26 00:52:51 +04:00
|
|
|
j != args.end(); ++j)
|
|
|
|
{
|
|
|
|
f->m_Args.push_back(*j);
|
|
|
|
}
|
|
|
|
m_Makefile->AddFunctionBlocker(f);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|