【java】SPI机制详解

x33g5p2x  于2022-02-17 转载在 Java  
字(21.1k)|赞(0)|评价(0)|浏览(436)

1.概述

以前的文章:【SPI】java基础之SPI框架实现

转载:Java常用机制 - SPI机制详解

PI(Service Provider Interface),是JDK内置的一种 服务提供发现机制,可以用来启用框架扩展和替换组件,主要是被框架的开发人员使用,比如java.sql.Driver接口,其他不同厂商可以针对同一接口做出不同的实现,MySQL和PostgreSQL都有不同的实现提供给用户,而Java的SPI机制可以为某个接口寻找服务实现。Java中SPI机制主要思想是将装配的控制权移到程序之外,在模块化设计中这个机制尤其重要,其核心思想就是 解耦。

SPI整体机制图如下:

当服务的提供者提供了一种接口的实现之后,需要在classpath下的META-INF/services/目录里创建一个以服务接口命名的文件,这个文件里的内容就是这个接口的具体的实现类。当其他的程序需要这个服务的时候,就可以通过查找这个jar包(一般都是以jar包做依赖)的META-INF/services/中的配置文件,配置文件中有接口的具体实现类名,可以根据这个类名进行加载实例化,就可以使用该服务了。JDK中查找服务的实现的工具类是:java.util.ServiceLoader。 ¶

2.SPI机制的广泛应用

2.1 SPI机制 - JDBC DriverManager

在JDBC4.0之前,我们开发有连接数据库的时候,通常会用Class.forName("com.mysql.jdbc.Driver")这句先加载数据库相关的驱动,然后再进行获取连接等的操作。而JDBC4.0之后不需要用Class.forName("com.mysql.jdbc.Driver")来加载驱动,直接获取连接就可以了,现在这种方式就是使用了Java的SPI扩展机制来实现。 ¶

JDBC接口定义

首先在java中定义了接口java.sql.Driver,并没有具体的实现,具体的实现都是由不同厂商来提供的。

mysql实现

在mysql的jar包mysql-connector-java-6.0.6.jar中,可以找到META-INF/services目录,该目录下会有一个名字为java.sql.Driver的文件,文件内容是com.mysql.cj.jdbc.Driver,这里面的内容就是针对Java中定义的接口的实现。 ¶

postgresql实现

同样在postgresql的jar包postgresql-42.0.0.jar中,也可以找到同样的配置文件,文件内容是org.postgresql.Driver,这是postgresql对Java的java.sql.Driver的实现。 ¶

使用方法

上面说了,现在使用SPI扩展来加载具体的驱动,我们在Java中写连接数据库的代码的时候,不需要再使用Class.forName(“com.mysql.jdbc.Driver”)来加载驱动了,而是直接使用如下代码:

  1. tring url = "jdbc:xxxx://xxxx:xxxx/xxxx";
  2. Connection conn = DriverManager.getConnection(url,username,password);
  3. .....

这里并没有涉及到spi的使用,接着看下面的解析。

3. 源码实现

上面的使用方法,就是我们普通的连接数据库的代码,并没有涉及到SPI的东西,但是有一点我们可以确定的是,我们没有写有关具体驱动的硬编码Class.forName("com.mysql.jdbc.Driver")! 上面的代码可以直接获取数据库连接进行操作,但是跟SPI有啥关系呢?上面代码没有了加载驱动的代码,我们怎么去确定使用哪个数据库连接的驱动呢?这里就涉及到使用Java的SPI扩展机制来查找相关驱动的东西了,关于驱动的查找其实都在DriverManager中,DriverManager是Java中的实现,用来获取数据库连接,在DriverManager中有一个静态代码块如下:

  1. static {
  2. loadInitialDrivers();
  3. println("JDBC DriverManager initialized");
  4. }

