Esempio n. 1
0
  /**
   * Finds the implementation Class object in the specified order. The specified order is the
   * following:
   *
   * <ol>
   *   <li>query the system property using <code>System.getProperty</code>
   *   <li>read <code>$java.home/lib/<i>propertiesFilename</i></code> file
   *   <li>read <code>META-INF/services/<i>factoryId</i></code> file
   *   <li>use fallback classname
   * </ol>
   *
   * @return Class object of factory, never null
   * @param factoryId Name of the factory to find, same as a property name
   * @param propertiesFilename The filename in the $java.home/lib directory of the properties file.
   *     If none specified, ${java.home}/lib/xerces.properties will be used.
   * @param fallbackClassName Implementation class name, if nothing else is found. Use null to mean
   *     no fallback.
   * @exception ObjectFactory.ConfigurationError
   */
  static Object createObject(String factoryId, String propertiesFilename, String fallbackClassName)
      throws ConfigurationError {
    if (DEBUG) debugPrintln("debug is on");

    SecuritySupport ss = SecuritySupport.getInstance();
    ClassLoader cl = findClassLoader();

    // Use the system property first
    try {
      String systemProp = ss.getSystemProperty(factoryId);
      if (systemProp != null) {
        if (DEBUG) debugPrintln("found system property, value=" + systemProp);
        return newInstance(systemProp, cl, true);
      }
    } catch (SecurityException se) {
      // Ignore and continue w/ next location
    }

    // JAXP specific change
    // always use fallback class to avoid the expense of constantly
    // "stat"ing a non-existent "xerces.properties" and jar SPI entry
    // see CR 6400863: Expensive creating of SAX parser in Mustang
    if (true) {
      if (fallbackClassName == null) {
        throw new ConfigurationError("Provider for " + factoryId + " cannot be found", null);
      }

      if (DEBUG) debugPrintln("using fallback, value=" + fallbackClassName);
      return newInstance(fallbackClassName, cl, true);
    }

    // Try to read from propertiesFilename, or $java.home/lib/xerces.properties
    String factoryClassName = null;
    // no properties file name specified; use $JAVA_HOME/lib/xerces.properties:
    if (propertiesFilename == null) {
      File propertiesFile = null;
      boolean propertiesFileExists = false;
      try {
        String javah = ss.getSystemProperty("java.home");
        propertiesFilename =
            javah + File.separator + "lib" + File.separator + DEFAULT_PROPERTIES_FILENAME;
        propertiesFile = new File(propertiesFilename);
        propertiesFileExists = ss.getFileExists(propertiesFile);
      } catch (SecurityException e) {
        // try again...
        fLastModified = -1;
        fXercesProperties = null;
      }

      synchronized (ObjectFactory.class) {
        boolean loadProperties = false;
        FileInputStream fis = null;
        try {
          // file existed last time
          if (fLastModified >= 0) {
            if (propertiesFileExists
                && (fLastModified < (fLastModified = ss.getLastModified(propertiesFile)))) {
              loadProperties = true;
            } else {
              // file has stopped existing...
              if (!propertiesFileExists) {
                fLastModified = -1;
                fXercesProperties = null;
              } // else, file wasn't modified!
            }
          } else {
            // file has started to exist:
            if (propertiesFileExists) {
              loadProperties = true;
              fLastModified = ss.getLastModified(propertiesFile);
            } // else, nothing's changed
          }
          if (loadProperties) {
            // must never have attempted to read xerces.properties before (or it's outdeated)
            fXercesProperties = new Properties();
            fis = ss.getFileInputStream(propertiesFile);
            fXercesProperties.load(fis);
          }
        } catch (Exception x) {
          fXercesProperties = null;
          fLastModified = -1;
          // assert(x instanceof FileNotFoundException
          //        || x instanceof SecurityException)
          // In both cases, ignore and continue w/ next location
        } finally {
          // try to close the input stream if one was opened.
          if (fis != null) {
            try {
              fis.close();
            }
            // Ignore the exception.
            catch (IOException exc) {
            }
          }
        }
      }
      if (fXercesProperties != null) {
        factoryClassName = fXercesProperties.getProperty(factoryId);
      }
    } else {
      FileInputStream fis = null;
      try {
        fis = ss.getFileInputStream(new File(propertiesFilename));
        Properties props = new Properties();
        props.load(fis);
        factoryClassName = props.getProperty(factoryId);
      } catch (Exception x) {
        // assert(x instanceof FileNotFoundException
        //        || x instanceof SecurityException)
        // In both cases, ignore and continue w/ next location
      } finally {
        // try to close the input stream if one was opened.
        if (fis != null) {
          try {
            fis.close();
          }
          // Ignore the exception.
          catch (IOException exc) {
          }
        }
      }
    }
    if (factoryClassName != null) {
      if (DEBUG) debugPrintln("found in " + propertiesFilename + ", value=" + factoryClassName);
      return newInstance(factoryClassName, cl, true);
    }

    // Try Jar Service Provider Mechanism
    Object provider = findJarServiceProvider(factoryId);
    if (provider != null) {
      return provider;
    }

    if (fallbackClassName == null) {
      throw new ConfigurationError("Provider for " + factoryId + " cannot be found", null);
    }

    if (DEBUG) debugPrintln("using fallback, value=" + fallbackClassName);
    return newInstance(fallbackClassName, cl, true);
  } // createObject(String,String,String):Object