com.sun.msv.verifier.jaxp.SAXParserFactoryImpl Maven / Gradle / Ivy
/*
* Copyright (c) 2001-2013 Oracle and/or its affiliates. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* - Neither the name of Oracle nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.sun.msv.verifier.jaxp;
import java.io.IOException;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import org.iso_relax.verifier.Schema;
import org.iso_relax.verifier.VerifierConfigurationException;
import org.iso_relax.verifier.VerifierFactory;
import org.xml.sax.SAXException;
import org.xml.sax.SAXNotRecognizedException;
import org.xml.sax.SAXNotSupportedException;
import com.sun.msv.verifier.jarv.TheFactoryImpl;
/**
* SAXParserFactory implementation that supports validation.
*
*
* This class uses another SAXParserFactory implementation and
* adds the validation capability to it.
*
* @author Kohsuke KAWAGUCHI
*/
public class SAXParserFactoryImpl extends SAXParserFactory
{
/** Actual SAXParserFactory implementation. */
private final SAXParserFactory core;
/** JARV VerifierFactory implementation, which will be used to parse schemas. */
private final VerifierFactory jarvFactory;
/**
* JARV Schema object which is associated with this factory, or null.
*/
private Schema schema;
/**
* Creates a new instance by using the default SAXParserFactory implementation
* as the underlying parser. This constructor does not set any schema.
*/
public SAXParserFactoryImpl() {
this( SAXParserFactory.newInstance() );
}
/**
* Creates a new instance by specifying the underlying SAXParserFactory
* implementation. This constructor does not set any schema.
*/
public SAXParserFactoryImpl( SAXParserFactory _factory ) {
this(_factory,null);
}
/**
* Creates a new instance by using a default SAXParserFactory implementation
* and the specified schema object.
*/
public SAXParserFactoryImpl( Schema schema ) {
this( SAXParserFactory.newInstance(), schema );
}
/**
* Creates a new instance that validates documents against the specified schema.
*/
public SAXParserFactoryImpl( java.io.File schemaAsFile )
throws VerifierConfigurationException, SAXException, IOException {
this();
schema = jarvFactory.compileSchema(schemaAsFile);
}
/**
* Creates a new instance that validates documents against the specified schema.
*/
public SAXParserFactoryImpl( org.xml.sax.InputSource _schema )
throws VerifierConfigurationException, SAXException, IOException {
this();
schema = jarvFactory.compileSchema(_schema);
}
/**
* Creates a new instance that validates documents against the specified schema.
*/
public SAXParserFactoryImpl( String schemaUrl )
throws VerifierConfigurationException, SAXException, IOException {
this();
schema = jarvFactory.compileSchema(schemaUrl);
}
public SAXParserFactoryImpl( SAXParserFactory _factory, Schema _schema ) {
this.core = _factory;
// to make this factory work with JARV, configure it to namespace aware.
core.setNamespaceAware(true);
jarvFactory = new TheFactoryImpl(core);
this.schema = _schema;
}
public boolean getFeature( String name ) throws ParserConfigurationException,
SAXNotRecognizedException,
SAXNotSupportedException {
if( name.equals(com.sun.msv.verifier.jarv.Const.PANIC_MODE_FEATURE) )
return jarvFactory.isFeature(name);
return core.getFeature(name);
}
public void setFeature( String name, boolean value )
throws ParserConfigurationException, SAXNotRecognizedException, SAXNotSupportedException {
if( name.equals(com.sun.msv.verifier.jarv.Const.PANIC_MODE_FEATURE) )
jarvFactory.setFeature(name,value);
core.setFeature(name,value);
}
public SAXParser newSAXParser()
throws ParserConfigurationException, SAXException {
try {
return new SAXParserImpl(core.newSAXParser(),jarvFactory,
(schema==null)?null:schema.newVerifier() );
} catch( VerifierConfigurationException e ) {
throw new SAXException(e);
}
}
public void setNamespaceAware( boolean awareness ) {
core.setNamespaceAware(awareness);
}
public boolean isNamespaceAware() {
return core.isNamespaceAware();
}
public void setValidating( boolean validating ) {
core.setValidating(validating);
}
public boolean isValidating() {
return core.isValidating();
}
}