可以看到是加载实例化驱动的,接着看loadInitialDrivers方法:

  1. private static void loadInitialDrivers() {
  2. String drivers;
  3. try {
  4. drivers = AccessController.doPrivileged(new PrivilegedAction<String>() {
  5. public String run() {
  6. return System.getProperty("jdbc.drivers");
  7. }
  8. });
  9. } catch (Exception ex) {
  10. drivers = null;
  11. }
  12. AccessController.doPrivileged(new PrivilegedAction<Void>() {
  13. public Void run() {
  14. //使用SPI的ServiceLoader来加载接口的实现
  15. ServiceLoader<Driver> loadedDrivers = ServiceLoader.load(Driver.class);
  16. Iterator<Driver> driversIterator = loadedDrivers.iterator();
  17. try{
  18. while(driversIterator.hasNext()) {
  19. driversIterator.next();
  20. }
  21. } catch(Throwable t) {
  22. // Do nothing
  23. }
  24. return null;
  25. }
  26. });
  27. println("DriverManager.initialize: jdbc.drivers = " + drivers);
  28. if (drivers == null || drivers.equals("")) {
  29. return;
  30. }
  31. String[] driversList = drivers.split(":");
  32. println("number of Drivers:" + driversList.length);
  33. for (String aDriver : driversList) {
  34. try {
  35. println("DriverManager.Initialize: loading " + aDriver);
  36. Class.forName(aDriver, true,
  37. ClassLoader.getSystemClassLoader());
  38. } catch (Exception ex) {
  39. println("DriverManager.Initialize: load failed: " + ex);
  40. }
  41. }
  42. }

上面的代码主要步骤是:

  • 从系统变量中获取有关驱动的定义。
  • 使用SPI来获取驱动的实现。
  • 遍历使用SPI获取到的具体实现,实例化各个实现类。
  • 根据第一步获取到的驱动列表来实例化具体实现类。

我们主要关注2,3步,这两步是SPI的用法,首先看第二步,使用SPI来获取驱动的实现,对应的代码是:

  1. ServiceLoader<Driver> loadedDrivers = ServiceLoader.load(Driver.class);

这里没有去META-INF/services目录下查找配置文件,也没有加载具体实现类,做的事情就是封装了我们的接口类型和类加载器,并初始化了一个迭代器。 接着看第三步,遍历使用SPI获取到的具体实现,实例化各个实现类,对应的代码如下:

  1. //获取迭代器
  2. Iterator<Driver> driversIterator = loadedDrivers.iterator();
  3. //遍历所有的驱动实现
  4. while(driversIterator.hasNext()) {
  5. driversIterator.next();
  6. }

在遍历的时候,首先调用driversIterator.hasNext()方法,这里会搜索classpath下以及jar包中所有的META-INF/services目录下的java.sql.Driver文件,并找到文件中的实现类的名字,此时并没有实例化具体的实现类(ServiceLoader具体的源码实现在下面)。 然后是调用driversIterator.next();方法,此时就会根据驱动名字具体实例化各个实现类了。现在驱动就被找到并实例化了。 可以看下截图,我在测试项目中添加了两个jar包,mysql-connector-java-6.0.6.jar和postgresql-42.0.0.0.jar,跟踪到DriverManager中之后:

可以看到此时迭代器中有两个驱动,mysql和postgresql的都被加载了。

4. SPI机制 - Common-Logging

common-logging(也称Jakarta Commons Logging,缩写 JCL)是常用的日志库门面,具体日志库相关可以看这篇。我们看下它是怎么解耦的。 首先,日志实例是通过LogFactory的getLog(String)方法创建的:

  1. public static getLog(Class clazz) throws LogConfigurationException {
  2. return getFactory().getInstance(clazz);
  3. }

