make/common/JavaCompilation.gmk

Wed, 19 Feb 2014 20:11:41 -0800

author
kvn
date
Wed, 19 Feb 2014 20:11:41 -0800
changeset 978
c5a60709f587
parent 974
46696858adab
parent 939
78abb27c27d9
child 1133
50aaf272884f
child 2519
908e7985b339
permissions
-rw-r--r--

Merge

ohair@425 1 #
erikj@850 2 # Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
ohair@425 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohair@425 4 #
ohair@425 5 # This code is free software; you can redistribute it and/or modify it
ohair@425 6 # under the terms of the GNU General Public License version 2 only, as
ohair@425 7 # published by the Free Software Foundation. Oracle designates this
ohair@425 8 # particular file as subject to the "Classpath" exception as provided
ohair@425 9 # by Oracle in the LICENSE file that accompanied this code.
ohair@425 10 #
ohair@425 11 # This code is distributed in the hope that it will be useful, but WITHOUT
ohair@425 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohair@425 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohair@425 14 # version 2 for more details (a copy is included in the LICENSE file that
ohair@425 15 # accompanied this code).
ohair@425 16 #
ohair@425 17 # You should have received a copy of the GNU General Public License version
ohair@425 18 # 2 along with this work; if not, write to the Free Software Foundation,
ohair@425 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohair@425 20 #
ohair@425 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@425 22 # or visit www.oracle.com if you need additional information or have any
ohair@425 23 # questions.
ohair@425 24 #
ohair@425 25
ohair@478 26 # This makefile is much simpler now that it can use the smart javac wrapper
ohair@478 27 # for dependency tracking between java packages and incremental compiles.
ohair@478 28 # It could be even more simple if we added support for incremental jar updates
ohair@478 29 # directly from the smart javac wrapper.
ohair@478 30
ohair@478 31 # Cleaning/copying properties here is not a good solution. The properties
ohair@478 32 # should be cleaned/copied by a annotation processor in sjavac.
ohair@478 33
ohair@425 34 # When you read this source. Remember that $(sort ...) has the side effect
ohair@425 35 # of removing duplicates. It is actually this side effect that is
ohair@425 36 # desired whenever sort is used below!
ohair@425 37
ihse@839 38 ifeq (,$(_MAKEBASE_GMK))
ihse@839 39 $(error You must include MakeBase.gmk prior to including JavaCompilation.gmk)
ohair@425 40 endif
ohair@425 41
ohair@425 42 FALSE_FIND_PATTERN:=-name FILE_NAME_THAT_DOESNT_EXIST
ohair@425 43
ohair@425 44 define SetupJavaCompiler
ihse@839 45 # param 1 is for example GENERATE_OLD_BYTECODE or GENERATE_NEW_JDKBYTECODE
ihse@839 46 # This is the name of the compiler setup.
ihse@839 47 # param 2-9 are named args.
ihse@839 48 # JVM:=The jvm used to run the javac/javah command
ihse@839 49 # JAVAC:=The javac jar and bootstrap classpath changes, or just bin/javac if JVM is left out
ihse@839 50 # FLAGS:=Flags to be supplied to javac
ihse@839 51 # SERVER_DIR:=Use a javac server (-XDserver) and store the server related files here
ihse@839 52 # SERVER_JVM:=Use this JVM for the server. Defaults to the JVM above.
ihse@839 53 $(foreach i,2 3 4 5 6 7 8 9 10 11 12 13 14 15, $(if $($i),$1_$(strip $($i)))$(NEWLINE))
ihse@839 54 $(call LogSetupMacroEntry,SetupJavaCompiler($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))
ihse@839 55 $(if $(16),$(error Internal makefile error: Too many arguments to SetupJavaCompiler, please update JavaCompilation.gmk))
ohair@425 56
ihse@839 57 # The port file contains the tcp/ip on which the server listens
ihse@839 58 # and the cookie necessary to talk to the server.
ihse@839 59 $1_SJAVAC_PORTFILE:=$$($1_SERVER_DIR)/server.port
ihse@839 60 # You can use a different JVM to run the background javac server.
ihse@839 61 ifeq ($$($1_SERVER_JVM),)
ihse@839 62 # It defaults to the same JVM that is used to start the javac command.
ihse@839 63 $1_SERVER_JVM:=$$($1_JVM)
ihse@839 64 endif
ohair@425 65 endef
ohair@425 66
ohair@425 67 define SetupArchive
ihse@839 68 # param 1 is for example ARCHIVE_MYPACKAGE
ihse@839 69 # param 2 are the dependecies
ihse@839 70 # param 3,4,5,6,7,8,9 are named args.
ihse@839 71 # SRCS:=List of directories in where to find files to add to archive
ihse@839 72 # SUFFIXES:=File suffixes to include in jar
ihse@839 73 # INCLUDES:=List of directories/packages in SRCS that should be included
ihse@839 74 # EXCLUDES:=List of directories/packages in SRCS that should be excluded
ihse@839 75 # EXCLUDE_FILES:=List of files in SRCS that should be excluded
ihse@839 76 # EXTRA_FILES:=List of files in SRCS that should be included regardless of suffix match.
ihse@839 77 # JAR:=Jar file to create
ihse@839 78 # MANIFEST:=Optional manifest file template.
ihse@839 79 # JARMAIN:=Optional main class to add to manifest
ihse@839 80 # JARINDEX:=true means generate the index in the jar file.
ihse@839 81 # SKIP_METAINF:=Set to prevent contents of an META-INF directory to be automatically
ihse@839 82 # added to the archive.
ihse@839 83 # EXTRA_MANIFEST_ATTR:=Extra attribute to add to manifest.
ihse@839 84 # CHECK_COMPRESS_JAR Check the COMPRESS_JAR variable
ohair@494 85
ihse@839 86 # NOTE: $2 is dependencies, not a named argument!
ihse@839 87 $(foreach i,3 4 5 6 7 8 9 10 11 12 13 14 15, $(if $($i),$1_$(strip $($i)))$(NEWLINE))
ihse@839 88 $(call LogSetupMacroEntry,SetupArchive($1),<dependencies>,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))
erikj@840 89 $(if $(findstring $(LOG_LEVEL),trace), $(info *[2] <dependencies> = $(strip $2)))
ihse@839 90 $(if $(16),$(error Internal makefile error: Too many arguments to SetupArchive, please update JavaCompilation.gmk))
ohair@425 91
ihse@839 92 $1_JARMAIN:=$(strip $$($1_JARMAIN))
ihse@839 93 $1_JARNAME:=$$(notdir $$($1_JAR))
ihse@839 94 $1_MANIFEST_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_manifest
ihse@839 95 $1_DELETESS_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_deletess
ihse@839 96 $1_DELETES_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_deletes
ihse@839 97 $1_BIN:=$$(dir $$($1_JAR))
erikj@445 98
ihse@839 99 ifeq (,$$($1_SUFFIXES))
ihse@839 100 # No suffix was set, default to classes.
ihse@839 101 $1_SUFFIXES:=.class
ihse@839 102 endif
ihse@839 103 # Convert suffixes to a find expression
ihse@839 104 $1_FIND_PATTERNS:=$(FALSE_FIND_PATTERN) $$(patsubst %,$(SPACE)-o$(SPACE)-name$(SPACE)$(DQUOTE)*%$(DQUOTE),$$($1_SUFFIXES))
ihse@839 105 # On windows, a lot of includes/excludes risk making the command line too long, so
ihse@839 106 # writing the grep patterns to files.
ihse@839 107 ifneq (,$$($1_INCLUDES))
ihse@839 108 $1_GREP_INCLUDE_PATTERNS:=$$(foreach src,$$($1_SRCS), \
ihse@839 109 $$(addprefix $$(src)/,$$($1_INCLUDES)))
ihse@839 110 # If there are a lot of include patterns, output to file to shorten command lines
ihse@839 111 ifeq ($$(word 20,$$($1_GREP_INCLUDE_PATTERNS)),)
ihse@839 112 $1_GREP_INCLUDES:=| $(GREP) $$(patsubst %,$(SPACE)-e$(SPACE)$(DQUOTE)%$(DQUOTE),$$($1_GREP_INCLUDE_PATTERNS))
ihse@839 113 else
erikj@840 114 $1_GREP_INCLUDE_OUTPUT:=$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_include $$(NEWLINE) \
erikj@840 115 $$(call ListPathsSafely,$1_GREP_INCLUDE_PATTERNS,\n, \
erikj@840 116 >> $$($1_BIN)/_the.$$($1_JARNAME)_include)
ihse@839 117 $1_GREP_INCLUDES:=| $(GREP) -f $$($1_BIN)/_the.$$($1_JARNAME)_include
ohair@425 118 endif
ihse@839 119 endif
ihse@839 120 ifneq (,$$($1_EXCLUDES)$$($1_EXCLUDE_FILES))
ihse@839 121 $1_GREP_EXCLUDE_PATTERNS:=$$(foreach src,$$($1_SRCS),$$(addprefix $$(src)/, \
ihse@839 122 $$($1_EXCLUDES) $$($1_EXCLUDE_FILES)))
ihse@839 123 # If there are a lot of include patterns, output to file to shorten command lines
ihse@839 124 ifeq ($$(word 20,$$($1_GREP_EXCLUDE_PATTERNS)),)
ihse@839 125 $1_GREP_EXCLUDES:=| $(GREP) -v $$(patsubst %,$(SPACE)-e$(SPACE)$(DQUOTE)%$(DQUOTE),$$($1_GREP_EXCLUDE_PATTERNS))
ihse@839 126 else
erikj@840 127 $1_GREP_EXCLUDE_OUTPUT=$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_exclude $$(NEWLINE) \
erikj@840 128 $$(call ListPathsSafely,$1_GREP_EXCLUDE_PATTERNS,\n, \
erikj@840 129 >> $$($1_BIN)/_the.$$($1_JARNAME)_exclude)
ihse@839 130 $1_GREP_EXCLUDES:=| $(GREP) -v -f $$($1_BIN)/_the.$$($1_JARNAME)_exclude
ohair@425 131 endif
ihse@839 132 endif
ihse@839 133
ihse@839 134 # Check if this jar needs to have its index generated.
ihse@839 135 ifneq (,$$($1_JARINDEX))
ihse@839 136 $1_JARINDEX = (cd $$(dir $$@) && $(JAR) -i $$(notdir $$@))
ihse@839 137 else
ihse@839 138 $1_JARINDEX = true
ihse@839 139 endif
ihse@839 140 # When this macro is run in the same makefile as the java compilation, dependencies are
ihse@839 141 # transfered in make variables. When the macro is run in a different makefile than the
ihse@839 142 # java compilation, the dependencies need to be found in the filesystem.
ihse@839 143 ifneq (,$2)
ihse@839 144 $1_DEPS:=$2
ihse@839 145 else
ihse@839 146 $1_DEPS:=$$(filter $$(addprefix %,$$($1_SUFFIXES)), \
ihse@839 147 $$(call CacheFind,$$($1_SRCS)))
ihse@839 148 ifneq (,$$($1_GREP_INCLUDE_PATTERNS))
ihse@839 149 $1_DEPS:=$$(filter $$(addsuffix %,$$($1_GREP_INCLUDE_PATTERNS)),$$($1_DEPS))
ohair@425 150 endif
ihse@839 151 ifneq (,$$($1_GREP_EXCLUDE_PATTERNS))
ihse@839 152 $1_DEPS:=$$(filter-out $$(addsuffix %,$$($1_GREP_EXCLUDE_PATTERNS)),$$($1_DEPS))
ihse@839 153 endif
ihse@839 154 # The subst of \ is needed because $ has to be escaped with \ in EXTRA_FILES for the command
ihse@839 155 # lines, but not here for use in make dependencies.
ihse@839 156 $1_DEPS+=$$(subst \,,$$(foreach src,$$($1_SRCS),$$(addprefix $$(src)/,$$($1_EXTRA_FILES))))
ihse@839 157 ifeq (,$$($1_SKIP_METAINF))
ihse@839 158 $1_DEPS+=$$(call CacheFind,$$(wildcard $$(addsuffix /META-INF,$$($1_SRCS))))
ihse@839 159 endif
ihse@839 160 endif
ohair@425 161
ihse@839 162 # Utility macros, to make the shell script receipt somewhat easier to decipher.
ihse@839 163
ihse@839 164 # The capture contents macro finds all files (matching the patterns, typically
ihse@839 165 # .class and .prp) that are newer than the jar-file, ie the new content to be put into the jar.
kvn@972 166 # NOTICE: please leave the parentheses space separated otherwise the AIX build will break!
ihse@839 167 $1_CAPTURE_CONTENTS=$$(foreach src,$$($1_SRCS), \
kvn@972 168 ( ( $(FIND) $$(src) -type f -a \( $$($1_FIND_PATTERNS) \) -a -newer $$@ $$($1_GREP_INCLUDES) \
ihse@839 169 $$($1_GREP_EXCLUDES) | $(SED) 's|$$(src)/||g' && \
kvn@972 170 $(ECHO) $$(subst $$(src)/,,$$($1_EXTRA_FILES) ) ) > \
kvn@972 171 $$(src)/_the.$$($1_JARNAME)_contents) $$(NEWLINE) )
ihse@839 172 # The capture metainf macro finds all files below the META-INF directory that are newer than the jar-file.
ihse@839 173 ifeq (,$$($1_SKIP_METAINF))
ihse@839 174 $1_CAPTURE_METAINF =$$(foreach src,$$($1_SRCS),($(FIND) $$(src)/META-INF -type f -a -newer $$@ 2> /dev/null | $(SED) 's|$$(src)/||g' >> $$(src)/_the.$$($1_JARNAME)_contents ) $$(NEWLINE))
ihse@839 175 endif
ihse@839 176 # The capture deletes macro finds all deleted files and concatenates them. The resulting file
ihse@839 177 # tells us what to remove from the jar-file.
ihse@839 178 $1_CAPTURE_DELETES=$$(foreach src,$$($1_SRCS),($(FIND) $$(src) -name _the.package.deleted -newer $$@ -exec $(SED) 's|$$(src)||g' \{\} >> $$($1_DELETES_FILE) \;) $$(NEWLINE))
ihse@839 179 # The update contents macro updates the jar file with the previously capture contents.
kvn@972 180 # Use 'wc -w' to see if the contents file is empty.
ihse@839 181 $1_UPDATE_CONTENTS=$$(foreach src,$$($1_SRCS), \
ihse@839 182 (cd $$(src) && \
kvn@972 183 if [ "`$(WC) -w _the.$$($1_JARNAME)_contents | $(AWK) '{ print $$$$1 }'`" -gt "0" ]; then \
ihse@839 184 $(ECHO) " updating" `$(WC) -l _the.$$($1_JARNAME)_contents | $(AWK) '{ print $$$$1 }'` files && \
ihse@839 185 $(JAR) $$($1_JAR_UPDATE_OPTIONS) $$@ @_the.$$($1_JARNAME)_contents; \
ihse@839 186 fi) $$(NEWLINE))
ihse@839 187 # The s-variants of the above macros are used when the jar is created from scratch.
kvn@972 188 # NOTICE: please leave the parentheses space separated otherwise the AIX build will break!
ihse@839 189 $1_SCAPTURE_CONTENTS=$$(foreach src,$$($1_SRCS), \
kvn@972 190 ( ( $(FIND) $$(src) -type f -a \( $$($1_FIND_PATTERNS) \) $$($1_GREP_INCLUDES) \
ihse@839 191 $$($1_GREP_EXCLUDES) | $(SED) 's|$$(src)/||g' && \
kvn@972 192 $$(subst $$(src)/,,$(ECHO) $$($1_EXTRA_FILES) ) ) > \
kvn@972 193 $$(src)/_the.$$($1_JARNAME)_contents) $$(NEWLINE) )
ihse@839 194
ihse@839 195 ifeq (,$$($1_SKIP_METAINF))
ihse@839 196 $1_SCAPTURE_METAINF=$$(foreach src,$$($1_SRCS), \
ihse@839 197 ($(FIND) $$(src)/META-INF -type f 2> /dev/null | $(SED) 's|$$(src)/||g' >> \
ihse@839 198 $$(src)/_the.$$($1_JARNAME)_contents) $$(NEWLINE))
ihse@839 199 endif
ihse@839 200 $1_SUPDATE_CONTENTS=$$(foreach src,$$($1_SRCS), \
ihse@839 201 (cd $$(src) && $(JAR) $$($1_JAR_UPDATE_OPTIONS) $$@ @$$(src)/_the.$$($1_JARNAME)_contents) $$(NEWLINE))
ihse@839 202
ihse@839 203 # Use a slightly shorter name for logging, but with enough path to identify this jar.
ihse@839 204 $1_NAME:=$$(subst $$(OUTPUT_ROOT)/,,$$($1_JAR))
ihse@839 205
ihse@839 206 ifneq (,$$($1_CHECK_COMPRESS_JAR))
ihse@839 207 $1_JAR_CREATE_OPTIONS := c0fm
ihse@839 208 $1_JAR_UPDATE_OPTIONS := u0f
ihse@839 209 ifeq ($(COMPRESS_JARS), true)
ihse@839 210 $1_JAR_CREATE_OPTIONS := cfm
ihse@839 211 $1_JAR_UPDATE_OPTIONS := uf
erikj@445 212 endif
ihse@839 213 else
ihse@839 214 $1_JAR_CREATE_OPTIONS := cfm
ihse@839 215 $1_JAR_UPDATE_OPTIONS := uf
ihse@839 216 endif
erikj@445 217
ihse@839 218 # Here is the rule that creates/updates the jar file.
ihse@839 219 $$($1_JAR) : $$($1_DEPS)
ohair@425 220 $(MKDIR) -p $$($1_BIN)
erikj@557 221 $$($1_GREP_INCLUDE_OUTPUT)
erikj@557 222 $$($1_GREP_EXCLUDE_OUTPUT)
ihse@839 223 $$(if $$($1_MANIFEST), \
ihse@839 224 $(SED) -e "s#@@RELEASE@@#$(RELEASE)#" \
ihse@839 225 -e "s#@@COMPANY_NAME@@#$(COMPANY_NAME)#" $$($1_MANIFEST) > $$($1_MANIFEST_FILE) \
ihse@839 226 , \
ihse@839 227 $(RM) $$($1_MANIFEST_FILE) && $(TOUCH) $$($1_MANIFEST_FILE))
ohair@494 228 $$(if $$($1_JARMAIN),$(ECHO) "Main-Class: $$(strip $$($1_JARMAIN))" >> $$($1_MANIFEST_FILE))
ohair@494 229 $$(if $$($1_EXTRA_MANIFEST_ATTR),$(PRINTF) "$$($1_EXTRA_MANIFEST_ATTR)\n" >> $$($1_MANIFEST_FILE))
ihse@839 230 $$(if $$(wildcard $$@), \
ihse@839 231 $(ECHO) Modifying $$($1_NAME) $$(NEWLINE) \
ihse@839 232 $$($1_CAPTURE_CONTENTS) \
ihse@839 233 $$($1_CAPTURE_METAINF) \
ihse@839 234 $(RM) $$($1_DELETES_FILE) $$(NEWLINE) \
ihse@839 235 $$($1_CAPTURE_DELETES) \
ihse@839 236 $(CAT) $$($1_DELETES_FILE) > $$($1_DELETESS_FILE) $$(NEWLINE) \
ihse@839 237 if [ -s $$($1_DELETESS_FILE) ]; then \
ihse@839 238 $(ECHO) " deleting" `$(WC) -l $$($1_DELETESS_FILE) | $(AWK) '{ print $$$$1 }'` files && \
ihse@839 239 $(ZIP) -q -d $$@ `$(CAT) $$($1_DELETESS_FILE)` ; \
ihse@839 240 fi $$(NEWLINE) \
ihse@839 241 $$($1_UPDATE_CONTENTS) true $$(NEWLINE) \
ihse@839 242 $$($1_JARINDEX) && true \
ihse@839 243 , \
ihse@839 244 $(ECHO) Creating $$($1_NAME) && $(JAR) $$($1_JAR_CREATE_OPTIONS) $$@ $$($1_MANIFEST_FILE) $$(NEWLINE) \
ihse@839 245 $$($1_SCAPTURE_CONTENTS) \
ihse@839 246 $$($1_SCAPTURE_METAINF) \
ihse@839 247 $$($1_SUPDATE_CONTENTS) \
ihse@839 248 $$($1_JARINDEX) && true )
ohair@425 249
ohair@425 250 endef
ohair@425 251
ohair@425 252 define SetupZipArchive
ihse@839 253 # param 1 is for example ZIP_MYSOURCE
ihse@839 254 # param 2,3,4,5,6,7,8,9 are named args.
ihse@839 255 # SRC,ZIP,INCLUDES,INCLUDE_FILES,EXCLUDES,EXCLUDE_FILES,SUFFIXES,EXTRA_DEPS
ihse@839 256 $(foreach i,2 3 4 5 6 7 8 9 10 11 12 13 14 15, $(if $($i),$1_$(strip $($i)))$(NEWLINE))
ihse@839 257 $(call LogSetupMacroEntry,SetupZipArchive($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))
ihse@839 258 $(if $(16),$(error Internal makefile error: Too many arguments to SetupZipArchive, please update JavaCompilation.gmk))
ohair@425 259
ihse@839 260 # To avoid running find over too large sets of files, which causes make to crash
ihse@839 261 # on some configurations (cygwin), use INCLUDES and INCLUDE_FILES to build a set
ihse@839 262 # of directories to run find in, if available.
ihse@839 263 ifneq ($$($1_INCLUDES)$$($1_INCLUDE_FILES),)
ihse@839 264 $1_FIND_LIST := $$(wildcard $$(foreach i,$$($1_SRC), \
ihse@839 265 $$(addprefix $$i/,$$($1_INCLUDES) $$($1_INCLUDE_FILES))))
ihse@839 266 else
ihse@839 267 $1_FIND_LIST := $$($1_SRC)
ihse@839 268 endif
ihse@839 269
ihse@839 270 # Find all files in the source tree.
erikj@859 271 $1_ALL_SRCS := $$(call not-containing,_the.,$$(call CacheFind,$$($1_FIND_LIST)))
erikj@859 272
erikj@859 273 # Filter on suffixes if set
erikj@859 274 ifneq ($$($1_SUFFIXES),)
erikj@859 275 $1_ALL_SRCS := $$(filter $$(addprefix %, $$($1_SUFFIXES)), $$($1_ALL_SRCS))
erikj@859 276 endif
ihse@839 277
ihse@839 278 ifneq ($$($1_INCLUDES),)
ihse@839 279 ifneq ($$($1_SUFFIXES),)
ihse@839 280 $1_ZIP_INCLUDES := $$(foreach s,$$($1_SUFFIXES), \
ihse@839 281 $$(addprefix -i$(SPACE)$(DQUOTE),$$(addsuffix /*$$s$(DQUOTE),$$($1_INCLUDES))))
erikj@751 282 else
ihse@839 283 $1_ZIP_INCLUDES := $$(addprefix -i$(SPACE)$(DQUOTE),$$(addsuffix /*$(DQUOTE),$$($1_INCLUDES)))
erikj@751 284 endif
ihse@839 285 endif
ihse@839 286 ifneq ($$($1_INCLUDE_FILES),)
ihse@839 287 $1_ZIP_INCLUDES += $$(addprefix -i$(SPACE),$$($1_INCLUDE_FILES))
ihse@839 288 endif
ihse@839 289 ifneq ($$($1_EXCLUDES),)
ihse@839 290 $1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES))))
ihse@839 291 $1_ZIP_EXCLUDES := $$(addprefix -x$(SPACE)$(DQUOTE),$$(addsuffix /*$(DQUOTE),$$($1_EXCLUDES)))
ihse@839 292 $1_ALL_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_ALL_SRCS))
ihse@839 293 endif
erikj@751 294
ihse@839 295 # Use a slightly shorter name for logging, but with enough path to identify this zip.
ihse@839 296 $1_NAME:=$$(subst $$(OUTPUT_ROOT)/,,$$($1_ZIP))
ohair@425 297
ihse@839 298 # Now $1_ALL_SRCS should contain all sources that are going to be put into the zip.
ihse@839 299 # I.e. the zip -i and -x options should match the filtering done in the makefile.
ihse@839 300 # Explicitly excluded files can be given with absolute path. The patsubst solution
ihse@839 301 # isn't perfect but the likelyhood of an absolute path to match something in a src
ihse@839 302 # dir is very small.
ihse@839 303 # If zip has nothing to do, it returns 12 and would fail the build. Check for 12
ihse@839 304 # and only fail if it's not.
ihse@839 305 $$($1_ZIP) : $$($1_ALL_SRCS) $$($1_EXTRA_DEPS)
ihse@839 306 $(MKDIR) -p $$(@D)
ihse@839 307 $(ECHO) Updating $$($1_NAME)
ihse@839 308 $$(foreach i,$$($1_SRC),(cd $$i && $(ZIP) -qru $$@ . $$($1_ZIP_INCLUDES) $$($1_ZIP_EXCLUDES) -x \*_the.\* $$(addprefix -x$(SPACE),$$(patsubst $$i/%,%,$$($1_EXCLUDE_FILES))) || test "$$$$?" = "12" )$$(NEWLINE)) true
ihse@839 309 $(TOUCH) $$@
ohair@425 310 endef
ohair@425 311
ohair@425 312 define add_file_to_copy
ihse@839 313 # param 1 = BUILD_MYPACKAGE
ihse@839 314 # parma 2 = The source file to copy.
ihse@839 315 $2_TARGET:=$2
ihse@839 316 # Remove the source prefix.
ihse@839 317 $$(foreach i,$$($1_SRC),$$(eval $$(call remove_string,$$i,$2_TARGET)))
ihse@839 318 # Now we can setup the depency that will trigger the copying.
ihse@839 319 $$($1_BIN)$$($2_TARGET) : $2
ohair@425 320 $(MKDIR) -p $$(@D)
ohair@425 321 $(CP) $$< $$@
ohair@425 322 $(CHMOD) -f ug+w $$@
ohair@425 323
ihse@839 324 # And do not forget this target
ihse@839 325 $1_ALL_COPY_TARGETS += $$($1_BIN)$$($2_TARGET)
ohair@425 326 endef
ohair@425 327
ohair@425 328
ohair@425 329 # This macro is used only for properties files that are to be
ohair@425 330 # copied over to the classes directory in cleaned form:
ohair@425 331 # Previously this was inconsistently done in different repositories.
ohair@478 332 # This is the new clean standard. Though it is to be superseded by
ohair@478 333 # a standard annotation processor from with sjavac.
ohair@425 334 define add_file_to_copy_and_clean
ihse@839 335 # param 1 = BUILD_MYPACKAGE
ihse@839 336 # parma 2 = The source file to copy and clean.
ihse@839 337 $2_TARGET:=$2
ihse@839 338 # Remove the source prefix.
ihse@839 339 $$(foreach i,$$($1_SRC),$$(eval $$(call remove_string,$$i,$2_TARGET)))
ihse@839 340 # Now we can setup the depency that will trigger the copying.
ihse@839 341 $$($1_BIN)$$($2_TARGET) : $2
ohair@425 342 $(MKDIR) -p $$(@D)
ihse@839 343 $(CAT) $$< | $(SED) -e 's/\([^\\]\):/\1\\:/g' -e 's/\([^\\]\)=/\1\\=/g' -e 's/#.*/#/g' \
ihse@912 344 | $(SED) -f "$(SRC_ROOT)/make/common/support/unicode2x.sed" \
ihse@839 345 | $(SED) -e '/^#/d' -e '/^$$$$/d' \
ihse@839 346 -e :a -e '/\\$$$$/N; s/\\\n//; ta' \
ihse@839 347 -e 's/^[ \t]*//;s/[ \t]*$$$$//' \
ihse@839 348 -e 's/\\=/=/' | LANG=C $(SORT) > $$@
ohair@425 349 $(CHMOD) -f ug+w $$@
ohair@425 350
ihse@839 351 # And do not forget this target
ihse@839 352 $1_ALL_COPY_CLEAN_TARGETS += $$($1_BIN)$$($2_TARGET)
ohair@425 353 endef
ohair@425 354
ohair@425 355 define remove_string
ihse@839 356 $2 := $$(subst $1,,$$($2))
ohair@425 357 endef
ohair@425 358
ohair@425 359 define replace_space_with_pathsep
ihse@839 360 $1:=$(subst $(SPACE),$(PATH_SEP),$(strip $(patsubst %,%,$2)))
ohair@425 361 endef
ohair@425 362
ohair@425 363 define SetupJavaCompilation
ihse@839 364 # param 1 is for example BUILD_MYPACKAGE
ihse@839 365 # param 2,3,4,5,6,7,8 are named args.
ihse@839 366 # SETUP:=must point to a previously setup java compiler, for example: SETUP:=BOOTJAVAC
ihse@839 367 # JVM:=path to ..bin/java
ihse@839 368 # ADD_JAVAC_FLAGS:=javac flags to append to the default ones.
ihse@839 369 # SRC:=one or more directories to search for sources
ihse@839 370 # BIN:=store classes here
ihse@839 371 # INCLUDES:=myapp.foo means will only compile java files in myapp.foo or any of its sub-packages.
ihse@839 372 # EXCLUDES:=myapp.foo means will do not compile java files in myapp.foo or any of its sub-packages.
ihse@839 373 # COPY:=.prp means copy all prp files to the corresponding package in BIN.
ihse@839 374 # CLEAN:=.properties means copy and clean all properties file to the corresponding package in BIN.
ihse@839 375 # COPY_FILES:=myapp/foo/setting.txt means copy this file over to the package myapp/foo
ihse@839 376 # SRCZIP:=Create a src.zip based on the found sources and copied files.
ihse@839 377 # INCLUDE_FILES:="com/sun/SolarisFoobar.java" means only compile this file!
ihse@839 378 # EXCLUDE_FILES:="com/sun/SolarisFoobar.java" means do not compile this particular file!
ihse@839 379 # "SolarisFoobar.java" means do not compile SolarisFoobar, wherever it is found.
erikj@850 380 # JAVAC_SOURCE_PATH_OVERRIDE:=This forces an explicit -sourcepath to javac instead of the complete
erikj@850 381 # source roots from SRC. This is sometimes needed when compiling specific subsets of the source.
ihse@839 382 # HEADERS:=path to directory where all generated c-headers are written.
ihse@839 383 # DEPENDS:=Extra dependecy
ihse@839 384 $(foreach i,2 3 4 5 6 7 8 9 10 11 12 13 14 15, $(if $($i),$1_$(strip $($i)))$(NEWLINE))
ihse@839 385 $(call LogSetupMacroEntry,SetupJavaCompilation($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))
ihse@839 386 $(if $(16),$(error Internal makefile error: Too many arguments to SetupJavaCompilation, please update JavaCompilation.gmk))
ohair@425 387
ihse@839 388 # Extract the info from the java compiler setup.
ihse@839 389 $1_JVM := $$($$($1_SETUP)_JVM)
ihse@839 390 $1_JAVAC := $$($$($1_SETUP)_JAVAC)
ihse@839 391 $1_FLAGS := $$($$($1_SETUP)_FLAGS) $(JAVAC_FLAGS) $$($1_ADD_JAVAC_FLAGS)
ihse@839 392 ifeq ($$($1_JAVAC),)
ihse@839 393 $$(error The Java compilation $1 refers to a non-existant java compiler setup $$($1_SETUP))
ihse@839 394 endif
ihse@839 395 $1_SJAVAC_PORTFILE := $$($$($1_SETUP)_SJAVAC_PORTFILE)
ihse@839 396 $1_SERVER_JVM := $$($$($1_SETUP)_SERVER_JVM)
ihse@839 397
ihse@839 398 # Handle addons and overrides.
ihse@839 399 $1_SRC:=$$(call ADD_SRCS,$$($1_SRC))
ihse@839 400 # Make sure the dirs exist.
ihse@839 401 $$(foreach d,$$($1_SRC), $$(if $$(wildcard $$d),,$$(error SRC specified to SetupJavaCompilation $1 contains missing directory $$d)))
ihse@839 402 $$(eval $$(call MakeDir,$$($1_BIN)))
ihse@839 403 # Find all files in the source trees.
ihse@839 404 $1_ALL_SRCS += $$(filter-out $(OVR_SRCS),$$(call CacheFind,$$($1_SRC)))
ihse@839 405 # Extract the java files.
ihse@839 406 ifneq ($$($1_EXCLUDE_FILES),)
ihse@839 407 $1_EXCLUDE_FILES_PATTERN:=$$(addprefix %,$$($1_EXCLUDE_FILES))
ihse@839 408 endif
ihse@839 409 $1_SRCS := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$(filter %.java,$$($1_ALL_SRCS)))
ihse@839 410 ifneq ($$($1_INCLUDE_FILES),)
ihse@839 411 $1_INCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES)))
ihse@839 412 $1_SRCS := $$(filter $$($1_INCLUDE_FILES), $$($1_SRCS))
ihse@839 413 endif
ihse@839 414
ihse@839 415 # Now we have a list of all java files to compile: $$($1_SRCS)
ihse@839 416
ihse@839 417 # Create the corresponding smart javac wrapper command line.
ihse@839 418 $1_SJAVAC_ARGS:=$$(addprefix -x ,$$(addsuffix .*,$$(subst /,.,$$($1_EXCLUDES)))) \
ihse@839 419 $$(addprefix -i ,$$(addsuffix .*,$$(subst /,.,$$($1_INCLUDES)))) \
ihse@839 420 $$(addprefix -xf *,$$(strip $$($1_EXCLUDE_FILES))) \
ihse@839 421 $$(addprefix -if *,$$(strip $$($1_INCLUDE_FILES))) \
ihse@839 422 -src "$$(subst $$(SPACE),$$(PATH_SEP),$$(strip $$($1_SRC)))"
ihse@839 423
ihse@839 424 # Prepend the source/bin path to the filter expressions.
ihse@839 425 ifneq ($$($1_INCLUDES),)
ihse@839 426 $1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES))))
ihse@839 427 $1_SRCS := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS))
ihse@839 428 endif
ihse@839 429 ifneq ($$($1_EXCLUDES),)
ihse@839 430 $1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES))))
ihse@839 431 $1_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS))
ihse@839 432 endif
ihse@839 433
ihse@839 434 # Find all files to be copied from source to bin.
ihse@839 435 ifneq (,$$($1_COPY))
ihse@839 436 # Search for all files to be copied.
ihse@839 437 $1_ALL_COPIES := $$(filter $$(addprefix %,$$($1_COPY)),$$($1_ALL_SRCS))
ihse@839 438 # Copy these explicitly
ihse@839 439 $1_ALL_COPIES += $$($1_COPY_FILES)
ihse@839 440 # Copy must also respect filters.
ihse@839 441 ifneq (,$$($1_INCLUDES))
ihse@839 442 $1_ALL_COPIES := $$(filter $$($1_SRC_INCLUDES),$$($1_ALL_COPIES))
ohair@425 443 endif
ihse@839 444 ifneq (,$$($1_EXCLUDES))
ihse@839 445 $1_ALL_COPIES := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_ALL_COPIES))
ihse@839 446 endif
ihse@839 447 ifneq (,$$($1_EXCLUDE_FILES))
ihse@839 448 $1_ALL_COPIES := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$($1_ALL_COPIES))
ihse@839 449 endif
ihse@839 450 # All files below META-INF are always copied.
ihse@839 451 $1_ALL_COPIES += $$(filter $$(addsuffix /META-INF%,$$($1_SRC)),$$($1_ALL_SRCS))
ihse@839 452 ifneq (,$$($1_ALL_COPIES))
ihse@839 453 # Yep, there are files to be copied!
ihse@839 454 $1_ALL_COPY_TARGETS:=
ihse@839 455 $$(foreach i,$$($1_ALL_COPIES),$$(eval $$(call add_file_to_copy,$1,$$i)))
ihse@839 456 # Now we can depend on $$($1_ALL_COPY_TARGETS) to copy all files!
ihse@839 457 endif
ihse@839 458 endif
ohair@425 459
ihse@839 460 # Find all property files to be copied and cleaned from source to bin.
ihse@839 461 ifneq (,$$($1_CLEAN))
ihse@839 462 # Search for all files to be copied.
ihse@839 463 $1_ALL_CLEANS := $$(filter $$(addprefix %,$$($1_CLEAN)),$$($1_ALL_SRCS))
ihse@839 464 # Copy and clean must also respect filters.
ihse@839 465 ifneq (,$$($1_INCLUDES))
ihse@839 466 $1_ALL_CLEANS := $$(filter $$($1_SRC_INCLUDES),$$($1_ALL_CLEANS))
ohair@478 467 endif
ihse@839 468 ifneq (,$$($1_EXCLUDES))
ihse@839 469 $1_ALL_CLEANS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_ALL_CLEANS))
ihse@839 470 endif
ihse@839 471 ifneq (,$$($1_EXCLUDE_FILES))
ihse@839 472 $1_ALL_CLEANS := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$($1_ALL_CLEANS))
ihse@839 473 endif
ihse@839 474 ifneq (,$$($1_ALL_CLEANS))
ihse@839 475 # Yep, there are files to be copied and cleaned!
ihse@839 476 $1_ALL_COPY_CLEAN_TARGETS:=
ihse@839 477 $$(foreach i,$$($1_ALL_CLEANS),$$(eval $$(call add_file_to_copy_and_clean,$1,$$i)))
ihse@839 478 # Now we can depend on $$($1_ALL_COPY_CLEAN_TARGETS) to copy all files!
ihse@839 479 endif
ihse@839 480 endif
ihse@839 481
ihse@839 482 # Prep the source paths.
lana@852 483 ifneq ($$($1_JAVAC_SOURCE_PATH_OVERRIDE),)
lana@852 484 $$(eval $$(call replace_space_with_pathsep,$1_SRCROOTSC,$$($1_JAVAC_SOURCE_PATH_OVERRIDE)))
ihse@839 485 else
ihse@839 486 $$(eval $$(call replace_space_with_pathsep,$1_SRCROOTSC,$$($1_SRC)))
ihse@839 487 endif
ihse@839 488
ihse@839 489 # Create a sed expression to remove the source roots and to replace / with .
ihse@839 490 # and remove .java at the end.
ihse@839 491 $1_REWRITE_INTO_CLASSES:=$$(foreach i,$$($1_SRC),-e 's|$$i/||g') -e 's|/|.|g' -e 's|.java$$$$||g'
ihse@839 492
ihse@839 493 ifeq ($$($1_DISABLE_SJAVAC)x$$(ENABLE_SJAVAC),xyes)
ihse@839 494 ifneq (,$$($1_HEADERS))
ihse@839 495 $1_HEADERS_ARG := -h $$($1_HEADERS)
ohair@478 496 endif
ohair@425 497
ihse@839 498 # Using sjavac to compile.
ihse@839 499 $1 := $$($1_ALL_COPY_TARGETS) $$($1_ALL_COPY_CLEAN_TARGETS) $$($1_BIN)/javac_state
ohair@425 500
ihse@839 501 # Create SJAVAC variable form JAVAC variable. Expects $1_JAVAC to be
ihse@839 502 # "bootclasspathprepend -cp .../javac.jar com.sun.tools.javac.Main"
ihse@839 503 # and javac is simply replaced with sjavac.
ihse@839 504 $1_SJAVAC:=$$(subst com.sun.tools.javac.Main,com.sun.tools.sjavac.Main,$$($1_JAVAC))
erikj@458 505
ihse@839 506 # Set the $1_REMOTE to spawn a background javac server.
ihse@839 507 $1_REMOTE:=--server:portfile=$$($1_SJAVAC_PORTFILE),id=$1,sjavac=$$(subst $$(SPACE),%20,$$(subst $$(COMMA),%2C,$$(strip $$($1_SERVER_JVM) $$($1_SJAVAC))))
ohair@425 508
ihse@839 509 $$($1_BIN)/javac_state: $$($1_SRCS) $$($1_DEPENDS)
ihse@839 510 $(MKDIR) -p $$(@D)
erikj@871 511 $$(call ListPathsSafely,$1_SRCS,\n, >> $$($1_BIN)/_the.$1_batch.tmp)
ihse@839 512 $(ECHO) Compiling $1
ihse@839 513 ($$($1_JVM) $$($1_SJAVAC) \
ihse@839 514 $$($1_REMOTE) \
ihse@839 515 -j $(JOBS) \
ihse@839 516 --permit-unidentified-artifacts \
ihse@839 517 --permit-sources-without-package \
erikj@871 518 --compare-found-sources $$($1_BIN)/_the.$1_batch.tmp \
ihse@839 519 --log=$(LOG_LEVEL) \
ihse@839 520 $$($1_SJAVAC_ARGS) \
ihse@839 521 $$($1_FLAGS) \
ihse@839 522 $$($1_HEADERS_ARG) \
ihse@839 523 -d $$($1_BIN) && \
erikj@871 524 $(MV) $$($1_BIN)/_the.$1_batch.tmp $$($1_BIN)/_the.$1_batch)
ihse@839 525 else
ihse@839 526 # Using plain javac to batch compile everything.
erikj@871 527 $1 := $$($1_ALL_COPY_TARGETS) $$($1_ALL_COPY_CLEAN_TARGETS) $$($1_BIN)/_the.$1_batch
ohair@478 528
ihse@839 529 # When building in batch, put headers in a temp dir to filter out those that actually
ihse@839 530 # changed before copying them to the real header dir.
ihse@839 531 ifneq (,$$($1_HEADERS))
erikj@939 532 $1_HEADERS_ARG := -h $$($1_HEADERS).$1.tmp
ohair@425 533
erikj@871 534 $$($1_HEADERS)/_the.$1_headers: $$($1_BIN)/_the.$1_batch
ohair@494 535 $(MKDIR) -p $$(@D)
erikj@939 536 for f in `ls $$($1_HEADERS).$1.tmp`; do \
erikj@939 537 if [ ! -f "$$($1_HEADERS)/$$$$f" ] || [ "`$(DIFF) $$($1_HEADERS)/$$$$f $$($1_HEADERS).$1.tmp/$$$$f`" != "" ]; then \
erikj@939 538 $(CP) -f $$($1_HEADERS).$1.tmp/$$$$f $$($1_HEADERS)/$$$$f; \
ohair@494 539 fi; \
ohair@494 540 done
erikj@939 541 $(RM) -r $$($1_HEADERS).$1.tmp
ohair@494 542 $(TOUCH) $$@
ohair@494 543
erikj@871 544 $1 += $$($1_HEADERS)/_the.$1_headers
ohair@425 545 endif
ohair@425 546
ihse@839 547 # When not using sjavac, pass along all sources to javac using an @file.
erikj@871 548 $$($1_BIN)/_the.$1_batch: $$($1_SRCS) $$($1_DEPENDS)
ihse@839 549 $(MKDIR) -p $$(@D)
erikj@871 550 $(RM) $$($1_BIN)/_the.$1_batch $$($1_BIN)/_the.$1_batch.tmp
erikj@871 551 $$(call ListPathsSafely,$1_SRCS,\n, >> $$($1_BIN)/_the.$1_batch.tmp)
erikj@871 552 $(ECHO) Compiling `$(WC) $$($1_BIN)/_the.$1_batch.tmp | $(TR) -s ' ' | $(CUT) -f 2 -d ' '` files for $1
ihse@839 553 ($$($1_JVM) $$($1_JAVAC) $$($1_FLAGS) \
ihse@839 554 -implicit:none -sourcepath "$$($1_SRCROOTSC)" \
erikj@871 555 -d $$($1_BIN) $$($1_HEADERS_ARG) @$$($1_BIN)/_the.$1_batch.tmp && \
erikj@871 556 $(MV) $$($1_BIN)/_the.$1_batch.tmp $$($1_BIN)/_the.$1_batch)
ohair@425 557
ihse@839 558 endif
ihse@839 559
ihse@839 560 # Check if a jar file was specified, then setup the rules for the jar.
ihse@839 561 ifneq (,$$($1_JAR))
ihse@839 562 # If no suffixes was explicitly set for this jar file.
ihse@839 563 # Use class and the cleaned/copied properties file suffixes as the default
ihse@839 564 # for the types of files to be put into the jar.
ihse@839 565 ifeq (,$$($1_SUFFIXES))
ihse@839 566 $1_SUFFIXES:=.class $$($1_CLEAN) $$($1_COPY)
ohair@478 567 endif
ohair@478 568
ihse@839 569 $$(eval $$(call SetupArchive,ARCHIVE_$1,$$($1), \
ihse@839 570 SRCS:=$$($1_BIN), \
ihse@839 571 SUFFIXES:=$$($1_SUFFIXES), \
ihse@839 572 EXCLUDE:=$$($1_EXCLUDES), \
ihse@839 573 INCLUDES:=$$($1_INCLUDES), \
ihse@839 574 EXTRA_FILES:=$$($1_ALL_COPY_TARGETS) $$($1_ALL_COPY_CLEAN_TARGETS), \
ihse@839 575 JAR:=$$($1_JAR), \
ihse@839 576 JARMAIN:=$$($1_JARMAIN), \
ihse@839 577 MANIFEST:=$$($1_MANIFEST), \
ihse@839 578 EXTRA_MANIFEST_ATTR:=$$($1_EXTRA_MANIFEST_ATTR), \
ihse@839 579 JARINDEX:=$$($1_JARINDEX), \
ihse@839 580 HEADERS:=$$($1_HEADERS), \
ihse@839 581 SETUP:=$$($1_SETUP)))
ihse@839 582 endif
ihse@839 583
ihse@839 584 # Check if a srczip was specified, then setup the rules for the srczip.
ihse@839 585 ifneq (,$$($1_SRCZIP))
ihse@839 586 $$(eval $$(call SetupZipArchive,ARCHIVE_$1, \
ihse@839 587 SRC:=$$($1_SRC), \
ihse@839 588 ZIP:=$$($1_SRCZIP), \
ihse@839 589 INCLUDES:=$$($1_INCLUDES), \
ihse@839 590 EXCLUDES:=$$($1_EXCLUDES), \
ihse@839 591 EXCLUDE_FILES:=$$($1_EXCLUDE_FILES)))
ihse@839 592 endif
ohair@425 593
ohair@425 594 endef

mercurial