/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code 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 General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* <p>Implements pluggable Datatypes.</p>
*
* <p>This class is duplicated for each JAXP subpackage so keep it in
* sync. It is package private for secure class loading.</p>
*
* @author Santiago.PericasGeertsen@sun.com
*/
class FactoryFinder {
// Check we have access to package.
/**
* Internal debug flag.
*/
private static boolean debug = false;
/**
* Cache for properties in java.home/lib/jaxp.properties
*/
/**
* Flag indicating if properties from java.home/lib/jaxp.properties
* have been cached.
*/
static volatile boolean firstTime = true;
/**
* Security support class use to check access control before
* getting certain system resources.
*/
// Define system property "jaxp.debug" to get output
static {
// SecurityException out of this code.
try {
// Allow simply setting the prop to turn on debug
}
catch (SecurityException se) {
debug = false;
}
}
if (debug) {
}
}
/**
* Attempt to load a class using the class loader supplied. If that fails
* and fall back is enabled, the current (i.e. bootstrap) class loader is
* tried.
*
* If the class loader supplied is <code>null</code>, first try using the
* context class loader followed by the current (i.e. bootstrap) class
* loader.
*
* Use bootstrap classLoader if cl = null and useBSClsLoader is true
*/
{
try {
if (useBSClsLoader) {
} else {
throw new ClassNotFoundException();
}
else {
}
}
}
else {
}
}
catch (ClassNotFoundException e1) {
if (doFallback) {
// Use current class loader - should always be bootstrap CL
}
else {
throw e1;
}
}
}
/**
* Create an instance of a class. Delegates to method
* <code>getProviderClass()</code> in order to load the class.
*
* @param className Name of the concrete class corresponding to the
* service provider
*
* @param cl <code>ClassLoader</code> used to load the factory class. If <code>null</code>
* current <code>Thread</code>'s context classLoader is used to load the factory class.
*
* @param doFallback True if the current ClassLoader should be tried as
* a fallback if the class is not found using cl
*/
throws ConfigurationError
{
}
/**
* Create an instance of a class. Delegates to method
* <code>getProviderClass()</code> in order to load the class.
*
* @param className Name of the concrete class corresponding to the
* service provider
*
* @param cl <code>ClassLoader</code> used to load the factory class. If <code>null</code>
* current <code>Thread</code>'s context classLoader is used to load the factory class.
*
* @param doFallback True if the current ClassLoader should be tried as
* a fallback if the class is not found using cl
*
* @param useBSClsLoader True if cl=null actually meant bootstrap classLoader. This parameter
* is needed since DocumentBuilderFactory/SAXParserFactory defined null as context classLoader.
*/
static Object newInstance(String className, ClassLoader cl, boolean doFallback, boolean useBSClsLoader)
throws ConfigurationError
{
// make sure we have access to restricted packages
useBSClsLoader = true;
}
}
try {
if (debug) { // Extra check to avoid computing cl strings
" using ClassLoader: " + cl);
}
return instance;
}
catch (ClassNotFoundException x) {
throw new ConfigurationError(
}
catch (Exception x) {
throw new ConfigurationError(
x);
}
}
/**
* Finds the implementation Class object in the specified order.
*
* @return Class object of factory, never null
*
* @param factoryId Name of the factory to find, same as
* a property name
* @param fallbackClassName Implementation class name, if nothing else
* is found. Use null to mean no fallback.
*
* Package private so this code can be shared.
*/
throws ConfigurationError
{
}
/**
* Finds the implementation Class object in the specified order. Main
* entry point.
* @return Class object of factory, never null
*
* @param factoryId Name of the factory to find, same as
* a property name
*
* @param cl ClassLoader to be used to load the class, null means to use
* the bootstrap ClassLoader
*
* @param fallbackClassName Implementation class name, if nothing else
* is found. Use null to mean no fallback.
*
* Package private so this code can be shared.
*/
throws ConfigurationError
{
// Use the system property first
try {
if (systemProp != null) {
}
}
catch (SecurityException se) {
}
// Try read $java.home/lib/stax.properties followed by
// $java.home/lib/jaxp.properties if former not present
try {
if (firstTime) {
synchronized (cacheProps) {
if (firstTime) {
firstTime = false;
if (ss.doesFileExist(f)) {
dPrint("Read properties file "+f);
}
else {
f = new File(configFile);
if (ss.doesFileExist(f)) {
dPrint("Read properties file "+f);
}
}
}
}
}
if (factoryClassName != null) {
}
}
}
// Try Jar Service Provider Mechanism
return provider;
}
if (fallbackClassName == null) {
throw new ConfigurationError(
}
}
/*
* Try to find provider using Jar Service Provider Mechanism
*
* @return instance of provider class if found or null
*/
throws ConfigurationError
{
// First try the Context ClassLoader
boolean useBSClsLoader = false;
// If no provider found then try the current ClassLoader
useBSClsLoader = true;
}
} else {
// No Context ClassLoader, try the current ClassLoader
useBSClsLoader = true;
}
// No provider found
return null;
}
if (debug) { // Extra check to avoid computing cl strings
}
try {
}
}
try {
// XXX Does not handle all possible input as specified by the
// Jar Service Provider specification
} catch (IOException x) {
// No provider found
return null;
}
// Note: here we do not want to fall back to the current
// ClassLoader because we want to avoid the case where the
// resource file was found using one ClassLoader and the
// provider class was instantiated using a different one.
}
// No provider found
return null;
}
/**
* Construct a new instance with the specified detail string and
* exception.
*/
super(msg);
this.exception = x;
}
return exception;
}
/**
* use the exception chaining mechanism of JDK1.4
*/
return exception;
}
}
}