LogFatory是一个抽象类,它负责加载具体的日志实现,分析其Factory getFactory()方法:

  1. public static org.apache.commons.logging.LogFactory getFactory() throws LogConfigurationException {
  2. // Identify the class loader we will be using
  3. ClassLoader contextClassLoader = getContextClassLoaderInternal();
  4. if (contextClassLoader == null) {
  5. // This is an odd enough situation to report about. This
  6. // output will be a nuisance on JDK1.1, as the system
  7. // classloader is null in that environment.
  8. if (isDiagnosticsEnabled()) {
  9. logDiagnostic("Context classloader is null.");
  10. }
  11. }
  12. // Return any previously registered factory for this class loader
  13. org.apache.commons.logging.LogFactory factory = getCachedFactory(contextClassLoader);
  14. if (factory != null) {
  15. return factory;
  16. }
  17. if (isDiagnosticsEnabled()) {
  18. logDiagnostic(
  19. "[LOOKUP] LogFactory implementation requested for the first time for context classloader " +
  20. objectId(contextClassLoader));
  21. logHierarchy("[LOOKUP] ", contextClassLoader);
  22. }
  23. // Load properties file.
  24. //
  25. // If the properties file exists, then its contents are used as
  26. // "attributes" on the LogFactory implementation class. One particular
  27. // property may also control which LogFactory concrete subclass is
  28. // used, but only if other discovery mechanisms fail..
  29. //
  30. // As the properties file (if it exists) will be used one way or
  31. // another in the end we may as well look for it first.
  32. // classpath根目录下寻找commons-logging.properties
  33. Properties props = getConfigurationFile(contextClassLoader, FACTORY_PROPERTIES);
  34. // Determine whether we will be using the thread context class loader to
  35. // load logging classes or not by checking the loaded properties file (if any).
  36. // classpath根目录下commons-logging.properties是否配置use_tccl
  37. ClassLoader baseClassLoader = contextClassLoader;
  38. if (props != null) {
  39. String useTCCLStr = props.getProperty(TCCL_KEY);
  40. if (useTCCLStr != null) {
  41. // The Boolean.valueOf(useTCCLStr).booleanValue() formulation
  42. // is required for Java 1.2 compatibility.
  43. if (Boolean.valueOf(useTCCLStr).booleanValue() == false) {
  44. // Don't use current context classloader when locating any
  45. // LogFactory or Log classes, just use the class that loaded
  46. // this abstract class. When this class is deployed in a shared
  47. // classpath of a container, it means webapps cannot deploy their
  48. // own logging implementations. It also means that it is up to the
  49. // implementation whether to load library-specific config files
  50. // from the TCCL or not.
  51. baseClassLoader = thisClassLoader;
  52. }
  53. }
  54. }
  55. // 这里真正开始决定使用哪个factory
  56. // 首先,尝试查找vm系统属性org.apache.commons.logging.LogFactory,其是否指定factory
  57. // Determine which concrete LogFactory subclass to use.
  58. // First, try a global system property
  59. if (isDiagnosticsEnabled()) {
  60. logDiagnostic("[LOOKUP] Looking for system property [" + FACTORY_PROPERTY +
  61. "] to define the LogFactory subclass to use...");
  62. }
  63. try {
  64. String factoryClass = getSystemProperty(FACTORY_PROPERTY, null);
  65. if (factoryClass != null) {
  66. if (isDiagnosticsEnabled()) {
  67. logDiagnostic("[LOOKUP] Creating an instance of LogFactory class '" + factoryClass +
  68. "' as specified by system property " + FACTORY_PROPERTY);
  69. }
  70. factory = newFactory(factoryClass, baseClassLoader, contextClassLoader);
  71. } else {
  72. if (isDiagnosticsEnabled()) {
  73. logDiagnostic("[LOOKUP] No system property [" + FACTORY_PROPERTY + "] defined.");
  74. }
  75. }
  76. } catch (SecurityException e) {
  77. if (isDiagnosticsEnabled()) {
  78. logDiagnostic("[LOOKUP] A security exception occurred while trying to create an" +
  79. " instance of the custom factory class" + ": [" + trim(e.getMessage()) +
  80. "]. Trying alternative implementations...");
  81. }
  82. // ignore
  83. } catch (RuntimeException e) {
  84. // This is not consistent with the behaviour when a bad LogFactory class is
  85. // specified in a services file.
  86. //
  87. // One possible exception that can occur here is a ClassCastException when
  88. // the specified class wasn't castable to this LogFactory type.
  89. if (isDiagnosticsEnabled()) {
  90. logDiagnostic("[LOOKUP] An exception occurred while trying to create an" +
  91. " instance of the custom factory class" + ": [" +
  92. trim(e.getMessage()) +
  93. "] as specified by a system property.");
  94. }
  95. throw e;
  96. }
  97. // 第二,尝试使用java spi服务发现机制,载META-INF/services下寻找org.apache.commons.logging.LogFactory实现
  98. // Second, try to find a service by using the JDK1.3 class
  99. // discovery mechanism, which involves putting a file with the name
  100. // of an interface class in the META-INF/services directory, where the
  101. // contents of the file is a single line specifying a concrete class
  102. // that implements the desired interface.
  103. if (factory == null) {
  104. if (isDiagnosticsEnabled()) {
  105. logDiagnostic("[LOOKUP] Looking for a resource file of name [" + SERVICE_ID +
  106. "] to define the LogFactory subclass to use...");
  107. }
  108. try {
  109. // META-INF/services/org.apache.commons.logging.LogFactory, SERVICE_ID
  110. final InputStream is = getResourceAsStream(contextClassLoader, SERVICE_ID);
  111. if (is != null) {
  112. // This code is needed by EBCDIC and other strange systems.
  113. // It's a fix for bugs reported in xerces
  114. BufferedReader rd;
  115. try {
  116. rd = new BufferedReader(new InputStreamReader(is, "UTF-8"));
  117. } catch (java.io.UnsupportedEncodingException e) {
  118. rd = new BufferedReader(new InputStreamReader(is));
  119. }
  120. String factoryClassName = rd.readLine();
  121. rd.close();
  122. if (factoryClassName != null && !"".equals(factoryClassName)) {
  123. if (isDiagnosticsEnabled()) {
  124. logDiagnostic("[LOOKUP] Creating an instance of LogFactory class " +
  125. factoryClassName +
  126. " as specified by file '" + SERVICE_ID +
  127. "' which was present in the path of the context classloader.");
  128. }
  129. factory = newFactory(factoryClassName, baseClassLoader, contextClassLoader);
  130. }
  131. } else {
  132. // is == null
  133. if (isDiagnosticsEnabled()) {
  134. logDiagnostic("[LOOKUP] No resource file with name '" + SERVICE_ID + "' found.");
  135. }
  136. }
  137. } catch (Exception ex) {
  138. // note: if the specified LogFactory class wasn't compatible with LogFactory
  139. // for some reason, a ClassCastException will be caught here, and attempts will
  140. // continue to find a compatible class.
  141. if (isDiagnosticsEnabled()) {
  142. logDiagnostic(
  143. "[LOOKUP] A security exception occurred while trying to create an" +
  144. " instance of the custom factory class" +
  145. ": [" + trim(ex.getMessage()) +
  146. "]. Trying alternative implementations...");
  147. }
  148. // ignore
  149. }
  150. }
  151. // 第三,尝试从classpath根目录下的commons-logging.properties中查找org.apache.commons.logging.LogFactory属性指定的factory
  152. // Third try looking into the properties file read earlier (if found)
  153. if (factory == null) {
  154. if (props != null) {
  155. if (isDiagnosticsEnabled()) {
  156. logDiagnostic(
  157. "[LOOKUP] Looking in properties file for entry with key '" + FACTORY_PROPERTY +
  158. "' to define the LogFactory subclass to use...");
  159. }
  160. String factoryClass = props.getProperty(FACTORY_PROPERTY);
  161. if (factoryClass != null) {
  162. if (isDiagnosticsEnabled()) {
  163. logDiagnostic(
  164. "[LOOKUP] Properties file specifies LogFactory subclass '" + factoryClass + "'");
  165. }
  166. factory = newFactory(factoryClass, baseClassLoader, contextClassLoader);
  167. // TODO: think about whether we need to handle exceptions from newFactory
  168. } else {
  169. if (isDiagnosticsEnabled()) {
  170. logDiagnostic("[LOOKUP] Properties file has no entry specifying LogFactory subclass.");
  171. }
  172. }
  173. } else {
  174. if (isDiagnosticsEnabled()) {
  175. logDiagnostic("[LOOKUP] No properties file available to determine" + " LogFactory subclass from..");
  176. }
  177. }
  178. }
  179. // 最后,使用后备factory实现,org.apache.commons.logging.impl.LogFactoryImpl
  180. // Fourth, try the fallback implementation class
  181. if (factory == null) {
  182. if (isDiagnosticsEnabled()) {
  183. logDiagnostic(
  184. "[LOOKUP] Loading the default LogFactory implementation '" + FACTORY_DEFAULT +
  185. "' via the same classloader that loaded this LogFactory" +
  186. " class (ie not looking in the context classloader).");
  187. }
  188. // Note: unlike the above code which can try to load custom LogFactory
  189. // implementations via the TCCL, we don't try to load the default LogFactory
  190. // implementation via the context classloader because:
  191. // * that can cause problems (see comments in newFactory method)
  192. // * no-one should be customising the code of the default class
  193. // Yes, we do give up the ability for the child to ship a newer
  194. // version of the LogFactoryImpl class and have it used dynamically
  195. // by an old LogFactory class in the parent, but that isn't
  196. // necessarily a good idea anyway.
  197. factory = newFactory(FACTORY_DEFAULT, thisClassLoader, contextClassLoader);
  198. }
  199. if (factory != null) {
  200. /**
  201. * Always cache using context class loader.
  202. */
  203. cacheFactory(contextClassLoader, factory);
  204. if (props != null) {
  205. Enumeration names = props.propertyNames();
  206. while (names.hasMoreElements()) {
  207. String name = (String) names.nextElement();
  208. String value = props.getProperty(name);
  209. factory.setAttribute(name, value);
  210. }
  211. }
  212. }
  213. return factory;
  214. }

