org.milyn.smooks.edi.unedifact.UNEdifactReader Maven / Gradle / Ivy
/*
Milyn - Copyright (C) 2006 - 2010
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License (version 2.1) as published by the Free Software
Foundation.
This library 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:
http://www.gnu.org/licenses/lgpl.txt
*/
package org.milyn.smooks.edi.unedifact;
import java.io.IOException;
import org.apache.commons.lang.StringUtils;
import org.milyn.cdr.annotation.AppContext;
import org.milyn.cdr.annotation.ConfigParam;
import org.milyn.container.ApplicationContext;
import org.milyn.container.ExecutionContext;
import org.milyn.edisax.BufferedSegmentReader;
import org.milyn.edisax.interchange.ControlBlockHandlerFactory;
import org.milyn.edisax.interchange.InterchangeContext;
import org.milyn.edisax.model.internal.Delimiters;
import org.milyn.edisax.unedifact.UNEdifactInterchangeParser;
import org.milyn.edisax.registry.DefaultMappingsRegistry;
import org.milyn.namespace.NamespaceDeclarationStack;
import org.milyn.xml.SmooksXMLReader;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
/**
* UN/EDIFACT Smooks reader.
*
* @author [email protected]
*/
public class UNEdifactReader extends UNEdifactInterchangeParser implements SmooksXMLReader {
@ConfigParam
private String mappingModel;
@ConfigParam(defaultVal = "false")
private boolean validate;
@ConfigParam(defaultVal = "false")
private boolean ignoreNewLines;
@ConfigParam(defaultVal = "true")
private boolean ignoreEmptyNodes;
@AppContext
private ApplicationContext applicationContext;
private ExecutionContext executionContext;
public void setExecutionContext(ExecutionContext executionContext) {
this.executionContext = executionContext;
}
@Override
public void parse(InputSource unedifactInterchange) throws IOException,
SAXException {
ignoreNewLines(ignoreNewLines);
ignoreEmptyNodes(ignoreEmptyNodes);
validate(validate);
// Default Mappings Registry is already set to LazyMappingsRegistry
// only if mappingModel is defined we should set another instance
if (!StringUtils.isEmpty(mappingModel)) {
setMappingsRegistry(new DefaultMappingsRegistry(mappingModel, applicationContext.getResourceLocator().getBaseURI()));
}
super.parse(unedifactInterchange);
}
@Override
protected InterchangeContext createInterchangeContext(
BufferedSegmentReader segmentReader, boolean validate,
ControlBlockHandlerFactory controlBlockHandlerFactory, NamespaceDeclarationStack namespaceDeclarationStack) {
return new InterchangeContext(segmentReader, registry, getContentHandler(), getFeatures(), controlBlockHandlerFactory, namespaceDeclarationStack, validate) {
@Override
public void pushDelimiters(Delimiters delimiters) {
super.pushDelimiters(delimiters);
// Bind the delimiters into the bean context. Will then get
// auto-wired into interchanges...
executionContext.getBeanContext().addBean(
"interchangeDelimiters", delimiters);
}
};
}
}