1 #
   2 # Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   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 ifndef _MODULES_GMK
  27 _MODULES_GMK := 1
  28 
  29 ################################################################################
  30 #
  31 # BOOT_MODULES are modules defined by the boot loader
  32 # PLATFORM_MODULES are modules defined by the platform loader
  33 # JRE_TOOL_MODULES are tools included in JRE and defined by the application loader
  34 #
  35 # All other modules not declared below are defined by the application loader
  36 # and are not included in JRE.
  37 
  38 BOOT_MODULES :=
  39 PLATFORM_MODULES :=
  40 JRE_TOOL_MODULES :=
  41 UPGRADEABLE_MODULES :=
  42 AGGREGATOR_MODULES :=
  43 
  44 # Hook to include the corresponding custom file, if present.
  45 $(eval $(call IncludeCustomExtension, , common/Modules.gmk))
  46 
  47 BOOT_MODULES += \
  48     java.base \
  49     java.datatransfer \
  50     java.desktop \
  51     java.httpclient \
  52     java.instrument \
  53     java.logging \
  54     java.management \
  55     java.naming \
  56     java.prefs \
  57     java.rmi \
  58     java.security.sasl \
  59     java.xml \
  60     jdk.httpserver \
  61     jdk.management \
  62     jdk.net \
  63     jdk.sctp \
  64     jdk.unsupported \
  65     jdk.vm.ci \
  66     #
  67 
  68 # to be deprivileged
  69 BOOT_MODULES += \
  70     jdk.naming.rmi \
  71     #
  72 
  73 UPGRADEABLE_MODULES += \
  74     java.activation \
  75     java.annotations.common \
  76     java.corba \
  77     java.transaction \
  78     java.xml.bind \
  79     java.xml.ws \
  80     #
  81 
  82 # Modules explicitly declared as not being upgradeable even though they require
  83 # an upgradeable module.
  84 NON_UPGRADEABLE_MODULES +=
  85 
  86 AGGREGATOR_MODULES += \
  87     java.compact1 \
  88     java.compact2 \
  89     java.compact3 \
  90     java.se \
  91     java.se.ee \
  92     #
  93 
  94 PLATFORM_MODULES += \
  95     $(UPGRADEABLE_MODULES) \
  96     $(AGGREGATOR_MODULES)
  97     #
  98 
  99 PLATFORM_MODULES += \
 100     java.compiler \
 101     java.scripting \
 102     java.security.jgss \
 103     java.smartcardio \
 104     java.sql \
 105     java.sql.rowset \
 106     java.xml.crypto \
 107     jdk.accessibility \
 108     jdk.charsets \
 109     jdk.crypto.ec \
 110     jdk.crypto.pkcs11 \
 111     jdk.dynalink \
 112     jdk.jsobject \
 113     jdk.localedata \
 114     jdk.naming.dns \
 115     jdk.scripting.nashorn \
 116     jdk.security.auth \
 117     jdk.security.jgss \
 118     jdk.xml.dom \
 119     jdk.zipfs \
 120     #
 121 
 122 JRE_TOOL_MODULES += \
 123     jdk.jdwp.agent \
 124     jdk.pack200 \
 125     jdk.scripting.nashorn.shell \
 126     #
 127 
 128 ifeq ($(OPENJDK_TARGET_OS), windows)
 129   PLATFORM_MODULES += jdk.crypto.mscapi
 130 endif
 131 ifeq ($(OPENJDK_TARGET_OS), solaris)
 132   PLATFORM_MODULES += jdk.crypto.ucrypto
 133 endif
 134 
 135 # These modules are included in the interim image which is used to run profiling
 136 # before building the real images.
 137 INTERIM_IMAGE_MODULES := java.base java.logging
 138 
 139 ################################################################################
 140 # Some platforms don't have the serviceability agent
 141 
 142 ifeq ($(INCLUDE_SA), false)
 143   MODULES_FILTER += jdk.hotspot.agent
 144 endif
 145 
 146 ################################################################################
 147 # Filter out aot specific modules if aot is disabled
 148 
 149 ifeq ($(ENABLE_AOT), false)
 150   MODULES_FILTER += jdk.aot jdk.vm.compiler
 151 endif
 152 
 153 ################################################################################
 154 # Module list macros
 155 
 156 # Use append so that the custom extension may add to these variables
 157 
 158 GENERATED_SRC_DIRS += \
 159     $(SUPPORT_OUTPUTDIR)/gensrc \
 160     #
 161 
 162 TOP_SRC_DIRS += \
 163     $(CORBA_TOPDIR)/src \
 164     $(HOTSPOT_TOPDIR)/src \
 165     $(JDK_TOPDIR)/src \
 166     $(LANGTOOLS_TOPDIR)/src \
 167     $(JAXP_TOPDIR)/src \
 168     $(JAXWS_TOPDIR)/src \
 169     $(NASHORN_TOPDIR)/src \
 170     #
 171 
 172 SRC_SUBDIRS += $(OPENJDK_TARGET_OS)/classes
 173 ifneq ($(OPENJDK_TARGET_OS), $(OPENJDK_TARGET_OS_TYPE))
 174   SRC_SUBDIRS += $(OPENJDK_TARGET_OS_TYPE)/classes
 175 endif
 176 SRC_SUBDIRS += share/classes
 177 
 178 # Find all module-info.java files for the current build target platform and
 179 # configuration.
 180 # Param 1 - Module to find for, set to * for finding all
 181 FindAllModuleInfos = \
 182     $(wildcard \
 183         $(foreach sub, $(SRC_SUBDIRS), \
 184           $(patsubst %,%/$(strip $1)/$(sub)/module-info.java, $(TOP_SRC_DIRS))) \
 185         $(patsubst %,%/$(strip $1)/module-info.java, $(IMPORT_MODULES_SRC)))
 186 
 187 # Extract the module names from the paths of module-info.java files. The
 188 # position of the module directory differs depending on if this is an imported
 189 # src dir or not.
 190 GetModuleNameFromModuleInfo = \
 191     $(strip $(foreach mi, $1, \
 192       $(if $(filter $(addsuffix %, $(IMPORT_MODULES_SRC)), $(mi)), \
 193         $(notdir $(patsubst %/,%, $(dir $(mi)))), \
 194         $(notdir $(patsubst %/,%, $(dir $(patsubst %/,%, $(dir $(patsubst %/,%, $(dir $(mi)))))))))))
 195 
 196 # Find all modules by looking for module-info.java files and looking at parent
 197 # directories.
 198 FindAllModules = \
 199     $(sort $(filter-out $(MODULES_FILTER), \
 200     $(call GetModuleNameFromModuleInfo, $(MODULE_INFOS))))
 201 
 202 FindImportedModules = \
 203     $(filter-out $(MODULES_FILTER), \
 204     $(if $(IMPORT_MODULES_CLASSES), $(notdir $(wildcard $(IMPORT_MODULES_CLASSES)/*))))
 205 
 206 # Find all source dirs for a particular module
 207 # $1 - Module to find source dirs for
 208 FindModuleSrcDirs = \
 209     $(strip $(wildcard \
 210         $(addsuffix /$(strip $1), $(GENERATED_SRC_DIRS) $(IMPORT_MODULES_SRC)) \
 211         $(foreach sub, $(SRC_SUBDIRS), $(addsuffix /$(strip $1)/$(sub), $(TOP_SRC_DIRS)))))
 212 
 213 # Construct the complete module source path
 214 GetModuleSrcPath = \
 215     $(call PathList, \
 216         $(addsuffix /*, $(GENERATED_SRC_DIRS) $(IMPORT_MODULES_SRC)) \
 217         $(foreach sub, $(SRC_SUBDIRS), $(addsuffix /*/$(sub), $(TOP_SRC_DIRS))))
 218 
 219 ################################################################################
 220 # Extract module dependencies from module-info.java files.
 221 
 222 MODULE_DEPS_MAKEFILE := $(MAKESUPPORT_OUTPUTDIR)/module-deps.gmk
 223 
 224 MODULE_INFOS := $(call FindAllModuleInfos, *)
 225 
 226 $(MODULE_DEPS_MAKEFILE): $(MODULE_INFOS) \
 227     $(call DependOnVariable, MODULE_INFOS, $(MAKESUPPORT_OUTPUTDIR)/MODULE_INFOS.vardeps)
 228         $(MKDIR) -p $(@D)
 229         $(RM) $@
 230         $(foreach m, $(MODULE_INFOS), \
 231             ( $(PRINTF) "DEPS_$(call GetModuleNameFromModuleInfo, $m) :=" && \
 232               $(NAWK) -v MODULE=$(call GetModuleNameFromModuleInfo, $m) '\
 233                   BEGIN      { if (MODULE != "java.base") printf(" java.base"); } \
 234                   /requires/ { sub(/;/, ""); \
 235                                sub(/requires/, ""); \
 236                                sub(/public/, ""); \
 237                                sub(/\/\/.*/, ""); \
 238                                sub(/\/\*.*\*\//, ""); \
 239                                gsub(/^ +\*.*/, ""); \
 240                                gsub(/ /, ""); \
 241                                printf(" %s", $$0) } \
 242                   END        { printf("\n") }' $m \
 243             ) >> $@ $(NEWLINE))
 244 
 245 -include $(MODULE_DEPS_MAKEFILE)
 246 
 247 # Param 1: Module to find deps for
 248 FindDepsForModule = \
 249   $(DEPS_$(strip $1))
 250 
 251 # Finds transitive dependencies in 3 levels.
 252 # Param 1: Module to find transitive deps for
 253 FindTransitiveDepsForModule = \
 254     $(sort $(call FindDepsForModule, $1) \
 255         $(foreach m, $(call FindDepsForModule, $1), \
 256             $(call FindDepsForModule, $m) \
 257             $(foreach n, $(call FindDepsForModule, $m), \
 258                  $(call FindDepsForModule, $n))))
 259 
 260 # Upgradeable modules are those that are either defined as upgradeable or that
 261 # require an upradeable module.
 262 FindAllUpgradeableModules = \
 263     $(filter-out $(MODULES_FILTER) $(NON_UPGRADEABLE_MODULES), \
 264         $(sort $(UPGRADEABLE_MODULES) $(foreach m, \
 265             $(filter-out $(UPGRADEABLE_MODULES), $(call FindAllModules)), \
 266           $(if $(filter $(UPGRADEABLE_MODULES), \
 267               $(call FindTransitiveDepsForModule, $m)), \
 268             $m \
 269           ) \
 270         )) \
 271     )
 272 
 273 ################################################################################
 274 
 275 # Param 1 - Name of module
 276 define ReadSingleImportMetaData
 277     ifneq ($$(wildcard $(IMPORT_MODULES_MAKE)/$$(strip $1)/build.properties), )
 278       classloader :=
 279       include_in_jre :=
 280       include_in_jdk :=
 281       include $(IMPORT_MODULES_MAKE)/$$(strip $1)/build.properties
 282       ifeq ($$(include_in_jre), true)
 283         JRE_MODULES += $1
 284       endif
 285       ifeq ($$(include_in_jdk), true)
 286         JDK_MODULES += $1
 287       endif
 288       ifeq ($$(classloader), boot)
 289         BOOT_MODULES += $1
 290       else ifeq ($$(classloader), ext)
 291         PLATFORM_MODULES += $1
 292       endif
 293     else
 294       # Default to include in all
 295       JRE_MODULES += $1
 296       JDK_MODULES += $1
 297     endif
 298 endef
 299 
 300 # Reading the imported modules metadata has a cost, so to make it available,
 301 # a makefile needs to eval-call this macro first. After calling this, the
 302 # following variables are populated with data from the imported modules:
 303 # * JRE_MODULES
 304 # * JDK_MODULES
 305 # * BOOT_MODULES
 306 # * PLATFORM_MODULES
 307 # * JRE_TOOL_MODULES
 308 define ReadImportMetaData
 309     IMPORTED_MODULES := $$(call FindImportedModules)
 310     $$(foreach m, $$(IMPORTED_MODULES), \
 311       $$(eval $$(call ReadSingleImportMetaData, $$m)))
 312 endef
 313 
 314 ################################################################################
 315 
 316 endif # _MODULES_GMK