可以看出,抽象类LogFactory加载具体实现的步骤如下:

  • 从vm系统属性org.apache.commons.logging.LogFactory 使用SPI服务发现机制,发现org.apache.commons.logging.LogFactory的实现
  • 查找classpath根目录commons-logging.properties的org.apache.commons.logging.LogFactory属性是否指定factory实现
  • 使用默认factory实现,org.apache.commons.logging.impl.LogFactoryImpl

LogFactory的getLog()方法返回类型是org.apache.commons.logging.Log接口,提供了从trace到fatal方法。可以确定,如果日志实现提供者只要实现该接口,并且使用继承自org.apache.commons.logging.LogFactory的子类创建Log,必然可以构建一个松耦合的日志系统。 ¶

5. SPI机制 - 插件体系

其实最具spi思想的应该属于插件开发,我们项目中也用到的这种思想,后面再说,这里具体说一下eclipse的插件思想。

Eclipse使用OSGi作为插件系统的基础,动态添加新插件和停止现有插件,以动态的方式管理组件生命周期。 一般来说,插件的文件结构必须在指定目录下包含以下三个文件:

  1. META-INF/MANIFEST.MF: 项目基本配置信息,版本、名称、启动器等
  2. build.properties: 项目的编译配置信息,包括,源代码路径、输出路径
  3. plugin.xml:插件的操作配置信息,包含弹出菜单及点击菜单后对应的操作执行类等

