CMake/Source/cmSourceGroup.cxx

165 lines
3.8 KiB
C++
Raw Permalink Normal View History

Simplify CMake per-source license notices Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
2016-09-27 22:01:08 +03:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmSourceGroup.h"
class cmSourceGroupInternals
{
public:
std::vector<cmSourceGroup> GroupChildren;
};
cmSourceGroup::cmSourceGroup(const char* name, const char* regex,
const char* parentName)
: Name(name)
{
this->Internal = new cmSourceGroupInternals;
this->SetGroupRegex(regex);
if (parentName) {
this->FullName = parentName;
this->FullName += "\\";
}
this->FullName += this->Name;
}
cmSourceGroup::~cmSourceGroup()
{
delete this->Internal;
}
cmSourceGroup::cmSourceGroup(cmSourceGroup const& r)
{
this->Name = r.Name;
this->FullName = r.FullName;
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;
}
void cmSourceGroup::SetGroupRegex(const char* regex)
{
if (regex) {
2006-03-15 19:02:08 +03:00
this->GroupRegex.compile(regex);
} else {
2006-03-15 19:02:08 +03:00
this->GroupRegex.compile("^$");
}
}
void cmSourceGroup::AddGroupFile(const std::string& name)
{
2006-03-15 19:02:08 +03:00
this->GroupFiles.insert(name);
}
const char* cmSourceGroup::GetName() const
{
2006-03-15 19:02:08 +03:00
return this->Name.c_str();
}
const char* cmSourceGroup::GetFullName() const
{
return this->FullName.c_str();
}
bool cmSourceGroup::MatchesRegex(const char* name)
{
2006-03-15 19:02:08 +03:00
return this->GroupRegex.find(name);
}
bool cmSourceGroup::MatchesFiles(const char* name)
{
return this->GroupFiles.find(name) != this->GroupFiles.end();
}
void cmSourceGroup::AssignSource(const cmSourceFile* sf)
{
2006-03-15 19:02:08 +03:00
this->SourceFiles.push_back(sf);
}
const std::vector<const cmSourceFile*>& cmSourceGroup::GetSourceFiles() const
{
2006-03-15 19:02:08 +03:00
return this->SourceFiles;
}
void cmSourceGroup::AddChild(cmSourceGroup const& child)
2005-07-13 19:21:30 +04:00
{
this->Internal->GroupChildren.push_back(child);
2005-07-13 19:21:30 +04:00
}
cmSourceGroup* cmSourceGroup::LookupChild(const char* name) const
2005-07-13 19:21:30 +04:00
{
// initializing iterators
std::vector<cmSourceGroup>::const_iterator iter =
this->Internal->GroupChildren.begin();
const std::vector<cmSourceGroup>::const_iterator end =
this->Internal->GroupChildren.end();
2005-07-13 19:21:30 +04:00
// st
for (; iter != end; ++iter) {
std::string sgName = iter->GetName();
2005-07-13 19:21:30 +04:00
// look if descenened is the one were looking for
if (sgName == name) {
return const_cast<cmSourceGroup*>(&(*iter)); // if it so return it
2005-07-13 19:21:30 +04:00
}
}
2005-07-13 19:21:30 +04:00
// if no child with this name was found return NULL
2016-06-27 23:44:16 +03:00
return CM_NULLPTR;
2005-07-13 19:21:30 +04:00
}
cmSourceGroup* cmSourceGroup::MatchChildrenFiles(const char* name)
2005-07-13 19:21:30 +04:00
{
// initializing iterators
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)) {
2005-07-13 19:21:30 +04:00
return this;
}
for (; iter != end; ++iter) {
cmSourceGroup* result = iter->MatchChildrenFiles(name);
if (result) {
2005-07-13 19:21:30 +04:00
return result;
}
}
2016-06-27 23:44:16 +03:00
return CM_NULLPTR;
2005-07-13 19:21:30 +04:00
}
cmSourceGroup* cmSourceGroup::MatchChildrenRegex(const char* name)
2005-07-13 19:21:30 +04:00
{
// initializing iterators
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
for (; iter != end; ++iter) {
cmSourceGroup* result = iter->MatchChildrenRegex(name);
if (result) {
2005-07-13 19:21:30 +04:00
return result;
}
}
if (this->MatchesRegex(name)) {
return this;
}
2016-06-27 23:44:16 +03:00
return CM_NULLPTR;
2005-07-13 19:21:30 +04:00
}
std::vector<cmSourceGroup> const& cmSourceGroup::GetGroupChildren() const
2005-07-13 19:21:30 +04:00
{
return this->Internal->GroupChildren;
2005-07-13 19:21:30 +04:00
}