use of org.talend.components.api.properties.ComponentProperties in project tdi-studio-se by Talend.
the class Salesforce620WizardMigration method execute.
/*
* (non-Javadoc)
*
* @see org.talend.core.model.migration.AbstractItemMigrationTask#execute(org.talend.core.model.properties.Item)
*/
@Override
public ExecutionResult execute(Item item) {
if (GenericWizardServiceFactory.getGenericWizardService().isGenericItem(item)) {
try {
GenericConnectionItem connectionItem = (GenericConnectionItem) item;
GenericConnection connection = (GenericConnection) connectionItem.getConnection();
String serialized = connection.getCompProperties();
ComponentService service = ComponentsUtils.getComponentService();
ComponentWizard componentWizard = service.getComponentWizard(NewSalesforceWizardMigrationTask.TYPE_NAME, item.getProperty().getId());
ComponentProperties newProperties = (ComponentProperties) componentWizard.getForms().get(0).getProperties();
newProperties.init();
ComponentProperties properties = loadProperties(serialized, newProperties);
updateSubProperties(properties, newProperties);
newProperties.copyValuesFrom(properties, true, false);
connection.setCompProperties(newProperties.toSerialized());
Set<MetadataTable> tables = new HashSet<MetadataTable>();
PackageHelper.getAllTables(connection, tables);
for (MetadataTable table : tables) {
EList<TaggedValue> values = table.getTaggedValue();
for (TaggedValue value : values) {
if (IComponentConstants.COMPONENT_PROPERTIES_TAG.equals(value.getTag())) {
Object object = ReflectionUtils.newInstance(NewSalesforceWizardMigrationTask.REFLECTION_SALESFORCE_MODULE_PROPERTIES, newProperties.getClass().getClassLoader(), new Object[] { table.getName() });
if (object != null && object instanceof ComponentProperties) {
ComponentProperties newSalesforceModuleProperties = (ComponentProperties) object;
ComponentProperties moduleProperties = loadProperties(value.getValue(), newSalesforceModuleProperties);
updateSubProperties(moduleProperties, newSalesforceModuleProperties);
newSalesforceModuleProperties.copyValuesFrom(moduleProperties, true, false);
value.setValue(newSalesforceModuleProperties.toSerialized());
}
}
}
}
ProxyRepositoryFactory.getInstance().save(connectionItem, true);
return ExecutionResult.SUCCESS_NO_ALERT;
} catch (Exception e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
return ExecutionResult.NOTHING_TO_DO;
}
use of org.talend.components.api.properties.ComponentProperties in project tdi-studio-se by Talend.
the class NewDelimitedFileWizardMigrationTask method execute.
@Override
public ExecutionResult execute(Item item) {
ComponentService service = ComponentsUtils.getComponentService();
Properties props = getPropertiesFromFile();
if (item instanceof ConnectionItem) {
boolean modify = false;
GenericConnectionItem genericConnectionItem = null;
ConnectionItem connectionItem = (ConnectionItem) item;
Connection connection = connectionItem.getConnection();
// Init
genericConnectionItem = initGenericConnectionItem(connectionItem);
genericConnectionItem.setTypeName(TYPE_NAME);
GenericConnection genericConnection = initGenericConnection(connection);
initProperty(connectionItem, genericConnectionItem);
ComponentWizard componentWizard = service.getComponentWizard(TYPE_NAME, genericConnectionItem.getProperty().getId());
ComponentProperties componentProperties = (ComponentProperties) componentWizard.getForms().get(0).getProperties();
componentProperties.init();
// Update
modify = updateComponentProperties(connection, componentProperties, props);
genericConnection.setCompProperties(componentProperties.toSerialized());
genericConnectionItem.setConnection(genericConnection);
updateMetadataTable(connection, genericConnection, componentProperties);
if (modify) {
try {
ProxyRepositoryFactory factory = ProxyRepositoryFactory.getInstance();
IRepositoryViewObject object = factory.getLastVersion(item.getProperty().getId(), ERepositoryObjectType.METADATA_FILE_DELIMITED.getFolder(), ERepositoryObjectType.METADATA_FILE_DELIMITED);
if (object != null) {
factory.deleteObjectPhysical(object);
}
if (genericConnectionItem != null && connectionItem != null) {
factory.create(genericConnectionItem, new Path(connectionItem.getState().getPath()), true);
}
return ExecutionResult.SUCCESS_WITH_ALERT;
} catch (Exception e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
}
return ExecutionResult.NOTHING_TO_DO;
}
use of org.talend.components.api.properties.ComponentProperties in project tdi-studio-se by Talend.
the class SchemaUtilsTest method testUpdateComponentSchema.
@Test
public void testUpdateComponentSchema() {
//$NON-NLS-1$
String TEST_TABLE_NAME = "testTable";
//$NON-NLS-1$
String TEST_COL_NAME = "userId";
//$NON-NLS-1$
String ADDED_COL_NAME = "added";
//$NON-NLS-1$
String SCHEMA_PROP_NAME = "schema.schema";
// Create the test MetadataTable.
MetadataTable table = createMetadataTable(TEST_TABLE_NAME);
MetadataColumn testColumn = ConnectionFactory.eINSTANCE.createMetadataColumn();
testColumn.setName(TEST_COL_NAME);
testColumn.setLabel(testColumn.getName());
//$NON-NLS-1$
testColumn.setDefaultValue("1");
testColumn.setTalendType(JavaTypesManager.STRING.getId());
table.getColumns().add(testColumn);
// Create one component properties which has one schema property.
//$NON-NLS-1$
TestProperties props = (TestProperties) new TestProperties("test").init();
Schema oldSchema = SchemaBuilder.record(TEST_TABLE_NAME).fields().name(TEST_COL_NAME).type().stringType().noDefault().endRecord();
props.schema.schema.setValue(oldSchema);
// Set the component properties and schema property name into MetadataTable.
TaggedValue serializedPropsTV = CoreFactory.eINSTANCE.createTaggedValue();
serializedPropsTV.setTag(IComponentConstants.COMPONENT_PROPERTIES_TAG);
serializedPropsTV.setValue(props.toSerialized());
table.getTaggedValue().add(serializedPropsTV);
TaggedValue schemaPropertyTV = CoreFactory.eINSTANCE.createTaggedValue();
schemaPropertyTV.setTag(IComponentConstants.COMPONENT_SCHEMA_TAG);
schemaPropertyTV.setValue(SCHEMA_PROP_NAME);
table.getTaggedValue().add(schemaPropertyTV);
// Add another MetadataColumn into MetadataTable.
MetadataColumn addedColumn = ConnectionFactory.eINSTANCE.createMetadataColumn();
addedColumn.setName(ADDED_COL_NAME);
addedColumn.setLabel(addedColumn.getName());
//$NON-NLS-1$
addedColumn.setDefaultValue("x");
addedColumn.setTalendType(JavaTypesManager.STRING.getId());
table.getColumns().add(addedColumn);
// Invoke updateComponentSchema() method.
SchemaUtils.updateComponentSchema(table, null);
// Check if the schema object is updated correctly.
String componentPropertiesStr = null;
String schemaPropertyName = null;
EList<TaggedValue> taggedValues = table.getTaggedValue();
for (TaggedValue taggedValue : taggedValues) {
String tag = taggedValue.getTag();
String tagValue = taggedValue.getValue();
if (IComponentConstants.COMPONENT_PROPERTIES_TAG.equals(tag)) {
componentPropertiesStr = tagValue;
} else if (IComponentConstants.COMPONENT_SCHEMA_TAG.equals(tag)) {
schemaPropertyName = tagValue;
}
}
ComponentProperties componentProperties = ComponentsUtils.getComponentPropertiesFromSerialized(componentPropertiesStr, null);
Object schemaValue = componentProperties.getValuedProperty(schemaPropertyName).getValue();
Schema avroSchema = getAvroSchema(schemaValue);
props.schema.schema.setValue(avroSchema);
assertNotNull(avroSchema.getField(TEST_COL_NAME));
assertNotNull(avroSchema.getField(ADDED_COL_NAME));
assertEquals(2, avroSchema.getFields().size());
// Test method updateComponentSchema(ComponentProperties componentProperties, String schemaPropertyName,
// IMetadataTable metadataTable)
IMetadataTable iMetadataTable = MetadataToolHelper.convert(table);
iMetadataTable.getListColumns().remove(1);
SchemaUtils.updateComponentSchema(props, SCHEMA_PROP_NAME, iMetadataTable);
schemaValue = props.getValuedProperty(schemaPropertyName).getValue();
avroSchema = getAvroSchema(schemaValue);
assertNotNull(avroSchema.getField(TEST_COL_NAME));
assertNull(avroSchema.getField(ADDED_COL_NAME));
assertEquals(1, avroSchema.getFields().size());
}
use of org.talend.components.api.properties.ComponentProperties in project tdi-studio-se by Talend.
the class ComponentTest method testGetElementParameterValueFromComponentProperties.
@Test
public void testGetElementParameterValueFromComponentProperties() {
//$NON-NLS-1$ //$NON-NLS-2$
IComponent sfComponent = ComponentsFactoryProvider.getInstance().get("tSalesforceInput", "DI");
INode node = new Node(sfComponent, new Process(new FakePropertyImpl()));
ComponentProperties props = node.getComponentProperties();
Form form = props.getForm(Form.MAIN);
IElementParameter param = new GenericElementParameter(node, node.getComponentProperties(), form, form.getWidget("condition"), //$NON-NLS-1$
null);
Object obj = component.getElementParameterValueFromComponentProperties(node, param);
Assert.assertNotNull(obj);
}
use of org.talend.components.api.properties.ComponentProperties in project tdi-studio-se by Talend.
the class ChangeValuesFromRepository method execute.
@SuppressWarnings("unchecked")
@Override
public void execute() {
// Force redraw of Commponents propoerties
elem.setPropertyValue(updataComponentParamName, new Boolean(true));
boolean allowAutoSwitch = true;
IElementParameter elemParam = elem.getElementParameter(EParameterName.REPOSITORY_ALLOW_AUTO_SWITCH.getName());
if (elemParam != null) {
// add for TDI-8053
elemParam.setValue(Boolean.FALSE);
allowAutoSwitch = (Boolean) elemParam.getValue();
}
if (!allowAutoSwitch && (elem instanceof Node)) {
// force the autoSwitch to true if the schema is empty and if the
// query is not set.
Node node = (Node) elem;
boolean isSchemaEmpty = false;
if (node.getMetadataList().size() > 0) {
isSchemaEmpty = node.getMetadataList().get(0).getListColumns().size() == 0;
} else {
isSchemaEmpty = true;
}
for (IElementParameter curParam : node.getElementParameters()) {
if (curParam.getFieldType().equals(EParameterFieldType.MEMO_SQL)) {
if (curParam.getDefaultValues().size() > 0) {
}
}
}
if (isSchemaEmpty) {
allowAutoSwitch = true;
}
if (((INode) elem).getComponent().getName().equals("tWebService")) {
//$NON-NLS-1$
allowAutoSwitch = true;
}
}
if (propertyName.split(":")[1].equals(propertyTypeName)) {
//$NON-NLS-1$
elem.setPropertyValue(propertyName, value);
if (allowAutoSwitch) {
// Update spark mode to YARN_CLIENT if repository
if (elem instanceof IProcess) {
if (ComponentCategory.CATEGORY_4_SPARK.getName().equals(((IProcess) elem).getComponentsType()) || ComponentCategory.CATEGORY_4_SPARKSTREAMING.getName().equals(((IProcess) elem).getComponentsType())) {
if (EmfComponent.REPOSITORY.equals(value)) {
IElementParameter sparkLocalParam = ((IProcess) elem).getElementParameter(HadoopConstants.SPARK_LOCAL_MODE);
IElementParameter sparkParam = ((IProcess) elem).getElementParameter(HadoopConstants.SPARK_MODE);
if (sparkLocalParam != null && (Boolean) (sparkLocalParam.getValue())) {
sparkLocalParam.setValue(false);
}
if (sparkParam != null && !HadoopConstants.SPARK_MODE_YARN_CLIENT.equals(sparkParam.getValue())) {
sparkParam.setValue(HadoopConstants.SPARK_MODE_YARN_CLIENT);
}
}
}
}
setOtherProperties();
}
} else {
oldMetadata = (String) elem.getPropertyValue(propertyName);
elem.setPropertyValue(propertyName, value);
if (allowAutoSwitch) {
setOtherProperties();
}
}
String propertyParamName = null;
if (elem.getElementParameter(propertyName).getParentParameter() != null) {
IElementParameter param = elem.getElementParameter(propertyName).getParentParameter();
if (param.getFieldType() == EParameterFieldType.PROPERTY_TYPE) {
propertyParamName = param.getName();
}
}
if (propertyName.split(":")[1].equals(propertyTypeName) && (EmfComponent.BUILTIN.equals(value))) {
//$NON-NLS-1$
for (IElementParameter param : elem.getElementParameters()) {
if (param.getRepositoryProperty() != null && !param.getRepositoryProperty().equals(propertyParamName)) {
continue;
}
boolean paramFlag = JobSettingsConstants.isExtraParameter(param.getName());
//$NON-NLS-1$
boolean extraFlag = JobSettingsConstants.isExtraParameter(propertyName.split(":")[0]);
if (paramFlag == extraFlag) {
// for memo sql
if (param.getFieldType() == EParameterFieldType.MEMO_SQL) {
IElementParameter querystoreParam = elem.getElementParameterFromField(EParameterFieldType.QUERYSTORE_TYPE, param.getCategory());
if (querystoreParam != null) {
Map<String, IElementParameter> childParam = querystoreParam.getChildParameters();
if (childParam != null) {
IElementParameter queryTypeParam = childParam.get(EParameterName.QUERYSTORE_TYPE.getName());
if (queryTypeParam != null && EmfComponent.REPOSITORY.equals(queryTypeParam.getValue())) {
continue;
}
}
}
}
if (param.getRepositoryValue() != null) {
param.setReadOnly(false);
// for job settings extra.(feature 2710)
param.setRepositoryValueUsed(false);
}
}
}
} else {
oldValues.clear();
List<ComponentProperties> componentProperties = null;
IGenericWizardService wizardService = null;
if (GlobalServiceRegister.getDefault().isServiceRegistered(IGenericWizardService.class)) {
wizardService = (IGenericWizardService) GlobalServiceRegister.getDefault().getService(IGenericWizardService.class);
}
if (wizardService != null && wizardService.isGenericConnection(connection)) {
componentProperties = wizardService.getAllComponentProperties(connection, null);
}
IElementParameter propertyParam = elem.getElementParameter(propertyName);
List<IElementParameter> elementParameters = new ArrayList<>(elem.getElementParameters());
for (IElementParameter param : elementParameters) {
String repositoryValue = param.getRepositoryValue();
if (param.getFieldType() == EParameterFieldType.PROPERTY_TYPE) {
continue;
}
boolean isGenericRepositoryValue = RepositoryToComponentProperty.isGenericRepositoryValue(connection, componentProperties, param.getName());
if (repositoryValue == null && isGenericRepositoryValue) {
repositoryValue = param.getName();
param.setRepositoryValue(repositoryValue);
param.setRepositoryValueUsed(true);
}
if (repositoryValue == null || param.getRepositoryProperty() != null && !param.getRepositoryProperty().equals(propertyParamName)) {
continue;
}
String componentName = elem instanceof INode ? (((INode) elem).getComponent().getName()) : null;
boolean b = elem instanceof INode && (//$NON-NLS-1$
((INode) elem).getComponent().getName().equals("tHL7Input") || //$NON-NLS-1$
((INode) elem).getComponent().getName().equals("tAdvancedFileOutputXML") || ((INode) elem).getComponent().getName().equals("tMDMOutput") || ((INode) elem).getComponent().getName().equals("tWebService") || ((INode) elem).getComponent().getName().equals("tCreateTable") || //$NON-NLS-1$
((INode) elem).getComponent().getName().equals("tWriteJSONField"));
if ((//$NON-NLS-1$
"TYPE".equals(repositoryValue) || (isGenericRepositoryValue || param.isShow(elem.getElementParameters())) || b) && (!param.getName().equals(propertyTypeName))) {
if (param.getRepositoryProperty() != null && !param.getRepositoryProperty().equals(propertyParamName)) {
continue;
}
Object objectValue = null;
if (connection instanceof XmlFileConnection && this.dragAndDropAction == true && repositoryValue.equals("FILE_PATH") && reOpenXSDBool == true) {
objectValue = RepositoryToComponentProperty.getXmlAndXSDFileValue((XmlFileConnection) connection, repositoryValue);
} else if (connection instanceof SalesforceSchemaConnection && "MODULENAME".equals(repositoryValue)) {
//$NON-NLS-1$
if (this.moduleUnit != null) {
objectValue = moduleUnit.getModuleName();
} else {
objectValue = null;
}
} else // module which was the last one be retrived
if (connection instanceof SalesforceSchemaConnection && "CUSTOM_MODULE_NAME".equals(repositoryValue)) {
//$NON-NLS-1$
if (this.moduleUnit != null) {
objectValue = moduleUnit.getModuleName();
} else {
objectValue = null;
}
} else if (connection instanceof MDMConnection) {
if (table == null) {
IMetadataTable metaTable = null;
if (((Node) elem).getMetadataList().size() > 0) {
metaTable = ((Node) elem).getMetadataList().get(0);
}
objectValue = RepositoryToComponentProperty.getValue(connection, repositoryValue, metaTable);
} else {
objectValue = RepositoryToComponentProperty.getValue(connection, repositoryValue, table);
}
} else if (connection instanceof WSDLSchemaConnection && "USE_PROXY".equals(repositoryValue)) {
//$NON-NLS-1$
objectValue = ((WSDLSchemaConnection) connection).isUseProxy();
} else {
IMetadataTable metaTable = table;
if (metaTable == null && elem instanceof Node) {
INodeConnector conn = ((Node) elem).getConnectorFromType(EConnectionType.FLOW_MAIN);
if (conn != null && conn.getMaxLinkOutput() == 1) {
metaTable = ((Node) elem).getMetadataFromConnector(conn.getName());
}
}
objectValue = RepositoryToComponentProperty.getValue(connection, repositoryValue, metaTable, componentName);
}
if (GlobalServiceRegister.getDefault().isServiceRegistered(IJsonFileService.class)) {
IJsonFileService jsonService = (IJsonFileService) GlobalServiceRegister.getDefault().getService(IJsonFileService.class);
boolean paramChanged = jsonService.changeFilePathFromRepository(connection, param, elem, objectValue);
if (paramChanged) {
continue;
}
}
if (objectValue != null) {
oldValues.put(param.getName(), param.getValue());
if (param.getFieldType().equals(EParameterFieldType.CLOSED_LIST) && param.getRepositoryValue().equals("TYPE")) {
//$NON-NLS-1$
String dbVersion = "";
if (connection instanceof DatabaseConnection) {
dbVersion = ((DatabaseConnection) connection).getDbVersionString();
}
boolean found = false;
String[] list = param.getListRepositoryItems();
for (int i = 0; (i < list.length) && (!found); i++) {
if (objectValue.equals(list[i])) {
found = true;
elem.setPropertyValue(param.getName(), param.getListItemsValue()[i]);
}
}
IElementParameter elementParameter = null;
IElementParameter elementParameter2 = null;
if (EParameterName.DB_TYPE.getName().equals(param.getName())) {
elementParameter = elem.getElementParameter(EParameterName.DB_VERSION.getName());
elementParameter2 = elem.getElementParameter(EParameterName.SCHEMA_DB.getName());
} else {
elementParameter = elem.getElementParameter(JobSettingsConstants.getExtraParameterName(EParameterName.DB_VERSION.getName()));
elementParameter2 = elem.getElementParameter(JobSettingsConstants.getExtraParameterName(EParameterName.SCHEMA_DB.getName()));
}
String dbType = "";
if (param.getValue() != null) {
int indexOfItemFromList = param.getIndexOfItemFromList(param.getValue().toString());
if (indexOfItemFromList != -1) {
dbType = param.getListItemsDisplayCodeName()[indexOfItemFromList];
}
}
// Some DB not need fill the schema parameter for the JobSetting View "Extra" ,"Stats&Logs"
if (elementParameter2 != null && !elementParameter2.isShow(elem.getElementParameters()) && !elementParameter2.getValue().equals("")) {
elementParameter2.setValue("");
}
if (StatsAndLogsConstants.JDBC.equals(dbType)) {
IElementParameter dbNameParm = elem.getElementParameter(EParameterName.DBNAME.getName());
if (dbNameParm != null) {
dbNameParm.setValue("");
}
} else {
IElementParameter rulParam = elem.getElementParameter(EParameterName.URL.getName());
if (rulParam != null) {
rulParam.setValue("");
}
IElementParameter classParam = elem.getElementParameter(EParameterName.DRIVER_CLASS.getName());
if (classParam != null) {
classParam.setValue("");
}
IElementParameter jarParam = elem.getElementParameter(EParameterName.DRIVER_JAR.getName());
if (jarParam != null) {
jarParam.setValue(new ArrayList<Map<String, Object>>());
}
}
JobSettingVersionUtil.setDbVersion(elementParameter, dbVersion, false);
DesignerUtilities.setSchemaDB(elementParameter2, param.getValue());
} else if (param.getFieldType().equals(EParameterFieldType.CLOSED_LIST) && param.getRepositoryValue().equals("FRAMEWORK_TYPE")) {
//$NON-NLS-1$
String[] list = param.getListItemsDisplayName();
for (int i = 0; i < list.length; i++) {
if (objectValue.equals(list[i])) {
elem.setPropertyValue(param.getName(), param.getListItemsValue()[i]);
}
}
} else if (param.getFieldType().equals(EParameterFieldType.CLOSED_LIST) && param.getRepositoryValue().equals("EDI_VERSION")) {
String[] list = param.getListItemsDisplayName();
for (String element : list) {
if (objectValue.toString().toUpperCase().equals(element)) {
elem.setPropertyValue(param.getName(), objectValue);
}
}
} else if (param.getFieldType().equals(EParameterFieldType.CLOSED_LIST) && param.getRepositoryValue().equals("DRIVER")) {
String[] list = param.getListItemsDisplayCodeName();
for (String element : list) {
if (objectValue.toString().toUpperCase().equals(element)) {
elem.setPropertyValue(param.getName(), objectValue);
}
}
} else if (param.getFieldType().equals(EParameterFieldType.CLOSED_LIST) && param.getRepositoryValue().equals("CONNECTION_MODE")) {
//$NON-NLS-1$
if (!objectValue.equals(param.getValue())) {
//$NON-NLS-1$
PropertyChangeCommand cmd = new PropertyChangeCommand(elem, "CONNECTION_MODE", objectValue);
cmd.execute();
}
} else {
if (repositoryValue.equals("ENCODING")) {
//$NON-NLS-1$
IElementParameter paramEncoding = param.getChildParameters().get(EParameterName.ENCODING_TYPE.getName());
if (connection instanceof FTPConnection) {
if (((FTPConnection) connection).getEcoding() != null) {
paramEncoding.setValue(((FTPConnection) connection).getEcoding());
} else {
paramEncoding.setValue(EmfComponent.ENCODING_TYPE_CUSTOM);
}
} else {
if (objectValue instanceof String) {
String str = TalendTextUtils.removeQuotes((String) objectValue);
if (str.equals(EmfComponent.ENCODING_TYPE_UTF_8)) {
paramEncoding.setValue(EmfComponent.ENCODING_TYPE_UTF_8);
} else if (str.equals(EmfComponent.ENCODING_TYPE_ISO_8859_15)) {
paramEncoding.setValue(EmfComponent.ENCODING_TYPE_ISO_8859_15);
} else {
paramEncoding.setValue(EmfComponent.ENCODING_TYPE_CUSTOM);
// paramEncoding.setRepositoryValueUsed(true);
}
}
}
} else if (repositoryValue.equals("CSV_OPTION")) {
//$NON-NLS-1$
setOtherProperties();
}
if (repositoryValue.equals("MODULENAME")) {
//$NON-NLS-1$
List list = new ArrayList();
Object[] listItemsValue = elem.getElementParameter("MODULENAME").getListItemsValue();
for (Object element : listItemsValue) {
list.add(element);
}
if (list != null && !list.contains(objectValue)) {
//$NON-NLS-1$
objectValue = "CustomModule";
}
}
// hywang add for excel 2007
if (repositoryValue.equals(EParameterName.FILE_PATH.getName())) {
String filePath = "";
if (connection.isContextMode()) {
ContextItem contextItem = ContextUtils.getContextItemById2(connection.getContextId());
if (contextItem != null) {
String selectedContext = contextItem.getDefaultContext();
final ContextType contextTypeByName = ContextUtils.getContextTypeByName(contextItem, selectedContext, true);
filePath = ConnectionContextHelper.getOriginalValue(contextTypeByName, objectValue.toString());
}
} else {
filePath = TalendTextUtils.removeQuotes(objectValue.toString());
}
boolean versionCheckFor2007 = false;
if (filePath != null && filePath.endsWith(".xlsx")) {
versionCheckFor2007 = true;
}
if (elem.getElementParameter("VERSION_2007") != null) {
elem.setPropertyValue("VERSION_2007", versionCheckFor2007);
}
}
if (param.getFieldType().equals(EParameterFieldType.FILE)) {
if (objectValue != null) {
objectValue = objectValue.toString().replace("\\", "/");
}
}
elem.setPropertyValue(param.getName(), objectValue);
}
param.setRepositoryValueUsed(true);
} else if (param.getFieldType().equals(EParameterFieldType.TABLE) && param.getRepositoryValue().equals("XML_MAPPING")) {
//$NON-NLS-1$
List<Map<String, Object>> table = (List<Map<String, Object>>) elem.getPropertyValue(param.getName());
if (((Node) elem).getMetadataList().size() > 0) {
IMetadataTable metaTable = ((Node) elem).getMetadataList().get(0);
//$NON-NLS-1$
RepositoryToComponentProperty.getTableXmlFileValue(//$NON-NLS-1$
connection, //$NON-NLS-1$
"XML_MAPPING", //$NON-NLS-1$
param, table, metaTable);
param.setRepositoryValueUsed(true);
}
} else if (param.getFieldType().equals(EParameterFieldType.TABLE) && param.getRepositoryValue().equals("WSDL_PARAMS") && connection != null) {
//$NON-NLS-1$
List<Map<String, Object>> table = (List<Map<String, Object>>) elem.getPropertyValue(param.getName());
table.clear();
ArrayList parameters = ((WSDLSchemaConnection) connection).getParameters();
if (parameters != null) {
for (Object object : parameters) {
Map<String, Object> map2 = new HashMap<String, Object>();
//$NON-NLS-1$
map2.put("VALUE", TalendTextUtils.addQuotes(object.toString()));
table.add(map2);
}
}
param.setRepositoryValueUsed(true);
} else if (param.getFieldType().equals(EParameterFieldType.TEXT) && "XPATH_QUERY".equals(param.getRepositoryValue())) {
//$NON-NLS-1$
param.setRepositoryValueUsed(true);
} else {
// For SAP
String paramName = param.getName();
if ("SAP_PROPERTIES".equals(paramName) || "MAPPING_INPUT".equals(paramName) || // INPUT_PARAMS should be MAPPING_INPUT,bug16426
"SAP_FUNCTION".equals(paramName) || "OUTPUT_PARAMS".equals(paramName) || "SAP_ITERATE_OUT_TYPE".equals(paramName) || "SAP_ITERATE_OUT_TABLENAME".equals(paramName)) {
SAPParametersUtils.retrieveSAPParams(elem, connection, param, getSapFunctionLabel());
}
if ("GATEWAYSERVICE".equals(paramName) || "PROGRAMID".equals(paramName) || "FORMAT_XML".equals(paramName) || "FILE_IDOC_XML".equals(paramName) || "FORMAT_HTML".equals(paramName) || "FILE_IDOC_HTML".equals(paramName)) {
SAPParametersUtils.getSAPIDocParams(elem, connection, param, getSapIDocLabel());
}
}
if (param.isRepositoryValueUsed()) {
if (("GENERATION_MODE").equals(param.getName())) {
param.setReadOnly(true);
} else {
param.setReadOnly(false);
}
}
}
}
// (bug 5198)
IElementParameter parentParameter = propertyParam.getParentParameter();
if (parentParameter != null) {
IElementParameter param = parentParameter.getChildParameters().get(EParameterName.REPOSITORY_PROPERTY_TYPE.getName());
if (param != null && propertyParam == param) {
// avoid to process twice.
ConnectionItem connItem = UpdateRepositoryUtils.getConnectionItemByItemId((String) param.getValue());
if (connItem != null) {
if (elem instanceof Node) {
ConnectionContextHelper.addContextForNodeParameter((Node) elem, connItem, ignoreContextMode);
} else if (elem instanceof Process) {
ConnectionContextHelper.addContextForProcessParameter((Process) elem, connItem, param.getCategory(), ignoreContextMode);
}
}
}
}
}
toUpdate = false;
// change AS400 value
for (IElementParameter curParam : elem.getElementParameters()) {
if (curParam.getFieldType().equals(EParameterFieldType.AS400_CHECK)) {
setOtherProperties();
}
// change the HL7 Version
if (connection instanceof HL7Connection) {
if (curParam.getName().equals("HL7_VER")) {
String hl7VersionString = connection.getVersion();
if (hl7VersionString != null) {
hl7VersionString = hl7VersionString.replace(".", "");
curParam.setValue(hl7VersionString);
}
}
}
setDefaultValues(curParam, elem);
}
if (elem instanceof Node) {
// Xstream Cdc Type Mode
boolean isXstreamCdcTypeMode = false;
if (connection != null && connection instanceof DatabaseConnection) {
String cdcTypeMode = ((DatabaseConnection) connection).getCdcTypeMode();
if (CDCTypeMode.XSTREAM_MODE == CDCTypeMode.indexOf(cdcTypeMode)) {
isXstreamCdcTypeMode = true;
}
}
if (isXstreamCdcTypeMode && ((Node) elem).getComponent().getName().equals("tOracleCDC")) {
//$NON-NLS-1$
IMetadataTable table = ((Node) elem).getMetadataList().get(0);
IElementParameter schemaParam = elem.getElementParameterFromField(EParameterFieldType.SCHEMA_TYPE);
schemaParam.setValueToDefault(elem.getElementParameters());
table.setListColumns((((IMetadataTable) schemaParam.getValue()).clone(true)).getListColumns());
}
((Process) ((Node) elem).getProcess()).checkProcess();
// Added TDQ-11688 show regex when "built-in"
ITDQPatternService service = null;
if (GlobalServiceRegister.getDefault().isServiceRegistered(ITDQPatternService.class)) {
service = (ITDQPatternService) GlobalServiceRegister.getDefault().getService(ITDQPatternService.class);
}
if (service != null && service.isSinglePatternNode(elem)) {
IElementParameter regexParameter = ((Node) elem).getElementParameter("PATTERN_REGEX");
if (regexParameter != null) {
regexParameter.setShow(EmfComponent.BUILTIN.equals(this.value));
}
}
}
}
Aggregations