29 #include <QHeaderView>
37 #include "../../../ObserverPropertiesPlugin/ObserverItemModel.h"
38 #include "../../../StatechartEventSenderPlugin/TreeBox.h"
65 QStringList profileNames,
70 this->variantInfo = variantInfo;
71 destDict = targetDict;
72 this->transition = transition;
74 oldSourceMapping = sourceMapping;
75 this->profileNames = profileNames;
78 if (!transition->destinationState->getStateClass() &&
79 transition->destinationState->getType() != eFinalState)
84 setRowCount(destDict.size());
85 setHorizontalHeaderLabels(
86 QString(
"Target parameter;Value Type;Mapping Required;Source Type;Source Parameter;")
89 ->setToolTip(
"Checked if this parameter has no default value and is not optional, so a "
90 "mapping is required.");
96 horizontalHeader()->setStretchLastSection(
true);
98 QStringList mappingSources;
99 mappingSources <<
"Parent input";
100 mappingSources <<
"State output";
101 mappingSources <<
"Datafield"
103 mappingSources <<
"Value";
106 statechartmodel::StateParameterMap::const_iterator it = destDict.begin();
108 for (; it != destDict.end(); it++)
110 QString keyInput = it.key();
113 transition->findMapping(keyInput, sourceMapping);
120 QString typeInput = it.value()->type;
121 auto destKeyItem =
new QTableWidgetItem(keyInput);
122 setItem(row,
eDestKey, destKeyItem);
123 destKeyItem->setToolTip((it.value()->description.isEmpty() ?
"" :
"Description:\n") +
124 it.value()->description);
125 item(row,
eDestKey)->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
129 ->setCheckState(!it.value()->optional && !it.value()->getDefaultValue()
137 setCellWidget(row,
eSource, comboBoxMappingSource);
138 comboBoxMappingSource->addItems(mappingSources);
144 comboBoxMappingSource->setCurrentIndex(mapping->source);
149 int mappingSource = transition->sourceState ? 1 : 0;
150 comboBoxMappingSource->setCurrentIndex(mappingSource);
154 connect(comboBoxMappingSource,
155 SIGNAL(currentIndexChanged(
int)),
161 if (!transition->sourceState)
164 comboBoxMappingSource->setItemData(1, QVariant(0), Qt::UserRole - 1);
166 comboBoxMappingSource->setItemData(2, QVariant(0), Qt::UserRole - 1);
167 comboBoxMappingSource->setItemData(3, QVariant(0), Qt::UserRole - 1);
170 auto humanType = QString::fromUtf8(
171 variantInfo->getNestedHumanNameFromBaseName(typeInput.toUtf8().data()).c_str());
172 setItem(row,
eDestType,
new QTableWidgetItem(humanType));
173 item(row,
eDestType)->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
174 item(row,
eDestType)->setToolTip(typeInput);
184 for (
int row = 0; row < rowCount(); row++)
187 mapping->destinationKey = item(row,
eDestKey)->text();
188 QComboBox* combo = qobject_cast<QComboBox*>(cellWidget(row,
eSource));
192 mapping->source = (MappingSource)combo->currentIndex();
195 QComboBox* sourceCombo = qobject_cast<QComboBox*>(cellWidget(row,
eSourceKey));
199 mapping->sourceKey = sourceCombo->currentText();
201 if (!mapping->sourceKey.isEmpty() && mapping->sourceKey !=
"none")
203 result.append(mapping);
208 qobject_cast<MultiProfileDefaultValueEditWidget*>(cellWidget(row,
eSourceKey)))
210 mapping->profileValues = valueEdit->getJsonMap();
211 result.append(mapping);
218 QList<std::pair<QString, QString>>
220 std::function<std::pair<bool, float>(QString, QString)>
compare)
222 QList<std::pair<QString, QString>> mappedRows;
223 for (
int row = 0; row < rowCount(); row++)
225 QComboBox* comboSourceType = qobject_cast<QComboBox*>(cellWidget(row,
eSource));
226 int oldIndex = comboSourceType->currentIndex();
228 for (
int type = 1; type >= 0; type--)
239 QComboBox* combo = qobject_cast<QComboBox*>(cellWidget(row,
eSourceKey));
241 if (combo && combo->currentIndex() > 0)
246 comboSourceType->setCurrentIndex(type);
247 if (comboSourceType->currentIndex() != type)
251 auto destinationKey = item(row,
eDestKey)->text();
254 combo = qobject_cast<QComboBox*>(cellWidget(row,
eSourceKey));
256 if (combo && combo->currentIndex() <= 0)
260 for (
int i = 0; i < combo->count(); i++)
262 ARMARX_DEBUG << combo->itemText(i) <<
" <-> " << destinationKey;
263 auto [
success, error] =
compare(combo->itemText(i), destinationKey);
264 if (
success && error < smallestError)
267 smallestError = error;
272 combo->setCurrentIndex(bestIndex);
273 ARMARX_DEBUG <<
" setting to " << bestIndex <<
" of source key "
274 << combo->itemText(bestIndex);
276 mappedRows.push_back(std::make_pair(destinationKey,
277 comboSourceType->currentText() +
"." +
278 combo->itemText(bestIndex)));
284 comboSourceType->setCurrentIndex(oldIndex);
293 QString initialValue)
296 statechartmodel::StateParameterMap::const_iterator it = destDict.begin();
300 QWidget* wid = qobject_cast<QWidget*>(sender());
304 throw LocalException(
"Could not get row of table");
307 QModelIndex mIndex = indexAt(wid->pos());
308 tableRow = mIndex.row();
311 for (
int i = 0; i < tableRow; ++i, it++)
320 auto selection = getFilteredParams(parentState->getInputAndLocalParameters(), *it.value());
322 for (
auto it = selection.begin(); it != selection.end(); ++it, i++)
324 parentInput->addItem(it->first);
325 parentInput->setItemData(
326 i, it->second.isEmpty() ?
"" :
"Description:\n" + it->second, Qt::ToolTipRole);
328 if (initialValue.length() > 0)
330 parentInput->setCurrentIndex(parentInput->findText(initialValue));
333 setCellWidget(tableRow,
eSourceKey, parentInput);
337 if (transition->sourceState)
339 QComboBox* box = getFilteredOutputItems(it.key(), transition);
341 if (initialValue.length() > 0)
343 box->setCurrentIndex(box->findText(initialValue));
350 setCellWidget(tableRow,
eSourceKey,
new QWidget());
353 else if (
index == 4 && ic)
355 auto destType = getInputTypeString(tableRow);
361 if (m->destinationKey == it.key())
367 QMap<QString, QString>
values;
368 if (i < oldSourceMapping.size())
373 values = mappingEntry->profileValues;
386 setCellWidget(tableRow,
eSourceKey,
new QLineEdit(initialValue));
391 QList<QPair<QString, QString>>
392 TransitionMappingTable::getFilteredParams(
396 QList<QPair<QString, QString>> items;
398 statechartmodel::StateParameterMap::const_iterator it =
source.begin();
400 for (; it !=
source.end(); it++)
402 if (it.value()->type == argumentToMatch.
type)
404 items.append(qMakePair(it.key(), it.value()->description));
411 items.insert(0, qMakePair(tr(
"none"), QString(
"")));
417 TransitionMappingTable::getInputTypeString(
int row)
419 statechartmodel::StateParameterMap::const_iterator it = destDict.begin();
423 QWidget* wid = qobject_cast<QWidget*>(sender());
427 throw LocalException(
"Could not get row of table");
430 QModelIndex mIndex = indexAt(wid->pos());
434 for (
int i = 0; i < row; ++i, it++)
437 if (it != destDict.end())
439 return it.value()->type;
445 TransitionMappingTable::getFilteredOutputItems(QString key,
448 QList<QString> items;
452 if (!transition->sourceState)
454 ARMARX_ERROR_S << (
"The sourceState of the transition with event ") << transition->eventName
455 <<
" is NULL - output parameters are not loaded";
459 if (!transition->sourceState->getStateClass())
461 ARMARX_ERROR_S << (
"The stateClass pointer of the sourceState named '")
462 << transition->sourceState->getInstanceName()
463 <<
"' of the transition is NULL - output parameters of state '"
464 << transition->sourceState->getInstanceName() <<
"' are not loaded";
469 transition->sourceState->getStateClass()->getOutputParameters();
472 statechartmodel::StateParameterMap::const_iterator it =
source.begin();
482 items.insert(0, tr(
"none"));
485 for (; it !=
source.end(); it++)
487 if (it.value()->type == param->type)
489 items.append(it.key());
498 cbo->addItems(items);