< prev index next >

src/java.base/share/classes/jdk/internal/module/ArchivedModuleGraph.java

Print this page


   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.internal.module;
  27 
  28 import java.lang.module.Configuration;
  29 import java.lang.module.ModuleFinder;
  30 import java.util.Map;
  31 import java.util.Set;
  32 import java.util.function.Function;
  33 

  34 import jdk.internal.misc.VM;
  35 
  36 /**
  37  * Used by ModuleBootstrap to obtain the archived system modules and finder.

  38  */
  39 final class ArchivedModuleGraph {
  40     private static ArchivedModuleGraph archivedModuleGraph;
  41 
  42     private final boolean hasSplitPackages;
  43     private final boolean hasIncubatorModules;
  44     private final ModuleFinder finder;
  45     private final Configuration configuration;
  46     private final Function<String, ClassLoader> classLoaderFunction;
  47     private final Map<String, Set<String>> concealedPackagesToOpen;
  48     private final Map<String, Set<String>> exportedPackagesToOpen;
  49 
  50     public ArchivedModuleGraph(boolean hasSplitPackages,
  51                                boolean hasIncubatorModules,
  52                                ModuleFinder finder,
  53                                Configuration configuration,
  54                                Function<String, ClassLoader> classLoaderFunction,
  55                                Map<String, Set<String>> concealedPackagesToOpen,
  56                                Map<String, Set<String>> exportedPackagesToOpen) {
  57         this.hasSplitPackages = hasSplitPackages;
  58         this.hasIncubatorModules = hasIncubatorModules;
  59         this.finder = finder;
  60         this.configuration = configuration;
  61         this.classLoaderFunction = classLoaderFunction;
  62         this.concealedPackagesToOpen = concealedPackagesToOpen;
  63         this.exportedPackagesToOpen = exportedPackagesToOpen;
  64     }
  65 
  66     ModuleFinder finder() {
  67         return finder;
  68     }
  69 
  70     Configuration configuration() {


  90     boolean hasIncubatorModules() {
  91         return hasIncubatorModules;
  92     }
  93 
  94     /**
  95      * Returns the ArchivedModuleGraph for the given initial module.
  96      */
  97     static ArchivedModuleGraph get(String mainModule) {
  98         ArchivedModuleGraph graph = archivedModuleGraph;
  99         // We only allow the unnamed module (default) case for now
 100         if (mainModule == null) {
 101             return graph;
 102         } else {
 103             return null;
 104         }
 105     }
 106 
 107     /**
 108      * Archive the module graph for the given initial module.
 109      */
 110     static void archive(ArchivedModuleGraph graph) {
 111         archivedModuleGraph = graph;












 112     }
 113 
 114     static {
 115         VM.initializeFromArchive(ArchivedModuleGraph.class);
 116     }
 117 }


   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */

  25 package jdk.internal.module;
  26 


  27 import java.util.Map;
  28 import java.util.Set;
  29 import java.util.function.Function;
  30 import java.lang.module.Configuration;
  31 import java.lang.module.ModuleFinder;
  32 import jdk.internal.misc.VM;
  33 
  34 /**
  35  * Used by ModuleBootstrap for archiving the configuration for the boot layer,
  36  * the system module finder, and the maps used to create the IllegalAccessLogger.
  37  */
  38 class ArchivedModuleGraph {
  39     private static ArchivedModuleGraph archivedModuleGraph;
  40 
  41     private final boolean hasSplitPackages;
  42     private final boolean hasIncubatorModules;
  43     private final ModuleFinder finder;
  44     private final Configuration configuration;
  45     private final Function<String, ClassLoader> classLoaderFunction;
  46     private final Map<String, Set<String>> concealedPackagesToOpen;
  47     private final Map<String, Set<String>> exportedPackagesToOpen;
  48 
  49     private ArchivedModuleGraph(boolean hasSplitPackages,
  50                                 boolean hasIncubatorModules,
  51                                 ModuleFinder finder,
  52                                 Configuration configuration,
  53                                 Function<String, ClassLoader> classLoaderFunction,
  54                                 Map<String, Set<String>> concealedPackagesToOpen,
  55                                 Map<String, Set<String>> exportedPackagesToOpen) {
  56         this.hasSplitPackages = hasSplitPackages;
  57         this.hasIncubatorModules = hasIncubatorModules;
  58         this.finder = finder;
  59         this.configuration = configuration;
  60         this.classLoaderFunction = classLoaderFunction;
  61         this.concealedPackagesToOpen = concealedPackagesToOpen;
  62         this.exportedPackagesToOpen = exportedPackagesToOpen;
  63     }
  64 
  65     ModuleFinder finder() {
  66         return finder;
  67     }
  68 
  69     Configuration configuration() {


  89     boolean hasIncubatorModules() {
  90         return hasIncubatorModules;
  91     }
  92 
  93     /**
  94      * Returns the ArchivedModuleGraph for the given initial module.
  95      */
  96     static ArchivedModuleGraph get(String mainModule) {
  97         ArchivedModuleGraph graph = archivedModuleGraph;
  98         // We only allow the unnamed module (default) case for now
  99         if (mainModule == null) {
 100             return graph;
 101         } else {
 102             return null;
 103         }
 104     }
 105 
 106     /**
 107      * Archive the module graph for the given initial module.
 108      */
 109     static void archive(boolean hasSplitPackages,
 110                         boolean hasIncubatorModules,
 111                         ModuleFinder finder,
 112                         Configuration configuration,
 113                         Function<String, ClassLoader> classLoaderFunction,
 114                         Map<String, Set<String>> concealedPackagesToOpen,
 115                         Map<String, Set<String>> exportedPackagesToOpen) {
 116         archivedModuleGraph = new ArchivedModuleGraph(hasSplitPackages,
 117                                                       hasIncubatorModules,
 118                                                       finder,
 119                                                       configuration,
 120                                                       classLoaderFunction,
 121                                                       concealedPackagesToOpen,
 122                                                       exportedPackagesToOpen);
 123     }
 124 
 125     static {
 126         VM.initializeFromArchive(ArchivedModuleGraph.class);
 127     }
 128 }
< prev index next >