"Professional CMake" book suggest the following: "Targets should build successfully with or without compiler support for precompiled headers. It should be considered an optimization, not a requirement. In particular, do not explicitly include a precompile header (e.g. stdafx.h) in the source code, let CMake force-include an automatically generated precompile header on the compiler command line instead. This is more portable across the major compilers and is likely to be easier to maintain. It will also avoid warnings being generated from certain code checking tools like iwyu (include what you use)." Therefore, removed the "#include <PreCompiled.h>" from sources, also there is no need for the "#ifdef _PreComp_" anymore
125 lines
2.6 KiB
C++
125 lines
2.6 KiB
C++
|
|
#include "ElementNamingUtils.h"
|
|
#include <boost/algorithm/string/predicate.hpp>
|
|
|
|
|
|
const char* Data::isMappedElement(const char* name)
|
|
{
|
|
if (name && boost::starts_with(name, ELEMENT_MAP_PREFIX)) {
|
|
return name + ELEMENT_MAP_PREFIX_SIZE;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
std::string Data::newElementName(const char* name)
|
|
{
|
|
if (!name) {
|
|
return {};
|
|
}
|
|
const char* dot = strrchr(name, '.');
|
|
if (!dot || dot == name) {
|
|
return name;
|
|
}
|
|
const char* c = dot - 1;
|
|
for (; c != name; --c) {
|
|
if (*c == '.') {
|
|
++c;
|
|
break;
|
|
}
|
|
}
|
|
if (isMappedElement(c)) {
|
|
return std::string(name, dot - name);
|
|
}
|
|
return name;
|
|
}
|
|
|
|
std::string Data::oldElementName(const char* name)
|
|
{
|
|
if (!name) {
|
|
return {};
|
|
}
|
|
const char* dot = strrchr(name, '.');
|
|
if (!dot || dot == name) {
|
|
return name;
|
|
}
|
|
const char* c = dot - 1;
|
|
for (; c != name; --c) {
|
|
if (*c == '.') {
|
|
++c;
|
|
break;
|
|
}
|
|
}
|
|
if (isMappedElement(c)) {
|
|
return std::string(name, c - name) + (dot + 1);
|
|
}
|
|
return name;
|
|
}
|
|
|
|
std::string Data::noElementName(const char* name)
|
|
{
|
|
if (!name) {
|
|
return {};
|
|
}
|
|
auto element = findElementName(name);
|
|
if (element) {
|
|
return std::string(name, element - name);
|
|
}
|
|
return name;
|
|
}
|
|
|
|
const char* Data::findElementName(const char* subname)
|
|
{
|
|
// skip leading dots
|
|
while (subname && subname[0] == '.') {
|
|
++subname;
|
|
}
|
|
if (!subname || !subname[0] || isMappedElement(subname)) {
|
|
return subname;
|
|
}
|
|
const char* dot = strrchr(subname, '.');
|
|
if (!dot) {
|
|
return subname;
|
|
}
|
|
const char* element = dot + 1;
|
|
if (dot == subname || isMappedElement(element)) {
|
|
return element;
|
|
}
|
|
for (--dot; dot != subname; --dot) {
|
|
if (*dot == '.') {
|
|
++dot;
|
|
break;
|
|
}
|
|
}
|
|
if (isMappedElement(dot)) {
|
|
return dot;
|
|
}
|
|
return element;
|
|
}
|
|
|
|
bool Data::hasMissingElement(const char* subname)
|
|
{
|
|
if (!subname) {
|
|
return false;
|
|
}
|
|
auto dot = strrchr(subname, '.');
|
|
if (dot) {
|
|
subname = dot + 1;
|
|
}
|
|
return boost::starts_with(subname, MISSING_PREFIX);
|
|
}
|
|
|
|
const char* Data::hasMappedElementName(const char* subname)
|
|
{
|
|
return isMappedElement(findElementName(subname));
|
|
}
|
|
|
|
const std::string Data::indexSuffix(int index, const char* label)
|
|
{
|
|
if (index < 2) { // Don't add a suffix for item #1, begin appending at 2
|
|
return {""};
|
|
}
|
|
std::string name(label);
|
|
name += std::to_string(index);
|
|
return name;
|
|
}
|