2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-03-20 18:20:59 +00:00
|
|
|
#include "cmSourceGroup.h"
|
|
|
|
|
2008-05-16 20:56:41 +00:00
|
|
|
class cmSourceGroupInternals
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::vector<cmSourceGroup> GroupChildren;
|
|
|
|
};
|
|
|
|
|
2009-07-11 04:05:20 +00:00
|
|
|
cmSourceGroup::cmSourceGroup(const char* name, const char* regex,
|
2016-05-16 14:34:04 +00:00
|
|
|
const char* parentName)
|
|
|
|
: Name(name)
|
2001-03-20 18:20:59 +00:00
|
|
|
{
|
2008-05-16 20:56:41 +00:00
|
|
|
this->Internal = new cmSourceGroupInternals;
|
2003-07-23 19:32:54 +00:00
|
|
|
this->SetGroupRegex(regex);
|
2016-05-16 14:34:04 +00:00
|
|
|
if (parentName) {
|
2009-07-11 04:05:20 +00:00
|
|
|
this->FullName = parentName;
|
|
|
|
this->FullName += "\\";
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2009-07-11 04:05:20 +00:00
|
|
|
this->FullName += this->Name;
|
2001-03-20 18:20:59 +00:00
|
|
|
}
|
|
|
|
|
2008-05-16 20:56:41 +00:00
|
|
|
cmSourceGroup::~cmSourceGroup()
|
|
|
|
{
|
|
|
|
delete this->Internal;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmSourceGroup::cmSourceGroup(cmSourceGroup const& r)
|
|
|
|
{
|
|
|
|
this->Name = r.Name;
|
2009-07-11 04:05:20 +00:00
|
|
|
this->FullName = r.FullName;
|
2008-05-16 20:56:41 +00:00
|
|
|
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 19:32:54 +00:00
|
|
|
void cmSourceGroup::SetGroupRegex(const char* regex)
|
2001-03-20 18:20:59 +00:00
|
|
|
{
|
2016-05-16 14:34:04 +00:00
|
|
|
if (regex) {
|
2006-03-15 16:02:08 +00:00
|
|
|
this->GroupRegex.compile(regex);
|
2016-05-16 14:34:04 +00:00
|
|
|
} else {
|
2006-03-15 16:02:08 +00:00
|
|
|
this->GroupRegex.compile("^$");
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2001-03-20 18:20:59 +00:00
|
|
|
}
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2014-02-06 19:05:57 +00:00
|
|
|
void cmSourceGroup::AddGroupFile(const std::string& name)
|
2003-07-23 19:32:54 +00:00
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
this->GroupFiles.insert(name);
|
2003-07-23 19:32:54 +00:00
|
|
|
}
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2017-11-15 15:32:01 +00:00
|
|
|
std::string const& cmSourceGroup::GetName() const
|
2003-07-23 19:32:54 +00:00
|
|
|
{
|
2017-11-15 15:32:01 +00:00
|
|
|
return this->Name;
|
2003-07-23 19:32:54 +00:00
|
|
|
}
|
2009-07-11 04:05:20 +00:00
|
|
|
|
2017-11-15 15:32:01 +00:00
|
|
|
std::string const& cmSourceGroup::GetFullName() const
|
2009-07-11 04:05:20 +00:00
|
|
|
{
|
2017-11-15 15:32:01 +00:00
|
|
|
return this->FullName;
|
2009-07-11 04:05:20 +00:00
|
|
|
}
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2003-07-23 19:32:54 +00:00
|
|
|
bool cmSourceGroup::MatchesRegex(const char* name)
|
2001-03-20 18:20:59 +00:00
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
return this->GroupRegex.find(name);
|
2001-03-20 18:20:59 +00:00
|
|
|
}
|
|
|
|
|
2003-07-23 19:32:54 +00:00
|
|
|
bool cmSourceGroup::MatchesFiles(const char* name)
|
|
|
|
{
|
2016-06-01 21:29:53 +00:00
|
|
|
return this->GroupFiles.find(name) != this->GroupFiles.end();
|
2003-07-23 19:32:54 +00:00
|
|
|
}
|
2001-03-20 18:20:59 +00:00
|
|
|
|
2003-07-23 19:32:54 +00:00
|
|
|
void cmSourceGroup::AssignSource(const cmSourceFile* sf)
|
2001-04-27 18:51:43 +00:00
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
this->SourceFiles.push_back(sf);
|
2001-04-27 18:51:43 +00:00
|
|
|
}
|
|
|
|
|
2003-07-23 19:32:54 +00:00
|
|
|
const std::vector<const cmSourceFile*>& cmSourceGroup::GetSourceFiles() const
|
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
return this->SourceFiles;
|
2003-07-23 19:32:54 +00:00
|
|
|
}
|
|
|
|
|
2016-05-26 19:58:51 +00:00
|
|
|
void cmSourceGroup::AddChild(cmSourceGroup const& child)
|
2005-07-13 15:21:30 +00:00
|
|
|
{
|
2008-05-16 20:56:41 +00:00
|
|
|
this->Internal->GroupChildren.push_back(child);
|
2005-07-13 15:21:30 +00:00
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
cmSourceGroup* cmSourceGroup::LookupChild(const char* name) const
|
2005-07-13 15:21:30 +00:00
|
|
|
{
|
|
|
|
// initializing iterators
|
2014-01-21 14:16:43 +00:00
|
|
|
std::vector<cmSourceGroup>::const_iterator iter =
|
2008-05-16 20:56:41 +00:00
|
|
|
this->Internal->GroupChildren.begin();
|
2014-01-21 14:16:43 +00:00
|
|
|
const std::vector<cmSourceGroup>::const_iterator end =
|
2008-05-16 20:56:41 +00:00
|
|
|
this->Internal->GroupChildren.end();
|
2005-07-13 15:21:30 +00:00
|
|
|
|
|
|
|
// st
|
2016-05-16 14:34:04 +00:00
|
|
|
for (; iter != end; ++iter) {
|
2017-11-15 15:32:01 +00:00
|
|
|
std::string const& sgName = iter->GetName();
|
2005-07-13 15:21:30 +00:00
|
|
|
|
|
|
|
// look if descenened is the one were looking for
|
2016-05-16 14:34:04 +00:00
|
|
|
if (sgName == name) {
|
2014-01-21 14:16:43 +00:00
|
|
|
return const_cast<cmSourceGroup*>(&(*iter)); // if it so return it
|
2005-07-13 15:21:30 +00:00
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2005-07-13 15:21:30 +00:00
|
|
|
|
|
|
|
// if no child with this name was found return NULL
|
2017-08-22 21:42:36 +00:00
|
|
|
return nullptr;
|
2005-07-13 15:21:30 +00:00
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
cmSourceGroup* cmSourceGroup::MatchChildrenFiles(const char* name)
|
2005-07-13 15:21:30 +00:00
|
|
|
{
|
|
|
|
// initializing iterators
|
2008-05-16 20:56:41 +00:00
|
|
|
std::vector<cmSourceGroup>::iterator iter =
|
|
|
|
this->Internal->GroupChildren.begin();
|
|
|
|
std::vector<cmSourceGroup>::iterator end =
|
|
|
|
this->Internal->GroupChildren.end();
|
2005-07-13 15:21:30 +00:00
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
if (this->MatchesFiles(name)) {
|
2005-07-13 15:21:30 +00:00
|
|
|
return this;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
|
|
|
for (; iter != end; ++iter) {
|
|
|
|
cmSourceGroup* result = iter->MatchChildrenFiles(name);
|
|
|
|
if (result) {
|
2005-07-13 15:21:30 +00:00
|
|
|
return result;
|
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2017-08-22 21:42:36 +00:00
|
|
|
return nullptr;
|
2005-07-13 15:21:30 +00:00
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
cmSourceGroup* cmSourceGroup::MatchChildrenRegex(const char* name)
|
2005-07-13 15:21:30 +00:00
|
|
|
{
|
|
|
|
// initializing iterators
|
2008-05-16 20:56:41 +00:00
|
|
|
std::vector<cmSourceGroup>::iterator iter =
|
|
|
|
this->Internal->GroupChildren.begin();
|
|
|
|
std::vector<cmSourceGroup>::iterator end =
|
|
|
|
this->Internal->GroupChildren.end();
|
2005-07-13 15:21:30 +00:00
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
for (; iter != end; ++iter) {
|
|
|
|
cmSourceGroup* result = iter->MatchChildrenRegex(name);
|
|
|
|
if (result) {
|
2005-07-13 15:21:30 +00:00
|
|
|
return result;
|
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
|
|
|
if (this->MatchesRegex(name)) {
|
2012-10-28 08:54:26 +00:00
|
|
|
return this;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2012-10-28 08:54:26 +00:00
|
|
|
|
2017-08-22 21:42:36 +00:00
|
|
|
return nullptr;
|
2005-07-13 15:21:30 +00:00
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
std::vector<cmSourceGroup> const& cmSourceGroup::GetGroupChildren() const
|
2005-07-13 15:21:30 +00:00
|
|
|
{
|
2008-05-16 20:56:41 +00:00
|
|
|
return this->Internal->GroupChildren;
|
2005-07-13 15:21:30 +00:00
|
|
|
}
|