CMake/Source/cmForEachCommand.cxx

116 lines
3.2 KiB
C++
Raw Normal View History

2001-07-26 00:52:51 +04:00
/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
2001-07-26 00:52:51 +04:00
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
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::
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
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());
}
bool cmForEachCommand::InitialPass(std::vector<std::string> const& argsIn)
2001-07-26 00:52:51 +04: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();
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;
}