blob: fad69c7cb3a5f1153d204c053fff12454dfd4e33 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.camel.component.schematron.processor;
import javax.xml.XMLConstants;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import javax.xml.transform.Templates;
import org.xml.sax.SAXException;
import org.xml.sax.XMLReader;
import org.apache.camel.component.schematron.exception.SchematronConfigException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Schematron Engine Factory
*
*/
public final class SchematronProcessorFactory {
private static final Logger LOG = LoggerFactory.getLogger(SchematronProcessorFactory.class);
/**
* Private constructor.
*/
private SchematronProcessorFactory() {
throw new IllegalStateException();
}
/**
* Creates an instance of SchematronEngine
*
* @param rules the given schematron rules
* @return an instance of SchematronEngine
*/
public static SchematronProcessor newSchematronEngine(final Templates rules) {
try {
return new SchematronProcessor(getXMLReader(), rules);
} catch (Exception e) {
LOG.error("Failed to parse the configuration file");
throw new SchematronConfigException(e);
}
}
/**
* Gets XMLReader.
*
* @return instance of XMLReader
* @throws ParserConfigurationException
* @throws SAXException
*/
private static XMLReader getXMLReader() throws ParserConfigurationException, SAXException {
final SAXParserFactory fac = SAXParserFactory.newInstance();
fac.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, Boolean.TRUE);
fac.setValidating(false);
final SAXParser parser = fac.newSAXParser();
XMLReader reader = parser.getXMLReader();
return reader;
}
}