org.datacleaner.job.JaxbJobReader Maven / Gradle / Ivy
/**
* DataCleaner (community edition)
* Copyright (C) 2014 Neopost - Customer Information Management
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.datacleaner.job;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;
import javax.xml.datatype.XMLGregorianCalendar;
import org.apache.commons.vfs2.FileObject;
import org.apache.commons.vfs2.FileSystemException;
import org.apache.metamodel.schema.Column;
import org.apache.metamodel.util.FileHelper;
import org.datacleaner.api.Analyzer;
import org.datacleaner.api.Converter;
import org.datacleaner.api.Filter;
import org.datacleaner.api.InputColumn;
import org.datacleaner.api.Transformer;
import org.datacleaner.configuration.DataCleanerConfiguration;
import org.datacleaner.configuration.SourceColumnMapping;
import org.datacleaner.connection.Datastore;
import org.datacleaner.connection.DatastoreConnection;
import org.datacleaner.data.ConstantInputColumn;
import org.datacleaner.data.ELInputColumn;
import org.datacleaner.data.MetaModelInputColumn;
import org.datacleaner.data.MutableInputColumn;
import org.datacleaner.descriptors.AnalyzerDescriptor;
import org.datacleaner.descriptors.ComponentDescriptor;
import org.datacleaner.descriptors.ConfiguredPropertyDescriptor;
import org.datacleaner.descriptors.DescriptorProvider;
import org.datacleaner.descriptors.FilterDescriptor;
import org.datacleaner.descriptors.TransformerDescriptor;
import org.datacleaner.job.builder.AnalysisJobBuilder;
import org.datacleaner.job.builder.ComponentBuilder;
import org.datacleaner.job.builder.FilterComponentBuilder;
import org.datacleaner.job.builder.TransformerComponentBuilder;
import org.datacleaner.job.jaxb.AnalysisType;
import org.datacleaner.job.jaxb.AnalyzerType;
import org.datacleaner.job.jaxb.ColumnType;
import org.datacleaner.job.jaxb.ColumnsType;
import org.datacleaner.job.jaxb.ComponentType;
import org.datacleaner.job.jaxb.ConfiguredPropertiesType;
import org.datacleaner.job.jaxb.ConfiguredPropertiesType.Property;
import org.datacleaner.job.jaxb.DataContextType;
import org.datacleaner.job.jaxb.DescriptorType;
import org.datacleaner.job.jaxb.FilterType;
import org.datacleaner.job.jaxb.InputType;
import org.datacleaner.job.jaxb.JobMetadataType;
import org.datacleaner.job.jaxb.JobType;
import org.datacleaner.job.jaxb.MetadataProperties;
import org.datacleaner.job.jaxb.ObjectFactory;
import org.datacleaner.job.jaxb.OutcomeType;
import org.datacleaner.job.jaxb.OutputType;
import org.datacleaner.job.jaxb.SourceType;
import org.datacleaner.job.jaxb.TransformationType;
import org.datacleaner.job.jaxb.TransformerType;
import org.datacleaner.job.jaxb.VariableType;
import org.datacleaner.job.jaxb.VariablesType;
import org.datacleaner.util.JaxbValidationEventHandler;
import org.datacleaner.util.StringUtils;
import org.datacleaner.util.convert.StringConverter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.common.base.Splitter;
import com.google.common.collect.ListMultimap;
import com.google.common.collect.MultimapBuilder;
public class JaxbJobReader implements JobReader {
private static final Logger logger = LoggerFactory.getLogger(JaxbJobReader.class);
private final JAXBContext _jaxbContext;
private final DataCleanerConfiguration _configuration;
public JaxbJobReader(DataCleanerConfiguration configuration) {
if (configuration == null) {
throw new IllegalArgumentException("Configuration cannot be null");
}
_configuration = configuration;
try {
_jaxbContext = JAXBContext.newInstance(ObjectFactory.class.getPackage().getName(),
ObjectFactory.class.getClassLoader());
} catch (JAXBException e) {
throw new IllegalStateException(e);
}
}
/**
* {@inheritDoc}
*/
@Override
public AnalysisJob read(InputStream inputStream) throws NoSuchDatastoreException, NoSuchColumnException,
NoSuchComponentException, ComponentConfigurationException, IllegalStateException {
try (AnalysisJobBuilder ajb = create(inputStream)) {
return ajb.toAnalysisJob();
}
}
@Override
public AnalysisJob read(InputStream inputStream, SourceColumnMapping sourceColumnMapping) {
try (AnalysisJobBuilder ajb = create(inputStream, sourceColumnMapping)) {
return ajb.toAnalysisJob();
}
}
public AnalysisJobMetadata readMetadata(FileObject file) {
InputStream inputStream = null;
try {
inputStream = file.getContent().getInputStream();
return readMetadata(inputStream);
} catch (FileSystemException e) {
throw new IllegalArgumentException(e);
} finally {
FileHelper.safeClose(inputStream);
}
}
public AnalysisJobMetadata readMetadata(File file) {
InputStream inputStream = null;
try {
inputStream = new BufferedInputStream(new FileInputStream(file));
return readMetadata(inputStream);
} catch (FileNotFoundException e) {
throw new IllegalArgumentException(e);
} finally {
FileHelper.safeClose(inputStream);
}
}
@Override
public AnalysisJobMetadata readMetadata(InputStream inputStream) {
JobType job = unmarshallJob(inputStream);
return readMetadata(job);
}
public AnalysisJobMetadata readMetadata(JobType job) {
final String datastoreName = job.getSource().getDataContext().getRef();
final List sourceColumnPaths = getSourceColumnPaths(job);
final List sourceColumnTypes = getSourceColumnTypes(job);
final Map variables = getVariables(job);
final String jobName;
final String jobVersion;
final String jobDescription;
final String author;
final Date createdDate;
final Date updatedDate;
final Map metadataProperties;
JobMetadataType metadata = job.getJobMetadata();
if (metadata == null) {
jobName = null;
jobVersion = null;
jobDescription = null;
author = null;
createdDate = null;
updatedDate = null;
metadataProperties = Collections.emptyMap();
} else {
jobName = metadata.getJobName();
jobVersion = metadata.getJobVersion();
jobDescription = metadata.getJobDescription();
author = metadata.getAuthor();
metadataProperties = getMetadataProperties(metadata);
final XMLGregorianCalendar createdDateCal = metadata.getCreatedDate();
if (createdDateCal == null) {
createdDate = null;
} else {
createdDate = createdDateCal.toGregorianCalendar().getTime();
}
final XMLGregorianCalendar updatedDateCal = metadata.getUpdatedDate();
if (updatedDateCal == null) {
updatedDate = null;
} else {
updatedDate = updatedDateCal.toGregorianCalendar().getTime();
}
}
return new ImmutableAnalysisJobMetadata(jobName, jobVersion, jobDescription, author, createdDate, updatedDate,
datastoreName, sourceColumnPaths, sourceColumnTypes, variables, metadataProperties);
}
private Map getMetadataProperties(JobMetadataType metadata) {
MetadataProperties properties = metadata.getMetadataProperties();
if (properties == null) {
return Collections.emptyMap();
}
Map metadataProperties = new HashMap();
List property = properties.getProperty();
for (int i = 0; i < property.size(); i++) {
String name = property.get(i).getName();
String value = property.get(i).getValue();
metadataProperties.put(name, value);
}
return metadataProperties;
}
public Map getVariables(JobType job) {
final Map result = new HashMap();
VariablesType variablesType = job.getSource().getVariables();
if (variablesType != null) {
List variables = variablesType.getVariable();
for (VariableType variableType : variables) {
String id = variableType.getId();
String value = variableType.getValue();
result.put(id, value);
}
}
return result;
}
public List getSourceColumnPaths(JobType job) {
final List paths;
final ColumnsType columnsType = job.getSource().getColumns();
if (columnsType != null) {
final List columns = columnsType.getColumn();
paths = new ArrayList(columns.size());
for (ColumnType columnType : columns) {
final String path = columnType.getPath();
paths.add(path);
}
} else {
paths = Collections.emptyList();
}
return paths;
}
private List getSourceColumnTypes(JobType job) {
final List types;
final ColumnsType columnsType = job.getSource().getColumns();
if (columnsType != null) {
final List columns = columnsType.getColumn();
types = new ArrayList(columns.size());
for (ColumnType columnType : columns) {
final String typeName = columnType.getType();
if (StringUtils.isNullOrEmpty(typeName)) {
types.add(null);
} else {
try {
final org.apache.metamodel.schema.ColumnType type = org.apache.metamodel.schema.ColumnTypeImpl
.valueOf(typeName);
types.add(type);
} catch (IllegalArgumentException e) {
// type literal was not a valid ColumnType
logger.warn("Unrecognized column type: {}", typeName);
types.add(null);
}
}
}
} else {
types = Collections.emptyList();
}
return types;
}
public AnalysisJobBuilder create(FileObject file) {
InputStream inputStream = null;
try {
inputStream = file.getContent().getInputStream();
return create(inputStream);
} catch (FileSystemException e) {
throw new IllegalArgumentException(e);
} finally {
FileHelper.safeClose(inputStream);
}
}
public AnalysisJobBuilder create(File file) {
InputStream inputStream = null;
try {
inputStream = new BufferedInputStream(new FileInputStream(file));
return create(inputStream);
} catch (IOException e) {
throw new IllegalArgumentException(e);
} finally {
FileHelper.safeClose(inputStream);
}
}
public AnalysisJobBuilder create(InputStream inputStream) throws NoSuchDatastoreException {
return create(unmarshallJob(inputStream), null, null);
}
public AnalysisJobBuilder create(InputStream inputStream, SourceColumnMapping sourceColumnMapping)
throws NoSuchDatastoreException {
return create(inputStream, sourceColumnMapping, null);
}
public AnalysisJobBuilder create(InputStream inputStream, SourceColumnMapping sourceColumnMapping,
Map variableOverrides) throws NoSuchDatastoreException {
return create(unmarshallJob(inputStream), sourceColumnMapping, variableOverrides);
}
public AnalysisJobBuilder create(InputStream inputStream, Map variableOverrides)
throws NoSuchDatastoreException {
return create(unmarshallJob(inputStream), null, variableOverrides);
}
private JobType unmarshallJob(InputStream inputStream) {
try {
Unmarshaller unmarshaller = _jaxbContext.createUnmarshaller();
unmarshaller.setEventHandler(new JaxbValidationEventHandler());
JobType job = (JobType) unmarshaller.unmarshal(inputStream);
return job;
} catch (JAXBException e) {
throw new IllegalArgumentException(e);
}
}
public AnalysisJobBuilder create(JobType job) {
return create(job, null, null);
}
public AnalysisJobBuilder create(JobType job, SourceColumnMapping sourceColumnMapping,
Map variableOverrides) throws NoSuchDatastoreException {
if (job == null) {
throw new IllegalArgumentException("Job cannot be null");
}
if (sourceColumnMapping != null && !sourceColumnMapping.isSatisfied()) {
throw new IllegalArgumentException("Source column mapping is not satisfied!");
}
final Map variables = getVariables(job);
if (variableOverrides != null) {
final Set> entrySet = variableOverrides.entrySet();
for (Entry entry : entrySet) {
final String key = entry.getKey();
final String value = entry.getValue();
String originalValue = variables.put(key, value);
logger.info("Overriding variable: {}={} (original value was {})", new Object[] { key, value,
originalValue });
}
}
final JobMetadataType metadata = job.getJobMetadata();
if (metadata != null) {
logger.info("Job name: {}", metadata.getJobName());
logger.info("Job version: {}", metadata.getJobVersion());
logger.info("Job description: {}", metadata.getJobDescription());
logger.info("Author: {}", metadata.getAuthor());
logger.info("Created date: {}", metadata.getCreatedDate());
logger.info("Updated date: {}", metadata.getUpdatedDate());
logger.info("Job metadata properties: {}", getMetadataProperties(metadata));
}
final AnalysisJobBuilder builder = new AnalysisJobBuilder(_configuration);
try {
final AnalysisJobBuilder result = create(job, sourceColumnMapping, metadata, variables, builder);
return result;
} catch (RuntimeException e) {
FileHelper.safeClose(builder);
throw e;
}
}
private AnalysisJobBuilder create(JobType job, SourceColumnMapping sourceColumnMapping, JobMetadataType metadata,
final Map variables, final AnalysisJobBuilder analysisJobBuilder) {
final Datastore datastore;
final DatastoreConnection datastoreConnection;
final SourceType source = job.getSource();
if (sourceColumnMapping == null) {
// use automatic mapping if no explicit mapping is supplied
final DataContextType dataContext = source.getDataContext();
final String ref = dataContext.getRef();
if (StringUtils.isNullOrEmpty(ref)) {
throw new IllegalStateException("Datastore ref cannot be null");
}
datastore = _configuration.getDatastoreCatalog().getDatastore(ref);
if (datastore == null) {
throw new NoSuchDatastoreException(ref);
}
datastoreConnection = datastore.openConnection();
final List sourceColumnPaths = getSourceColumnPaths(job);
sourceColumnMapping = new SourceColumnMapping(sourceColumnPaths);
sourceColumnMapping.autoMap(datastore);
} else {
datastore = sourceColumnMapping.getDatastore();
datastoreConnection = datastore.openConnection();
}
try {
analysisJobBuilder.setDatastore(datastore);
if (metadata != null) {
final ImmutableAnalysisJobMetadata immutableAnalysisJobMetadata = new ImmutableAnalysisJobMetadata(
metadata.getJobName(), metadata.getJobVersion(), metadata.getJobDescription(),
metadata.getAuthor(), convertToDate(metadata.getCreatedDate()),
convertToDate(metadata.getUpdatedDate()), datastore.getName(), getSourceColumnPaths(job),
getSourceColumnTypes(job), variables, getMetadataProperties(metadata));
analysisJobBuilder.setAnalysisJobMetadata(immutableAnalysisJobMetadata);
}
// map column id's to input columns
final Map> inputColumns = readSourceColumns(sourceColumnMapping, analysisJobBuilder,
source);
final StringConverter stringConverter = createStringConverter(analysisJobBuilder);
final DescriptorProvider descriptorProvider = _configuration.getEnvironment().getDescriptorProvider();
final Map componentBuilders = new HashMap<>();
// iterate to create all the initial component builders without any
// wiring
final List allComponentTypes = getAllComponentTypes(job);
for (ComponentType componentType : allComponentTypes) {
final ComponentBuilder componentBuilder = createComponentBuilder(analysisJobBuilder,
descriptorProvider, componentType);
initializeComponentBuilder(variables, stringConverter, componentBuilders, componentType,
componentBuilder);
}
wireInputColumns(inputColumns, componentBuilders);
wireRequirements(componentBuilders);
return analysisJobBuilder;
} finally {
datastoreConnection.close();
}
}
private void wireRequirements(final Map componentBuilders) {
final Map outcomeMapping = new HashMap();
// iterate initialize collect all outcomes by their IDs
for (ComponentType componentType : componentBuilders.keySet()) {
if (componentType instanceof FilterType) {
final FilterType filterType = (FilterType) componentType;
final FilterComponentBuilder, ?> filterBuilder = (FilterComponentBuilder, ?>) componentBuilders
.get(componentType);
final List outcomeTypes = filterType.getOutcome();
for (OutcomeType outcomeType : outcomeTypes) {
final String categoryName = outcomeType.getCategory();
final Enum> category = filterBuilder.getDescriptor().getOutcomeCategoryByName(categoryName);
if (category == null) {
throw new ComponentConfigurationException("No such outcome category name: " + categoryName
+ " (in " + filterBuilder.getDescriptor().getDisplayName() + ")");
}
final String id = outcomeType.getId();
if (StringUtils.isNullOrEmpty(id)) {
throw new IllegalStateException("Outcome id cannot be null");
}
if (outcomeMapping.containsKey(id)) {
throw new ComponentConfigurationException("Outcome id '" + id + "' is not unique");
}
outcomeMapping.put(id, filterBuilder.getFilterOutcome(category));
}
}
}
// iterate again to set up filter outcome dependencies
for (ComponentType componentType : componentBuilders.keySet()) {
wireRequirement(outcomeMapping, componentBuilders, componentType);
}
}
private ComponentBuilder createComponentBuilder(final AnalysisJobBuilder analysisJobBuilder,
final DescriptorProvider descriptorProvider, ComponentType componentType) {
String ref;
final ComponentBuilder componentBuilder;
if (componentType instanceof TransformerType) {
// special instantiation of transformers
final TransformerType transformer = (TransformerType) componentType;
ref = transformer.getDescriptor().getRef();
if (StringUtils.isNullOrEmpty(ref)) {
throw new IllegalStateException("Transformer descriptor ref cannot be null");
}
final TransformerDescriptor> descriptor = descriptorProvider.getTransformerDescriptorByDisplayName(ref);
if (descriptor == null) {
throw new NoSuchComponentException(Transformer.class, ref);
}
componentBuilder = analysisJobBuilder.addTransformer(descriptor);
} else if (componentType instanceof FilterType) {
// special instantiation of filters
final FilterType filter = (FilterType) componentType;
ref = filter.getDescriptor().getRef();
if (StringUtils.isNullOrEmpty(ref)) {
throw new IllegalStateException("Filter descriptor ref cannot be null");
}
final FilterDescriptor, ?> descriptor = descriptorProvider.getFilterDescriptorByDisplayName(ref);
if (descriptor == null) {
throw new NoSuchComponentException(Filter.class, ref);
}
componentBuilder = analysisJobBuilder.addFilter(descriptor);
} else if (componentType instanceof AnalyzerType) {
// special instantiation of analyzers
final AnalyzerType analyzer = (AnalyzerType) componentType;
ref = analyzer.getDescriptor().getRef();
if (StringUtils.isNullOrEmpty(ref)) {
throw new IllegalStateException("Analyzer descriptor ref cannot be null");
}
final AnalyzerDescriptor> descriptor = descriptorProvider.getAnalyzerDescriptorByDisplayName(ref);
if (descriptor == null) {
throw new NoSuchComponentException(Analyzer.class, ref);
}
final Class extends Analyzer>> analyzerClass = descriptor.getComponentClass();
componentBuilder = analysisJobBuilder.addAnalyzer(analyzerClass);
} else {
throw new UnsupportedOperationException("Unexpected transformation component type: " + componentType);
}
return componentBuilder;
}
private List getAllComponentTypes(JobType job) {
final List result = new ArrayList<>();
final TransformationType transformation = job.getTransformation();
if (transformation != null) {
result.addAll(transformation.getTransformerOrFilter());
}
final AnalysisType analysis = job.getAnalysis();
if (analysis != null) {
result.addAll(analysis.getAnalyzer());
}
return result;
}
/**
* Wires input columns from either source or transformer output. This
* process is an iteration to find the next consumer with
* "satisfied column requirements".
*
* @param inputColumns
* @param componentBuilders
*/
private void wireInputColumns(final Map> inputColumns,
final Map componentBuilders) {
// iterate again to set up column dependencies (one at a time -
// whichever is possible based on the configuration of the column
// sources (transformers))
final List unconfiguredComponentKeys = new LinkedList(componentBuilders.keySet());
while (!unconfiguredComponentKeys.isEmpty()) {
boolean progress = false;
for (Iterator it = unconfiguredComponentKeys.iterator(); it.hasNext();) {
boolean configurable = true;
final ComponentType unconfiguredTransformerKey = it.next();
final List input = unconfiguredTransformerKey.getInput();
for (InputType inputType : input) {
final String ref = inputType.getRef();
if (StringUtils.isNullOrEmpty(ref)) {
final String value = inputType.getValue();
if (value == null) {
throw new IllegalStateException("Component input column ref & value cannot be null");
}
} else if (!inputColumns.containsKey(ref)) {
configurable = false;
break;
}
}
if (configurable) {
progress = true;
final ComponentBuilder componentBuilder = componentBuilders.get(unconfiguredTransformerKey);
applyInputColumns(input, inputColumns, componentBuilder);
if (componentBuilder instanceof TransformerComponentBuilder) {
final TransformerComponentBuilder> transformerBuilder = (TransformerComponentBuilder>) componentBuilder;
final TransformerType transformerType = (TransformerType) unconfiguredTransformerKey;
final List> outputColumns = transformerBuilder.getOutputColumns();
final List output = transformerType.getOutput();
if (outputColumns.size() != output.size()) {
final String message = "Expected " + outputColumns.size() + " output column(s), but found "
+ output.size() + " (" + transformerBuilder + ")";
if (outputColumns.isEmpty()) {
// typically empty output columns is due to
// a component not being configured, we'll
// attach the configuration exception as a
// cause.
try {
transformerBuilder.isConfigured(true);
} catch (Exception e) {
throw new ComponentConfigurationException(message, e);
}
}
throw new ComponentConfigurationException(message);
}
for (int i = 0; i < output.size(); i++) {
final OutputType o1 = output.get(i);
final MutableInputColumn> o2 = outputColumns.get(i);
final String name = o1.getName();
if (!StringUtils.isNullOrEmpty(name)) {
o2.setName(name);
}
final Boolean hidden = o1.isHidden();
if (hidden != null && hidden.booleanValue()) {
o2.setHidden(true);
}
final String id = o1.getId();
if (StringUtils.isNullOrEmpty(id)) {
throw new IllegalStateException("Transformer output column id cannot be null");
}
registerInputColumn(inputColumns, id, o2);
}
}
// remove this component from the "unconfigured" set
it.remove();
}
}
if (!progress) {
// no progress was made in a complete iteration - no satisfied
// requirements where found. Time to produce an error message...
final StringBuilder sb = new StringBuilder();
for (ComponentType transformerType : unconfiguredComponentKeys) {
if (sb.length() != 0) {
sb.append(", ");
}
final DescriptorType descriptor = transformerType.getDescriptor();
sb.append(descriptor.getRef());
sb.append("(input: ");
final List input = transformerType.getInput();
int i = 0;
for (InputType inputType : input) {
if (i != 0) {
sb.append(", ");
}
final String ref = inputType.getRef();
if (StringUtils.isNullOrEmpty(ref)) {
sb.append("value=" + inputType.getValue());
} else {
sb.append("ref=" + ref);
}
i++;
}
sb.append(")");
}
throw new ComponentConfigurationException("Could not connect column dependencies for components: "
+ sb.toString());
}
}
}
private void initializeComponentBuilder(final Map variables, final StringConverter stringConverter,
final Map componentBuilders, ComponentType componentType,
final ComponentBuilder componentBuilder) {
// shared setting of properties (except for input columns)
componentBuilder.setName(componentType.getName());
applyProperties(componentBuilder, componentType.getProperties(), componentType.getMetadataProperties(),
stringConverter, variables);
componentBuilders.put(componentType, componentBuilder);
}
private void wireRequirement(final Map outcomeMapping,
final Map componentBuilders, ComponentType componentType) {
final String ref = componentType.getRequires();
if (ref != null) {
final ComponentBuilder builder = componentBuilders.get(componentType);
final ComponentRequirement requirement = getRequirement(ref, outcomeMapping);
builder.setComponentRequirement(requirement);
}
}
/**
* Reads the source element of the job to extract a map of column IDs and
* related source {@link InputColumn}s.
*
* @param sourceColumnMapping
* @param analysisJobBuilder
* @param source
* @return
*/
private Map> readSourceColumns(SourceColumnMapping sourceColumnMapping,
final AnalysisJobBuilder analysisJobBuilder, final SourceType source) {
final Map> inputColumns = new HashMap>();
final ColumnsType columnsType = source.getColumns();
if (columnsType != null) {
final List columns = columnsType.getColumn();
for (ColumnType column : columns) {
final String path = column.getPath();
if (StringUtils.isNullOrEmpty(path)) {
throw new IllegalStateException("Column path cannot be null");
}
final Column physicalColumn = sourceColumnMapping.getColumn(path);
if (physicalColumn == null) {
logger.error("Column {} not found in {}", path, sourceColumnMapping);
throw new NoSuchColumnException(path);
}
final MetaModelInputColumn inputColumn = new MetaModelInputColumn(physicalColumn);
final String id = column.getId();
if (StringUtils.isNullOrEmpty(id)) {
throw new IllegalStateException("Source column id cannot be null");
}
final String expectedType = column.getType();
if (expectedType != null) {
org.apache.metamodel.schema.ColumnType actualType = physicalColumn.getType();
if (actualType != null && !expectedType.equals(actualType.toString())) {
logger.warn("Column '{}' had type '{}', but '{}' was expected.", new Object[] { path,
actualType, expectedType });
}
}
registerInputColumn(inputColumns, id, inputColumn);
analysisJobBuilder.addSourceColumn(inputColumn);
}
}
return inputColumns;
}
private Date convertToDate(XMLGregorianCalendar calendar) {
if (calendar != null) {
return calendar.toGregorianCalendar().getTime();
}
return null;
}
private ComponentRequirement getRequirement(String ref, Map outcomeMapping) {
if (AnyComponentRequirement.KEYWORD.equals(ref)) {
return AnyComponentRequirement.get();
}
// check for simple component requirements
{
final FilterOutcome filterOutcome = outcomeMapping.get(ref);
if (filterOutcome != null) {
return new SimpleComponentRequirement(filterOutcome);
}
}
// check for compound component requirements
final List tokens = Splitter.on(" OR ").omitEmptyStrings().trimResults().splitToList(ref);
if (tokens.size() > 1) {
final List list = new ArrayList<>(tokens.size());
for (final String token : tokens) {
final FilterOutcome filterOutcome = outcomeMapping.get(token);
if (filterOutcome == null) {
throw new ComponentConfigurationException("Could not resolve outcome '" + token
+ "' in requirement: " + ref);
}
list.add(filterOutcome);
}
return new CompoundComponentRequirement(list);
}
throw new ComponentConfigurationException("Could not resolve requirement: " + ref);
}
private void applyInputColumns(List input, Map> inputColumns,
ComponentBuilder componentBuilder) {
// build a map of inputs first so that we can set the
// input in one go
final ListMultimap> inputMap = MultimapBuilder.hashKeys()
.arrayListValues().build();
for (InputType inputType : input) {
String name = inputType.getName();
String ref = inputType.getRef();
InputColumn> inputColumn;
if (StringUtils.isNullOrEmpty(ref)) {
inputColumn = createExpressionBasedInputColumn(inputType);
} else {
inputColumn = inputColumns.get(ref);
}
if (StringUtils.isNullOrEmpty(name)) {
ConfiguredPropertyDescriptor propertyDescriptor = componentBuilder
.getDefaultConfiguredPropertyForInput();
inputMap.put(propertyDescriptor, inputColumn);
} else {
ConfiguredPropertyDescriptor propertyDescriptor = componentBuilder.getDescriptor()
.getConfiguredProperty(name);
inputMap.put(propertyDescriptor, inputColumn);
}
}
final Set keys = inputMap.keySet();
for (ConfiguredPropertyDescriptor propertyDescriptor : keys) {
List> inputColumnsForProperty = inputMap.get(propertyDescriptor);
componentBuilder.addInputColumns(inputColumnsForProperty, propertyDescriptor);
}
}
private StringConverter createStringConverter(final AnalysisJobBuilder analysisJobBuilder) {
final AnalysisJob job = analysisJobBuilder.toAnalysisJob(false);
return new StringConverter(_configuration, job);
}
private InputColumn> createExpressionBasedInputColumn(InputType inputType) {
String expression = inputType.getValue();
if (expression == null) {
throw new IllegalStateException("Input ref & value cannot both be null");
}
if (expression.indexOf("#{") == -1) {
return new ConstantInputColumn(expression);
} else {
return new ELInputColumn(expression);
}
}
private void registerInputColumn(Map> inputColumns, String id, InputColumn> inputColumn) {
if (StringUtils.isNullOrEmpty(id)) {
throw new IllegalStateException("Column id cannot be null");
}
if (inputColumns.containsKey(id)) {
throw new ComponentConfigurationException("Column id is not unique: " + id);
}
inputColumns.put(id, inputColumn);
}
private void applyProperties(final ComponentBuilder builder,
final ConfiguredPropertiesType configuredPropertiesType, final MetadataProperties metadataPropertiesType,
final StringConverter stringConverter, final Map variables) {
if (configuredPropertiesType != null) {
final List properties = configuredPropertiesType.getProperty();
final ComponentDescriptor> descriptor = builder.getDescriptor();
for (Property property : properties) {
final String name = property.getName();
final ConfiguredPropertyDescriptor configuredProperty = descriptor.getConfiguredProperty(name);
if (configuredProperty == null) {
throw new ComponentConfigurationException("No such property: " + name);
}
String stringValue = getValue(property);
if (stringValue == null) {
String variableRef = property.getRef();
if (variableRef == null) {
throw new IllegalStateException("Neither value nor ref was specified for property: " + name);
}
stringValue = variables.get(variableRef);
if (stringValue == null) {
throw new ComponentConfigurationException("No such variable: " + variableRef);
}
}
final Class extends Converter>> customConverter = configuredProperty.getCustomConverter();
final Object value = stringConverter.deserialize(stringValue, configuredProperty.getType(),
customConverter);
logger.debug("Setting property '{}' to {}", name, value);
builder.setConfiguredProperty(configuredProperty, value);
}
}
if (metadataPropertiesType != null) {
final List propertyList = metadataPropertiesType
.getProperty();
for (org.datacleaner.job.jaxb.MetadataProperties.Property property : propertyList) {
final String name = property.getName();
final String value = property.getValue();
builder.setMetadataProperty(name, value);
}
}
}
private String getValue(Property property) {
String value = property.getValue();
if (StringUtils.isNullOrEmpty(value)) {
final String valueAttribute = property.getValueAttribute();
if (value != null) {
value = valueAttribute;
}
}
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy