/******************************************************************************* * Copyright 2017 Capital One Services, LLC and Bitwise, Inc. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *******************************************************************************/ package hydrograph.ui.engine.converter.impl; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.apache.commons.lang.StringUtils; import org.slf4j.Logger; import hydrograph.engine.jaxb.commontypes.ElementValueIntegerType; import hydrograph.engine.jaxb.commontypes.ElementValueStringType; import hydrograph.engine.jaxb.commontypes.TypeBaseField; import hydrograph.engine.jaxb.commontypes.TypeFieldName; import hydrograph.engine.jaxb.commontypes.TypeKeyFields; import hydrograph.engine.jaxb.commontypes.TypeOutputInSocket; import hydrograph.engine.jaxb.omysql.TypeLoadChoice; import hydrograph.engine.jaxb.omysql.TypeOutputMysqlOutSocket; import hydrograph.engine.jaxb.omysql.TypePrimaryKeys; import hydrograph.engine.jaxb.omysql.TypeUpdateKeys; import hydrograph.engine.jaxb.outputtypes.Mysql; import hydrograph.ui.common.util.Constants; import hydrograph.ui.datastructure.property.GridRow; import hydrograph.ui.engine.constants.PropertyNameConstants; import hydrograph.ui.engine.converter.OutputConverter; import hydrograph.ui.graph.model.Component; import hydrograph.ui.graph.model.Link; import hydrograph.ui.logging.factory.LogFactory; /** * The Class OutputMysql Converter implementation for Output Mysql Component * @author Bitwise * */ public class OutputMysqlConverter extends OutputConverter{ private static final Logger logger = LogFactory.INSTANCE.getLogger(OutputMysqlConverter.class); public OutputMysqlConverter(Component component) { super(component); this.component = component; this.properties = component.getProperties(); this.baseComponent = new Mysql(); } @Override protected List<TypeOutputInSocket> getOutInSocket() { logger.debug("Generating TypeOutputInSocket data"); List<TypeOutputInSocket> outputinSockets = new ArrayList<>(); for (Link link : component.getTargetConnections()) { TypeOutputMysqlOutSocket outInSocket = new TypeOutputMysqlOutSocket(); outInSocket.setId(link.getTargetTerminal()); outInSocket.setFromSocketId(converterHelper.getFromSocketId(link)); outInSocket.setFromSocketType(link.getSource().getPorts().get(link.getSourceTerminal()).getPortType()); outInSocket.setType(link.getTarget().getPort(link.getTargetTerminal()).getPortType()); outInSocket.setSchema(getSchema()); outInSocket.getOtherAttributes(); outInSocket.setFromComponentId(link.getSource().getComponentId()); outputinSockets.add(outInSocket); } return outputinSockets; } @Override public void prepareForXML() { logger.debug("Generating XML for {}", properties.get(Constants.PARAM_NAME)); super.prepareForXML(); Mysql mysqlOutput = (Mysql) baseComponent; mysqlOutput.setRuntimeProperties(getRuntimeProperties()); ElementValueStringType tableName = new ElementValueStringType(); if(StringUtils.isNotBlank((String) properties.get(PropertyNameConstants.TABLE_NAME.value()))){ tableName.setValue(String.valueOf(properties.get(PropertyNameConstants.TABLE_NAME.value()))); mysqlOutput.setTableName(tableName); } ElementValueStringType hostName = new ElementValueStringType(); if(StringUtils.isNotBlank((String) properties.get(PropertyNameConstants.HOST_NAME.value()))){ hostName.setValue(String.valueOf(properties.get(PropertyNameConstants.HOST_NAME.value()))); mysqlOutput.setHostName(hostName); } ElementValueIntegerType portNo = new ElementValueIntegerType(); BigInteger portValue = getPortValue(PropertyNameConstants.PORT_NO.value()); portNo.setValue(portValue); mysqlOutput.setPort(portNo); ElementValueStringType jdbcDriver = new ElementValueStringType(); jdbcDriver.setValue(String.valueOf(properties.get(PropertyNameConstants.JDBC_DRIVER.value()))); mysqlOutput.setJdbcDriver(jdbcDriver); ElementValueStringType mysqlDatabase = new ElementValueStringType(); if(StringUtils.isNotBlank((String) properties.get(PropertyNameConstants.DATABASE_NAME.value()))){ mysqlDatabase.setValue(String.valueOf(properties.get(PropertyNameConstants.DATABASE_NAME.value()))); mysqlOutput.setDatabaseName(mysqlDatabase); } ElementValueStringType userName = new ElementValueStringType(); if(StringUtils.isNotBlank((String) properties.get(PropertyNameConstants.USER_NAME.value()))){ userName.setValue(String.valueOf(properties.get(PropertyNameConstants.USER_NAME.value()))); mysqlOutput.setUsername(userName); } ElementValueStringType password = new ElementValueStringType(); if(StringUtils.isNotBlank((String) properties.get(PropertyNameConstants.PASSWORD.value()))){ password.setValue(String.valueOf(properties.get(PropertyNameConstants.PASSWORD.value()))); mysqlOutput.setPassword(password); } TypeLoadChoice loadValue = addTypeLoadChoice(); mysqlOutput.setLoadType(loadValue); } private TypeLoadChoice addTypeLoadChoice() { TypeLoadChoice loadValue = new TypeLoadChoice(); Map<String, String> uiValue = (Map<String, String>) properties.get(PropertyNameConstants.LOAD_TYPE_CONFIGURATION.value()); if(uiValue != null){ if (uiValue.containsKey(Constants.LOAD_TYPE_UPDATE_KEY)) { loadValue.setUpdate(getUpdateKeys((String) uiValue.get(Constants.LOAD_TYPE_UPDATE_KEY))); } else if (uiValue.containsKey(Constants.LOAD_TYPE_NEW_TABLE_KEY)) { loadValue.setNewTable(getPrimaryKeyColumnFields((String) uiValue.get(Constants.LOAD_TYPE_NEW_TABLE_KEY))); } else if (uiValue.containsKey(Constants.LOAD_TYPE_INSERT_KEY)) { loadValue.setInsert(uiValue.get(Constants.LOAD_TYPE_INSERT_KEY)); } else if (uiValue.containsKey(Constants.LOAD_TYPE_REPLACE_KEY)) { loadValue.setTruncateLoad(uiValue.get(Constants.LOAD_TYPE_REPLACE_KEY)); } } return loadValue; } /** * Creates primary key fields * @param primaryKeyFeilds * @return */ private TypePrimaryKeys getPrimaryKeyColumnFields(String primaryKeyFeilds) { TypePrimaryKeys primaryKeys = new TypePrimaryKeys(); String[] primaryKeyColumnsFields = StringUtils.split(primaryKeyFeilds, Constants.LOAD_TYPE_NEW_TABLE_VALUE_SEPERATOR); if(primaryKeyColumnsFields !=null && primaryKeyColumnsFields.length>0){ TypeKeyFields primaryTypeKeyFields = new TypeKeyFields(); primaryKeys.setPrimaryKeys(primaryTypeKeyFields); for(String fieldValue : primaryKeyColumnsFields){ TypeFieldName primaryTypeFieldName = new TypeFieldName(); primaryTypeFieldName.setName(fieldValue); primaryTypeKeyFields.getField().add(primaryTypeFieldName); } } return primaryKeys; } /** * Creates update key fields * @param fields * @return */ private TypeUpdateKeys getUpdateKeys(String fields) { TypeUpdateKeys updateKeys = null; String[] columnFields = StringUtils.split(fields, Constants.LOAD_TYPE_UPDATE_VALUE_SEPERATOR); if (columnFields != null && columnFields.length > 0) { TypeKeyFields typeKeyFields = new TypeKeyFields(); updateKeys = new TypeUpdateKeys(); updateKeys.setUpdateByKeys(typeKeyFields); for (String field : columnFields) { TypeFieldName typeFieldName = new TypeFieldName(); typeFieldName.setName(field); typeKeyFields.getField().add(typeFieldName); } } return updateKeys; } @Override protected List<TypeBaseField> getFieldOrRecord(List<GridRow> list) { logger.debug("Generating data for {} for property {}", new Object[] { properties.get(Constants.PARAM_NAME), PropertyNameConstants.SCHEMA.value() }); List<TypeBaseField> typeBaseFields = new ArrayList<>(); if (list != null && list.size() != 0) { for (GridRow object : list) typeBaseFields.add(converterHelper.getSchemaGridTargetData(object)); } return typeBaseFields; } }