29 #include <QDirIterator>
32 #include <IceUtil/UUID.h>
41 treeModel(treeModel), packageTool(packageTool)
45 QVector<StatechartGroupPtr>
48 QVector<statechartmodel::StatePtr> states = group->getAllStates(
false);
54 auto it = std::remove_if(result.begin(),
57 { return g->getGroupPath() == group->getGroupPath(); });
58 result.erase(it, result.end());
64 QVector<StatechartGroupPtr>
67 QVector<StatechartGroupPtr> result;
71 auto group = treeModel.lock()->getGroupByName(groupMapping.groupName);
79 result.push_back(group);
86 std::optional<StatechartGroupMapping>
88 const QString& packageDir,
95 for (
const auto& gEntry : groupsNames)
97 const auto& g = gEntry.first;
98 ARMARX_INFO_S <<
" " << g->getName() <<
" -> " << gEntry.second;
100 bool groupMapped = std::find_if(mapping.
groupMappings.cbegin(),
103 return gm.groupName == g->getName();
108 ARMARX_WARNING_S <<
"Mapping file seems to be inconsistent with folder structure";
109 return std::optional<StatechartGroupMapping>();
112 QVector<statechartmodel::StatePtr> states = g->getAllStates();
115 g->getName(), gEntry.second, g->getPackageName(), {}};
119 bool stateMapped = std::find_if(groupMapping.stateMappings.cbegin(),
120 groupMapping.stateMappings.cend(),
122 return sm.stateName == state->getStateName();
127 QString targetUUID = state->getUUID();
131 targetUUID = QString::fromUtf8(IceUtil::generateUUID().c_str());
134 groupMapping.stateMappings.insert(
135 {state->getStateName(), state->getUUID(), targetUUID});
142 QVector<StatechartGroupPtr> groups;
145 std::back_inserter(groups),
146 [](
const QPair<StatechartGroupPtr, QString>& p) { return p.first; });
150 if (!g->existsCMakeLists())
153 << g->getName() <<
" at " << g->getGroupPath()
154 <<
" contains no CMakeLists.txt - is it an installed package? Installed packages "
155 "cannot be cloned since they do not contain the CMakelists file and CPP files";
156 return std::optional<StatechartGroupMapping>();
160 registerGroups(groups, newMapping, packageDir);
162 for (
const auto& g : groups)
164 if (!cloneGroupTo(g, packageDir, newMapping))
166 ARMARX_WARNING_S <<
"Cloning group '" << g->getName() <<
"' failed, aborting...";
167 return std::optional<StatechartGroupMapping>();
173 return std::optional<StatechartGroupMapping>(newMapping);
177 GroupCloner::registerGroups(
const QVector<StatechartGroupPtr>& groups,
179 const QString& packageDir)
181 const QString packageName = QFileInfo(packageDir).fileName();
187 QString tempStateName = *groupName +
"TempState";
188 packageTool->addStatechart(groupName->toUtf8().data(),
189 tempStateName.toUtf8().data(),
190 packageDir.toUtf8().data());
191 RemoveDir(packageDir + QDir::separator() +
"source" + QDir::separator() + packageName +
192 QDir::separator() +
"statecharts" + QDir::separator() + *groupName);
199 const QString& packageFolder,
202 QFileInfo packageInfo(packageFolder);
207 QString newGroupName = *newGroupNameOpt;
209 const QString oldPackageName = group->getPackageName();
210 const QString newPackageName = QFileInfo(packageFolder).fileName();
211 const QString packageStatechartsDir = packageFolder + QDir::separator() +
"source" +
212 QDir::separator() + newPackageName + QDir::separator() +
214 QString newGroupPath = packageStatechartsDir + QDir::separator() + newGroupName;
216 ARMARX_INFO_S <<
"Cloning '" << group->getGroupPath() <<
"' to '" << newGroupPath <<
"'";
218 if (QDir(newGroupPath).exists())
220 ARMARX_WARNING_S << newGroupPath <<
" already exists, but should not exist. Skipping...";
223 else if (!QDir(newGroupPath).mkpath(
"."))
229 QMap<QString, QString> renameCandidateMap;
230 renameCandidateMap.insert(group->getName() +
".scgxml", newGroupName +
".scgxml");
231 renameCandidateMap.insert(group->getName() +
"RemoteStateOfferer.h",
232 newGroupName +
"RemoteStateOfferer.h");
233 renameCandidateMap.insert(group->getName() +
"RemoteStateOfferer.cpp",
234 newGroupName +
"RemoteStateOfferer.cpp");
235 renameCandidateMap.insert(group->getName() +
"StatechartContext.h",
236 newGroupName +
"StatechartContext.h");
237 renameCandidateMap.insert(group->getName() +
"StatechartContext.cpp",
238 newGroupName +
"StatechartContext.cpp");
240 QMap<QString, bool> expectedFileSeenMap;
241 expectedFileSeenMap.insert(
"CMakeLists.txt",
false);
242 expectedFileSeenMap.insert(group->getName() +
".scgxml",
false);
243 expectedFileSeenMap.insert(group->getName() +
"RemoteStateOfferer.h",
false);
244 expectedFileSeenMap.insert(group->getName() +
"RemoteStateOfferer.cpp",
false);
247 QVector<QString> optionalExpectedFiles;
248 optionalExpectedFiles.push_back(group->getName() +
"StatechartContext.generated.h");
249 optionalExpectedFiles.push_back(group->getName() +
"StatechartContext.h");
250 optionalExpectedFiles.push_back(group->getName() +
"StatechartContext.cpp");
252 QVector<QString> doNotCopy;
253 doNotCopy.push_back(group->getName() +
"StatechartContext.generated.h");
255 QVector<StateTreeNodePtr> allNodes = group->getAllNodes();
270 const QString gen = QString::fromUtf8(
273 expectedFileSeenMap.insert(xml,
false);
275 if (n->checkCppExists())
277 expectedFileSeenMap.insert(
cpp,
false);
278 expectedFileSeenMap.insert(h,
false);
279 optionalExpectedFiles.push_back(gen);
282 doNotCopy.push_back(gen);
285 QVector<QPair<QRegExp, QString>> codeFileReplaceList;
286 codeFileReplaceList.push_back(
287 {QRegExp(oldPackageName +
"_" + group->getName()), newPackageName +
"_" + newGroupName});
288 codeFileReplaceList.push_back(
289 {QRegExp(oldPackageName +
"::" + group->getName()), newPackageName +
"::" + newGroupName});
290 codeFileReplaceList.push_back(
291 {QRegExp(
"namespace[\\n\\s]*" + group->getName()),
"namespace " + newGroupName});
292 codeFileReplaceList.push_back({QRegExp(
"namespace[\\n\\s]*armarx::" + group->getName()),
293 "namespace armarx::" + newGroupName});
294 codeFileReplaceList.push_back(
295 {QRegExp(group->getName() +
"StatechartContext"), newGroupName +
"StatechartContext"});
296 codeFileReplaceList.push_back(
297 {QRegExp(group->getName() +
"RemoteStateOfferer"), newGroupName +
"RemoteStateOfferer"});
298 codeFileReplaceList.push_back({QRegExp(oldPackageName +
"/statecharts/" + group->getName()),
299 newPackageName +
"/statecharts/" + newGroupName});
301 QVector<QPair<QRegExp, QString>> cmakeListsReplaceList;
302 cmakeListsReplaceList.push_back(
303 {QRegExp(
"armarx_component_set_name\\(\"" + group->getName() +
"\"\\)"),
304 "armarx_component_set_name(\"" + newGroupName +
"\")"});
305 cmakeListsReplaceList.push_back(
306 {QRegExp(group->getName() +
"\\.scgxml"), newGroupName +
".scgxml"});
307 cmakeListsReplaceList.push_back(
308 {QRegExp(group->getName() +
"StatechartContext"), newGroupName +
"StatechartContext"});
309 cmakeListsReplaceList.push_back(
310 {QRegExp(group->getName() +
"RemoteStateOfferer"), newGroupName +
"RemoteStateOfferer"});
312 auto xmlProcessor = [&](
const std::string&,
313 const std::string& attribName,
314 const std::string& attribValue) -> std::string
316 QString
value = QString::fromUtf8(attribValue.c_str());
318 if (attribName ==
"refuuid" || attribName ==
"uuid")
320 QString
value = QString::fromUtf8(attribValue.c_str());
324 return qresult->toUtf8().data();
331 else if (attribName ==
"proxyName")
333 value =
value.replace(
"RemoteStateOfferer",
"");
337 return std::string(qresult->toUtf8().data()) +
"RemoteStateOfferer";
348 auto scgxmlProcessor = [&](
const std::string&,
349 const std::string& attribName,
350 const std::string& attribValue) -> std::string
352 QString
value = QString::fromUtf8(attribValue.c_str());
354 if (attribName ==
"package" && oldPackageName ==
value)
356 return newPackageName.toUtf8().data();
358 else if (attribName ==
"name")
362 return newGroupName->toUtf8().data();
369 QDirIterator it(group->getGroupPath(),
370 QDir::Files | QDir::Dirs | QDir::NoDotAndDotDot,
371 QDirIterator::Subdirectories);
375 const auto f = QFileInfo(it.next());
376 QString relativePath = QDir(group->getGroupPath()).relativeFilePath(f.absoluteFilePath());
377 QString srcFilePath = group->getGroupPath() + QDir::separator() + relativePath;
378 QString tgtFilePath =
379 newGroupPath + QDir::separator() +
380 (renameCandidateMap.contains(relativePath) ? renameCandidateMap[relativePath]
385 if (!QDir(tgtFilePath).mkpath(
"."))
395 if (doNotCopy.contains(relativePath))
401 ARMARX_DEBUG_S <<
"Cloning file '" << srcFilePath <<
"' -> '" << tgtFilePath <<
"'";
403 if (expectedFileSeenMap.contains(relativePath))
405 expectedFileSeenMap[relativePath] =
true;
407 else if (!optionalExpectedFiles.contains(relativePath))
410 <<
"', processing anyway... - expected files"
411 << expectedFileSeenMap.toStdMap();
414 if (f.suffix() ==
"xml" || f.suffix() ==
"scgxml")
422 if (f.suffix() ==
"xml")
431 writer.
saveToFile(tgtFilePath.toUtf8().data(),
true);
433 else if (f.suffix() ==
"cpp" || f.suffix() ==
"h")
438 else if (f.fileName() ==
"CMakeLists.txt")
450 for (
const auto& f : expectedFileSeenMap.toStdMap())
454 ARMARX_WARNING_S <<
"Expected file '" << f.first <<
"' was not found while cloning";
462 QVector<StatechartGroupPtr>
464 const QVector<statechartmodel::StatePtr>& states)
466 QVector<StatechartGroupPtr> result;
468 for (
const auto& state : states)
470 auto stateGroup = treeModel->getNodeByState(state)->getGroup();
472 bool alreadyExists = std::find_if(result.constBegin(),
475 return stateGroup->getDefinitionFilePath() ==
476 depGroup->getDefinitionFilePath();
477 }) != result.constEnd();
481 result.push_back(stateGroup);
489 GroupCloner::CopyRecursively(
const QString& srcPath,
const QString& tgtParentDirPath)
491 QFileInfo srcInfo(srcPath);
492 QFileInfo tgtInfo(tgtParentDirPath);
494 if (srcInfo.fileName() == tgtInfo.fileName())
496 auto newDir = QDir(tgtParentDirPath);
498 return CopyRecursively(srcPath, newDir.path());
501 if (!tgtInfo.isDir() && tgtInfo.exists())
509 const QString newTgtDirPath = tgtParentDirPath + QDir::separator() + srcInfo.fileName();
510 const auto newDir = QDir(newTgtDirPath);
518 if (!newDir.mkpath(
"."))
524 QDir sourceDir(srcPath);
525 QStringList fileNames =
526 sourceDir.entryList(QDir::Files | QDir::Dirs | QDir::NoDotAndDotDot);
528 for (
const QString& fileName : fileNames)
530 const QString newSrcFilePath = srcPath + QDir::separator() + fileName;
532 if (!CopyRecursively(newSrcFilePath, newTgtDirPath))
540 const QString newTgtFilePath = tgtParentDirPath + QDir::separator() + srcInfo.fileName();
554 const QString& tgtFilePath,
555 const QVector<QPair<QRegExp, QString>>& replaceList)
559 for (
const auto& replace : replaceList)
561 fileContent = fileContent.replace(replace.first, replace.second);
573 if (dir.exists(dirName))
575 for (QFileInfo info :
576 dir.entryInfoList(QDir::NoDotAndDotDot | QDir::AllDirs | QDir::Files, QDir::DirsFirst))
580 result =
RemoveDir(info.absoluteFilePath());
584 result = QFile::remove(info.absoluteFilePath());
593 result = dir.rmdir(dirName);