当eclipse启动时,会遍历plugins文件夹中的目录,扫描每个插件的清单文件MANIFEST.MF,并建立一个内部模型来记录它所找到的每个插件的信息,就实现了动态添加新的插件。

这也意味着是eclipse制定了一系列的规则,像是文件结构、类型、参数等。插件开发者遵循这些规则去开发自己的插件,eclipse并不需要知道插件具体是怎样开发的,只需要在启动的时候根据配置文件解析、加载到系统里就好了,是spi思想的一种体现。 ¶

6.SPI机制 - Spring中SPI机制

在springboot的自动装配过程中,最终会加载META-INF/spring.factories文件,而加载的过程是由SpringFactoriesLoader加载的。从CLASSPATH下的每个Jar包中搜寻所有META-INF/spring.factories配置文件,然后将解析properties文件,找到指定名称的配置后返回。需要注意的是,其实这里不仅仅是会去ClassPath路径下查找,会扫描所有路径下的Jar包,只不过这个文件只会在Classpath下的jar包中。

  1. public static final String FACTORIES_RESOURCE_LOCATION = "META-INF/spring.factories";
  2. // spring.factories文件的格式为:key=value1,value2,value3
  3. // 从所有的jar包中找到META-INF/spring.factories文件
  4. // 然后从文件中解析出key=factoryClass类名称的所有value值
  5. public static List<String> loadFactoryNames(Class<?> factoryClass, ClassLoader classLoader) {
  6. String factoryClassName = factoryClass.getName();
  7. // 取得资源文件的URL
  8. Enumeration<URL> urls = (classLoader != null ? classLoader.getResources(FACTORIES_RESOURCE_LOCATION) : ClassLoader.getSystemResources(FACTORIES_RESOURCE_LOCATION));
  9. List<String> result = new ArrayList<String>();
  10. // 遍历所有的URL
  11. while (urls.hasMoreElements()) {
  12. URL url = urls.nextElement();
  13. // 根据资源文件URL解析properties文件,得到对应的一组@Configuration类
  14. Properties properties = PropertiesLoaderUtils.loadProperties(new UrlResource(url));
  15. String factoryClassNames = properties.getProperty(factoryClassName);
  16. // 组装数据,并返回
  17. result.addAll(Arrays.asList(StringUtils.commaDelimitedListToStringArray(factoryClassNames)));
  18. }
  19. return result;
  20. }

