/*******************************************************************************
* 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 hydrograph.ui.common.util.Constants;
import hydrograph.ui.datastructure.property.FixedWidthGridRow;
import hydrograph.ui.datastructure.property.GridRow;
import hydrograph.ui.engine.constants.PropertyNameConstants;
import hydrograph.ui.engine.converter.InputConverter;
import hydrograph.ui.engine.helper.ConverterHelper;
import hydrograph.ui.graph.model.Component;
import hydrograph.ui.graph.model.Link;
import hydrograph.ui.logging.factory.LogFactory;
import java.util.ArrayList;
import java.util.List;
import org.slf4j.Logger;
import hydrograph.engine.jaxb.commontypes.TypeBaseField;
import hydrograph.engine.jaxb.commontypes.TypeInputOutSocket;
import hydrograph.engine.jaxb.inputtypes.TextFileFixedWidth;
import hydrograph.engine.jaxb.itffw.TypeInputFixedwidthOutSocket;
public class InputFileFixedWidthConverter extends InputConverter {
private static final Logger logger = LogFactory.INSTANCE.getLogger(InputFileFixedWidthConverter.class);
public InputFileFixedWidthConverter(Component component) {
super(component);
this.baseComponent = new TextFileFixedWidth();
this.component = component;
this.properties = component.getProperties();
}
@Override
public void prepareForXML() {
logger.debug("prepareForXML - Generating XML data for " + component);
super.prepareForXML();
TextFileFixedWidth fileFixedWidth = (TextFileFixedWidth) baseComponent;
TextFileFixedWidth.Path path = new TextFileFixedWidth.Path();
path.setUri((String) properties.get(PropertyNameConstants.PATH.value()));
TextFileFixedWidth.Charset charset = new TextFileFixedWidth.Charset();
charset.setValue(getCharset());
fileFixedWidth.setPath(path);
fileFixedWidth.setStrict(getBoolean(PropertyNameConstants.STRICT.value()));
fileFixedWidth.setSafe(getBoolean(PropertyNameConstants.IS_SAFE.value()));
fileFixedWidth.setCharset(charset);
fileFixedWidth.setRuntimeProperties(getRuntimeProperties());
}
@Override
protected List<TypeInputOutSocket> getInOutSocket() {
logger.debug("getInOutSocket - Generating TypeInputOutSocket data for " + component);
List<TypeInputOutSocket> outSockets = new ArrayList<>();
for (Link link : component.getSourceConnections()) {
TypeInputFixedwidthOutSocket outSocket = new TypeInputFixedwidthOutSocket();
outSocket.setId(link.getSourceTerminal());
outSocket.setType(link.getSource().getPort(link.getSourceTerminal()).getPortType());
outSocket.setSchema(getSchema());
outSocket.getOtherAttributes();
outSockets.add(outSocket);
}
return outSockets;
}
@Override
protected List<TypeBaseField> getFieldOrRecord(List<GridRow> gridList) {
logger.debug("Generating data for {} for property {}", new Object[] { properties.get(Constants.PARAM_NAME),
PropertyNameConstants.SCHEMA.value() });
List<TypeBaseField> typeBaseFields = new ArrayList<>();
if (gridList != null && gridList.size() != 0) {
for (GridRow object : gridList)
typeBaseFields.add(converterHelper.getFixedWidthTargetData((FixedWidthGridRow) object));
}
return typeBaseFields;
}
}