29 #include <QDirIterator>
32 #include <IceUtil/UUID.h>
45 const QString& newStateName,
48 RenameStateInstances(instanceRenameInfos);
50 if (!RenameStateClass(state, newStateName))
55 if (!AdjustStatechartGroupFile(group, state, newStateName))
60 auto cmakeListPath = QString::fromUtf8(
61 (group->getBoostDefinitionFilePath().remove_filename() /
"CMakeLists.txt").c_str());
64 fileContents.replace(state->getState()->getStateName() +
".xml", newStateName +
".xml");
66 fileContents.replace(state->getState()->getStateName() +
".cpp", newStateName +
".cpp");
68 fileContents.replace(state->getState()->getStateName() +
".h", newStateName +
".h");
69 fileContents = fileContents.replace(state->getState()->getStateName() +
".generated.h",
70 newStateName +
".generated.h");
77 StateRenamer::RenameStateInstances(
const QVector<InstanceRenameInfo>& instanceRename)
79 for (
const auto& entry : instanceRename)
81 if (entry.fromName == entry.toName)
86 auto xmlProcessor = [&](
const std::string& nodeName,
87 const std::string& attribName,
88 const std::string& attribValue) -> std::string
90 QString
value = QString::fromUtf8(attribValue.c_str());
91 const bool nameRef = attribName ==
"name" &&
value == entry.fromName;
92 const bool transitionRef = nodeName ==
"Transition" &&
93 (attribName ==
"from" || attribName ==
"to") &&
94 value == entry.fromName;
96 nodeName ==
"StartState" && attribName ==
"substateName" &&
value == entry.fromName;
98 if (nameRef || transitionRef || startRef)
100 return entry.toName.toUtf8().data();
122 StateRenamer::RenameStateClass(
const StateTreeNodePtr& state,
const QString& newStateName)
124 const std::string newStateNameStd = newStateName.toUtf8().data();
125 auto oldStateName = state->getState()->getStateName();
129 (newStateNameStd +
".xml");
135 auto xmlProcessor = [&](
const std::string& nodeName,
136 const std::string& attribName,
137 const std::string& attribValue) -> std::string
139 QString
value = QString::fromUtf8(attribValue.c_str());
141 if (nodeName ==
"State" && attribName ==
"name" &&
142 value == state->getState()->getStateName())
145 <<
"expected state file of '" << state->getState()->getStateName() <<
"', but got '"
147 return newStateName.toUtf8().data();
154 writer.
saveToFile(newStatePath.string(),
true);
156 QVector<QPair<QRegExp, QString>> codeFileReplaceList;
157 codeFileReplaceList.push_back({QRegExp{
"\\b(" + oldStateName +
")\\b"}, newStateName});
158 codeFileReplaceList.push_back({QRegExp{
"_" + oldStateName +
"_"},
"_" + newStateName +
"_"});
159 codeFileReplaceList.push_back(
160 {QRegExp{oldStateName +
"GeneratedBase"}, newStateName +
"GeneratedBase"});
164 if (state->checkCppExists())
166 auto oldCppPath = state->getBoostCppFilePath();
167 auto newCppPath = state->getBoostCppFilePath().parent_path() / (newStateNameStd +
".cpp");
168 auto oldHPath = state->getBoostHFilePath();
169 auto newHPath = state->getBoostHFilePath().parent_path() / (newStateNameStd +
".h");
170 auto genPath = state->getBoostGeneratedHFilePath();
173 QString::fromUtf8(newCppPath.c_str()),
174 codeFileReplaceList);
176 QString::fromUtf8(newHPath.c_str()),
177 codeFileReplaceList);
178 success = !std::filesystem::exists(oldCppPath) || std::filesystem::remove(oldCppPath);
179 success &= !std::filesystem::exists(oldHPath) || std::filesystem::remove(oldHPath);
180 success &= !std::filesystem::exists(genPath) || std::filesystem::remove(genPath);
190 const QString& newName)
192 std::string path = group->getDefinitionFilePath().toUtf8().data();
198 auto scgxmlProcessor = [&](
const std::string& nodeName,
199 const std::string& attribName,
200 const std::string& attribValue) -> std::string
202 QString
value = QString::fromUtf8(attribValue.c_str());
204 if (nodeName ==
"State" && attribName ==
"filename" &&
value == state->getBasename())
206 const QString newStateFile = newName +
".xml";
207 return newStateFile.toUtf8().data();
219 StateRenamer::AttemptMoveTo(
const QString&
source,
const QString&
target)