use of org.talend.core.model.process.IConnection in project tdi-studio-se by Talend.
the class PropertiesTableEditorView method createColumns.
/*
* (non-Javadoc)
*
* @see
* org.talend.commons.ui.swt.extended.macrotable.AbstractExtendedTableViewer#createColumns(org.talend.commons.ui
* .swt.tableviewer.TableViewerCreator, org.eclipse.swt.widgets.Table)
*/
@SuppressWarnings("unchecked")
@Override
protected void createColumns(final TableViewerCreator<B> tableViewerCreator, final Table table) {
// there's two lists of values, one that will be in the table
// and the other will be stored as the current value in the property
// there is two lists because of the undo / redo capabilities
PropertiesTableEditorModel model = getModel();
TalendProposalProvider processProposalProvider = new TalendProposalProvider(model.getProcess());
String[] titles = model.getTitles();
final Object[] itemsValue = model.getItemsValue();
final String[] items = model.getItems();
// final Element elem = model.getElement();
final IElementParameter param = model.getElemParameter();
final IElement element = model.getElement();
for (int i = 0; i < titles.length; i++) {
final int curCol = i;
final IElementParameter currentParam = (IElementParameter) itemsValue[i];
// if all is empty, show it always.
boolean toDisplay = currentParam.isShow(currentParam.getShowIf(), currentParam.getNotShowIf(), element.getElementParameters());
if (!toDisplay) {
List<Map<String, Object>> fullTable = (List<Map<String, Object>>) param.getValue();
for (int curLine = 0; curLine < fullTable.size(); curLine++) {
((ElementParameter) currentParam).setCurrentRow(curLine);
if (currentParam.isShow(element.getElementParameters())) {
toDisplay = true;
break;
}
}
}
if (toDisplay) {
final TableViewerCreatorColumn column = new TableViewerCreatorColumn(tableViewerCreator);
column.setTitle(titles[i]);
column.setModifiable(true);
column.setMinimumWidth(100);
column.setWeight(20);
switch(currentParam.getFieldType()) {
case CONTEXT_PARAM_NAME_LIST:
case CLOSED_LIST:
case LOOKUP_COLUMN_LIST:
case COLUMN_LIST:
case CONNECTION_LIST:
case DBTYPE_LIST:
case COMPONENT_LIST:
case PREV_COLUMN_LIST:
final ComboBoxCellEditor cellEditor = new ComboBoxCellEditor(table, currentParam.getListItemsDisplayName());
final IElementParameter copyOfTmpParam = currentParam;
((CCombo) cellEditor.getControl()).setEditable(false);
((CCombo) cellEditor.getControl()).setEnabled(!(param.isRepositoryValueUsed() || param.isReadOnly() || currentParam.isReadOnly()));
column.setCellEditor(cellEditor, new CellEditorValueAdapter() {
@Override
public String getColumnText(CellEditor cellEditor, Object bean, Object cellEditorValue) {
return (String) cellEditorValue;
}
@Override
public Object getOriginalTypedValue(CellEditor cellEditor, Object cellEditorTypedValue) {
Object returnedValue = null;
if (cellEditorTypedValue != null && cellEditorTypedValue instanceof Integer) {
int index = (Integer) cellEditorTypedValue;
String[] namesSet = ((CCombo) cellEditor.getControl()).getItems();
if (namesSet.length > 0 && index > -1 && index < namesSet.length) {
returnedValue = namesSet[index];
} else {
returnedValue = null;
}
} else {
returnedValue = null;
}
return returnedValue;
}
;
@Override
public Object getCellEditorTypedValue(CellEditor cellEditor, Object originalTypedValue) {
CCombo combo = (CCombo) cellEditor.getControl();
int rowNumber = ((Table) combo.getParent()).getSelectionIndex();
String[] listToDisplay = getItemsToDisplay(element, copyOfTmpParam, rowNumber);
if (!Arrays.equals(listToDisplay, ((ComboBoxCellEditor) cellEditor).getItems())) {
((ComboBoxCellEditor) cellEditor).setItems(listToDisplay);
}
Object returnedValue = 0;
if (originalTypedValue != null) {
String[] namesSet = listToDisplay;
for (int j = 0; j < namesSet.length; j++) {
if (namesSet[j].equals(originalTypedValue)) {
returnedValue = j;
break;
}
}
}
return returnedValue;
}
;
});
break;
case OPENED_LIST:
final EditableComboBoxCellEditor editCellEditor = new EditableComboBoxCellEditor(table, currentParam.getListItemsDisplayName());
table.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
String oldValue = null;
if (editCellEditor != null) {
if (!(editCellEditor.getValue() instanceof String)) {
return;
}
oldValue = (String) editCellEditor.getValue();
}
String[] columnItems = null;
if (table.getSelection() != null && table.getSelection().length > 0) {
TableItem tableItem = table.getSelection()[0];
if (tableItem.getData() instanceof Map) {
Map map = (Map) tableItem.getData();
if (currentParam.getFilter() != null && map.get(currentParam.getFilter()) instanceof String) {
String value = (String) map.get(currentParam.getFilter());
if (element instanceof Node) {
List<IConnection> listConnection = (List<IConnection>) ((Node) element).getInputs();
for (IConnection con : listConnection) {
if (con.getName().equals(value)) {
List<IMetadataColumn> columns = con.getMetadataTable().getListColumns();
columnItems = new String[columns.size()];
for (int i = 0; i < columns.size(); i++) {
columnItems[i] = columns.get(i).getLabel();
}
if (editCellEditor != null) {
List<String> ret = new ArrayList<String>();
for (String columnItem : columnItems) {
ret.add(columnItem);
}
for (int i = 0; i < currentParam.getListItemsDisplayName().length; i++) {
ret.add(currentParam.getListItemsDisplayName()[i]);
}
editCellEditor.setItems(ret.toArray(new String[0]));
editCellEditor.setValue(oldValue);
}
}
}
}
}
}
}
}
});
column.setCellEditor(editCellEditor);
break;
case MODULE_LIST:
column.setModifiable((!param.isRepositoryValueUsed()) && (!param.isReadOnly()) && (!currentParam.isReadOnly()));
ModuleListCellEditor moduleEditor = new ModuleListCellEditor(table, currentParam, param);
moduleEditor.setTableEditorView(this);
column.setCellEditor(moduleEditor);
break;
case COLOR:
column.setModifiable((!param.isRepositoryValueUsed()) && (!param.isReadOnly()) && (!currentParam.isReadOnly()));
// column.setDisplayedValue("");
column.setLabelProvider(null);
column.setCellEditor(new ColorCellEditor(table) {
@Override
protected void doSetValue(Object value) {
if (value instanceof String) {
super.doSetValue(ColorUtils.stringToRGB((String) value));
} else {
super.doSetValue(value);
}
}
@Override
protected void updateContents(Object value) {
if (value != null) {
if (value instanceof String) {
super.updateContents(ColorUtils.stringToRGB((String) value));
} else {
super.updateContents(value);
}
}
}
});
column.setColorProvider(new IColumnColorProvider() {
@Override
public Color getBackgroundColor(Object bean) {
Object value = ((Map<String, Object>) bean).get(items[curCol]);
if (value == null || (!(value instanceof String))) {
return Display.getCurrent().getSystemColor(SWT.COLOR_WHITE);
}
return new Color(null, ColorUtils.stringToRGB((String) value));
}
@Override
public Color getForegroundColor(Object bean) {
return null;
}
});
break;
case CHECK:
column.setModifiable((!param.isRepositoryValueUsed()) && (!param.isReadOnly()) && (!currentParam.isReadOnly()));
CheckColumnSelectionListener tableColumnSelectionListener = new CheckColumnSelectionListener(column, tableViewerCreator, currentParam);
if (!currentParam.isReadOnly()) {
column.setTableColumnSelectionListener(tableColumnSelectionListener);
}
column.setTableEditorContent(new CheckboxTableEditorContent());
Boolean curValue = (Boolean) currentParam.getValue();
if (curValue == null) {
curValue = Boolean.FALSE;
}
tableColumnSelectionListener.setChecked(curValue.booleanValue());
if (curValue.booleanValue()) {
column.setImageHeader(ImageProvider.getImage(EImage.CHECKED_ICON));
} else {
column.setImageHeader(ImageProvider.getImage(EImage.UNCHECKED_ICON));
}
//$NON-NLS-1$
column.setDisplayedValue("");
break;
case SCHEMA_TYPE:
case SCHEMA_REFERENCE:
column.setModifiable((!param.isRepositoryValueUsed()) && (!param.isReadOnly()) && (!currentParam.isReadOnly()));
final INode node = (INode) element;
// List<IMetadataTable> tables = node.getMetadataList();
// if (isEBCDICNode(node)) { // ebcdic
column.setLabelProvider(new IColumnLabelProvider() {
@Override
public String getLabel(Object bean) {
if (bean instanceof Map) {
Map<String, Object> valueMap = (Map<String, Object>) bean;
String value = (String) valueMap.get(IEbcdicConstant.FIELD_SCHEMA);
if (value != null && !"".equals(value)) {
//$NON-NLS-1$
IMetadataTable metadataTable = MetadataToolHelper.getMetadataTableFromNodeTableName(node, value);
if (metadataTable != null) {
if (isEBCDICNode(node)) {
if (isRepositorySchemaLine(node, valueMap)) {
//$NON-NLS-1$ //$NON-NLS-2$
return "Repository (" + metadataTable.getTableName() + ")";
} else {
//$NON-NLS-1$ //$NON-NLS-2$
return "Built-In (" + metadataTable.getTableName() + ")";
}
} else {
return metadataTable.getTableName();
}
} else {
return value;
}
}
}
//$NON-NLS-1$
return "";
}
});
// } else {
// column.setLabelProvider(null);
// }
SchemaCellEditor schemaEditor = new SchemaCellEditor(table, node);
schemaEditor.setTableEditorView(this);
column.setCellEditor(schemaEditor);
break;
case SAP_SCHEMA_TYPE:
column.setModifiable((!param.isRepositoryValueUsed()) && (!param.isReadOnly()) && (!currentParam.isReadOnly()));
final INode sapNode = (INode) element;
column.setLabelProvider(new IColumnLabelProvider() {
@Override
public String getLabel(Object bean) {
if (bean instanceof Map) {
Map<String, Object> valueMap = (Map<String, Object>) bean;
String value = (String) valueMap.get(IEbcdicConstant.FIELD_SCHEMA);
if (value != null && !"".equals(value)) {
//$NON-NLS-1$
IMetadataTable metadataTable = MetadataToolHelper.getMetadataTableFromNodeTableName(sapNode, value);
if (metadataTable != null) {
if (isEBCDICNode(sapNode)) {
if (isRepositorySchemaLine(sapNode, valueMap)) {
//$NON-NLS-1$ //$NON-NLS-2$
return "Repository (" + metadataTable.getTableName() + ")";
} else {
//$NON-NLS-1$ //$NON-NLS-2$
return "Built-In (" + metadataTable.getTableName() + ")";
}
} else if (isSAPNode(sapNode)) {
Object type = valueMap.get(ISAPConstant.TYPE);
if (type instanceof Integer) {
return "";
}
if (type.toString().equals(SINGLE) || type.toString().equals(STRUCTURE)) {
List<IMetadataColumn> columns = metadataTable.getListColumns(true);
StringBuffer values = new StringBuffer();
values.append(metadataTable.getTableName() + ":");
if (metadataTable.getListColumns(true).size() > 0) {
for (IMetadataColumn column : columns) {
values.append(column.getDefault() + ",");
}
String ret = values.toString();
return ret.substring(0, ret.length() - 1);
}
} else {
return metadataTable.getTableName();
}
} else {
return metadataTable.getTableName();
}
} else {
return value;
}
}
}
//$NON-NLS-1$
return "";
}
});
schemaEditor = new SchemaCellEditor(table, sapNode);
schemaEditor.setTableEditorView(this);
column.setCellEditor(schemaEditor);
break;
// hywang add for feature 6484
case RULE_TYPE:
//$NON-NLS-1$
column.setTitle("Rule");
column.setModifiable((!param.isRepositoryValueUsed()) && (!param.isReadOnly()) && (!currentParam.isReadOnly()));
final INode node1 = (INode) element;
column.setLabelProvider(new IColumnLabelProvider() {
@Override
public String getLabel(Object bean) {
if (bean instanceof Map) {
Map<String, Object> valueMap = (Map<String, Object>) bean;
String value = (String) valueMap.get(IRuleConstant.FIELD_RULE);
if (value != null && !"".equals(value)) {
//$NON-NLS-1$
IMetadataTable metadataTable = MetadataToolHelper.getMetadataTableFromNodeTableName(node1, value);
if (metadataTable != null) {
return metadataTable.getTableName();
} else {
return value;
}
}
}
//$NON-NLS-1$
return "";
}
});
RuleCellEditor ruleEditor = new RuleCellEditor(table, node1);
ruleEditor.setTableEditorView(this);
column.setCellEditor(ruleEditor);
break;
case SCHEMA_XPATH_QUERYS:
column.setModifiable((!param.isRepositoryValueUsed()) && (!param.isReadOnly()) && (!currentParam.isReadOnly()));
final INode node2 = (INode) element;
SchemaXPathQuerysCellEditor schemaXPathEditor = new SchemaXPathQuerysCellEditor(table, node2);
schemaXPathEditor.setTableEditorView(this);
column.setCellEditor(schemaXPathEditor);
break;
case MULTI_PATTERN:
column.setModifiable(true);
PatternCellEditor patternEditor = new PatternCellEditor(table, element);
patternEditor.setTableEditorView(this);
column.setCellEditor(patternEditor);
break;
case PATTERN_PROPERTY:
column.setModifiable(true);
PatternPropertyCellEditor patternPropertyEditor = new PatternPropertyCellEditor(table, element);
patternPropertyEditor.setTableEditorView(this);
column.setCellEditor(patternPropertyEditor);
break;
default:
// TEXT
TextCellEditor tcEditor = null;
if (((i == 0) && (param.isBasedOnSchema() || param.isBasedOnSubjobStarts())) || (param.isRepositoryValueUsed()) || (param.isReadOnly()) || currentParam.isReadOnly()) {
// read only cell
if (!param.getElement().isReadOnly() && (param.getName().equals("HADOOP_ADVANCED_PROPERTIES") || param.getName().equals("SPARK_ADVANCED_PROPERTIES") || param.getName().equals("HBASE_PARAMETERS"))) {
if (currentParam.isNoContextAssist()) {
tcEditor = new TextCellEditor(table);
} else {
TextCellEditorWithProposal textCellEditor = new TextCellEditorWithProposal(table, column);
textCellEditor.setContentProposalProvider(processProposalProvider);
tcEditor = textCellEditor;
}
}
} else {
// writable cell
if (currentParam.isNoContextAssist()) {
tcEditor = new TextCellEditor(table);
} else {
TextCellEditorWithProposal textCellEditor = new TextCellEditorWithProposal(table, column);
textCellEditor.setContentProposalProvider(processProposalProvider);
tcEditor = textCellEditor;
}
}
if (tcEditor != null) {
column.setCellEditor(tcEditor);
column.setModifiable((!param.isRepositoryValueUsed()) && (!param.isReadOnly()) && (!currentParam.isReadOnly()));
}
}
// for all kinds of column, check if read only or not when edit the field.
column.setColumnCellModifier(new ColumnCellModifier(column) {
@Override
public boolean canModify(Object bean) {
if (param.getName().equals("HADOOP_ADVANCED_PROPERTIES") || param.getName().equals("SPARK_ADVANCED_PROPERTIES") || param.getName().equals("HBASE_PARAMETERS")) {
boolean canModify = super.canModify(bean);
if (canModify) {
Map<String, Object> valueMap = (Map<String, Object>) bean;
List<Map<String, Object>> fullValues = (List<Map<String, Object>>) param.getValue();
((ElementParameter) currentParam).setCurrentRow(fullValues.indexOf(valueMap));
if (currentParam.isReadOnly(element.getElementParameters())) {
return false;
}
} else {
Map<String, Object> valueMap = (Map<String, Object>) bean;
if (valueMap.get("BUILDIN") != null && valueMap.get("BUILDIN").equals("TRUE")) {
return true;
} else {
return false;
}
}
return canModify;
}
boolean canModify = super.canModify(bean);
if (canModify) {
Map<String, Object> valueMap = (Map<String, Object>) bean;
List<Map<String, Object>> fullValues = (List<Map<String, Object>>) param.getValue();
((ElementParameter) currentParam).setCurrentRow(fullValues.indexOf(valueMap));
if (currentParam.isReadOnly(element.getElementParameters())) {
return false;
}
}
return canModify;
}
});
column.setColorProvider(new IColumnColorProvider<B>() {
@Override
public Color getBackgroundColor(B bean) {
Map<String, Object> valueMap = (Map<String, Object>) bean;
List<Map<String, Object>> fullValues = (List<Map<String, Object>>) param.getValue();
// hyWang add varriable index for bug 7294
int index = fullValues.indexOf(valueMap);
if (index >= 0) {
((ElementParameter) currentParam).setCurrentRow(index);
if (currentParam.isReadOnly(element.getElementParameters())) {
return AbstractMetadataTableEditorView.READONLY_CELL_BG_COLOR;
}
}
if (param.getName().equals("HADOOP_ADVANCED_PROPERTIES") || param.getName().equals("SPARK_ADVANCED_PROPERTIES") || param.getName().equals("HBASE_PARAMETERS")) {
if (valueMap.get("BUILDIN") == null || valueMap.get("BUILDIN") != null && valueMap.get("BUILDIN").equals("")) {
return Display.getCurrent().getSystemColor(SWT.COLOR_GRAY);
}
}
if (currentParam.getFieldType() == EParameterFieldType.CONTEXT_PARAM_NAME_LIST) {
Object value = ((Map<String, Object>) bean).get(items[curCol]);
boolean found = false;
Object[] items = currentParam.getListItemsValue();
for (Object item : items) {
if (item.equals(value)) {
found = true;
break;
}
}
if (!found) {
return Display.getCurrent().getSystemColor(SWT.COLOR_RED);
}
}
return null;
}
@Override
public Color getForegroundColor(B bean) {
return null;
}
});
column.setBeanPropertyAccessors(new IBeanPropertyAccessors<B, Object>() {
@Override
public Object get(B bean) {
Object value = ((Map<String, Object>) bean).get(items[curCol]);
if (value == null) {
//$NON-NLS-1$
return "";
}
if (itemsValue[curCol] instanceof IElementParameter) {
IElementParameter tmpParam = (IElementParameter) itemsValue[curCol];
boolean hideValue = false;
if (!tmpParam.isReadOnly()) {
if ((tmpParam.getReadOnlyIf() != null || tmpParam.getNotReadOnlyIf() != null) && tmpParam.isReadOnly(element.getElementParameters())) {
hideValue = true;
}
}
switch(tmpParam.getFieldType()) {
case CONTEXT_PARAM_NAME_LIST:
case CLOSED_LIST:
case COMPONENT_LIST:
case COLUMN_LIST:
case CONNECTION_LIST:
case LOOKUP_COLUMN_LIST:
case PREV_COLUMN_LIST:
case DBTYPE_LIST:
if (hideValue) {
//$NON-NLS-1$
return "";
}
String[] namesSet = tmpParam.getListItemsDisplayName();
if (namesSet.length == 0) {
return tmpParam.getDefaultClosedListValue();
}
if (value instanceof String) {
boolean found = false;
int index = 0;
if (currentParam.getFieldType() == EParameterFieldType.CONTEXT_PARAM_NAME_LIST) {
// if not found, won't use first(index 0) instead
index = -1;
}
Object[] items = currentParam.getListItemsValue();
for (int j = 0; j < items.length && !found; j++) {
if (items[j].equals(value)) {
found = true;
index = j;
}
}
value = new Integer(index);
}
if (value != null && ((Integer) value) >= 0) {
return namesSet[(Integer) value];
}
return null;
case OPENED_LIST:
if (hideValue) {
//$NON-NLS-1$
return "";
}
String[] listItemsValue = tmpParam.getListItemsDisplayName();
if (listItemsValue.length == 0) {
return value;
}
int index = -1;
if (value instanceof String) {
boolean found = false;
Object[] items = ((IElementParameter) itemsValue[curCol]).getListItemsValue();
for (int j = 0; j < items.length && !found; j++) {
if (items[j].equals(value)) {
found = true;
index = j;
}
}
}
Integer count = new Integer(index);
if (count >= 0) {
return listItemsValue[count];
} else if (count < 0) {
return value;
}
return value;
case CHECK:
if (hideValue) {
return false;
}
if (value instanceof String) {
return new Boolean((String) value);
}
return value;
case RADIO:
if (hideValue) {
return false;
}
if (value instanceof String) {
return new Boolean((String) value);
}
return value;
case COLOR:
if (value instanceof String) {
return ColorUtils.stringToRGB((String) value);
}
// already RGB
return value;
default:
// TEXT
if (hideValue) {
//$NON-NLS-1$
return "";
}
return value;
}
}
return value;
}
@Override
public void set(B bean, Object value) {
Object finalValue = value;
IElementParameter tmpParam = (IElementParameter) itemsValue[curCol];
// TODO should test if this parameter is contained in any other show if / not show if, etc..
boolean included = false;
for (Object object : param.getListItemsValue()) {
if (object instanceof IElementParameter) {
if (((IElementParameter) object).getShowIf() != null && ((IElementParameter) object).getShowIf().contains(tmpParam.getName())) {
included = true;
break;
}
if (((IElementParameter) object).getNotShowIf() != null && ((IElementParameter) object).getNotShowIf().contains(tmpParam.getName())) {
included = true;
break;
}
if (((IElementParameter) object).getReadOnlyIf() != null && ((IElementParameter) object).getReadOnlyIf().contains(tmpParam.getName())) {
included = true;
break;
}
if (((IElementParameter) object).getNotReadOnlyIf() != null && ((IElementParameter) object).getNotReadOnlyIf().contains(tmpParam.getName())) {
included = true;
break;
}
}
}
if (included) {
IElementParameter param = element.getElementParameter(EParameterName.UPDATE_COMPONENTS.getName());
if (param != null) {
param.setValue(Boolean.TRUE);
}
}
boolean isNeedReCheck = false;
switch(tmpParam.getFieldType()) {
case CONTEXT_PARAM_NAME_LIST:
case CLOSED_LIST:
case COLUMN_LIST:
case COMPONENT_LIST:
case CONNECTION_LIST:
case LOOKUP_COLUMN_LIST:
case PREV_COLUMN_LIST:
isNeedReCheck = true;
if (value instanceof String) {
Object[] itemNames = ((IElementParameter) itemsValue[curCol]).getListItemsDisplayName();
Object[] itemValues = ((IElementParameter) itemsValue[curCol]).getListItemsValue();
boolean found = false;
int index = 0;
for (int j = 0; j < itemNames.length && !found; j++) {
if (itemNames[j].equals(value)) {
found = true;
index = j;
}
}
if (value != null && (index >= 0)) {
finalValue = itemValues[new Integer(index)];
}
}
break;
case OPENED_LIST:
if (value instanceof String) {
Object[] itemNames = ((IElementParameter) itemsValue[curCol]).getListItemsDisplayName();
Object[] itemValues = ((IElementParameter) itemsValue[curCol]).getListItemsValue();
boolean found = false;
int index = -1;
for (int j = 0; j < itemNames.length && !found; j++) {
if (itemNames[j].equals(value)) {
found = true;
index = j;
}
}
if (value != null && (index >= 0)) {
finalValue = itemValues[new Integer(index)];
} else if (value != null && (index < 0)) {
finalValue = value;
}
}
break;
case COLOR:
if (value instanceof RGB) {
RGB rgb = (RGB) value;
//$NON-NLS-1$ //$NON-NLS-2$
finalValue = rgb.red + ";" + rgb.green + ";" + rgb.blue;
}
default:
}
((Map<String, Object>) bean).put(items[curCol], finalValue);
resetValuesIfNeeded(element, param, (Map<String, Object>) bean);
/*
* TDI-6568, in fact, no need reset the value. just want to enable
* "firePropertyChange(RETURNS_CHANGED, null, null)" in Node.
*/
if (param.getFieldType().equals(EParameterFieldType.TABLE)) {
element.setPropertyValue(param.getName(), param.getValue());
}
if (isNeedReCheck && element instanceof Node) {
IProcess process = ((Node) element).getProcess();
if (process instanceof IProcess2) {
((IProcess2) process).checkProcess();
}
// enable to refresh component setting after change modules.
// so far, for cMessagingEndpoint (TUP-1119)
final IElementParameter copyOfTmpParam = currentParam;
if (element != null && "LIBPATH".equals(copyOfTmpParam.getName())) {
//$NON-NLS-1$
IElementParameter updateComponentsParam = element.getElementParameter(EParameterName.UPDATE_COMPONENTS.getName());
if (updateComponentsParam != null) {
updateComponentsParam.setValue(Boolean.TRUE);
}
}
}
}
});
}
}
}
use of org.talend.core.model.process.IConnection in project tdi-studio-se by Talend.
the class OracleGenerationManager method addQuoteForSpecialChar.
@Override
protected String addQuoteForSpecialChar(String expression, DbMapComponent component) {
if (expression == null) {
return expression;
}
List<String> specialList = new ArrayList<String>();
Map<String, List<String>> map = new HashMap<String, List<String>>();
List<IConnection> inputConnections = (List<IConnection>) component.getIncomingConnections();
if (inputConnections == null) {
return expression;
}
for (IConnection iconn : inputConnections) {
IMetadataTable metadataTable = iconn.getMetadataTable();
if (metadataTable != null) {
List<IMetadataColumn> lColumn = metadataTable.getListColumns();
for (IMetadataColumn co : lColumn) {
String columnLabel = co.getOriginalDbColumnName();
String exp = MetadataToolHelper.validateValueNoLengthLimit(columnLabel);
if (!exp.equals(columnLabel)) {
specialList.add(columnLabel);
}
}
}
}
for (String specialColumn : specialList) {
if (expression.contains(specialColumn)) {
if (map.get(expression) == null) {
List<String> list = new ArrayList<String>();
list.add(specialColumn);
map.put(expression, list);
} else {
List<String> list = map.get(expression);
list.add(specialColumn);
}
}
}
if (map.size() > 0) {
List<String> list = map.get(expression);
Collections.sort(list);
String specialColumn = list.get(list.size() - 1);
if (expression.contains(specialColumn)) {
int begin = expression.indexOf(specialColumn);
int length = specialColumn.length();
int allLength = expression.length();
if (specialColumn.trim().startsWith("\\\"") && specialColumn.trim().endsWith("\\\"")) {
return expression;
}
expression = expression.substring(0, begin) + "\\\"" + expression.substring(begin, begin + length) + "\\\"" + expression.substring(begin + length, allLength);
return expression;
}
}
return expression;
}
use of org.talend.core.model.process.IConnection in project tdi-studio-se by Talend.
the class PatternCellEditor method openDialogBox.
//TODO: when no one use repository, need to set back to "Built-in"
@Override
protected Object openDialogBox(Control cellEditorWindow) {
ITDQPatternService service = null;
if (GlobalServiceRegister.getDefault().isServiceRegistered(ITDQPatternService.class)) {
service = (ITDQPatternService) GlobalServiceRegister.getDefault().getService(ITDQPatternService.class);
}
if (service != null) {
IElementParameter typeParam = node.getElementParameter("TYPE");
if (typeParam == null && node.getIncomingConnections().size() > 0) {
IConnection iConnection = node.getIncomingConnections().get(0);
typeParam = iConnection.getElementParameter("TYPE");
}
String[] patternInfo = service.selectPattern(cellEditorWindow.getShell(), typeParam);
//modify the same row's pattern info: id, name, regex
if (patternInfo != null) {
int index = 0;
TableViewer tableViewer = getTableViewer();
if (tableViewer != null) {
index = tableViewer.getTable().getSelectionIndex();
}
updatePatterInfoOnRow(index, patternInfo);
// if any row select a pattern, set the node's PROPERTY = REPOSITORY
IElementParameter property = node.getElementParameter(EParameterName.PROPERTY_TYPE.getName());
if (property != null) {
IElementParameter repositoryParam = node.getElementParameter(EParameterName.REPOSITORY_PROPERTY_TYPE.getName());
if (StringUtils.isNotBlank(patternInfo[0])) {
property.setValue(EmfComponent.REPOSITORY);
if (repositoryParam != null) {
repositoryParam.setValue(patternInfo[0]);
}
}
}
}
return patternInfo[1];
}
return null;
}
use of org.talend.core.model.process.IConnection in project tdi-studio-se by Talend.
the class JobletUtil method getConnSubjob.
public List<SubjobContainer> getConnSubjob(SubjobContainer sub, List<ISubjobContainer> proSubList) {
List<SubjobContainer> subList = new ArrayList<SubjobContainer>();
if (!proSubList.contains(sub)) {
return subList;
}
for (NodeContainer container : sub.getNodeContainers()) {
List<IConnection> inList = new ArrayList<IConnection>();
List<IConnection> outList = new ArrayList<IConnection>();
if ((container instanceof AbstractJobletContainer)) {
// && ((JobletContainer) container).isCollapsed()
inList.addAll(((JobletContainer) container).getInputs());
outList.addAll(((JobletContainer) container).getOutputs());
} else {
inList.addAll(container.getNode().getIncomingConnections());
outList.addAll(container.getNode().getOutgoingConnections());
}
for (IConnection conn : inList) {
INode source = conn.getSource();
if (source instanceof Node) {
SubjobContainer tem = ((Node) conn.getSource()).getNodeContainer().getSubjobContainer();
if (tem != null && sub != tem) {
if (subList.contains(tem) || !proSubList.contains(tem)) {
continue;
}
subList.add(tem);
proSubList.remove(tem);
subList.addAll(getConnSubjob(tem, proSubList));
}
}
}
for (IConnection conn : outList) {
INode target = conn.getTarget();
if (target instanceof Node) {
SubjobContainer tem = ((Node) conn.getTarget()).getNodeContainer().getSubjobContainer();
if (tem != null && sub != tem) {
if (subList.contains(tem) || !proSubList.contains(tem)) {
continue;
}
subList.add(tem);
proSubList.remove(tem);
subList.addAll(getConnSubjob(tem, proSubList));
}
}
}
}
return subList;
}
use of org.talend.core.model.process.IConnection in project tdi-studio-se by Talend.
the class DCSchemaController method createButtonCommand.
/*
* (non-Javadoc)
*
* @see
* org.talend.designer.core.ui.editor.properties.controllers.AbstractRepositoryController#createButtonCommand(org
* .eclipse.swt.widgets.Button)
*/
@SuppressWarnings("unchecked")
protected Command createButtonCommand(Button button) {
Button inputButton = button;
Map<INode, Map<IMetadataTable, Boolean>> inputInfos = new HashMap<INode, Map<IMetadataTable, Boolean>>();
Node node;
if (elem instanceof Node) {
node = (Node) elem;
} else {
// else instanceof Connection
node = (Node) ((Connection) elem).getSource();
}
String componentName = node.getComponent().getName();
initConnectionParameters();
IContextManager manager;
if (part == null) {
manager = new EmptyContextManager();
} else {
manager = part.getProcess().getContextManager();
}
IElement oldElement = elem;
if (isUseExistingConnection()) {
this.elem = connectionNode;
initConnectionParametersWithContext(connectionNode, manager.getDefaultContext());
} else {
initConnectionParametersWithContext(elem, manager.getDefaultContext());
}
this.elem = oldElement;
if (!GlobalServiceRegister.getDefault().isServiceRegistered(IDCService.class)) {
return null;
}
IDCService restService = (IDCService) GlobalServiceRegister.getDefault().getService(IDCService.class);
restService.setupRestHelperInstance(connParameters.getHost(), connParameters.getPort(), connParameters.getUserName(), connParameters.getPassword(), connParameters.getDirectory(), connParameters.isHttps());
String entityName = elem.getPropertyValue("ENTITY").toString().replaceAll("\"", "");
IMetadataTable inputMetadata = null, inputMetaCopy = null;
Connection inputConec = null;
String propertyName = (String) inputButton.getData(PARAMETER_NAME);
IElementParameter param = node.getElementParameter(propertyName);
IElementParameter connectionParam = param.getChildParameters().get(EParameterName.CONNECTION.getName());
String connectionName = null;
if (connectionParam != null) {
connectionName = (String) connectionParam.getValue();
}
boolean inputReadOnly = false, outputReadOnly = false, inputReadOnlyNode = false, inputReadOnlyParam = false;
for (Connection connec : (List<Connection>) node.getIncomingConnections()) {
if (connec.isActivate() && (EConnectionType.FLOW_MAIN.equals(connec.getLineStyle()) || EConnectionType.TABLE.equals(connec.getLineStyle()) || EConnectionType.FLOW_MERGE.equals(connec.getLineStyle()) || EConnectionType.FLOW_REF.equals(connec.getLineStyle()))) {
if (connectionName != null && !connec.getName().equals(connectionName)) {
continue;
}
inputMetadata = connec.getMetadataTable();
inputMetaCopy = inputMetadata.clone();
inputConec = connec;
if (connec.getSource().isReadOnly()) {
inputReadOnlyNode = true;
} else {
for (IElementParameter curParam : connec.getSource().getElementParameters()) {
if (curParam.getFieldType() == EParameterFieldType.SCHEMA_TYPE || curParam.getFieldType() == EParameterFieldType.DCSCHEMA) {
if (curParam.isReadOnly()) {
inputReadOnlyParam = true;
}
}
}
}
// check if the inputMetadata is readonly
if (inputMetadata != null) {
for (IMetadataColumn column : inputMetadata.getListColumns()) {
IMetadataColumn columnCopied = inputMetaCopy.getColumn(column.getLabel());
columnCopied.setCustom(column.isCustom());
columnCopied.setReadOnly(column.isReadOnly());
}
inputMetaCopy.setReadOnly(inputMetadata.isReadOnly());
inputReadOnly = prepareReadOnlyTable(inputMetaCopy, inputReadOnlyParam, inputReadOnlyNode);
}
// store the value for Dialog
Map<IMetadataTable, Boolean> oneInput = new HashMap<IMetadataTable, Boolean>();
oneInput.put(inputMetaCopy, inputReadOnly);
inputInfos.put(connec.getSource(), oneInput);
}
}
if (connectionParam != null && inputMetadata == null) {
//$NON-NLS-1$
MessageDialog.openError(//$NON-NLS-1$
button.getShell(), //$NON-NLS-1$
Messages.getString("SchemaTypeController.inputNotSet"), //$NON-NLS-1$
Messages.getString("SchemaTypeController.connectionNotAvaliable"));
return null;
}
IMetadataTable originaleMetadataTable = getMetadataTableFromXml(node);
// check if the outputMetadata is readonly
IMetadataTable originaleOutputTable = node.getMetadataFromConnector(param.getContext());
IMetadataTable outputMetaCopy = originaleOutputTable.clone();
for (IMetadataColumn column : originaleOutputTable.getListColumns()) {
IMetadataColumn columnCopied = outputMetaCopy.getColumn(column.getLabel());
columnCopied.setCustom(column.isCustom());
columnCopied.setReadOnly(column.isReadOnly());
}
outputMetaCopy.setReadOnly(originaleOutputTable.isReadOnly() || param.isReadOnly(node.getElementParametersWithChildrens()));
outputMetaCopy.sortCustomColumns();
// create the MetadataDialog
MetadataDialog metaDialog = null;
if (inputMetadata != null) {
if (inputInfos != null && inputInfos.size() > 1 && connectionName == null) {
MetadataDialogForMerge metaDialogForMerge = new MetadataDialogForMerge(composite.getShell(), inputInfos, outputMetaCopy, node, getCommandStack());
//$NON-NLS-1$
metaDialogForMerge.setText(Messages.getString("SchemaController.schemaOf") + node.getLabel());
metaDialogForMerge.setInputReadOnly(inputReadOnly);
metaDialogForMerge.setOutputReadOnly(outputReadOnly);
if (metaDialogForMerge.open() == MetadataDialogForMerge.OK) {
outputMetaCopy = metaDialogForMerge.getOutputMetaData();
// check if the metadata is modified
boolean modified = false;
if (!outputMetaCopy.sameMetadataAs(originaleOutputTable, IMetadataColumn.OPTIONS_NONE)) {
modified = true;
} else {
if (inputMetadata != null) {
// Notice: the Map inputInfos maybe is modified by the dialog.
Set<INode> inputNodes = inputInfos.keySet();
for (INode inputNode : inputNodes) {
Map<IMetadataTable, Boolean> oneInput = inputInfos.get(inputNode);
inputMetaCopy = (IMetadataTable) oneInput.keySet().toArray()[0];
if (!inputMetaCopy.sameMetadataAs(inputNode.getMetadataList().get(0), IMetadataColumn.OPTIONS_NONE)) {
modified = true;
}
}
}
}
// create the changeMetadataCommand
if (modified) {
Command changeMetadataCommand = null;
// only output, no input
if (inputInfos.isEmpty()) {
changeMetadataCommand = new ChangeMetadataCommand(node, param, null, null, null, originaleOutputTable, outputMetaCopy);
} else {
Set<INode> inputNodes = inputInfos.keySet();
int count = 0;
for (INode inputNode : inputNodes) {
Map<IMetadataTable, Boolean> oneInput = inputInfos.get(inputNode);
inputMetaCopy = (IMetadataTable) oneInput.keySet().toArray()[0];
if (count == 0) {
changeMetadataCommand = new ChangeMetadataCommand(node, param, inputNode, inputNode.getMetadataList().get(0), inputMetaCopy, originaleOutputTable, outputMetaCopy);
} else {
changeMetadataCommand = changeMetadataCommand.chain(new ChangeMetadataCommand(node, param, inputNode, inputNode.getMetadataList().get(0), inputMetaCopy, originaleOutputTable, outputMetaCopy));
}
count++;
}
}
return changeMetadataCommand;
}
}
} else {
Node inputNode = (Node) (inputConec.getSource());
if (inputMetaCopy.getAttachedConnector() == null) {
INodeConnector mainConnector;
if (inputNode.isELTComponent()) {
mainConnector = inputNode.getConnectorFromType(EConnectionType.TABLE);
} else {
mainConnector = inputNode.getConnectorFromType(EConnectionType.FLOW_MAIN);
}
inputMetaCopy.setAttachedConnector(mainConnector.getName());
}
metaDialog = new MetadataDialog(composite.getShell(), inputMetaCopy, inputNode, outputMetaCopy, node, getCommandStack());
}
} else {
metaDialog = new MetadataDialog(composite.getShell(), outputMetaCopy, node, getCommandStack());
}
/*
* Datacert: Populating data in the edit schema dialog
*
* @author : virtusa
*/
List<IMetadataColumn> columnList = new ArrayList<IMetadataColumn>();
String prefix = "";
if (componentName.equalsIgnoreCase(Messages.getString("DataCertController.tDataCertDenormalize.componentName"))) {
String denorCol = elem.getPropertyValue("DC_COLUMN_DENORMALIZE").toString().replaceAll("\"", "");
;
prefix = denorCol;
IMetadataTable inputTable = null;
if (node.getIncomingConnections() != null && node.getIncomingConnections().size() > 0) {
IConnection inputConn = node.getIncomingConnections().get(0);
if (inputConn != null) {
inputTable = inputConn.getMetadataTable();
}
}
if (inputTable != null) {
for (IMetadataColumn inCol : inputTable.getListColumns()) {
if (!inCol.getLabel().equals(denorCol)) {
columnList.add(inCol);
}
}
}
}
restService.addColumnsToSchema(entityName, componentName, prefix, columnList);
outputMetaCopy.setListColumns(columnList);
outputMetaCopy.setComment("Attribute Metadata");
outputMetaCopy.setLabel("Attribute Metadata");
outputMetaCopy.setTableName(entityName);
if (metaDialog != null) {
//$NON-NLS-1$
metaDialog.setText(Messages.getString("AbstractSchemaController.schema.title", node.getLabel()));
metaDialog.setInputReadOnly(false);
metaDialog.setOutputReadOnly(false);
if (metaDialog.open() == MetadataDialog.OK) {
outputMetaCopy = metaDialog.getOutputMetaData();
boolean modified = false;
if (!outputMetaCopy.sameMetadataAs(originaleOutputTable, IMetadataColumn.OPTIONS_NONE)) {
modified = true;
}
if (modified) {
Node inputNode = null;
if (inputConec != null) {
inputNode = (Node) inputConec.getSource();
}
ChangeMetadataCommand changeMetadataCommand = new ChangeMetadataCommand(node, param, inputNode, inputMetadata, inputMetaCopy, originaleOutputTable, outputMetaCopy);
return changeMetadataCommand;
}
}
}
return null;
}
Aggregations