29 #include <QDirIterator>
32 #include <IceUtil/UUID.h>
43 std::optional<QString>
45 const QString& newName,
46 const QVector<StatechartGroupPtr>& affectedGroups)
48 if (!groupCloner->cloneGroupsTo(
51 ARMARX_ERROR_S <<
"Renaming group '" << group->getName() <<
"' to '" << newName
56 const QString oldRSOName = group->getName() +
"RemoteStateOfferer";
57 const QString newRSOName = newName +
"RemoteStateOfferer";
59 auto xmlProcessor = [&](
const std::string&,
60 const std::string& attribName,
61 const std::string& attribValue) -> std::string
63 QString
value = QString::fromUtf8(attribValue.c_str());
65 if (attribName ==
"proxyName" &&
value == oldRSOName)
67 return newRSOName.toUtf8().data();
75 QDirIterator it(g->getGroupPath(), QDir::Files, QDirIterator::Subdirectories);
79 const auto f = QFileInfo(it.next());
86 if (f.suffix() ==
"xml")
96 writer.
saveToFile(f.absoluteFilePath().toUtf8().data(),
true);
102 QDir oldDir(group->getGroupPath());
104 QString newGroupPath = oldDir.path() + QDir::separator() + newName;
105 QString cmakeListsPath = oldDir.path() + QDir::separator() +
"CMakeLists.txt";
109 cmakeLists.replace(QRegExp(
"add_subdirectory\\(" + group->getName() +
"\\)\\n"),
"");
112 if (
auto mappingOpt =
116 <<
"' contains a mapping file; updating...";
121 { return groupMapping.newGroupName == group->getName(); });
126 gmIt->
groupName, newName, gmIt->groupPackage, gmIt->stateMappings};