common/makefiles/JavaCompilation.gmk

Thu, 12 Sep 2013 12:29:17 -0700

author
simonis
date
Thu, 12 Sep 2013 12:29:17 -0700
changeset 971
584dc2e95e04
parent 751
e5cf1735638c
child 972
f3697e0783e2
permissions
-rw-r--r--

8024265: Enable new build on AIX
Reviewed-by: ihse

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

mercurial