1 #
   2 # Copyright (c) 2016, 2018, 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 default: all
  27 
  28 include $(SPEC)
  29 include MakeBase.gmk
  30 
  31 PRODUCT_TARGETS :=
  32 TEST_TARGETS :=
  33 DOCS_TARGETS :=
  34 
  35 # On Windows tar frequently complains that "file changed as we read it" for
  36 # some random source files. This seems to be cause by anti virus scanners and
  37 # is most likely safe to ignore. When it happens, tar returns '1'.
  38 ifeq ($(call isBuildOs, windows), true)
  39   TAR_IGNORE_EXIT_VALUE := || test "$$$$?" = "1"
  40 endif
  41 
  42 # Hook to include the corresponding custom file, if present.
  43 $(eval $(call IncludeCustomExtension, Bundles-pre.gmk))
  44 ################################################################################
  45 # BUNDLE : Name of bundle to create
  46 # FILES : Files in BASE_DIRS to add to bundle
  47 # SPECIAL_INCLUDES : List of directories inside BASE_DIRS to look for additional
  48 #     files in. These files will not get proper dependency handling. Use when
  49 #     files or directories may contain spaces.
  50 # BASE_DIRS : Base directories for the root dir in the bundle.
  51 # SUBDIR : Optional name of root dir in bundle.
  52 SetupBundleFile = $(NamedParamsMacroTemplate)
  53 define SetupBundleFileBody
  54 
  55   $$(foreach d, $$($1_BASE_DIRS), \
  56     $$(eval $1_$$d_RELATIVE_FILES := $$$$(patsubst $$d/%, %, \
  57         $$$$(filter $$d/%, $$$$($1_FILES)))) \
  58     $$(eval $1_$$d_LIST_FILE := \
  59         $(SUPPORT_OUTPUTDIR)/bundles/_$1_$$$$(subst /,_,$$$$(patsubst $(OUTPUTDIR)/%,%,$$d)_files)) \
  60   )
  61 
  62   ifneq ($$(filter %.tar.gz, $$($1_BUNDLE_NAME)), )
  63     $1_TYPE := tar.gz
  64   else ifneq ($$(filter %.zip, $$($1_BUNDLE_NAME)), )
  65     $1_TYPE := zip
  66   else
  67     $$(error Unknown bundle type $$($1_BUNDLE_NAME))
  68   endif
  69 
  70   $$(call SetIfEmpty, $1_UNZIP_DEBUGINFO, false)
  71 
  72   $(BUNDLES_OUTPUTDIR)/$$($1_BUNDLE_NAME): $$($1_FILES)
  73         $$(call MakeTargetDir)
  74         # If any of the files contain a space in the file name, CacheFind
  75         # will have replaced it with ?. Tar does not accept that so need to
  76         # switch it back.
  77         $$(foreach d, $$($1_BASE_DIRS), \
  78           $$(eval $$(call ListPathsSafely, \
  79               $1_$$d_RELATIVE_FILES, $$($1_$$d_LIST_FILE))) \
  80           $$(CAT) $$($1_$$d_LIST_FILE) | $$(TR) '?' ' ' > $$($1_$$d_LIST_FILE).tmp \
  81               && $(MV) $$($1_$$d_LIST_FILE).tmp $$($1_$$d_LIST_FILE) $$(NEWLINE) \
  82         )
  83         ifneq ($$($1_SPECIAL_INCLUDES), )
  84           $$(foreach i, $$($1_SPECIAL_INCLUDES), \
  85             $$(foreach d, $$($1_BASE_DIRS), \
  86               ($(CD) $$d && $(FIND) $$i >> $$($1_$$d_LIST_FILE)) ; ))
  87         endif
  88         ifeq ($$($1_SUBDIR)-$$($1_TYPE)-$$($1_UNZIP_DEBUGINFO), .-zip-false)
  89           # If no subdir is specified, zip can be done directly from BASE_DIRS.
  90           $$(foreach d, $$($1_BASE_DIRS), \
  91             ( $(CD) $$d \
  92             && $(ZIPEXE) -qru $$@ . -i@$$($1_$$d_LIST_FILE) \
  93             || test "$$$$?" = "12" )$$(NEWLINE))
  94         else ifeq ($$($1_SUBDIR)-$$($1_TYPE)-$$($1_UNZIP_DEBUGINFO)-$$(words $$($1_BASE_DIRS)), \
  95             .-tar.gz-false-1)
  96           # If no subdir is specified and only one BASE_DIR, tar.gz can be done
  97           # directly from BASE_DIR.
  98           $(CD) $$($1_BASE_DIRS) \
  99               && ( $(TAR) cf - $(TAR_CREATE_EXTRA_PARAM) \
 100                   -$(TAR_INCLUDE_PARAM) $$($1_$$($1_BASE_DIRS)_LIST_FILE) \
 101                   $(TAR_IGNORE_EXIT_VALUE) ) \
 102               | $(GZIP) > $$@
 103         else ifeq ($$($1_TYPE)-$(TAR_SUPPORTS_TRANSFORM)-$$($1_UNZIP_DEBUGINFO)-$$(words $$($1_BASE_DIRS)), \
 104             tar.gz-true-false-1)
 105           # If only one BASE_DIR, but with a SUBDIR set, tar.gz can use the
 106           # transform option to create bundle directly from the BASE_DIR.
 107           $(CD) $$($1_BASE_DIRS) \
 108               && ( $(TAR) cf - $(TAR_CREATE_EXTRA_PARAM) \
 109                   -$(TAR_INCLUDE_PARAM) $$($1_$$($1_BASE_DIRS)_LIST_FILE) \
 110                   $$(if $$($1_SUBDIR), --transform 's|^|$$($1_SUBDIR)/|S') \
 111                   $(TAR_IGNORE_EXIT_VALUE) ) \
 112               | $(GZIP) > $$@
 113         else
 114           # In all other cases, need to copy all files into a temporary location
 115           # before creation bundle.
 116           $(RM) -r $(SUPPORT_OUTPUTDIR)/bundles/$1/$$($1_SUBDIR)
 117           $(MKDIR) -p $(SUPPORT_OUTPUTDIR)/bundles/$1/$$($1_SUBDIR)
 118           $$(foreach d, $$($1_BASE_DIRS), \
 119             ( $(CD) $$d \
 120             && $(TAR) cf - -$(TAR_INCLUDE_PARAM) $$($1_$$d_LIST_FILE) \
 121                 $(TAR_IGNORE_EXIT_VALUE) ) \
 122             | ( $(CD) $(SUPPORT_OUTPUTDIR)/bundles/$1/$$($1_SUBDIR) && $(TAR) xf - )$$(NEWLINE) )
 123           # Unzip any zipped debuginfo files
 124           ifeq ($$($1_UNZIP_DEBUGINFO), true)
 125             for f in `$(FIND) $(SUPPORT_OUTPUTDIR)/bundles/$1/$$($1_SUBDIR) -name "*.diz"`; do \
 126               $(CD) $$$${f%/*} && $(UNZIP) -q $$$${f} && $(RM) $$$${f}; \
 127             done
 128           endif
 129           ifeq ($$($1_TYPE), tar.gz)
 130             $(CD) $(SUPPORT_OUTPUTDIR)/bundles/$1 && \
 131             ( $(TAR) cf - $(TAR_CREATE_EXTRA_PARAM) \
 132                 $$(if $$($1_SUBDIR), $$($1_SUBDIR), .) $(TAR_IGNORE_EXIT_VALUE) ) \
 133             | $(GZIP) > $$@
 134           else ifeq ($$($1_TYPE), zip)
 135             $(CD) $(SUPPORT_OUTPUTDIR)/bundles/$1 && $(ZIPEXE) -qr $$@ .
 136           endif
 137         endif
 138 
 139   $1 += $(BUNDLES_OUTPUTDIR)/$$($1_BUNDLE_NAME)
 140 
 141 endef
 142 
 143 ################################################################################
 144 
 145 # On Macosx, we bundle up the macosx specific images which already have the
 146 # correct base directories.
 147 ifeq ($(call isTargetOs, macosx)+$(DEBUG_LEVEL), true+release)
 148   JDK_IMAGE_DIR := $(JDK_MACOSX_BUNDLE_DIR)
 149   JDK_IMAGE_HOMEDIR := $(JDK_MACOSX_CONTENTS_DIR)/Home
 150   JDK_BUNDLE_SUBDIR :=
 151 else
 152   JDK_IMAGE_HOMEDIR := $(JDK_IMAGE_DIR)
 153   JDK_BUNDLE_SUBDIR := jdk-$(VERSION_NUMBER)
 154   ifneq ($(DEBUG_LEVEL), release)
 155     JDK_BUNDLE_SUBDIR := $(JDK_BUNDLE_SUBDIR)/$(DEBUG_LEVEL)
 156   endif
 157 endif
 158 
 159 ################################################################################
 160 
 161 ifneq ($(filter product-bundles, $(MAKECMDGOALS)), )
 162   $(eval $(call FillCacheFind, $(IMAGES_OUTPUTDIR)))
 163 
 164   SYMBOLS_EXCLUDE_PATTERN := %.debuginfo %.diz %.pdb %.map
 165 
 166   ALL_JDK_FILES := $(call CacheFind, $(JDK_IMAGE_DIR))
 167 
 168   # Create special filter rules when dealing with unzipped .dSYM directories on
 169   # macosx
 170   ifeq ($(call isTargetOs, macosx), true)
 171     ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), false)
 172       JDK_SYMBOLS_EXCLUDE_PATTERN := $(addprefix %, \
 173           $(call containing, .dSYM/, $(patsubst $(JDK_IMAGE_DIR)/%, %, $(ALL_JDK_FILES))))
 174     endif
 175   endif
 176 
 177   JDK_BUNDLE_FILES := \
 178       $(filter-out \
 179           $(JDK_SYMBOLS_EXCLUDE_PATTERN) \
 180           $(JDK_EXTRA_EXCLUDES) \
 181           $(SYMBOLS_EXCLUDE_PATTERN) \
 182           $(JDK_IMAGE_HOMEDIR)/demo/% \
 183           , \
 184           $(ALL_JDK_FILES) \
 185       )
 186   JDK_SYMBOLS_BUNDLE_FILES := \
 187       $(filter \
 188           $(JDK_SYMBOLS_EXCLUDE_PATTERN) \
 189           $(SYMBOLS_EXCLUDE_PATTERN) \
 190           , \
 191           $(filter-out \
 192               $(JDK_IMAGE_HOMEDIR)/demo/% \
 193               , \
 194               $(ALL_JDK_FILES) \
 195           ) \
 196       ) \
 197       $(call CacheFind, $(SYMBOLS_IMAGE_DIR))
 198 
 199   TEST_DEMOS_BUNDLE_FILES := $(filter $(JDK_IMAGE_HOMEDIR)/demo/%, $(ALL_JDK_FILES))
 200 
 201   $(eval $(call SetupBundleFile, BUILD_JDK_BUNDLE, \
 202       BUNDLE_NAME := $(JDK_BUNDLE_NAME), \
 203       FILES := $(JDK_BUNDLE_FILES), \
 204       SPECIAL_INCLUDES := $(JDK_SPECIAL_INCLUDES), \
 205       BASE_DIRS := $(JDK_IMAGE_DIR), \
 206       SUBDIR := $(JDK_BUNDLE_SUBDIR), \
 207   ))
 208 
 209   PRODUCT_TARGETS += $(BUILD_JDK_BUNDLE)
 210 
 211   $(eval $(call SetupBundleFile, BUILD_JDK_SYMBOLS_BUNDLE, \
 212       BUNDLE_NAME := $(JDK_SYMBOLS_BUNDLE_NAME), \
 213       FILES := $(JDK_SYMBOLS_BUNDLE_FILES), \
 214       BASE_DIRS := $(JDK_IMAGE_DIR) $(wildcard $(SYMBOLS_IMAGE_DIR)), \
 215       SUBDIR := $(JDK_BUNDLE_SUBDIR), \
 216       UNZIP_DEBUGINFO := true, \
 217   ))
 218 
 219   PRODUCT_TARGETS += $(BUILD_JDK_SYMBOLS_BUNDLE)
 220 
 221   # The demo bundle is only created to support client tests. Ideally it should
 222   # be built with the main test bundle, but since the prerequisites match
 223   # better with the product build, it makes more sense to keep it there for now.
 224   $(eval $(call SetupBundleFile, BUILD_TEST_DEMOS_BUNDLE, \
 225       BUNDLE_NAME := $(TEST_DEMOS_BUNDLE_NAME), \
 226       FILES := $(TEST_DEMOS_BUNDLE_FILES), \
 227       BASE_DIRS := $(JDK_IMAGE_DIR), \
 228       SUBDIR := $(JDK_BUNDLE_SUBDIR), \
 229   ))
 230 
 231   PRODUCT_TARGETS += $(BUILD_TEST_DEMOS_BUNDLE)
 232 endif
 233 
 234 ################################################################################
 235 
 236 ifneq ($(filter test-bundles, $(MAKECMDGOALS)), )
 237   TEST_BUNDLE_FILES := $(call CacheFind, $(TEST_IMAGE_DIR))
 238 
 239   $(eval $(call SetupBundleFile, BUILD_TEST_BUNDLE, \
 240       BUNDLE_NAME := $(TEST_BUNDLE_NAME), \
 241       FILES := $(TEST_BUNDLE_FILES), \
 242       BASE_DIRS := $(TEST_IMAGE_DIR), \
 243   ))
 244 
 245   TEST_TARGETS += $(BUILD_TEST_BUNDLE)
 246 endif
 247 
 248 ################################################################################
 249 
 250 ifneq ($(filter docs-bundles, $(MAKECMDGOALS)), )
 251   DOCS_BUNDLE_FILES := $(call CacheFind, $(DOCS_IMAGE_DIR))
 252 
 253   $(eval $(call SetupBundleFile, BUILD_DOCS_BUNDLE, \
 254       BUNDLE_NAME := $(DOCS_BUNDLE_NAME), \
 255       FILES := $(DOCS_BUNDLE_FILES), \
 256       BASE_DIRS := $(DOCS_IMAGE_DIR), \
 257       SUBDIR := docs, \
 258   ))
 259 
 260   DOCS_TARGETS += $(BUILD_DOCS_BUNDLE)
 261 endif
 262 
 263 ################################################################################
 264 
 265 ifneq ($(filter jcov-bundles, $(MAKECMDGOALS)), )
 266   JCOV_BUNDLE_FILES := $(call CacheFind, $(JCOV_IMAGE_DIR))
 267 
 268   $(eval $(call SetupBundleFile, BUILD_JCOV_BUNDLE, \
 269       BUNDLE_NAME := $(JCOV_BUNDLE_NAME), \
 270       FILES := $(JCOV_BUNDLE_FILES), \
 271       BASE_DIRS := $(JCOV_IMAGE_DIR), \
 272       SUBDIR := $(JDK_BUNDLE_SUBDIR), \
 273   ))
 274 
 275   JCOV_TARGETS += $(BUILD_JCOV_BUNDLE)
 276 endif
 277 
 278 ################################################################################
 279 
 280 # Hook to include the corresponding custom file, if present.
 281 $(eval $(call IncludeCustomExtension, Bundles.gmk))
 282 
 283 ################################################################################
 284 
 285 product-bundles: $(PRODUCT_TARGETS)
 286 test-bundles: $(TEST_TARGETS)
 287 docs-bundles: $(DOCS_TARGETS)
 288 jcov-bundles: $(JCOV_TARGETS)
 289 
 290 .PHONY: all default product-bundles test-bundles docs-bundles jcov-bundles