2001-03-20 21:20:59 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-03-20 21:20:59 +03: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-03-20 21:20:59 +03: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-03-20 21:20:59 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmSourceGroup.h"
|
|
|
|
|
2008-05-17 00:56:41 +04:00
|
|
|
class cmSourceGroupInternals
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::vector<cmSourceGroup> GroupChildren;
|
|
|
|
};
|
|
|
|
|
2003-07-23 23:32:54 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2006-03-15 19:02:08 +03:00
|
|
|
cmSourceGroup::cmSourceGroup(const char* name, const char* regex): Name(name)
|
2001-03-20 21:20:59 +03:00
|
|
|
{
|
2008-05-17 00:56:41 +04:00
|
|
|
this->Internal = new cmSourceGroupInternals;
|
2003-07-23 23:32:54 +04:00
|
|
|
this->SetGroupRegex(regex);
|
2001-03-20 21:20:59 +03:00
|
|
|
}
|
|
|
|
|
2008-05-17 00:56:41 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmSourceGroup::~cmSourceGroup()
|
|
|
|
{
|
|
|
|
delete this->Internal;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmSourceGroup::cmSourceGroup(cmSourceGroup const& r)
|
|
|
|
{
|
|
|
|
this->Name = r.Name;
|
|
|
|
this->GroupRegex = r.GroupRegex;
|
|
|
|
this->GroupFiles = r.GroupFiles;
|
|
|
|
this->SourceFiles = r.SourceFiles;
|
|
|
|
this->Internal = new cmSourceGroupInternals(*r.Internal);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmSourceGroup& cmSourceGroup::operator=(cmSourceGroup const& r)
|
|
|
|
{
|
|
|
|
this->Name = r.Name;
|
|
|
|
this->GroupRegex = r.GroupRegex;
|
|
|
|
this->GroupFiles = r.GroupFiles;
|
|
|
|
this->SourceFiles = r.SourceFiles;
|
|
|
|
*(this->Internal) = *(r.Internal);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2003-07-23 23:32:54 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmSourceGroup::SetGroupRegex(const char* regex)
|
2001-03-20 21:20:59 +03:00
|
|
|
{
|
2003-07-23 23:32:54 +04:00
|
|
|
if(regex)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GroupRegex.compile(regex);
|
2003-07-23 23:32:54 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GroupRegex.compile("^$");
|
2003-07-23 23:32:54 +04:00
|
|
|
}
|
2001-03-20 21:20:59 +03:00
|
|
|
}
|
2003-07-23 23:32:54 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmSourceGroup::AddGroupFile(const char* name)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GroupFiles.insert(name);
|
2003-07-23 23:32:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmSourceGroup::GetName() const
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->Name.c_str();
|
2003-07-23 23:32:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmSourceGroup::MatchesRegex(const char* name)
|
2001-03-20 21:20:59 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->GroupRegex.find(name);
|
2001-03-20 21:20:59 +03:00
|
|
|
}
|
|
|
|
|
2003-07-23 23:32:54 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmSourceGroup::MatchesFiles(const char* name)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
std::set<cmStdString>::const_iterator i = this->GroupFiles.find(name);
|
|
|
|
if(i != this->GroupFiles.end())
|
2003-07-23 23:32:54 +04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2001-03-20 21:20:59 +03:00
|
|
|
|
2003-07-23 23:32:54 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmSourceGroup::AssignSource(const cmSourceFile* sf)
|
2001-04-27 22:51:43 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->SourceFiles.push_back(sf);
|
2001-04-27 22:51:43 +04:00
|
|
|
}
|
|
|
|
|
2003-07-23 23:32:54 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const std::vector<const cmSourceFile*>& cmSourceGroup::GetSourceFiles() const
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->SourceFiles;
|
2003-07-23 23:32:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::vector<const cmSourceFile*>& cmSourceGroup::GetSourceFiles()
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->SourceFiles;
|
2003-07-23 23:32:54 +04:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmSourceGroup::AddChild(cmSourceGroup child)
|
|
|
|
{
|
2008-05-17 00:56:41 +04:00
|
|
|
this->Internal->GroupChildren.push_back(child);
|
2005-07-13 19:21:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmSourceGroup *cmSourceGroup::lookupChild(const char* name)
|
|
|
|
{
|
|
|
|
// initializing iterators
|
2008-05-17 00:56:41 +04:00
|
|
|
std::vector<cmSourceGroup>::iterator iter =
|
|
|
|
this->Internal->GroupChildren.begin();
|
|
|
|
std::vector<cmSourceGroup>::iterator end =
|
|
|
|
this->Internal->GroupChildren.end();
|
2005-07-13 19:21:30 +04:00
|
|
|
|
|
|
|
// st
|
|
|
|
for(;iter!=end; ++iter)
|
|
|
|
{
|
|
|
|
std::string sgName = iter->GetName();
|
|
|
|
|
|
|
|
// look if descenened is the one were looking for
|
|
|
|
if(sgName == name)
|
|
|
|
{
|
|
|
|
return &(*iter); // if it so return it
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if no child with this name was found return NULL
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmSourceGroup *cmSourceGroup::MatchChildrenFiles(const char *name)
|
|
|
|
{
|
|
|
|
// initializing iterators
|
2008-05-17 00:56:41 +04:00
|
|
|
std::vector<cmSourceGroup>::iterator iter =
|
|
|
|
this->Internal->GroupChildren.begin();
|
|
|
|
std::vector<cmSourceGroup>::iterator end =
|
|
|
|
this->Internal->GroupChildren.end();
|
2005-07-13 19:21:30 +04:00
|
|
|
|
|
|
|
if(this->MatchesFiles(name))
|
|
|
|
{
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
for(;iter!=end;++iter)
|
|
|
|
{
|
|
|
|
cmSourceGroup *result = iter->MatchChildrenFiles(name);
|
|
|
|
if(result)
|
|
|
|
{
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
cmSourceGroup *cmSourceGroup::MatchChildrenRegex(const char *name)
|
|
|
|
{
|
|
|
|
// initializing iterators
|
2008-05-17 00:56:41 +04:00
|
|
|
std::vector<cmSourceGroup>::iterator iter =
|
|
|
|
this->Internal->GroupChildren.begin();
|
|
|
|
std::vector<cmSourceGroup>::iterator end =
|
|
|
|
this->Internal->GroupChildren.end();
|
2005-07-13 19:21:30 +04:00
|
|
|
|
|
|
|
if(this->MatchesRegex(name))
|
|
|
|
{
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
for(;iter!=end; ++iter)
|
|
|
|
{
|
|
|
|
cmSourceGroup *result = iter->MatchChildrenRegex(name);
|
|
|
|
if(result)
|
|
|
|
{
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-05-17 00:56:41 +04:00
|
|
|
std::vector<cmSourceGroup> const&
|
|
|
|
cmSourceGroup::GetGroupChildren() const
|
2005-07-13 19:21:30 +04:00
|
|
|
{
|
2008-05-17 00:56:41 +04:00
|
|
|
return this->Internal->GroupChildren;
|
2005-07-13 19:21:30 +04:00
|
|
|
}
|