2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-03-20 21:20:59 +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.
|
2001-03-20 21:20:59 +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.
|
|
|
|
============================================================================*/
|
2001-03-20 21:20:59 +03:00
|
|
|
#include "cmSourceGroupCommand.h"
|
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
inline std::vector<std::string> tokenize(const std::string& str,
|
2006-02-24 20:50:08 +03:00
|
|
|
const std::string& sep)
|
2005-07-13 19:21:30 +04:00
|
|
|
{
|
|
|
|
std::vector<std::string> tokens;
|
2007-08-24 18:58:53 +04:00
|
|
|
std::string::size_type tokend = 0;
|
2006-02-23 19:36:36 +03:00
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
do
|
|
|
|
{
|
2007-08-24 18:58:53 +04:00
|
|
|
std::string::size_type tokstart=str.find_first_not_of(sep, tokend);
|
2005-07-13 19:21:30 +04:00
|
|
|
if (tokstart==std::string::npos)
|
|
|
|
{
|
|
|
|
break; // no more tokens
|
|
|
|
}
|
|
|
|
tokend=str.find_first_of(sep,tokstart);
|
|
|
|
if (tokend==std::string::npos)
|
|
|
|
{
|
|
|
|
tokens.push_back(str.substr(tokstart));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tokens.push_back(str.substr(tokstart,tokend-tokstart));
|
|
|
|
}
|
|
|
|
} while (tokend!=std::string::npos);
|
2007-08-24 18:58:53 +04:00
|
|
|
|
|
|
|
if (tokens.empty())
|
|
|
|
{
|
|
|
|
tokens.push_back("");
|
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
return tokens;
|
|
|
|
}
|
|
|
|
|
2001-03-20 21:20:59 +03:00
|
|
|
// cmSourceGroupCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmSourceGroupCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-03-20 21:20:59 +03:00
|
|
|
{
|
2002-10-05 02:16:13 +04:00
|
|
|
if(args.size() < 1)
|
2001-03-20 21:20:59 +03:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2002-10-05 02:16:13 +04:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
|
|
|
|
std::string delimiter = "\\";
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->Makefile->GetDefinition("SOURCE_GROUP_DELIMITER"))
|
2006-02-23 19:36:36 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
delimiter = this->Makefile->GetDefinition("SOURCE_GROUP_DELIMITER");
|
2006-02-23 19:36:36 +03:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
|
2006-02-24 20:50:08 +03:00
|
|
|
std::vector<std::string> folders = tokenize(args[0], delimiter);
|
2005-07-13 19:21:30 +04:00
|
|
|
|
2007-08-26 11:17:11 +04:00
|
|
|
cmSourceGroup* sg = 0;
|
2007-08-24 22:21:49 +04:00
|
|
|
sg = this->Makefile->GetSourceGroup(folders);
|
|
|
|
if(!sg)
|
2002-10-05 02:16:13 +04:00
|
|
|
{
|
2007-08-24 22:21:49 +04:00
|
|
|
this->Makefile->AddSourceGroup(folders);
|
|
|
|
sg = this->Makefile->GetSourceGroup(folders);
|
2002-10-05 02:16:13 +04:00
|
|
|
}
|
2007-08-24 22:21:49 +04:00
|
|
|
|
2006-02-23 19:36:36 +03:00
|
|
|
if(!sg)
|
|
|
|
{
|
|
|
|
this->SetError("Could not create or find source group");
|
|
|
|
return false;
|
|
|
|
}
|
2003-07-23 23:45:53 +04:00
|
|
|
// If only two arguments are given, the pre-1.8 version of the
|
|
|
|
// command is being invoked.
|
2005-07-13 19:21:30 +04:00
|
|
|
if(args.size() == 2 && args[1] != "FILES")
|
2003-07-23 23:45:53 +04:00
|
|
|
{
|
2003-07-28 22:43:04 +04:00
|
|
|
sg->SetGroupRegex(args[1].c_str());
|
|
|
|
return true;
|
2003-07-23 23:45:53 +04:00
|
|
|
}
|
|
|
|
|
2003-07-23 23:32:54 +04:00
|
|
|
// Process arguments.
|
|
|
|
bool doingFiles = false;
|
|
|
|
for(unsigned int i=1; i < args.size(); ++i)
|
2002-10-05 02:16:13 +04:00
|
|
|
{
|
2003-07-23 23:32:54 +04:00
|
|
|
if(args[i] == "REGULAR_EXPRESSION")
|
|
|
|
{
|
|
|
|
// Next argument must specify the regex.
|
|
|
|
if(i+1 < args.size())
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
sg->SetGroupRegex(args[i].c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->SetError("REGULAR_EXPRESSION argument given without a regex.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
doingFiles = false;
|
|
|
|
}
|
|
|
|
else if(args[i] == "FILES")
|
2002-10-05 02:16:13 +04:00
|
|
|
{
|
2003-07-23 23:32:54 +04:00
|
|
|
// Next arguments will specify files.
|
|
|
|
doingFiles = true;
|
2002-10-05 02:16:13 +04:00
|
|
|
}
|
2003-07-23 23:32:54 +04:00
|
|
|
else if(doingFiles)
|
2002-10-05 02:16:13 +04:00
|
|
|
{
|
2003-07-23 23:32:54 +04:00
|
|
|
// Convert name to full path and add to the group's list.
|
|
|
|
std::string src = args[i].c_str();
|
|
|
|
if(!cmSystemTools::FileIsFullPath(src.c_str()))
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
src = this->Makefile->GetCurrentDirectory();
|
2003-07-23 23:32:54 +04:00
|
|
|
src += "/";
|
|
|
|
src += args[i];
|
|
|
|
}
|
2006-02-28 07:06:44 +03:00
|
|
|
src = cmSystemTools::CollapseFullPath(src.c_str());
|
2003-07-23 23:32:54 +04:00
|
|
|
sg->AddGroupFile(src.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmOStringStream err;
|
|
|
|
err << "Unknown argument \"" << args[i].c_str() << "\". "
|
|
|
|
<< "Perhaps the FILES keyword is missing.\n";
|
|
|
|
this->SetError(err.str().c_str());
|
|
|
|
return false;
|
2002-10-05 02:16:13 +04:00
|
|
|
}
|
|
|
|
}
|
2001-03-20 21:20:59 +03:00
|
|
|
|
2003-07-23 23:32:54 +04:00
|
|
|
return true;
|
2001-03-20 21:20:59 +03:00
|
|
|
}
|