7.SPI机制深入理解 TIP

接下来,我们深入理解下SPI相关内容

SPI机制通常怎么使用 看完上面的几个例子解析,应该都能知道大概的流程了:

  • 有关组织或者公司定义标准。
  • 具体厂商或者框架开发者实现。
  • 程序猿使用。

定义标准

定义标准,就是定义接口。比如接口java.sql.Driver

具体厂商或者框架开发者实现

厂商或者框架开发者开发具体的实现: 在META-INF/services目录下定义一个名字为接口全限定名的文件,比如java.sql.Driver文件,文件内容是具体的实现名字,比如me.cxis.sql.MyDriver。 写具体的实现me.cxis.sql.MyDriver,都是对接口Driver的实现。

程序猿使用 我们会引用具体厂商的jar包来实现我们的功能:

  1. ServiceLoader<Driver> loadedDrivers = ServiceLoader.load(Driver.class);
  2. //获取迭代器
  3. Iterator<Driver> driversIterator = loadedDrivers.iterator();
  4. //遍历
  5. while(driversIterator.hasNext()) {
  6. driversIterator.next();
  7. //可以做具体的业务逻辑
  8. }

8.使用规范

最后总结一下jdk spi需要遵循的规范

SPI和API的区别是什么 这里实际包含两个问题,第一个SPI和API的区别?第二个什么时候用API,什么时候用SPI?

  • SPI - “接口”位于“调用方”所在的“包”中 概念上更依赖调用方。 组织上位于调用方所在的包中。 实现位于独立的包中。 常见的例子是:插件模式的插件。
  • API - “接口”位于“实现方”所在的“包”中 概念上更接近实现方。 组织上位于实现方所在的包中。 实现和接口在一个包中。

9.SPI机制实现原理

