use of org.drools.workbench.models.guided.dtable.shared.model.BRLConditionColumn in project drools-wb by kiegroup.
the class DefaultGuidedDecisionTableLinkManager method link.
@Override
public void link(final GuidedDecisionTable52 model, final GuidedDecisionTable52 otherModel, final LinkFoundCallback callback) {
if (model == null) {
return;
}
if (otherModel == null) {
return;
}
if (callback == null) {
return;
}
final BRLRuleModel helper = new BRLRuleModel(model);
// Re-create links to other Decision Tables
for (CompositeColumn<? extends BaseColumn> otherDecisionTableConditions : otherModel.getConditions()) {
if (otherDecisionTableConditions instanceof Pattern52) {
final Pattern52 otherDecisionTablePattern = (Pattern52) otherDecisionTableConditions;
for (ConditionCol52 otherDecisionTableCondition : otherDecisionTablePattern.getChildColumns()) {
final String factType = otherDecisionTablePattern.getFactType();
final String fieldName = otherDecisionTableCondition.getFactField();
final ActionCol52 linkedActionColumn = getLinkedActionColumn(factType, fieldName, model, helper);
if (linkedActionColumn != null) {
final int sourceColumnIndex = model.getExpandedColumns().indexOf(linkedActionColumn);
final int targetColumnIndex = otherModel.getExpandedColumns().indexOf(otherDecisionTableCondition);
callback.link(sourceColumnIndex, targetColumnIndex);
}
}
} else if (otherDecisionTableConditions instanceof BRLConditionColumn) {
final BRLConditionColumn fragment = (BRLConditionColumn) otherDecisionTableConditions;
for (BRLConditionVariableColumn var : fragment.getChildColumns()) {
final String factType = var.getFactType();
final String fieldName = var.getFactField();
final ActionCol52 linkedActionColumn = getLinkedActionColumn(factType, fieldName, model, helper);
if (linkedActionColumn != null) {
final int sourceColumnIndex = model.getExpandedColumns().indexOf(linkedActionColumn);
final int targetColumnIndex = otherModel.getExpandedColumns().indexOf(var);
callback.link(sourceColumnIndex, targetColumnIndex);
}
}
}
}
}
use of org.drools.workbench.models.guided.dtable.shared.model.BRLConditionColumn in project drools-wb by kiegroup.
the class BRLConditionColumnDefinitionBuilder method generateDefinition.
@Override
public void generateDefinition(final GuidedDecisionTableView.Presenter dtPresenter, final BaseColumn column, final Callback<String> afterGenerationCallback) {
if (!(column instanceof BRLConditionVariableColumn)) {
return;
}
final GuidedDecisionTable52 existingModel = dtPresenter.getModel();
final BRLConditionVariableColumn brlVariableColumn = (BRLConditionVariableColumn) column;
final BRLConditionColumn brlColumn = existingModel.getBRLColumn(brlVariableColumn);
final GuidedDecisionTable52 partialModel = new GuidedDecisionTable52();
final ColumnUtilities columnUtilities = new ColumnUtilities(existingModel, dtPresenter.getDataModelOracle());
partialModel.getConditions().add(brlColumn);
partialModel.getData().add(makeRowData(columnUtilities, brlColumn));
generateDefinitionOnServer(partialModel, dtPresenter.getCurrentPath(), (String drl) -> afterGenerationCallback.callback(getLHS(drl)));
}
use of org.drools.workbench.models.guided.dtable.shared.model.BRLConditionColumn in project drools-wb by kiegroup.
the class DependentEnumsUtilities method getCurrentValueMap.
/**
* Create a map of Field Values keyed on Field Names used by
* SuggestionCompletionEngine.getEnums(String, String, Map<String, String>)
* to drive dependent enumerations.
*
* @param context The Context of the cell being edited containing physical
* coordinate in the data-space.
*/
@Override
public Map<String, String> getCurrentValueMap(final Context context) {
Map<String, String> currentValueMap = new HashMap<String, String>();
final int iBaseRowIndex = context.getRowIndex();
final int iBaseColIndex = context.getColumnIndex();
final List<DTCellValue52> rowData = this.model.getData().get(iBaseRowIndex);
// Get the column for the cell being edited
final List<BaseColumn> allColumns = this.model.getExpandedColumns();
final BaseColumn baseColumn = allColumns.get(iBaseColIndex);
// Get values for all Constraints or Actions on the same pattern as the baseColumn
if (baseColumn instanceof BRLConditionVariableColumn) {
final BRLConditionVariableColumn baseBRLConditionColumn = (BRLConditionVariableColumn) baseColumn;
final BRLConditionColumn brl = model.getBRLColumn(baseBRLConditionColumn);
final RuleModel rm = new RuleModel();
IPattern[] lhs = new IPattern[brl.getDefinition().size()];
brl.getDefinition().toArray(lhs);
rm.lhs = lhs;
final RuleModelPeerVariableVisitor peerVariableVisitor = new RuleModelPeerVariableVisitor(rm, baseBRLConditionColumn.getVarName());
List<ValueHolder> peerVariables = peerVariableVisitor.getPeerVariables();
// Add other variables values
for (ValueHolder valueHolder : peerVariables) {
switch(valueHolder.getType()) {
case TEMPLATE_KEY:
final BRLConditionVariableColumn vc = getConditionVariableColumnIndex(brl.getChildColumns(), valueHolder.getValue());
final int iCol = allColumns.indexOf(vc);
final DTCellValue52 dcv = rowData.get(iCol);
final String field = vc.getFactField();
currentValueMap.put(field, cellUtilities.asString(dcv));
break;
case VALUE:
currentValueMap.put(valueHolder.getFieldName(), valueHolder.getValue());
}
}
} else if (baseColumn instanceof BRLActionVariableColumn) {
final BRLActionVariableColumn baseBRLActionColumn = (BRLActionVariableColumn) baseColumn;
final BRLActionColumn brl = model.getBRLColumn(baseBRLActionColumn);
final RuleModel rm = new RuleModel();
IAction[] rhs = new IAction[brl.getDefinition().size()];
brl.getDefinition().toArray(rhs);
rm.rhs = rhs;
final RuleModelPeerVariableVisitor peerVariableVisitor = new RuleModelPeerVariableVisitor(rm, baseBRLActionColumn.getVarName());
List<ValueHolder> peerVariables = peerVariableVisitor.getPeerVariables();
// Add other variables values
for (ValueHolder valueHolder : peerVariables) {
switch(valueHolder.getType()) {
case TEMPLATE_KEY:
final BRLActionVariableColumn vc = getActionVariableColumnIndex(brl.getChildColumns(), valueHolder.getValue());
final int iCol = allColumns.indexOf(vc);
final DTCellValue52 dcv = rowData.get(iCol);
final String field = vc.getFactField();
currentValueMap.put(field, cellUtilities.asString(dcv));
break;
case VALUE:
currentValueMap.put(valueHolder.getFieldName(), valueHolder.getValue());
}
}
} else if (baseColumn instanceof ConditionCol52) {
final ConditionCol52 baseConditionColumn = (ConditionCol52) baseColumn;
final Pattern52 basePattern = this.model.getPattern(baseConditionColumn);
for (ConditionCol52 cc : basePattern.getChildColumns()) {
final int iCol = allColumns.indexOf(cc);
final DTCellValue52 dcv = rowData.get(iCol);
currentValueMap.put(cc.getFactField(), cellUtilities.asString(dcv));
}
} else if (baseColumn instanceof ActionSetFieldCol52) {
ActionSetFieldCol52 baseActionColumn = (ActionSetFieldCol52) baseColumn;
final String binding = baseActionColumn.getBoundName();
for (ActionCol52 ac : this.model.getActionCols()) {
if (ac instanceof ActionSetFieldCol52) {
final ActionSetFieldCol52 asf = (ActionSetFieldCol52) ac;
if (asf.getBoundName().equals(binding)) {
final int iCol = allColumns.indexOf(asf);
final DTCellValue52 dcv = rowData.get(iCol);
currentValueMap.put(asf.getFactField(), cellUtilities.asString(dcv));
}
}
}
} else if (baseColumn instanceof ActionInsertFactCol52) {
ActionInsertFactCol52 baseActionColumn = (ActionInsertFactCol52) baseColumn;
final String binding = baseActionColumn.getBoundName();
for (ActionCol52 ac : this.model.getActionCols()) {
if (ac instanceof ActionInsertFactCol52) {
final ActionInsertFactCol52 aif = (ActionInsertFactCol52) ac;
if (aif.getBoundName().equals(binding)) {
final int iCol = allColumns.indexOf(aif);
final DTCellValue52 dcv = rowData.get(iCol);
currentValueMap.put(aif.getFactField(), cellUtilities.asString(dcv));
}
}
}
}
return currentValueMap;
}
use of org.drools.workbench.models.guided.dtable.shared.model.BRLConditionColumn in project drools-wb by kiegroup.
the class PluginHandlerTest method testEditWhenColumnIsABRLConditionColumn.
@Test
public void testEditWhenColumnIsABRLConditionColumn() {
final BRLConditionColumn originalColumn = mock(BRLConditionColumn.class);
testEditBrlConditionColumn(originalColumn);
}
use of org.drools.workbench.models.guided.dtable.shared.model.BRLConditionColumn in project drools-wb by kiegroup.
the class ColumnManagementView method renderColumn.
HorizontalPanel renderColumn(final BRLConditionColumn conditionColumn) {
HorizontalPanel condition = newHorizontalPanel();
final ColumnLabelWidget columnLabel = makeColumnLabel(conditionColumn);
condition.add(columnLabel);
final FlowPanel buttons = new FlowPanel() {
{
add(editAnchor((clickEvent) -> {
presenter.getActiveDecisionTable().ifPresent(dt -> dt.editCondition(conditionColumn));
}));
if (presenter.isActiveDecisionTableEditable()) {
add(removeCondition(conditionColumn));
}
}
};
condition.add(buttons);
return condition;
}
Aggregations