use of org.drools.workbench.models.guided.dtable.shared.model.ActionSetFieldCol52 in project drools-wb by kiegroup.
the class DefaultValueDropDownManager method getCurrentValueMap.
@Override
public Map<String, String> getCurrentValueMap(Context context) {
Map<String, String> currentValueMap = new HashMap<String, String>();
final Pattern52 basePattern = context.getBasePattern();
final BaseColumn baseColumn = context.getBaseColumn();
// Get values for all Constraints or Actions on the same pattern as the baseColumn
if (baseColumn instanceof ConditionCol52) {
for (ConditionCol52 cc : basePattern.getChildColumns()) {
currentValueMap.put(cc.getFactField(), getValue(cc));
}
} 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)) {
currentValueMap.put(asf.getFactField(), getValue(asf));
}
}
}
} 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)) {
currentValueMap.put(aif.getFactField(), getValue(aif));
}
}
}
}
return currentValueMap;
}
use of org.drools.workbench.models.guided.dtable.shared.model.ActionSetFieldCol52 in project drools-wb by kiegroup.
the class PluginHandler method edit.
public void edit(final ActionCol52 column) {
final DecisionTableColumnPlugin plugin;
if (column instanceof ActionWorkItemSetFieldCol52 || column instanceof ActionWorkItemInsertFactCol52) {
plugin = actionWorkItemSetFieldPlugin.get();
} else if (column instanceof ActionInsertFactCol52 || column instanceof ActionSetFieldCol52) {
plugin = actionSetFactPlugin.get();
} else if (column instanceof ActionRetractFactCol52) {
plugin = actionRetractFactPlugin.get();
} else if (column instanceof ActionWorkItemCol52) {
plugin = actionWorkItemPlugin.get();
} else if (column instanceof BRLActionColumn) {
plugin = brlActionColumnPlugin.get();
} else {
return;
}
plugin.setOriginalColumnConfig52(column);
openWizard(plugin);
}
use of org.drools.workbench.models.guided.dtable.shared.model.ActionSetFieldCol52 in project drools-wb by kiegroup.
the class ActionSetFieldColumnSynchronizer method append.
@Override
public void append(final ColumnMetaData metaData) throws VetoException {
if (!handlesAppend(metaData)) {
return;
}
final ActionSetFieldCol52 column = (ActionSetFieldCol52) metaData.getColumn();
final OptionalInt targetIndex = findLastIndexOfActionSetFieldColumn(column);
if (targetIndex.isPresent()) {
model.getActionCols().add(targetIndex.getAsInt() + 1, column);
synchroniseAppendColumn(column);
} else {
model.getActionCols().add(column);
synchroniseAppendColumn(column);
}
}
use of org.drools.workbench.models.guided.dtable.shared.model.ActionSetFieldCol52 in project drools-wb by kiegroup.
the class RowExpanderTests method testExpansionWithGuvnorEnums.
@Test
public void testExpansionWithGuvnorEnums() {
GuidedDecisionTable52 model = new GuidedDecisionTable52();
final ModuleDataModelOracle projectLoader = ModuleDataModelOracleBuilder.newModuleOracleBuilder(new RawMVELEvaluator()).addFact("Driver").addField(new ModelField("age", Integer.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_NUMERIC_INTEGER)).addField(new ModelField("name", String.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_STRING)).addField(new ModelField("dateOfBirth", Boolean.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_DATE)).addField(new ModelField("approved", Boolean.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_BOOLEAN)).end().build();
final PackageDataModelOracle packageLoader = PackageDataModelOracleBuilder.newPackageOracleBuilder(new RawMVELEvaluator()).setModuleOracle(projectLoader).addEnum("'Driver.name' : ['f1a', 'f1b'], 'Driver.age' : ['f2a', 'f2b'], 'Driver.dateOfBirth' : ['f3a', 'f3b'], 'Driver.approved' : ['f4a', 'f4b']", Thread.currentThread().getContextClassLoader()).build();
// Emulate server-to-client conversions
final AsyncPackageDataModelOracle oracle = getOracle();
final PackageDataModelOracleBaselinePayload dataModel = new PackageDataModelOracleBaselinePayload();
dataModel.setModelFields(projectLoader.getModuleModelFields());
dataModel.setWorkbenchEnumDefinitions(packageLoader.getPackageWorkbenchDefinitions());
populateDataModelOracle(mock(Path.class), model, oracle, dataModel);
Pattern52 p1 = new Pattern52();
p1.setBoundName("c1");
p1.setFactType("Driver");
ConditionCol52 c1 = new ConditionCol52();
c1.setFactField("name");
c1.setOperator("==");
c1.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1.getChildColumns().add(c1);
model.getConditions().add(p1);
Pattern52 p2 = new Pattern52();
p2.setBoundName("c2");
p2.setFactType("Driver");
ConditionCol52 c2 = new ConditionCol52();
c2.setFactField("age");
c2.setOperator("==");
c2.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p2.getChildColumns().add(c2);
model.getConditions().add(p2);
Pattern52 p3 = new Pattern52();
p3.setBoundName("c3");
p3.setFactType("Driver");
ConditionCol52 c3 = new ConditionCol52();
c3.setFactField("dateOfBirth");
c3.setOperator("==");
c3.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p3.getChildColumns().add(c3);
model.getConditions().add(p3);
Pattern52 p4 = new Pattern52();
p4.setBoundName("c4");
p4.setFactType("Driver");
ConditionCol52 c4 = new ConditionCol52();
c4.setFactField("approved");
c4.setOperator("==");
c4.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p4.getChildColumns().add(c4);
model.getConditions().add(p4);
ActionSetFieldCol52 a1 = new ActionSetFieldCol52();
a1.setBoundName("c1");
a1.setFactField("name");
model.getActionCols().add(a1);
ActionInsertFactCol52 a2 = new ActionInsertFactCol52();
a2.setBoundName("a2");
a2.setFactType("Driver");
a2.setFactField("name");
model.getActionCols().add(a2);
RowExpander re = new RowExpander(model, oracle);
List<RowExpander.ColumnValues> columns = re.getColumns();
assertEquals(8, columns.size());
assertEquals(1, columns.get(0).values.size());
assertEquals(1, columns.get(1).values.size());
assertEquals(2, columns.get(2).values.size());
assertEquals(2, columns.get(3).values.size());
assertEquals(2, columns.get(4).values.size());
assertEquals(2, columns.get(5).values.size());
assertEquals(1, columns.get(6).values.size());
assertEquals(1, columns.get(7).values.size());
assertEquals("f1a", columns.get(2).values.get(0).getStringValue());
assertEquals("f1b", columns.get(2).values.get(1).getStringValue());
assertEquals("f2a", columns.get(3).values.get(0).getStringValue());
assertEquals("f2b", columns.get(3).values.get(1).getStringValue());
assertEquals("f3a", columns.get(4).values.get(0).getStringValue());
assertEquals("f3b", columns.get(4).values.get(1).getStringValue());
assertEquals("f4a", columns.get(5).values.get(0).getStringValue());
assertEquals("f4b", columns.get(5).values.get(1).getStringValue());
assertNull(columns.get(6).values.get(0));
assertNull(columns.get(7).values.get(0));
RowExpander.RowIterator ri = re.iterator();
assertTrue(ri.hasNext());
}
use of org.drools.workbench.models.guided.dtable.shared.model.ActionSetFieldCol52 in project drools-wb by kiegroup.
the class RowExpanderTests method testExpansionWithGuvnorDependentEnumsExplicitExpansion3_2enum_x_2values.
@Test
public void testExpansionWithGuvnorDependentEnumsExplicitExpansion3_2enum_x_2values() {
GuidedDecisionTable52 model = new GuidedDecisionTable52();
final String enumDefinitions = "'Fact.field1' : ['f1a', 'f1b'], " + "'Fact.field2[field1=f1a]' : ['f1af2a', 'f1af2b'], " + "'Fact.field2[field1=f1b]' : ['f1bf2a', 'f1bf2b']";
final ModuleDataModelOracle projectLoader = ModuleDataModelOracleBuilder.newModuleOracleBuilder(new RawMVELEvaluator()).addFact("Fact").addField(new ModelField("field1", String.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_STRING)).addField(new ModelField("field2", String.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_STRING)).end().build();
final PackageDataModelOracle packageLoader = PackageDataModelOracleBuilder.newPackageOracleBuilder(new RawMVELEvaluator()).setModuleOracle(projectLoader).addEnum(enumDefinitions, Thread.currentThread().getContextClassLoader()).build();
// Emulate server-to-client conversions
final AsyncPackageDataModelOracle oracle = getOracle();
final PackageDataModelOracleBaselinePayload dataModel = new PackageDataModelOracleBaselinePayload();
dataModel.setModelFields(projectLoader.getModuleModelFields());
dataModel.setWorkbenchEnumDefinitions(packageLoader.getPackageWorkbenchDefinitions());
populateDataModelOracle(mock(Path.class), model, oracle, dataModel);
Pattern52 p1 = new Pattern52();
p1.setBoundName("f1");
p1.setFactType("Fact");
model.getConditions().add(p1);
ConditionCol52 c1 = new ConditionCol52();
c1.setFactField("field1");
c1.setOperator("==");
c1.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1.getChildColumns().add(c1);
ConditionCol52 c2 = new ConditionCol52();
c2.setFactField("field2");
c2.setOperator("==");
c2.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1.getChildColumns().add(c2);
ActionSetFieldCol52 a1 = new ActionSetFieldCol52();
a1.setBoundName("f1");
a1.setFactField("field1");
model.getActionCols().add(a1);
ActionInsertFactCol52 a2 = new ActionInsertFactCol52();
a2.setBoundName("f2");
a2.setFactType("Fact");
a2.setFactField("field1");
model.getActionCols().add(a2);
RowExpander re = new RowExpander(model, oracle);
// Explicitly expand the first column, not the second
re.setExpandColumn(c1, false);
re.setExpandColumn(c2, true);
List<RowExpander.ColumnValues> columns = re.getColumns();
assertEquals(6, columns.size());
assertTrue(columns.get(0) instanceof RowExpander.ColumnValues);
assertTrue(columns.get(1) instanceof RowExpander.ColumnValues);
assertTrue(columns.get(2) instanceof RowExpander.ColumnValues);
assertTrue(columns.get(3) instanceof RowExpander.ColumnDynamicValues);
assertTrue(columns.get(4) instanceof RowExpander.ColumnValues);
assertTrue(columns.get(5) instanceof RowExpander.ColumnValues);
// Can't check size of values for ColumnDynamicValues as they depend on the other columns
assertEquals(1, columns.get(0).values.size());
assertEquals(1, columns.get(1).values.size());
assertEquals(1, columns.get(2).values.size());
assertEquals(1, columns.get(4).values.size());
assertEquals(1, columns.get(5).values.size());
// Expected data
// --> null, null
RowExpander.RowIterator ri = re.iterator();
assertTrue(ri.hasNext());
List<DTCellValue52> row0 = ri.next();
assertEquals(6, row0.size());
assertNull(row0.get(2));
assertNull(row0.get(3));
assertFalse(ri.hasNext());
}
Aggregations