JavaCompilation.gmk revision 1705:8001eddb1672
1#
2# Copyright (c) 2011, 2015, 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# This makefile is much simpler now that it can use the smart javac wrapper
27# for dependency tracking between java packages and incremental compiles.
28# It could be even more simple if we added support for incremental jar updates
29# directly from the smart javac wrapper.
30
31# Cleaning/copying properties here is not a good solution. The properties
32# should be cleaned/copied by a annotation processor in sjavac.
33
34# When you read this source. Remember that $(sort ...) has the side effect
35# of removing duplicates. It is actually this side effect that is
36# desired whenever sort is used below!
37
38ifndef _JAVA_COMPILATION_GMK
39_JAVA_COMPILATION_GMK := 1
40
41ifeq (,$(_MAKEBASE_GMK))
42  $(error You must include MakeBase.gmk prior to including JavaCompilation.gmk)
43endif
44
45# Java compilation needs SetupZipArchive if we're generating a source zip.
46include ZipArchive.gmk
47
48FALSE_FIND_PATTERN:=-name FILE_NAME_THAT_DOESNT_EXIST
49
50# Setup make rules for defining a Java compiler, which is needed to compile
51# Java code. This rule generates no output.
52#
53# Parameter 1 is the name of the compiler definition. This name needs to be
54# passed to SetupJavaCompilation. This name is used as variable prefix.
55#
56# Remaining parameters are named arguments. These include:
57#   JVM:=The jvm used to run the javac/javah command
58#   JAVAC:=The javac jar and bootstrap classpath changes, or just bin/javac if JVM is left out
59#   FLAGS:=Flags to be supplied to javac
60#   SERVER_DIR:=Use a javac server (-XDserver) and store the server related files here
61#   SERVER_JVM:=Use this JVM for the server. Defaults to the JVM above.
62#   DISABLE_SJAVAC:=Set to true if this setup does not support sjavac
63SetupJavaCompiler = $(NamedParamsMacroTemplate)
64define SetupJavaCompilerBody
65  # The port file contains the tcp/ip on which the server listens
66  # and the cookie necessary to talk to the server.
67  $1_SJAVAC_PORTFILE:=$$($1_SERVER_DIR)/server.port
68  # You can use a different JVM to run the background javac server.
69  ifeq ($$($1_SERVER_JVM),)
70    # It defaults to the same JVM that is used to start the javac command.
71    $1_SERVER_JVM:=$$($1_JVM)
72  endif
73endef
74
75# Setup make rules for creating a jar archive.
76#
77# Parameter 1 is the name of the rule. This name is used as variable prefix,
78# and the targets generated are listed in a variable by that name.
79#
80# Remaining parameters are named arguments. These include:
81#   DEPENDENCIES:=List of dependencies for the jar target. If left empty,
82#       dependencies are calculated automatically from the source files found.
83#       For this to work, the source files must exist when the makefile is
84#       parsed.
85#   SRCS:=List of directories in where to find files to add to archive
86#   SUFFIXES:=File suffixes to include in jar
87#   INCLUDES:=List of directories/packages in SRCS that should be included
88#   EXCLUDES:=List of directories/packages in SRCS that should be excluded
89#   EXCLUDE_FILES:=List of files in SRCS that should be excluded
90#   EXTRA_FILES:=List of files in SRCS that should be included regardless of suffix match.
91#   JAR:=Jar file to create
92#   MANIFEST:=Optional manifest file template.
93#   JARMAIN:=Optional main class to add to manifest
94#   JARINDEX:=true means generate the index in the jar file.
95#   SKIP_METAINF:=Set to prevent contents of an META-INF directory to be automatically
96#       added to the archive.
97#   EXTRA_MANIFEST_ATTR:=Extra attribute to add to manifest.
98#   CHECK_COMPRESS_JAR Check the COMPRESS_JAR variable
99SetupArchive = $(NamedParamsMacroTemplate)
100define SetupArchiveBody
101
102  $1_JARMAIN:=$(strip $$($1_JARMAIN))
103  $1_JARNAME:=$$(notdir $$($1_JAR))
104  $1_MANIFEST_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_manifest
105  $1_DELETESS_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_deletess
106  $1_DELETES_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_deletes
107  $1_BIN:=$$(dir $$($1_JAR))
108
109  ifeq (,$$($1_SUFFIXES))
110    # No suffix was set, default to classes.
111    $1_SUFFIXES:=.class
112  endif
113  # Convert suffixes to a find expression
114  $1_FIND_PATTERNS:=$(FALSE_FIND_PATTERN) $$(patsubst %,$(SPACE)-o$(SPACE)-name$(SPACE)$(DQUOTE)*%$(DQUOTE),$$($1_SUFFIXES))
115  # On windows, a lot of includes/excludes risk making the command line too long, so
116  # writing the grep patterns to files.
117  # Grep returns 1 if nothing is matched. Do not fail the build for this.
118  ifneq (,$$($1_INCLUDES))
119    $1_GREP_INCLUDE_PATTERNS:=$$(call EscapeDollar, \
120        $$(foreach src,$$($1_SRCS), $$(addprefix $$(src)/,$$($1_INCLUDES))))
121    # If there are a lot of include patterns, output to file to shorten command lines
122    ifeq ($$(word 20,$$($1_GREP_INCLUDE_PATTERNS)),)
123      $1_GREP_INCLUDES:=| ( $(GREP) $$(patsubst %,$(SPACE)-e$(SPACE)$(DQUOTE)%$(DQUOTE),$$($1_GREP_INCLUDE_PATTERNS)) \
124          || test "$$$$?" = "1" )
125    else
126      $1_GREP_INCLUDE_OUTPUT = \
127          $$(eval $$(call ListPathsSafely,$1_GREP_INCLUDE_PATTERNS, \
128              $$($1_BIN)/_the.$$($1_JARNAME)_include))
129      $1_GREP_INCLUDES:=| ( $(GREP) -f $$($1_BIN)/_the.$$($1_JARNAME)_include \
130          || test "$$$$?" = "1" )
131    endif
132  endif
133  ifneq (,$$($1_EXCLUDES)$$($1_EXCLUDE_FILES))
134    $1_GREP_EXCLUDE_PATTERNS:=$$(call EscapeDollar, \
135        $$(foreach src,$$($1_SRCS),$$(addprefix $$(src)/, \
136        $$($1_EXCLUDES) $$($1_EXCLUDE_FILES))))
137    # If there are a lot of include patterns, output to file to shorten command lines
138    ifeq ($$(word 20,$$($1_GREP_EXCLUDE_PATTERNS)),)
139      $1_GREP_EXCLUDES:=| ( $(GREP) -v $$(patsubst %,$(SPACE)-e$(SPACE)$(DQUOTE)%$(DQUOTE),$$($1_GREP_EXCLUDE_PATTERNS)) \
140          || test "$$$$?" = "1" )
141    else
142      $1_GREP_EXCLUDE_OUTPUT = \
143          $$(eval $$(call ListPathsSafely,$1_GREP_EXCLUDE_PATTERNS, \
144              $$($1_BIN)/_the.$$($1_JARNAME)_exclude))
145      $1_GREP_EXCLUDES:=| ( $(GREP) -v -f $$($1_BIN)/_the.$$($1_JARNAME)_exclude \
146          || test "$$$$?" = "1" )
147    endif
148  endif
149
150  # Check if this jar needs to have its index generated.
151  ifneq (,$$($1_JARINDEX))
152    $1_JARINDEX = (cd $$(dir $$@) && $(JAR) -i $$(notdir $$@))
153  else
154    $1_JARINDEX = true
155  endif
156  # When this macro is run in the same makefile as the java compilation, dependencies are
157  # transfered in make variables. When the macro is run in a different makefile than the
158  # java compilation, the dependencies need to be found in the filesystem.
159  $1_ORIG_DEPS := $$($1_DEPENDENCIES)
160  ifeq ($$($1_DEPENDENCIES), )
161    # Add all source roots to the find cache since we are likely going to run find
162    # on these more than once. The cache will only be updated if necessary.
163    $$(eval $$(call FillCacheFind, $$($1_FIND_LIST)))
164    $1_DEPENDENCIES:=$$(filter $$(addprefix %,$$($1_SUFFIXES)), \
165        $$(call CacheFind,$$($1_SRCS)))
166    ifneq (,$$($1_GREP_INCLUDE_PATTERNS))
167      $1_DEPENDENCIES:=$$(filter $$(addsuffix %,$$($1_GREP_INCLUDE_PATTERNS)),$$($1_DEPENDENCIES))
168    endif
169    ifneq (,$$($1_GREP_EXCLUDE_PATTERNS))
170      $1_DEPENDENCIES:=$$(filter-out $$(addsuffix %,$$($1_GREP_EXCLUDE_PATTERNS)),$$($1_DEPENDENCIES))
171    endif
172    # Look for EXTRA_FILES in all SRCS dirs and as absolute paths.
173    $1_DEPENDENCIES+=$$(wildcard $$(foreach src, $$($1_SRCS), \
174        $$(addprefix $$(src)/, $$($1_EXTRA_FILES))) $$($1_EXTRA_FILES))
175    ifeq (,$$($1_SKIP_METAINF))
176      $1_DEPENDENCIES+=$$(call CacheFind,$$(wildcard $$(addsuffix /META-INF,$$($1_SRCS))))
177    endif
178  endif
179  # The dependency list should never be empty
180  ifeq ($$(strip $$($1_DEPENDENCIES)), )
181    $$(warning No dependencies found for $1)
182  endif
183
184  # Utility macros, to make the shell script receipt somewhat easier to decipher.
185
186  # Capture extra files is the same for both CAPTURE_CONTENTS and SCAPTURE_CONTENTS so
187  # only define it once to avoid duplication.
188  # The list of extra files might be long, so need to use ListPathsSafely to print
189  # them out to a separte file. Then process the contents of that file to rewrite
190  # into -C <dir> <file> lines.
191  # The EXTRA_FILES_RESOLVED varible must be set in the macro so that it's evaluated
192  # in the recipe when the files are guaranteed to exist.
193  $1_CAPTURE_EXTRA_FILES=\
194      $$(eval $1_EXTRA_FILES_RESOLVED:=$$(call DoubleDollar, \
195          $$(wildcard $$(foreach src, $$($1_SRCS), \
196          $$(addprefix $$(src)/, $$($1_EXTRA_FILES))) $$($1_EXTRA_FILES)))) \
197      $$(if $$($1_EXTRA_FILES_RESOLVED), \
198        $$(eval $$(call ListPathsSafely,$1_EXTRA_FILES_RESOLVED, \
199            $$($1_BIN)/_the.$$($1_JARNAME)_contents.extra)) \
200        $(SED) $$(foreach src,$$($1_SRCS), -e 's|$$(src)/|-C $$(src) |g') \
201            $$($1_BIN)/_the.$$($1_JARNAME)_contents.extra \
202            >> $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE))
203
204  # The capture contents macro finds all files (matching the patterns, typically
205  # .class and .prp) that are newer than the jar-file, ie the new content to be put into the jar.
206  # NOTICE: please leave the parentheses space separated otherwise the AIX build will break!
207  $1_CAPTURE_CONTENTS=\
208      $(RM) $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE) \
209      $$(foreach src,$$($1_SRCS), \
210        $(FIND) $$(src) -type f -a \( $$($1_FIND_PATTERNS) \) -a -newer $$@ $$($1_GREP_INCLUDES) \
211          $$($1_GREP_EXCLUDES) | $(SED) 's|$$(src)/|-C $$(src) |g' \
212        >> $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE)) \
213      $$($1_CAPTURE_EXTRA_FILES)
214
215  # The capture metainf macro finds all files below the META-INF directory that are newer than the jar-file.
216  # Find returns non zero if the META-INF dir does not exist, ignore this.
217  ifeq (,$$($1_SKIP_METAINF))
218    $1_CAPTURE_METAINF =$$(foreach src,$$($1_SRCS), \
219        ( ( $(FIND) $$(src)/META-INF -type f -a -newer $$@ 2> /dev/null || true ) \
220            | $(SED) 's|$$(src)/|-C $$(src) |g' >> \
221        $$($1_BIN)/_the.$$($1_JARNAME)_contents ) $$(NEWLINE) )
222  endif
223  # The capture deletes macro finds all deleted files and concatenates them. The resulting file
224  # tells us what to remove from the jar-file.
225  $1_CAPTURE_DELETES=$$(foreach src,$$($1_SRCS),($(FIND) $$(src) -name _the.package.deleted -newer $$@ \
226      -exec $(SED) 's|$$(src)||g' \{\} >> $$($1_DELETES_FILE) \;) $$(NEWLINE))
227  # The update contents macro updates the jar file with the previously capture contents.
228  # Use 'wc -w' to see if the contents file is empty.
229  $1_UPDATE_CONTENTS=\
230      if [ "`$(WC) -l $$($1_BIN)/_the.$$($1_JARNAME)_contents | $(AWK) '{ print $$$$1 }'`" -gt "0" ]; then \
231        $(ECHO) "  updating" `$(WC) -l $$($1_BIN)/_the.$$($1_JARNAME)_contents | $(AWK) '{ print $$$$1 }'` files && \
232        $(JAR) $$($1_JAR_UPDATE_OPTIONS) $$@ @$$($1_BIN)/_the.$$($1_JARNAME)_contents; \
233      fi $$(NEWLINE)
234  # The s-variants of the above macros are used when the jar is created from scratch.
235  # NOTICE: please leave the parentheses space separated otherwise the AIX build will break!
236  $1_SCAPTURE_CONTENTS=\
237      $(RM) $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE) \
238      $$(foreach src,$$($1_SRCS), \
239        $(FIND) $$(src) -type f -a \( $$($1_FIND_PATTERNS) \) $$($1_GREP_INCLUDES) \
240            $$($1_GREP_EXCLUDES) | $(SED) 's|$$(src)/|-C $$(src) |g' \
241            >> $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE)) \
242      $$($1_CAPTURE_EXTRA_FILES)
243
244  # Find returns non zero if the META-INF dir does not exist, ignore this.
245  ifeq (,$$($1_SKIP_METAINF))
246    $1_SCAPTURE_METAINF=$$(foreach src,$$($1_SRCS), \
247        ( ( $(FIND) $$(src)/META-INF -type f 2> /dev/null || true ) \
248            | $(SED) 's|$$(src)/|-C $$(src) |g' >> \
249        $$($1_BIN)/_the.$$($1_JARNAME)_contents) $$(NEWLINE) )
250  endif
251  $1_SUPDATE_CONTENTS=$(JAR) $$($1_JAR_UPDATE_OPTIONS) $$@ @$$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE)
252
253  # Use a slightly shorter name for logging, but with enough path to identify this jar.
254  $1_NAME:=$$(subst $$(OUTPUT_ROOT)/,,$$($1_JAR))
255
256  ifneq (,$$($1_CHECK_COMPRESS_JAR))
257    $1_JAR_CREATE_OPTIONS := c0fm
258    $1_JAR_UPDATE_OPTIONS := u0f
259    ifeq ($(COMPRESS_JARS), true)
260      $1_JAR_CREATE_OPTIONS := cfm
261      $1_JAR_UPDATE_OPTIONS := uf
262    endif
263  else
264    $1_JAR_CREATE_OPTIONS := cfm
265    $1_JAR_UPDATE_OPTIONS := uf
266  endif
267
268  # Include all variables of significance in the vardeps file
269  $1_VARDEPS := $(JAR) $$($1_JAR_CREATE_OPTIONS) $$($1_MANIFEST) \
270      $$($1_JARMAIN) $$($1_EXTRA_MANIFEST_ATTR) $$($1_ORIG_DEPS) $$($1_SRCS) \
271      $$($1_INCLUDES) $$($1_EXCLUDES) $$($1_EXCLUDE_FILES) $$($1_EXTRA_FILES)
272  $1_VARDEPS_FILE := $$(call DependOnVariable, $1_VARDEPS, $$(dir $$($1_JAR))_the.$$($1_JARNAME).vardeps)
273
274  # Here is the rule that creates/updates the jar file.
275  $$($1_JAR) : $$($1_DEPENDENCIES) $$($1_MANIFEST) $$($1_VARDEPS_FILE)
276	$(MKDIR) -p $$($1_BIN)
277	$$($1_GREP_INCLUDE_OUTPUT)
278	$$($1_GREP_EXCLUDE_OUTPUT)
279        # If the vardeps file is part of the newer prereq list, it means that
280        # either the jar file does not exist, or we need to recreate it from
281        # from scratch anyway since a simple update will not catch all the
282        # potential changes.
283	$$(if $$(filter $$($1_VARDEPS_FILE) $$($1_MANIFEST), $$?), \
284	  $$(if $$($1_MANIFEST), \
285	    $(SED) -e '$(DOLLAR)$(DOLLAR)a\' $$($1_MANIFEST) > $$($1_MANIFEST_FILE) $$(NEWLINE) \
286	  , \
287	    $(RM) $$($1_MANIFEST_FILE) && $(TOUCH) $$($1_MANIFEST_FILE) $$(NEWLINE)) \
288	  $$(if $$($1_JARMAIN), \
289	    $(ECHO) "Main-Class: $$(strip $$($1_JARMAIN))" >> $$($1_MANIFEST_FILE) $$(NEWLINE)) \
290	  $$(if $$($1_EXTRA_MANIFEST_ATTR), \
291	    $(PRINTF) "$$($1_EXTRA_MANIFEST_ATTR)\n" >> $$($1_MANIFEST_FILE) $$(NEWLINE)) \
292	  $(ECHO) Creating $$($1_NAME) $$(NEWLINE) \
293	  $(JAR) $$($1_JAR_CREATE_OPTIONS) $$@ $$($1_MANIFEST_FILE) $$(NEWLINE) \
294	  $$($1_SCAPTURE_CONTENTS) \
295	  $$($1_SCAPTURE_METAINF) \
296	  $$($1_SUPDATE_CONTENTS) \
297	  $$($1_JARINDEX) && true \
298	, \
299	  $(ECHO) Modifying $$($1_NAME) $$(NEWLINE) \
300	  $$($1_CAPTURE_CONTENTS) \
301	  $$($1_CAPTURE_METAINF) \
302	  $(RM) $$($1_DELETES_FILE) $$(NEWLINE) \
303	  $$($1_CAPTURE_DELETES) \
304	  $(CAT) $$($1_DELETES_FILE) > $$($1_DELETESS_FILE) $$(NEWLINE) \
305	  if [ -s $$($1_DELETESS_FILE) ]; then \
306	    $(ECHO) "  deleting" `$(WC) -l $$($1_DELETESS_FILE) | $(AWK) '{ print $$$$1 }'` files && \
307	    $(ZIP) -q -d $$@ `$(CAT) $$($1_DELETESS_FILE)` ; \
308	  fi $$(NEWLINE) \
309	  $$($1_UPDATE_CONTENTS) true $$(NEWLINE) \
310	  $$($1_JARINDEX) && true )
311
312  # Add jar to target list
313  $1 += $$($1_JAR)
314endef
315
316
317define add_file_to_copy
318  # param 1 = BUILD_MYPACKAGE
319  # parma 2 = The source file to copy.
320  $2_TARGET:=$2
321  # Remove the source prefix.
322  $$(foreach i,$$($1_SRC),$$(eval $$(call remove_string,$$i,$2_TARGET)))
323  # To allow for automatic overrides, do not create a rule for a target file that
324  # already has one
325  ifneq ($$($1_COPY_$$($2_TARGET)), 1)
326    $1_COPY_$$($2_TARGET) := 1
327    # Now we can setup the depency that will trigger the copying.
328    $$($1_BIN)$$($2_TARGET) : $2
329	$(MKDIR) -p $$(@D)
330	$(CP) $$< $$@
331	$(CHMOD) -f ug+w $$@
332
333    # And do not forget this target
334    $1_ALL_COPY_TARGETS += $$($1_BIN)$$($2_TARGET)
335  endif
336endef
337
338
339# This macro is used only for properties files that are to be
340# copied over to the classes directory in cleaned form:
341# Previously this was inconsistently done in different repositories.
342# This is the new clean standard. Though it is to be superseded by
343# a standard annotation processor from with sjavac.
344#
345# An empty echo ensures that the input to sed always ends with a newline.
346# Certain implementations (e.g. Solaris) will skip the last line without
347# it.
348#
349# The sed expression does this:
350# 1. Add a backslash before any :, = or ! that do not have a backslash already.
351# 2. Apply the file unicode2x.sed which does a whole bunch of \u00XX to \xXX
352#    conversions.
353# 3. Delete all lines starting with #.
354# 4. Delete empty lines.
355# 5. Append lines ending with \ with the next line.
356# 6. Remove leading and trailing white space. Note that tabs must be explicit
357#    as sed on macosx does not understand '\t'.
358# 7. Replace the first \= with just =.
359# 8. Finally it's all sorted to create a stable output.
360#
361# It is assumed that = is the character used for separating names and values.
362define add_file_to_clean
363  # param 1 = BUILD_MYPACKAGE
364  # parma 2 = The source file to copy and clean.
365  $2_TARGET:=$2
366  # Remove the source prefix.
367  $$(foreach i,$$($1_SRC),$$(eval $$(call remove_string,$$i,$2_TARGET)))
368  # Now we can setup the depency that will trigger the copying.
369  # To allow for automatic overrides, do not create a rule for a target file that
370  # already has one
371  ifneq ($$($1_CLEAN_$$($2_TARGET)), 1)
372    $1_CLEAN_$$($2_TARGET) := 1
373    $$($1_BIN)$$($1_MODULE_SUBDIR)$$($2_TARGET) : $2
374	$(MKDIR) -p $$(@D)
375	export LC_ALL=C ; ( $(CAT) $$< && $(ECHO) "" ) \
376	    | $(SED) -e 's/\([^\\]\):/\1\\:/g' -e 's/\([^\\]\)=/\1\\=/g' \
377	        -e 's/\([^\\]\)!/\1\\!/g' -e 's/^[ 	]*#.*/#/g' \
378	    | $(SED) -f "$(SRC_ROOT)/make/common/support/unicode2x.sed" \
379	    | $(SED) -e '/^#/d' -e '/^$$$$/d' \
380	        -e :a -e '/\\$$$$/N; s/\\\n//; ta' \
381	        -e 's/^[ 	]*//;s/[ 	]*$$$$//' \
382	        -e 's/\\=/=/' \
383	    | $(SORT) > $$@
384	$(CHMOD) -f ug+w $$@
385
386    # And do not forget this target
387    $1_ALL_COPY_CLEAN_TARGETS += $$($1_BIN)$$($2_TARGET)
388  endif
389endef
390
391define remove_string
392  $2 := $$(subst $1,,$$($2))
393endef
394
395# Setup make rules for compiling Java source code to class files and/or a
396# resulting jar file.
397#
398# Parameter 1 is the name of the rule. This name is used as variable prefix,
399# and the targets generated are listed in a variable by that name.
400#
401# Remaining parameters are named arguments. These include:
402#   SETUP:=must point to a previously setup java compiler, for example: SETUP:=BOOTJAVAC
403#   JVM:=path to ..bin/java
404#   ADD_JAVAC_FLAGS:=javac flags to append to the default ones.
405#   SRC:=one or more directories to search for sources. The order of the source roots
406#        is significant. The first found file of a certain name has priority.
407#   BIN:=store classes here
408#   CLASSPATH:=a list of additional entries to set as classpath to javac
409#   INCLUDES:=myapp.foo means will only compile java files in myapp.foo or any of its sub-packages.
410#   EXCLUDES:=myapp.foo means will do not compile java files in myapp.foo or any of its sub-packages.
411#   COPY:=.prp means copy all prp files to the corresponding package in BIN.
412#   COPY_FILES:=myapp/foo/setting.txt means copy this file over to the package myapp/foo
413#   CLEAN:=.properties means copy and clean all properties file to the corresponding package in BIN.
414#   CLEAN_FILES:=myapp/foo/setting.txt means clean this file over to the package myapp/foo
415#   SRCZIP:=Create a src.zip based on the found sources and copied files.
416#   INCLUDE_FILES:="com/sun/SolarisFoobar.java" means only compile this file!
417#   EXCLUDE_FILES:="com/sun/SolarisFoobar.java" means do not compile this particular file!
418#       "SolarisFoobar.java" means do not compile SolarisFoobar, wherever it is found.
419#   HEADERS:=path to directory where all generated c-headers are written.
420#   DEPENDS:=Extra dependecy
421#   DISABLE_SJAVAC:=Explicitly disable the use of sjavac for this compilation unit.
422#   KEEP_DUPS:=Do not remove duplicate file names from different source roots.
423SetupJavaCompilation = $(NamedParamsMacroTemplate)
424define SetupJavaCompilationBody
425
426  # Verify arguments
427  ifeq ($$($1_BIN),)
428    $$(error Must specify BIN (in $1))
429  endif
430
431  # Extract the info from the java compiler setup.
432  $1_JVM := $$($$($1_SETUP)_JVM)
433  $1_JAVAC := $$($$($1_SETUP)_JAVAC)
434  $1_FLAGS := $$($$($1_SETUP)_FLAGS) $(JAVAC_FLAGS) $$($1_ADD_JAVAC_FLAGS)
435  ifneq ($$($1_CLASSPATH), )
436    $1_FLAGS += -cp $$(call PathList, $$($1_CLASSPATH))
437  endif
438  ifeq ($$($1_JAVAC),)
439    $$(error The Java compilation $1 refers to a non-existant java compiler setup $$($1_SETUP))
440  endif
441  $1_SJAVAC_PORTFILE := $$($$($1_SETUP)_SJAVAC_PORTFILE)
442  $1_SERVER_JVM := $$($$($1_SETUP)_SERVER_JVM)
443  $1_DISABLE_SJAVAC := $$($$($1_SETUP)_DISABLE_SJAVAC)
444
445  # Handle addons and overrides.
446  $1_SRC:=$$(call ADD_SRCS,$$($1_SRC))
447  # Make sure the dirs exist.
448  $$(foreach d,$$($1_SRC), $$(if $$(wildcard $$d),,$$(error SRC specified to SetupJavaCompilation $1 contains missing directory >$$d<)))
449  $$(call MakeDir,$$($1_BIN))
450  # Add all source roots to the find cache since we are likely going to run find
451  # on these more than once. The cache will only be updated if necessary.
452  $$(eval $$(call FillCacheFind,$$($1_SRC)))
453  # Find all files in the source trees. Preserve order of source roots for overrides to
454  # work correctly. CacheFind does not preserve order so need to call it for each root.
455  $1_ALL_SRCS += $$(filter-out $(OVR_SRCS),$$(foreach s,$$($1_SRC),$$(call CacheFind,$$(s))))
456  # Extract the java files.
457  ifneq ($$($1_EXCLUDE_FILES),)
458    $1_EXCLUDE_FILES_PATTERN:=$$(addprefix %,$$($1_EXCLUDE_FILES))
459  endif
460  $1_SRCS := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$(filter %.java,$$($1_ALL_SRCS)))
461  ifneq ($$($1_INCLUDE_FILES),)
462    $1_INCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES)))
463    $1_SRCS := $$(filter $$($1_INCLUDE_FILES), $$($1_SRCS))
464  endif
465
466  # Prepend the source/bin path to the filter expressions.
467  ifneq ($$($1_INCLUDES),)
468    $1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES))))
469    $1_SRCS := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS))
470  endif
471  ifneq ($$($1_EXCLUDES),)
472    $1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES))))
473    $1_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS))
474  endif
475
476  ifneq ($$($1_KEEP_DUPS), true)
477    # Remove duplicate source files by keeping the first found of each duplicate.
478    # This allows for automatic overrides with custom or platform specific versions
479    # source files.
480    #
481    # For the smart javac wrapper case, add each removed file to an extra exclude
482    # file list to prevent sjavac from finding duplicate sources.
483    $1_SRCS := $$(strip $$(foreach s, $$($1_SRCS), \
484        $$(eval relative_src := $$(call remove-prefixes, $$($1_SRC), $$(s))) \
485        $$(if $$($1_$$(relative_src)), \
486          $$(eval $1_SJAVAC_EXCLUDE_FILES += $$(s)), \
487          $$(eval $1_$$(relative_src) := 1) $$(s))))
488  endif
489
490  ifeq ($$(strip $$($1_SRCS)), )
491    $$(error No source files found for $1)
492  endif
493
494  $1_SAFE_NAME := $$(strip $$(subst /,_, $1))
495
496  # Create the corresponding smart javac wrapper command line.
497  $1_SJAVAC_ARGS:=$$(addprefix -x ,$$(addsuffix /*,$$($1_EXCLUDES))) \
498      $$(addprefix -i ,$$(addsuffix /*,$$($1_INCLUDES))) \
499      $$(addprefix -xf *,$$(strip $$($1_EXCLUDE_FILES) $$($1_SJAVAC_EXCLUDE_FILES))) \
500      $$(addprefix -if *,$$(strip $$($1_INCLUDE_FILES))) \
501      -src $$(call PathList, $$($1_SRC))
502
503  # All files below META-INF are always copied.
504  $1_ALL_COPIES := $$(filter $$(addsuffix /META-INF%,$$($1_SRC)),$$($1_ALL_SRCS))
505  # Find all files to be copied from source to bin.
506  ifneq (,$$($1_COPY)$$($1_COPY_FILES))
507    # Search for all files to be copied.
508    $1_ALL_COPIES += $$(filter $$(addprefix %,$$($1_COPY)),$$($1_ALL_SRCS))
509    # Copy these explicitly
510    $1_ALL_COPIES += $$($1_COPY_FILES)
511  endif
512  # Copy must also respect filters.
513  ifneq (,$$($1_INCLUDES))
514    $1_ALL_COPIES := $$(filter $$($1_SRC_INCLUDES),$$($1_ALL_COPIES))
515  endif
516  ifneq (,$$($1_EXCLUDES))
517    $1_ALL_COPIES := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_ALL_COPIES))
518  endif
519  ifneq (,$$($1_EXCLUDE_FILES))
520    $1_ALL_COPIES := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$($1_ALL_COPIES))
521  endif
522  ifneq (,$$($1_ALL_COPIES))
523    # Yep, there are files to be copied!
524    $1_ALL_COPY_TARGETS:=
525        $$(foreach i,$$($1_ALL_COPIES),$$(eval $$(call add_file_to_copy,$1,$$i)))
526    # Now we can depend on $$($1_ALL_COPY_TARGETS) to copy all files!
527  endif
528
529  # Find all property files to be copied and cleaned from source to bin.
530  ifneq (,$$($1_CLEAN)$$($1_CLEAN_FILES))
531    # Search for all files to be copied.
532    $1_ALL_CLEANS := $$(filter $$(addprefix %,$$($1_CLEAN)),$$($1_ALL_SRCS))
533    # Clean these explicitly
534    $1_ALL_CLEANS += $$($1_CLEAN_FILES)
535    # Copy and clean must also respect filters.
536    ifneq (,$$($1_INCLUDES))
537      $1_ALL_CLEANS := $$(filter $$($1_SRC_INCLUDES),$$($1_ALL_CLEANS))
538    endif
539    ifneq (,$$($1_EXCLUDES))
540      $1_ALL_CLEANS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_ALL_CLEANS))
541    endif
542    ifneq (,$$($1_EXCLUDE_FILES))
543      $1_ALL_CLEANS := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$($1_ALL_CLEANS))
544    endif
545    ifneq (,$$($1_ALL_CLEANS))
546      # Yep, there are files to be copied and cleaned!
547      $1_ALL_COPY_CLEAN_TARGETS:=
548          $$(foreach i,$$($1_ALL_CLEANS),$$(eval $$(call add_file_to_clean,$1,$$i)))
549      # Now we can depend on $$($1_ALL_COPY_CLEAN_TARGETS) to copy all files!
550    endif
551  endif
552
553  # Create a sed expression to remove the source roots and to replace / with .
554  # and remove .java at the end.
555  $1_REWRITE_INTO_CLASSES:=$$(foreach i,$$($1_SRC),-e 's|$$i/||g') -e 's|/|.|g' -e 's|.java$$$$||g'
556
557  # Create SJAVAC variable from JAVAC variable. Expects $1_JAVAC to be
558  # "bootclasspathprepend -cp .../javac.jar com.sun.tools.javac.Main"
559  # and javac is simply replaced with sjavac.
560  $1_SJAVAC:=$$(subst com.sun.tools.javac.Main,com.sun.tools.sjavac.Main,$$($1_JAVAC))
561
562  # Set the $1_REMOTE to spawn a background javac server.
563  $1_REMOTE:=--server:portfile=$$($1_SJAVAC_PORTFILE),id=$1,sjavac=$$(subst \
564      $$(SPACE),%20,$$(subst $$(COMMA),%2C,$$(strip $$($1_SERVER_JVM) $$($1_SJAVAC))))
565
566  ifeq ($$($1_DISABLE_SJAVAC)x$$(ENABLE_SJAVAC),xyes)
567    ifneq (,$$($1_HEADERS))
568      $1_HEADERS_ARG := -h $$($1_HEADERS)
569    endif
570
571    # Using sjavac to compile.
572    $1_COMPILE_TARGETS := $$($1_BIN)/_the.$1_batch
573
574    $1_VARDEPS := $$($1_JVM) $$($1_SJAVAC) $$($1_SJAVAC_ARGS) $$($1_FLAGS) \
575        $$($1_HEADERS_ARG) $$($1_BIN) $$($1_EXCLUDES) $$($1_INCLUDES) \
576        $$($1_EXCLUDE_FILES) $$($1_INCLUDE_FILES)
577    $1_VARDEPS_FILE := $$(call DependOnVariable, $1_VARDEPS, $$($1_BIN)/_the.$1.vardeps)
578
579    $$($1_BIN)/_the.$1_batch: $$($1_SRCS) $$($1_DEPENDS) $$($1_VARDEPS_FILE)
580	$(MKDIR) -p $$(@D) $$(dir $$($1_SJAVAC_PORTFILE))
581	$$(eval $$(call ListPathsSafely,$1_SRCS, $$($1_BIN)/_the.$1_batch.tmp))
582	$(ECHO) Compiling $1
583	$(call LogFailures, $$($1_BIN)/_the.$$($1_SAFE_NAME)_batch.log, $$($1_SAFE_NAME), \
584	    $$($1_JVM) $$($1_SJAVAC) \
585	        $$($1_REMOTE) \
586	        -j 1 \
587	        --permit-unidentified-artifacts \
588	        --permit-sources-without-package \
589	        --compare-found-sources $$($1_BIN)/_the.$1_batch.tmp \
590	        --log=$(LOG_LEVEL) \
591	        --state-dir=$$($1_BIN) \
592	        $$($1_SJAVAC_ARGS) \
593	        $$($1_FLAGS) \
594	        $$($1_HEADERS_ARG) \
595	        -d $$($1_BIN)) && \
596	$(MV) $$($1_BIN)/_the.$1_batch.tmp $$($1_BIN)/_the.$1_batch
597        # Create a pubapi file that only changes when the pubapi changes. Dependent
598        # compilations can use this file to only get recompiled when pubapi has changed.
599        # Grep returns 1 if no matching lines are found. Do not fail for this.
600	$(GREP) -e "^I" $$($1_BIN)/javac_state > $$($1_BIN)/_the.$1_pubapi.tmp \
601	    || test "$$$$?" = "1"
602	if [ ! -f $$($1_BIN)/_the.$1_pubapi ] \
603	    || [ "`$(DIFF) $$($1_BIN)/_the.$1_pubapi $$($1_BIN)/_the.$1_pubapi.tmp`" != "" ]; then \
604	  $(MV) $$($1_BIN)/_the.$1_pubapi.tmp $$($1_BIN)/_the.$1_pubapi; \
605	fi
606
607  else
608    # Using plain javac to batch compile everything.
609    $1_COMPILE_TARGETS := $$($1_BIN)/_the.$1_batch
610
611    # When building in batch, put headers in a temp dir to filter out those that actually
612    # changed before copying them to the real header dir.
613    ifneq (,$$($1_HEADERS))
614      $1_HEADERS_ARG := -h $$($1_HEADERS).$1.tmp
615
616      $$($1_HEADERS)/_the.$1_headers: $$($1_BIN)/_the.$1_batch
617		$(MKDIR) -p $$(@D)
618		if [ -d "$$($1_HEADERS).$1.tmp" ]; then \
619		  for f in `ls $$($1_HEADERS).$1.tmp`; do \
620		    if [ ! -f "$$($1_HEADERS)/$$$$f" ] \
621		        || [ "`$(DIFF) $$($1_HEADERS)/$$$$f $$($1_HEADERS).$1.tmp/$$$$f`" != "" ]; then \
622		    $(CP) -f $$($1_HEADERS).$1.tmp/$$$$f $$($1_HEADERS)/$$$$f; \
623		  fi; \
624		  done; \
625		fi
626		$(RM) -r $$($1_HEADERS).$1.tmp
627		$(TOUCH) $$@
628
629      $1_HEADER_TARGETS := $$($1_HEADERS)/_the.$1_headers
630    endif
631
632    $1_VARDEPS := $$($1_JVM) $$($1_JAVAC) $$($1_FLAGS) $$($1_BIN) \
633        $$($1_HEADERS_ARG) $$($1_EXCLUDES) $$($1_INCLUDES) \
634        $$($1_EXCLUDE_FILES) $$($1_INCLUDE_FILES)
635    $1_VARDEPS_FILE := $$(call DependOnVariable, $1_VARDEPS, $$($1_BIN)/_the.$1.vardeps)
636
637    ifeq ($$($1_DISABLE_SJAVAC)x$(ENABLE_JAVAC_SERVER), xyes)
638      $1_JAVAC_CMD := $$($1_SJAVAC) $$($1_REMOTE)
639    else
640      $1_JAVAC_CMD := $$($1_JAVAC)
641    endif
642
643    # When not using sjavac, pass along all sources to javac using an @file.
644    $$($1_BIN)/_the.$1_batch: $$($1_SRCS) $$($1_DEPENDS) $$($1_VARDEPS_FILE)
645	$(MKDIR) -p $$(@D)
646	$$(eval $$(call ListPathsSafely,$1_SRCS, $$($1_BIN)/_the.$1_batch.tmp))
647	$(ECHO) Compiling `$(WC) $$($1_BIN)/_the.$1_batch.tmp | $(TR) -s ' ' | $(CUT) -f 2 -d ' '` files for $1
648	$(call LogFailures, $$($1_BIN)/_the.$$($1_SAFE_NAME)_batch.log, $$($1_SAFE_NAME), \
649	    $$($1_JVM) $$($1_JAVAC_CMD) $$($1_FLAGS) \
650	        -implicit:none \
651	        -d $$($1_BIN) $$($1_HEADERS_ARG) @$$($1_BIN)/_the.$1_batch.tmp) && \
652	$(MV) $$($1_BIN)/_the.$1_batch.tmp $$($1_BIN)/_the.$1_batch
653  endif
654
655  # Add all targets to main variable
656  $1 := $$($1_ALL_COPY_TARGETS) $$($1_ALL_COPY_CLEAN_TARGETS) $$($1_COMPILE_TARGETS) \
657      $$($1_HEADER_TARGETS)
658
659  # Check if a jar file was specified, then setup the rules for the jar.
660  ifneq (,$$($1_JAR))
661    # If no suffixes was explicitly set for this jar file.
662    # Use class and the cleaned/copied properties file suffixes as the default
663    # for the types of files to be put into the jar.
664    ifeq (,$$($1_SUFFIXES))
665      $1_SUFFIXES:=.class $$($1_CLEAN) $$($1_COPY)
666    endif
667
668    $$(eval $$(call SetupArchive,ARCHIVE_$1, \
669        DEPENDENCIES:=$$($1), \
670        SRCS:=$$($1_BIN), \
671        SUFFIXES:=$$($1_SUFFIXES), \
672        EXCLUDE:=$$($1_EXCLUDES), \
673        INCLUDES:=$$($1_INCLUDES), \
674        EXTRA_FILES:=$$($1_ALL_COPY_TARGETS) $$($1_ALL_COPY_CLEAN_TARGETS), \
675        JAR:=$$($1_JAR), \
676        JARMAIN:=$$($1_JARMAIN), \
677        MANIFEST:=$$($1_MANIFEST), \
678        EXTRA_MANIFEST_ATTR:=$$($1_EXTRA_MANIFEST_ATTR), \
679        JARINDEX:=$$($1_JARINDEX), \
680        HEADERS:=$$($1_HEADERS), \
681        SETUP:=$$($1_SETUP)))
682
683    # Add jar to target list
684    $1 += $$($1_JAR)
685  endif
686
687  # Check if a srczip was specified, then setup the rules for the srczip.
688  ifneq (,$$($1_SRCZIP))
689    $$(eval $$(call SetupZipArchive,ARCHIVE_$1, \
690        SRC:=$$($1_SRC), \
691        ZIP:=$$($1_SRCZIP), \
692        INCLUDES:=$$($1_INCLUDES), \
693        EXCLUDES:=$$($1_EXCLUDES), \
694        EXCLUDE_FILES:=$$($1_EXCLUDE_FILES)))
695
696    # Add zip to target list
697    $1 += $$($1_SRCZIP)
698  endif
699endef
700
701# Use this macro to find the correct target to depend on when the original
702# SetupJavaCompilation is declared in a different makefile, to avoid having
703# to declare and evaluate it again.
704# param 1 is for example BUILD_MYPACKAGE
705# param 2 is the output directory (BIN)
706define SetupJavaCompilationCompileTarget
707  $(if $(findstring yes, $(ENABLE_SJAVAC)), $(strip $2)/_the.$(strip $1)_pubapi, \
708      $(strip $2)/_the.$(strip $1)_batch)
709endef
710
711endif # _JAVA_COMPILATION_GMK
712