不妨看下JDK中ServiceLoader<S>方法的具体实现:

  1. //ServiceLoader实现了Iterable接口,可以遍历所有的服务实现者
  2. public final class ServiceLoader<S>
  3. implements Iterable<S>
  4. {
  5. //查找配置文件的目录
  6. private static final String PREFIX = "META-INF/services/";
  7. //表示要被加载的服务的类或接口
  8. private final Class<S> service;
  9. //这个ClassLoader用来定位,加载,实例化服务提供者
  10. private final ClassLoader loader;
  11. // 访问控制上下文
  12. private final AccessControlContext acc;
  13. // 缓存已经被实例化的服务提供者,按照实例化的顺序存储
  14. private LinkedHashMap<String,S> providers = new LinkedHashMap<>();
  15. // 迭代器
  16. private LazyIterator lookupIterator;
  17. //重新加载,就相当于重新创建ServiceLoader了,用于新的服务提供者安装到正在运行的Java虚拟机中的情况。
  18. public void reload() {
  19. //清空缓存中所有已实例化的服务提供者
  20. providers.clear();
  21. //新建一个迭代器,该迭代器会从头查找和实例化服务提供者
  22. lookupIterator = new LazyIterator(service, loader);
  23. }
  24. //私有构造器
  25. //使用指定的类加载器和服务创建服务加载器
  26. //如果没有指定类加载器,使用系统类加载器,就是应用类加载器。
  27. private ServiceLoader(Class<S> svc, ClassLoader cl) {
  28. service = Objects.requireNonNull(svc, "Service interface cannot be null");
  29. loader = (cl == null) ? ClassLoader.getSystemClassLoader() : cl;
  30. acc = (System.getSecurityManager() != null) ? AccessController.getContext() : null;
  31. reload();
  32. }
  33. //解析失败处理的方法
  34. private static void fail(Class<?> service, String msg, Throwable cause)
  35. throws ServiceConfigurationError
  36. {
  37. throw new ServiceConfigurationError(service.getName() + ": " + msg,
  38. cause);
  39. }
  40. private static void fail(Class<?> service, String msg)
  41. throws ServiceConfigurationError
  42. {
  43. throw new ServiceConfigurationError(service.getName() + ": " + msg);
  44. }
  45. private static void fail(Class<?> service, URL u, int line, String msg)
  46. throws ServiceConfigurationError
  47. {
  48. fail(service, u + ":" + line + ": " + msg);
  49. }
  50. //解析服务提供者配置文件中的一行
  51. //首先去掉注释校验,然后保存
  52. //返回下一行行号
  53. //重复的配置项和已经被实例化的配置项不会被保存
  54. private int parseLine(Class<?> service, URL u, BufferedReader r, int lc,
  55. List<String> names)
  56. throws IOException, ServiceConfigurationError
  57. {
  58. //读取一行
  59. String ln = r.readLine();
  60. if (ln == null) {
  61. return -1;
  62. }
  63. //#号代表注释行
  64. int ci = ln.indexOf('#');
  65. if (ci >= 0) ln = ln.substring(0, ci);
  66. ln = ln.trim();
  67. int n = ln.length();
  68. if (n != 0) {
  69. if ((ln.indexOf(' ') >= 0) || (ln.indexOf('\t') >= 0))
  70. fail(service, u, lc, "Illegal configuration-file syntax");
  71. int cp = ln.codePointAt(0);
  72. if (!Character.isJavaIdentifierStart(cp))
  73. fail(service, u, lc, "Illegal provider-class name: " + ln);
  74. for (int i = Character.charCount(cp); i < n; i += Character.charCount(cp)) {
  75. cp = ln.codePointAt(i);
  76. if (!Character.isJavaIdentifierPart(cp) && (cp != '.'))
  77. fail(service, u, lc, "Illegal provider-class name: " + ln);
  78. }
  79. if (!providers.containsKey(ln) && !names.contains(ln))
  80. names.add(ln);
  81. }
  82. return lc + 1;
  83. }
  84. //解析配置文件,解析指定的url配置文件
  85. //使用parseLine方法进行解析,未被实例化的服务提供者会被保存到缓存中去
  86. private Iterator<String> parse(Class<?> service, URL u)
  87. throws ServiceConfigurationError
  88. {
  89. InputStream in = null;
  90. BufferedReader r = null;
  91. ArrayList<String> names = new ArrayList<>();
  92. try {
  93. in = u.openStream();
  94. r = new BufferedReader(new InputStreamReader(in, "utf-8"));
  95. int lc = 1;
  96. while ((lc = parseLine(service, u, r, lc, names)) >= 0);
  97. }
  98. return names.iterator();
  99. }
  100. //服务提供者查找的迭代器
  101. private class LazyIterator
  102. implements Iterator<S>
  103. {
  104. Class<S> service;//服务提供者接口
  105. ClassLoader loader;//类加载器
  106. Enumeration<URL> configs = null;//保存实现类的url
  107. Iterator<String> pending = null;//保存实现类的全名
  108. String nextName = null;//迭代器中下一个实现类的全名
  109. private LazyIterator(Class<S> service, ClassLoader loader) {
  110. this.service = service;
  111. this.loader = loader;
  112. }
  113. private boolean hasNextService() {
  114. if (nextName != null) {
  115. return true;
  116. }
  117. if (configs == null) {
  118. try {
  119. String fullName = PREFIX + service.getName();
  120. if (loader == null)
  121. configs = ClassLoader.getSystemResources(fullName);
  122. else
  123. configs = loader.getResources(fullName);
  124. }
  125. }
  126. while ((pending == null) || !pending.hasNext()) {
  127. if (!configs.hasMoreElements()) {
  128. return false;
  129. }
  130. pending = parse(service, configs.nextElement());
  131. }
  132. nextName = pending.next();
  133. return true;
  134. }
  135. private S nextService() {
  136. if (!hasNextService())
  137. throw new NoSuchElementException();
  138. String cn = nextName;
  139. nextName = null;
  140. Class<?> c = null;
  141. try {
  142. c = Class.forName(cn, false, loader);
  143. }
  144. if (!service.isAssignableFrom(c)) {
  145. fail(service, "Provider " + cn + " not a subtype");
  146. }
  147. try {
  148. S p = service.cast(c.newInstance());
  149. providers.put(cn, p);
  150. return p;
  151. }
  152. }
  153. public boolean hasNext() {
  154. if (acc == null) {
  155. return hasNextService();
  156. } else {
  157. PrivilegedAction<Boolean> action = new PrivilegedAction<Boolean>() {
  158. public Boolean run() { return hasNextService(); }
  159. };
  160. return AccessController.doPrivileged(action, acc);
  161. }
  162. }
  163. public S next() {
  164. if (acc == null) {
  165. return nextService();
  166. } else {
  167. PrivilegedAction<S> action = new PrivilegedAction<S>() {
  168. public S run() { return nextService(); }
  169. };
  170. return AccessController.doPrivileged(action, acc);
  171. }
  172. }
  173. public void remove() {
  174. throw new UnsupportedOperationException();
  175. }
  176. }
  177. //获取迭代器
  178. //返回遍历服务提供者的迭代器
  179. //以懒加载的方式加载可用的服务提供者
  180. //懒加载的实现是:解析配置文件和实例化服务提供者的工作由迭代器本身完成
  181. public Iterator<S> iterator() {
  182. return new Iterator<S>() {
  183. //按照实例化顺序返回已经缓存的服务提供者实例
  184. Iterator<Map.Entry<String,S>> knownProviders
  185. = providers.entrySet().iterator();
  186. public boolean hasNext() {
  187. if (knownProviders.hasNext())
  188. return true;
  189. return lookupIterator.hasNext();
  190. }
  191. public S next() {
  192. if (knownProviders.hasNext())
  193. return knownProviders.next().getValue();
  194. return lookupIterator.next();
  195. }
  196. public void remove() {
  197. throw new UnsupportedOperationException();
  198. }
  199. };
  200. }
  201. //为指定的服务使用指定的类加载器来创建一个ServiceLoader
  202. public static <S> ServiceLoader<S> load(Class<S> service,
  203. ClassLoader loader)
  204. {
  205. return new ServiceLoader<>(service, loader);
  206. }
  207. //使用线程上下文的类加载器来创建ServiceLoader
  208. public static <S> ServiceLoader<S> load(Class<S> service) {
  209. ClassLoader cl = Thread.currentThread().getContextClassLoader();
  210. return ServiceLoader.load(service, cl);
  211. }
  212. //使用扩展类加载器为指定的服务创建ServiceLoader
  213. //只能找到并加载已经安装到当前Java虚拟机中的服务提供者,应用程序类路径中的服务提供者将被忽略
  214. public static <S> ServiceLoader<S> loadInstalled(Class<S> service) {
  215. ClassLoader cl = ClassLoader.getSystemClassLoader();
  216. ClassLoader prev = null;
  217. while (cl != null) {
  218. prev = cl;
  219. cl = cl.getParent();
  220. }
  221. return ServiceLoader.load(service, prev);
  222. }
  223. public String toString() {
  224. return "java.util.ServiceLoader[" + service.getName() + "]";
  225. }
  226. }
  • 首先,ServiceLoader实现了Iterable接口,所以它有迭代器的属性,这里主要都是实现了迭代器的hasNext和next方法。这里主要都是调用的lookupIterator的相应hasNext和next方法,lookupIterator是懒加载迭代器。
  • 其次,LazyIterator中的hasNext方法,静态变量PREFIX就是”META-INF/services/”目录,这也就是为什么需要在classpath下的META-INF/services/目录里创建一个以服务接口命名的文件。
  • 最后,通过反射方法Class.forName()加载类对象,并用newInstance方法将类实例化,并把实例化后的类缓存到providers对象中,(LinkedHashMap<String,S>类型)然后返回实例对象。

所以我们可以看到ServiceLoader不是实例化以后,就去读取配置文件中的具体实现,并进行实例化。而是等到使用迭代器去遍历的时候,才会加载对应的配置文件去解析,调用hasNext方法的时候会去加载配置文件进行解析,调用next方法的时候进行实例化并缓存。 所有的配置文件只会加载一次,服务提供者也只会被实例化一次,重新加载配置文件可使用reload方法。 ¶

10. SPI机制的缺陷

通过上面的解析,可以发现,我们使用SPI机制的缺陷:

  • 不能按需加载,需要遍历所有的实现,并实例化,然后在循环中才能找到我们需要的实现。如果不想用某些实现类,或者某些类实例化很耗时,它也被载入并实例化了,这就造成了浪费。
  • 获取某个实现类的方式不够灵活,只能通过 Iterator 形式获取,不能根据某个参数来获取对应的实现类。
  • 多个并发多线程使用 ServiceLoader 类的实例是不安全的。

相关文章

最新文章

更多