2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-02-10 22:11:12 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-02-10 22:11:12 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2006-02-10 22:11:12 +03:00
|
|
|
#include "cmListCommand.h"
|
|
|
|
#include <cmsys/RegularExpression.hxx>
|
|
|
|
#include <cmsys/SystemTools.hxx>
|
2015-03-08 15:51:20 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2006-02-10 22:11:12 +03:00
|
|
|
|
|
|
|
#include <stdlib.h> // required for atoi
|
|
|
|
#include <ctype.h>
|
2012-09-29 17:41:29 +04:00
|
|
|
#include <assert.h>
|
2006-02-10 22:11:12 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmListCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
2012-09-29 17:41:29 +04:00
|
|
|
if(args.size() < 2)
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
2012-09-29 17:41:29 +04:00
|
|
|
this->SetError("must be called with at least two arguments.");
|
2006-02-10 22:11:12 +03:00
|
|
|
return false;
|
|
|
|
}
|
2006-05-16 16:42:14 +04:00
|
|
|
|
2006-02-10 22:11:12 +03:00
|
|
|
const std::string &subCommand = args[0];
|
|
|
|
if(subCommand == "LENGTH")
|
|
|
|
{
|
|
|
|
return this->HandleLengthCommand(args);
|
|
|
|
}
|
|
|
|
if(subCommand == "GET")
|
|
|
|
{
|
|
|
|
return this->HandleGetCommand(args);
|
|
|
|
}
|
2006-05-15 17:25:06 +04:00
|
|
|
if(subCommand == "APPEND")
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
2006-05-15 17:25:06 +04:00
|
|
|
return this->HandleAppendCommand(args);
|
2006-02-10 22:11:12 +03:00
|
|
|
}
|
2007-08-15 18:26:50 +04:00
|
|
|
if(subCommand == "FIND")
|
2007-07-12 19:56:45 +04:00
|
|
|
{
|
2007-08-15 18:26:50 +04:00
|
|
|
return this->HandleFindCommand(args);
|
2007-07-12 19:56:45 +04:00
|
|
|
}
|
2006-02-10 22:11:12 +03:00
|
|
|
if(subCommand == "INSERT")
|
|
|
|
{
|
|
|
|
return this->HandleInsertCommand(args);
|
|
|
|
}
|
2006-05-15 17:57:49 +04:00
|
|
|
if(subCommand == "REMOVE_AT")
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
2006-05-15 17:57:49 +04:00
|
|
|
return this->HandleRemoveAtCommand(args);
|
2006-02-10 22:11:12 +03:00
|
|
|
}
|
|
|
|
if(subCommand == "REMOVE_ITEM")
|
|
|
|
{
|
|
|
|
return this->HandleRemoveItemCommand(args);
|
|
|
|
}
|
2008-03-13 00:02:10 +03:00
|
|
|
if(subCommand == "REMOVE_DUPLICATES")
|
|
|
|
{
|
|
|
|
return this->HandleRemoveDuplicatesCommand(args);
|
|
|
|
}
|
2006-08-22 18:16:46 +04:00
|
|
|
if(subCommand == "SORT")
|
|
|
|
{
|
|
|
|
return this->HandleSortCommand(args);
|
|
|
|
}
|
|
|
|
if(subCommand == "REVERSE")
|
|
|
|
{
|
|
|
|
return this->HandleReverseCommand(args);
|
|
|
|
}
|
2006-05-16 16:42:14 +04:00
|
|
|
|
2006-02-10 22:11:12 +03:00
|
|
|
std::string e = "does not recognize sub-command "+subCommand;
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetError(e);
|
2006-02-10 22:11:12 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2014-02-05 01:06:56 +04:00
|
|
|
bool cmListCommand::GetListString(std::string& listString,
|
|
|
|
const std::string& var)
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
|
|
|
// get the old value
|
|
|
|
const char* cacheValue
|
2006-03-15 19:02:08 +03:00
|
|
|
= this->Makefile->GetDefinition(var);
|
2006-02-10 22:11:12 +03:00
|
|
|
if(!cacheValue)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
listString = cacheValue;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2014-02-05 01:06:56 +04:00
|
|
|
bool cmListCommand::GetList(std::vector<std::string>& list,
|
|
|
|
const std::string& var)
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
|
|
|
std::string listString;
|
|
|
|
if ( !this->GetListString(listString, var) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
// if the size of the list
|
2015-01-15 02:31:49 +03:00
|
|
|
if(listString.empty())
|
2008-04-23 17:56:54 +04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2008-04-22 00:57:11 +04:00
|
|
|
// expand the variable into a list
|
|
|
|
cmSystemTools::ExpandListArgument(listString, list, true);
|
2012-08-13 21:42:58 +04:00
|
|
|
// if no empty elements then just return
|
2015-02-12 22:07:20 +03:00
|
|
|
if (std::find(list.begin(), list.end(), std::string()) == list.end())
|
2008-04-22 00:57:11 +04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// if we have empty elements we need to check policy CMP0007
|
|
|
|
switch(this->Makefile->GetPolicyStatus(cmPolicies::CMP0007))
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
case cmPolicies::WARN:
|
2008-04-22 00:57:11 +04:00
|
|
|
{
|
|
|
|
// Default is to warn and use old behavior
|
|
|
|
// OLD behavior is to allow compatibility, so recall
|
|
|
|
// ExpandListArgument without the true which will remove
|
|
|
|
// empty values
|
|
|
|
list.clear();
|
|
|
|
cmSystemTools::ExpandListArgument(listString, list);
|
2015-05-03 11:12:10 +03:00
|
|
|
std::string warn = cmPolicies::GetPolicyWarning(cmPolicies::CMP0007);
|
2008-04-22 00:57:11 +04:00
|
|
|
warn += " List has value = [";
|
|
|
|
warn += listString;
|
|
|
|
warn += "].";
|
|
|
|
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING,
|
|
|
|
warn);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case cmPolicies::OLD:
|
|
|
|
// OLD behavior is to allow compatibility, so recall
|
|
|
|
// ExpandListArgument without the true which will remove
|
|
|
|
// empty values
|
|
|
|
list.clear();
|
|
|
|
cmSystemTools::ExpandListArgument(listString, list);
|
|
|
|
return true;
|
|
|
|
case cmPolicies::NEW:
|
|
|
|
return true;
|
|
|
|
case cmPolicies::REQUIRED_IF_USED:
|
|
|
|
case cmPolicies::REQUIRED_ALWAYS:
|
|
|
|
this->Makefile->IssueMessage(
|
|
|
|
cmake::FATAL_ERROR,
|
2015-05-03 11:12:10 +03:00
|
|
|
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0007)
|
2008-04-22 00:57:11 +04:00
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
2006-02-10 22:11:12 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmListCommand::HandleLengthCommand(std::vector<std::string> const& args)
|
|
|
|
{
|
|
|
|
if(args.size() != 3)
|
|
|
|
{
|
|
|
|
this->SetError("sub-command LENGTH requires two arguments.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& listName = args[1];
|
|
|
|
const std::string& variableName = args[args.size() - 1];
|
|
|
|
std::vector<std::string> varArgsExpanded;
|
2006-03-25 00:13:05 +03:00
|
|
|
// do not check the return value here
|
|
|
|
// if the list var is not found varArgsExpanded will have size 0
|
|
|
|
// and we will return 0
|
2014-03-11 03:04:11 +04:00
|
|
|
this->GetList(varArgsExpanded, listName);
|
2006-02-10 22:11:12 +03:00
|
|
|
size_t length = varArgsExpanded.size();
|
|
|
|
char buffer[1024];
|
|
|
|
sprintf(buffer, "%d", static_cast<int>(length));
|
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(variableName, buffer);
|
2006-02-10 22:11:12 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmListCommand::HandleGetCommand(std::vector<std::string> const& args)
|
|
|
|
{
|
|
|
|
if(args.size() < 4)
|
|
|
|
{
|
|
|
|
this->SetError("sub-command GET requires at least three arguments.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& listName = args[1];
|
|
|
|
const std::string& variableName = args[args.size() - 1];
|
|
|
|
// expand the variable
|
|
|
|
std::vector<std::string> varArgsExpanded;
|
2014-03-11 03:04:11 +04:00
|
|
|
if ( !this->GetList(varArgsExpanded, listName) )
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(variableName, "NOTFOUND");
|
2006-05-15 17:25:06 +04:00
|
|
|
return true;
|
2006-02-10 22:11:12 +03:00
|
|
|
}
|
2012-04-17 18:32:46 +04:00
|
|
|
// FIXME: Add policy to make non-existing lists an error like empty lists.
|
|
|
|
if(varArgsExpanded.empty())
|
|
|
|
{
|
|
|
|
this->SetError("GET given empty list");
|
|
|
|
return false;
|
|
|
|
}
|
2006-02-10 22:11:12 +03:00
|
|
|
|
|
|
|
std::string value;
|
|
|
|
size_t cc;
|
2008-05-20 19:30:30 +04:00
|
|
|
const char* sep = "";
|
2015-01-25 17:20:56 +03:00
|
|
|
size_t nitem = varArgsExpanded.size();
|
2006-02-10 22:11:12 +03:00
|
|
|
for ( cc = 2; cc < args.size()-1; cc ++ )
|
|
|
|
{
|
|
|
|
int item = atoi(args[cc].c_str());
|
2008-05-20 19:30:30 +04:00
|
|
|
value += sep;
|
|
|
|
sep = ";";
|
2006-02-10 22:11:12 +03:00
|
|
|
if ( item < 0 )
|
|
|
|
{
|
2006-03-30 22:49:56 +04:00
|
|
|
item = (int)nitem + item;
|
2006-02-10 22:11:12 +03:00
|
|
|
}
|
2006-03-30 22:49:56 +04:00
|
|
|
if ( item < 0 || nitem <= (size_t)item )
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream str;
|
2006-05-16 16:42:14 +04:00
|
|
|
str << "index: " << item << " out of range (-"
|
2015-01-25 17:20:56 +03:00
|
|
|
<< nitem << ", "
|
|
|
|
<< nitem - 1 << ")";
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetError(str.str());
|
2006-02-10 22:11:12 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
value += varArgsExpanded[item];
|
|
|
|
}
|
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(variableName, value.c_str());
|
2006-02-10 22:11:12 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-05-15 17:25:06 +04:00
|
|
|
bool cmListCommand::HandleAppendCommand(std::vector<std::string> const& args)
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
2012-09-29 17:41:29 +04:00
|
|
|
assert(args.size() >= 2);
|
2006-02-10 22:11:12 +03:00
|
|
|
|
2008-01-16 19:24:41 +03:00
|
|
|
// Skip if nothing to append.
|
|
|
|
if(args.size() < 3)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-02-10 22:11:12 +03:00
|
|
|
const std::string& listName = args[1];
|
|
|
|
// expand the variable
|
|
|
|
std::string listString;
|
2014-03-11 03:04:11 +04:00
|
|
|
this->GetListString(listString, listName);
|
2015-01-17 19:36:19 +03:00
|
|
|
|
|
|
|
if(!listString.empty() && !args.empty())
|
|
|
|
{
|
|
|
|
listString += ";";
|
|
|
|
}
|
2015-01-25 17:53:20 +03:00
|
|
|
listString += cmJoin(cmRange(args).advance(2), ";");
|
2006-02-10 22:11:12 +03:00
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(listName, listString.c_str());
|
2006-02-10 22:11:12 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2007-08-15 18:26:50 +04:00
|
|
|
bool cmListCommand::HandleFindCommand(std::vector<std::string> const& args)
|
2007-07-12 19:56:45 +04:00
|
|
|
{
|
|
|
|
if(args.size() != 4)
|
|
|
|
{
|
2007-08-15 18:26:50 +04:00
|
|
|
this->SetError("sub-command FIND requires three arguments.");
|
2007-07-12 19:56:45 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& listName = args[1];
|
|
|
|
const std::string& variableName = args[args.size() - 1];
|
|
|
|
// expand the variable
|
|
|
|
std::vector<std::string> varArgsExpanded;
|
2014-03-11 03:04:11 +04:00
|
|
|
if ( !this->GetList(varArgsExpanded, listName) )
|
2007-07-12 19:56:45 +04:00
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(variableName, "-1");
|
2007-07-12 19:56:45 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-24 20:43:37 +03:00
|
|
|
std::vector<std::string>::iterator it =
|
|
|
|
std::find(varArgsExpanded.begin(), varArgsExpanded.end(), args[2]);
|
|
|
|
if (it != varArgsExpanded.end())
|
2007-07-12 19:56:45 +04:00
|
|
|
{
|
2015-01-24 20:43:37 +03:00
|
|
|
std::ostringstream indexStream;
|
|
|
|
indexStream << std::distance(varArgsExpanded.begin(), it);
|
|
|
|
this->Makefile->AddDefinition(variableName, indexStream.str().c_str());
|
|
|
|
return true;
|
2007-07-12 19:56:45 +04:00
|
|
|
}
|
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(variableName, "-1");
|
2007-07-12 19:56:45 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-02-10 22:11:12 +03:00
|
|
|
bool cmListCommand::HandleInsertCommand(std::vector<std::string> const& args)
|
|
|
|
{
|
|
|
|
if(args.size() < 4)
|
|
|
|
{
|
|
|
|
this->SetError("sub-command INSERT requires at least three arguments.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& listName = args[1];
|
2006-05-15 17:25:06 +04:00
|
|
|
|
2006-02-10 22:11:12 +03:00
|
|
|
// expand the variable
|
2006-05-15 17:25:06 +04:00
|
|
|
int item = atoi(args[2].c_str());
|
2006-02-10 22:11:12 +03:00
|
|
|
std::vector<std::string> varArgsExpanded;
|
2014-03-11 03:04:11 +04:00
|
|
|
if((!this->GetList(varArgsExpanded, listName)
|
2012-04-17 18:32:46 +04:00
|
|
|
|| varArgsExpanded.empty()) && item != 0)
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream str;
|
2006-05-15 18:14:16 +04:00
|
|
|
str << "index: " << item << " out of range (0, 0)";
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetError(str.str());
|
2006-02-10 22:11:12 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-15 02:59:13 +03:00
|
|
|
if (!varArgsExpanded.empty())
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
2006-05-15 18:14:16 +04:00
|
|
|
size_t nitem = varArgsExpanded.size();
|
|
|
|
if ( item < 0 )
|
|
|
|
{
|
|
|
|
item = (int)nitem + item;
|
|
|
|
}
|
|
|
|
if ( item < 0 || nitem <= (size_t)item )
|
|
|
|
{
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream str;
|
2006-05-16 16:42:14 +04:00
|
|
|
str << "index: " << item << " out of range (-"
|
|
|
|
<< varArgsExpanded.size() << ", "
|
2015-01-15 02:48:02 +03:00
|
|
|
<< (varArgsExpanded.empty() ? 0 : (varArgsExpanded.size() - 1)) << ")";
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetError(str.str());
|
2006-05-15 18:14:16 +04:00
|
|
|
return false;
|
|
|
|
}
|
2006-02-10 22:11:12 +03:00
|
|
|
}
|
2015-01-15 04:59:09 +03:00
|
|
|
|
|
|
|
varArgsExpanded.insert(varArgsExpanded.begin()+item,
|
|
|
|
args.begin() + 3, args.end());
|
2006-02-10 22:11:12 +03:00
|
|
|
|
2015-01-07 10:58:51 +03:00
|
|
|
std::string value = cmJoin(varArgsExpanded, ";");
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(listName, value.c_str());
|
2006-02-10 22:11:12 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-05-15 17:57:49 +04:00
|
|
|
bool cmListCommand
|
|
|
|
::HandleRemoveItemCommand(std::vector<std::string> const& args)
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
|
|
|
if(args.size() < 3)
|
|
|
|
{
|
2006-08-26 18:29:11 +04:00
|
|
|
this->SetError("sub-command REMOVE_ITEM requires two or more arguments.");
|
2006-02-10 22:11:12 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& listName = args[1];
|
|
|
|
// expand the variable
|
|
|
|
std::vector<std::string> varArgsExpanded;
|
2014-03-11 03:04:11 +04:00
|
|
|
if ( !this->GetList(varArgsExpanded, listName) )
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
2006-08-22 17:52:53 +04:00
|
|
|
this->SetError("sub-command REMOVE_ITEM requires list to be present.");
|
2006-02-10 22:11:12 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-15 18:00:54 +03:00
|
|
|
std::vector<std::string> remove(args.begin() + 2, args.end());
|
|
|
|
std::sort(remove.begin(), remove.end());
|
2015-02-15 17:48:51 +03:00
|
|
|
std::vector<std::string>::const_iterator remEnd =
|
|
|
|
std::unique(remove.begin(), remove.end());
|
|
|
|
std::vector<std::string>::const_iterator remBegin = remove.begin();
|
|
|
|
|
|
|
|
std::vector<std::string>::const_iterator argsEnd =
|
|
|
|
cmRemoveMatching(varArgsExpanded, cmRange(remBegin, remEnd));
|
|
|
|
std::vector<std::string>::const_iterator argsBegin = varArgsExpanded.begin();
|
|
|
|
std::string value = cmJoin(cmRange(argsBegin, argsEnd), ";");
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(listName, value.c_str());
|
2006-02-10 22:11:12 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-08-22 18:16:46 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmListCommand
|
|
|
|
::HandleReverseCommand(std::vector<std::string> const& args)
|
|
|
|
{
|
2012-09-29 17:41:29 +04:00
|
|
|
assert(args.size() >= 2);
|
|
|
|
if(args.size() > 2)
|
2012-08-16 00:12:12 +04:00
|
|
|
{
|
|
|
|
this->SetError(
|
|
|
|
"sub-command REVERSE only takes one argument.");
|
|
|
|
return false;
|
|
|
|
}
|
2006-08-22 18:16:46 +04:00
|
|
|
|
|
|
|
const std::string& listName = args[1];
|
|
|
|
// expand the variable
|
|
|
|
std::vector<std::string> varArgsExpanded;
|
2014-03-11 03:04:11 +04:00
|
|
|
if ( !this->GetList(varArgsExpanded, listName) )
|
2006-08-22 18:16:46 +04:00
|
|
|
{
|
|
|
|
this->SetError("sub-command REVERSE requires list to be present.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-18 00:04:25 +03:00
|
|
|
std::string value = cmJoin(cmReverseRange(varArgsExpanded), ";");
|
2006-08-22 18:16:46 +04:00
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(listName, value.c_str());
|
2006-08-22 18:16:46 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-03-13 00:02:10 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmListCommand
|
|
|
|
::HandleRemoveDuplicatesCommand(std::vector<std::string> const& args)
|
|
|
|
{
|
2012-09-29 17:41:29 +04:00
|
|
|
assert(args.size() >= 2);
|
|
|
|
if(args.size() > 2)
|
2012-08-16 00:12:12 +04:00
|
|
|
{
|
|
|
|
this->SetError(
|
|
|
|
"sub-command REMOVE_DUPLICATES only takes one argument.");
|
|
|
|
return false;
|
|
|
|
}
|
2008-03-13 00:02:10 +03:00
|
|
|
|
|
|
|
const std::string& listName = args[1];
|
|
|
|
// expand the variable
|
|
|
|
std::vector<std::string> varArgsExpanded;
|
2014-03-11 03:04:11 +04:00
|
|
|
if ( !this->GetList(varArgsExpanded, listName) )
|
2008-03-13 00:02:10 +03:00
|
|
|
{
|
2008-03-14 23:39:20 +03:00
|
|
|
this->SetError(
|
|
|
|
"sub-command REMOVE_DUPLICATES requires list to be present.");
|
2008-03-13 00:02:10 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-15 17:48:51 +03:00
|
|
|
std::vector<std::string>::const_iterator argsEnd =
|
|
|
|
cmRemoveDuplicates(varArgsExpanded);
|
|
|
|
std::vector<std::string>::const_iterator argsBegin =
|
|
|
|
varArgsExpanded.begin();
|
|
|
|
std::string value = cmJoin(cmRange(argsBegin, argsEnd), ";");
|
2008-03-13 00:02:10 +03:00
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(listName, value.c_str());
|
2008-03-13 00:02:10 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-08-22 18:16:46 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmListCommand
|
|
|
|
::HandleSortCommand(std::vector<std::string> const& args)
|
|
|
|
{
|
2012-09-29 17:41:29 +04:00
|
|
|
assert(args.size() >= 2);
|
|
|
|
if(args.size() > 2)
|
2012-08-16 00:12:12 +04:00
|
|
|
{
|
|
|
|
this->SetError(
|
|
|
|
"sub-command SORT only takes one argument.");
|
|
|
|
return false;
|
|
|
|
}
|
2006-08-22 18:16:46 +04:00
|
|
|
|
|
|
|
const std::string& listName = args[1];
|
|
|
|
// expand the variable
|
|
|
|
std::vector<std::string> varArgsExpanded;
|
2014-03-11 03:04:11 +04:00
|
|
|
if ( !this->GetList(varArgsExpanded, listName) )
|
2006-08-22 18:16:46 +04:00
|
|
|
{
|
|
|
|
this->SetError("sub-command SORT requires list to be present.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(varArgsExpanded.begin(), varArgsExpanded.end());
|
|
|
|
|
2015-01-07 10:58:51 +03:00
|
|
|
std::string value = cmJoin(varArgsExpanded, ";");
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(listName, value.c_str());
|
2006-08-22 18:16:46 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-02-10 22:11:12 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2006-05-16 16:42:14 +04:00
|
|
|
bool cmListCommand::HandleRemoveAtCommand(
|
|
|
|
std::vector<std::string> const& args)
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
|
|
|
if(args.size() < 3)
|
|
|
|
{
|
2006-08-22 17:52:53 +04:00
|
|
|
this->SetError("sub-command REMOVE_AT requires at least "
|
2006-05-12 19:56:09 +04:00
|
|
|
"two arguments.");
|
2006-02-10 22:11:12 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& listName = args[1];
|
|
|
|
// expand the variable
|
|
|
|
std::vector<std::string> varArgsExpanded;
|
2014-03-11 03:04:11 +04:00
|
|
|
if ( !this->GetList(varArgsExpanded, listName) )
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
2006-08-22 17:52:53 +04:00
|
|
|
this->SetError("sub-command REMOVE_AT requires list to be present.");
|
2006-02-10 22:11:12 +03:00
|
|
|
return false;
|
|
|
|
}
|
2012-04-17 18:32:46 +04:00
|
|
|
// FIXME: Add policy to make non-existing lists an error like empty lists.
|
|
|
|
if(varArgsExpanded.empty())
|
|
|
|
{
|
|
|
|
this->SetError("REMOVE_AT given empty list");
|
|
|
|
return false;
|
|
|
|
}
|
2006-02-10 22:11:12 +03:00
|
|
|
|
|
|
|
size_t cc;
|
|
|
|
std::vector<size_t> removed;
|
2015-01-25 17:20:56 +03:00
|
|
|
size_t nitem = varArgsExpanded.size();
|
2006-02-10 22:11:12 +03:00
|
|
|
for ( cc = 2; cc < args.size(); ++ cc )
|
|
|
|
{
|
|
|
|
int item = atoi(args[cc].c_str());
|
|
|
|
if ( item < 0 )
|
|
|
|
{
|
2006-03-30 22:49:56 +04:00
|
|
|
item = (int)nitem + item;
|
2006-02-10 22:11:12 +03:00
|
|
|
}
|
2006-03-30 22:49:56 +04:00
|
|
|
if ( item < 0 || nitem <= (size_t)item )
|
2006-02-10 22:11:12 +03:00
|
|
|
{
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream str;
|
2006-05-16 16:42:14 +04:00
|
|
|
str << "index: " << item << " out of range (-"
|
2015-01-25 17:20:56 +03:00
|
|
|
<< nitem << ", "
|
|
|
|
<< nitem - 1 << ")";
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetError(str.str());
|
2006-02-10 22:11:12 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
removed.push_back(static_cast<size_t>(item));
|
|
|
|
}
|
|
|
|
|
2015-02-15 17:23:43 +03:00
|
|
|
std::sort(removed.begin(), removed.end());
|
2015-02-15 17:48:51 +03:00
|
|
|
std::vector<size_t>::const_iterator remEnd =
|
|
|
|
std::unique(removed.begin(), removed.end());
|
|
|
|
std::vector<size_t>::const_iterator remBegin = removed.begin();
|
|
|
|
|
|
|
|
std::vector<std::string>::const_iterator argsEnd =
|
|
|
|
cmRemoveIndices(varArgsExpanded, cmRange(remBegin, remEnd));
|
|
|
|
std::vector<std::string>::const_iterator argsBegin = varArgsExpanded.begin();
|
|
|
|
std::string value = cmJoin(cmRange(argsBegin, argsEnd), ";");
|
2006-02-10 22:11:12 +03:00
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(listName, value.c_str());
|
2006-02-10 22:11:12 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|