JavaCompilation.gmk revision 989:3ac08f00e157
1194612Sed#
2194612Sed# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3194612Sed# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4194612Sed#
5194612Sed# This code is free software; you can redistribute it and/or modify it
6194612Sed# under the terms of the GNU General Public License version 2 only, as
7194612Sed# published by the Free Software Foundation.  Oracle designates this
8194612Sed# particular file as subject to the "Classpath" exception as provided
9194612Sed# by Oracle in the LICENSE file that accompanied this code.
10194612Sed#
11194612Sed# This code is distributed in the hope that it will be useful, but WITHOUT
12194612Sed# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13194612Sed# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14194612Sed# version 2 for more details (a copy is included in the LICENSE file that
15194612Sed# accompanied this code).
16249423Sdim#
17249423Sdim# You should have received a copy of the GNU General Public License version
18249423Sdim# 2 along with this work; if not, write to the Free Software Foundation,
19218893Sdim# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20249423Sdim#
21194612Sed# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22194612Sed# or visit www.oracle.com if you need additional information or have any
23218893Sdim# questions.
24194612Sed#
25194612Sed
26249423Sdim# This makefile is much simpler now that it can use the smart javac wrapper
27249423Sdim# for dependency tracking between java packages and incremental compiles.
28198090Srdivacky# It could be even more simple if we added support for incremental jar updates
29198090Srdivacky# directly from the smart javac wrapper.
30198090Srdivacky
31198090Srdivacky# Cleaning/copying properties here is not a good solution. The properties
32198090Srdivacky# should be cleaned/copied by a annotation processor in sjavac.
33198090Srdivacky
34198090Srdivacky# When you read this source. Remember that $(sort ...) has the side effect
35198090Srdivacky# of removing duplicates. It is actually this side effect that is
36198090Srdivacky# desired whenever sort is used below!
37198090Srdivacky
38198090Srdivackyifeq (,$(_MAKEBASE_GMK))
39198090Srdivacky  $(error You must include MakeBase.gmk prior to including JavaCompilation.gmk)
40198090Srdivackyendif
41194612Sed
42198090SrdivackyFALSE_FIND_PATTERN:=-name FILE_NAME_THAT_DOESNT_EXIST
43198090Srdivacky
44198090Srdivackydefine SetupJavaCompiler
45203954Srdivacky  # param 1 is for example GENERATE_OLD_BYTECODE or GENERATE_NEW_JDKBYTECODE
46194612Sed  # This is the name of the compiler setup.
47194612Sed  # param 2-9 are named args.
48194612Sed  #   JVM:=The jvm used to run the javac/javah command
49194612Sed  #   JAVAC:=The javac jar and bootstrap classpath changes, or just bin/javac if JVM is left out
50194612Sed  #   FLAGS:=Flags to be supplied to javac
51194612Sed  #   SERVER_DIR:=Use a javac server (-XDserver) and store the server related files here
52194612Sed  #   SERVER_JVM:=Use this JVM for the server. Defaults to the JVM above.
53194612Sed  $(foreach i,2 3 4 5 6 7 8 9 10 11 12 13 14 15, $(if $($i),$1_$(strip $($i)))$(NEWLINE))
54194612Sed  $(call LogSetupMacroEntry,SetupJavaCompiler($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))
55263508Sdim  $(if $(16),$(error Internal makefile error: Too many arguments to SetupJavaCompiler, please update JavaCompilation.gmk))
56263508Sdim
57263508Sdim  # The port file contains the tcp/ip on which the server listens
58218893Sdim  # and the cookie necessary to talk to the server.
59223017Sdim  $1_SJAVAC_PORTFILE:=$$($1_SERVER_DIR)/server.port
60223017Sdim  # You can use a different JVM to run the background javac server.
61203954Srdivacky  ifeq ($$($1_SERVER_JVM),)
62194612Sed    # It defaults to the same JVM that is used to start the javac command.
63194612Sed    $1_SERVER_JVM:=$$($1_JVM)
64223017Sdim  endif
65223017Sdimendef
66194612Sed
67203954Srdivackydefine SetupArchive
68263508Sdim  # param 1 is for example ARCHIVE_MYPACKAGE
69194612Sed  # param 2 are the dependecies
70218893Sdim  # param 3,4,5,6,7,8,9 are named args.
71194612Sed  #   SRCS:=List of directories in where to find files to add to archive
72194612Sed  #   SUFFIXES:=File suffixes to include in jar
73194612Sed  #   INCLUDES:=List of directories/packages in SRCS that should be included
74194612Sed  #   EXCLUDES:=List of directories/packages in SRCS that should be excluded
75194612Sed  #   EXCLUDE_FILES:=List of files in SRCS that should be excluded
76194612Sed  #   EXTRA_FILES:=List of files in SRCS that should be included regardless of suffix match.
77194612Sed  #   JAR:=Jar file to create
78194612Sed  #   MANIFEST:=Optional manifest file template.
79194612Sed  #   JARMAIN:=Optional main class to add to manifest
80194612Sed  #   JARINDEX:=true means generate the index in the jar file.
81194612Sed  #   SKIP_METAINF:=Set to prevent contents of an META-INF directory to be automatically
82194612Sed  #       added to the archive.
83194612Sed  #   EXTRA_MANIFEST_ATTR:=Extra attribute to add to manifest.
84194612Sed  #   CHECK_COMPRESS_JAR Check the COMPRESS_JAR variable
85194612Sed
86239462Sdim  # NOTE: $2 is dependencies, not a named argument!
87239462Sdim  $(foreach i,3 4 5 6 7 8 9 10 11 12 13 14 15, $(if $($i),$1_$(strip $($i)))$(NEWLINE))
88239462Sdim  $(call LogSetupMacroEntry,SetupArchive($1),<dependencies>,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))
89239462Sdim  $(if $(findstring $(LOG_LEVEL),trace), $(info *[2] <dependencies> = $(strip $2)))
90194612Sed  $(if $(16),$(error Internal makefile error: Too many arguments to SetupArchive, please update JavaCompilation.gmk))
91194612Sed
92203954Srdivacky  $1_JARMAIN:=$(strip $$($1_JARMAIN))
93194612Sed  $1_JARNAME:=$$(notdir $$($1_JAR))
94203954Srdivacky  $1_MANIFEST_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_manifest
95194612Sed  $1_DELETESS_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_deletess
96194612Sed  $1_DELETES_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_deletes
97194612Sed  $1_BIN:=$$(dir $$($1_JAR))
98203954Srdivacky
99239462Sdim  ifeq (,$$($1_SUFFIXES))
100239462Sdim    # No suffix was set, default to classes.
101194612Sed    $1_SUFFIXES:=.class
102198090Srdivacky  endif
103198090Srdivacky  # Convert suffixes to a find expression
104198090Srdivacky  $1_FIND_PATTERNS:=$(FALSE_FIND_PATTERN) $$(patsubst %,$(SPACE)-o$(SPACE)-name$(SPACE)$(DQUOTE)*%$(DQUOTE),$$($1_SUFFIXES))
105198090Srdivacky  # On windows, a lot of includes/excludes risk making the command line too long, so
106203954Srdivacky  # writing the grep patterns to files.
107198090Srdivacky  ifneq (,$$($1_INCLUDES))
108198090Srdivacky    $1_GREP_INCLUDE_PATTERNS:=$$(foreach src,$$($1_SRCS), \
109198090Srdivacky        $$(addprefix $$(src)/,$$($1_INCLUDES)))
110198090Srdivacky    # If there are a lot of include patterns, output to file to shorten command lines
111198090Srdivacky    ifeq ($$(word 20,$$($1_GREP_INCLUDE_PATTERNS)),)
112198090Srdivacky      $1_GREP_INCLUDES:=| $(GREP) $$(patsubst %,$(SPACE)-e$(SPACE)$(DQUOTE)%$(DQUOTE),$$($1_GREP_INCLUDE_PATTERNS))
113198090Srdivacky    else
114194612Sed      $1_GREP_INCLUDE_OUTPUT:=$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_include $$(NEWLINE) \
115194612Sed          $$(call ListPathsSafely,$1_GREP_INCLUDE_PATTERNS,\n, \
116203954Srdivacky          >> $$($1_BIN)/_the.$$($1_JARNAME)_include)
117198090Srdivacky      $1_GREP_INCLUDES:=| $(GREP) -f $$($1_BIN)/_the.$$($1_JARNAME)_include
118198090Srdivacky    endif
119198090Srdivacky  endif
120203954Srdivacky  ifneq (,$$($1_EXCLUDES)$$($1_EXCLUDE_FILES))
121198090Srdivacky    $1_GREP_EXCLUDE_PATTERNS:=$$(foreach src,$$($1_SRCS),$$(addprefix $$(src)/, \
122198090Srdivacky        $$($1_EXCLUDES) $$($1_EXCLUDE_FILES)))
123198090Srdivacky    # If there are a lot of include patterns, output to file to shorten command lines
124198090Srdivacky    ifeq ($$(word 20,$$($1_GREP_EXCLUDE_PATTERNS)),)
125198090Srdivacky      $1_GREP_EXCLUDES:=| $(GREP) -v $$(patsubst %,$(SPACE)-e$(SPACE)$(DQUOTE)%$(DQUOTE),$$($1_GREP_EXCLUDE_PATTERNS))
126239462Sdim    else
127239462Sdim      $1_GREP_EXCLUDE_OUTPUT=$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_exclude $$(NEWLINE) \
128239462Sdim          $$(call ListPathsSafely,$1_GREP_EXCLUDE_PATTERNS,\n, \
129239462Sdim          >> $$($1_BIN)/_the.$$($1_JARNAME)_exclude)
130194612Sed      $1_GREP_EXCLUDES:=| $(GREP) -v -f $$($1_BIN)/_the.$$($1_JARNAME)_exclude
131194612Sed    endif
132195340Sed  endif
133194612Sed
134203954Srdivacky  # Check if this jar needs to have its index generated.
135194612Sed  ifneq (,$$($1_JARINDEX))
136194612Sed    $1_JARINDEX = (cd $$(dir $$@) && $(JAR) -i $$(notdir $$@))
137194612Sed  else
138195340Sed    $1_JARINDEX = true
139203954Srdivacky  endif
140195340Sed  # When this macro is run in the same makefile as the java compilation, dependencies are
141195340Sed  # transfered in make variables. When the macro is run in a different makefile than the
142195340Sed  # java compilation, the dependencies need to be found in the filesystem.
143194612Sed  ifneq (,$2)
144194612Sed    $1_DEPS:=$2
145194612Sed  else
146195340Sed    $1_DEPS:=$$(filter $$(addprefix %,$$($1_SUFFIXES)), \
147195340Sed        $$(call CacheFind,$$($1_SRCS)))
148195340Sed    ifneq (,$$($1_GREP_INCLUDE_PATTERNS))
149195340Sed      $1_DEPS:=$$(filter $$(addsuffix %,$$($1_GREP_INCLUDE_PATTERNS)),$$($1_DEPS))
150195340Sed    endif
151234353Sdim    ifneq (,$$($1_GREP_EXCLUDE_PATTERNS))
152234353Sdim      $1_DEPS:=$$(filter-out $$(addsuffix %,$$($1_GREP_EXCLUDE_PATTERNS)),$$($1_DEPS))
153249423Sdim    endif
154249423Sdim    # The subst of \ is needed because $ has to be escaped with \ in EXTRA_FILES for the command
155203954Srdivacky    # lines, but not here for use in make dependencies.
156194612Sed    $1_DEPS+=$$(subst \,,$$(foreach src,$$($1_SRCS),$$(addprefix $$(src)/,$$($1_EXTRA_FILES))))
157239462Sdim    ifeq (,$$($1_SKIP_METAINF))
158239462Sdim      $1_DEPS+=$$(call CacheFind,$$(wildcard $$(addsuffix /META-INF,$$($1_SRCS))))
159239462Sdim    endif
160239462Sdim  endif
161239462Sdim
162239462Sdim  # Utility macros, to make the shell script receipt somewhat easier to decipher.
163239462Sdim
164239462Sdim  # The capture contents macro finds all files (matching the patterns, typically
165239462Sdim  # .class and .prp) that are newer than the jar-file, ie the new content to be put into the jar.
166203954Srdivacky  # NOTICE: please leave the parentheses space separated otherwise the AIX build will break!
167239462Sdim  $1_CAPTURE_CONTENTS=$$(foreach src,$$($1_SRCS), \
168239462Sdim      ( ( $(FIND) $$(src) -type f -a \( $$($1_FIND_PATTERNS) \) -a -newer $$@ $$($1_GREP_INCLUDES) \
169239462Sdim          $$($1_GREP_EXCLUDES) | $(SED) 's|$$(src)/||g' && \
170239462Sdim      $(ECHO) $$(subst $$(src)/,,$$($1_EXTRA_FILES) ) ) > \
171239462Sdim      $$(src)/_the.$$($1_JARNAME)_contents) $$(NEWLINE) )
172239462Sdim  # The capture metainf macro finds all files below the META-INF directory that are newer than the jar-file.
173239462Sdim  ifeq (,$$($1_SKIP_METAINF))
174239462Sdim    $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))
175239462Sdim  endif
176199989Srdivacky  # The capture deletes macro finds all deleted files and concatenates them. The resulting file
177239462Sdim  # tells us what to remove from the jar-file.
178239462Sdim  $1_CAPTURE_DELETES=$$(foreach src,$$($1_SRCS),($(FIND) $$(src) -name _the.package.deleted -newer $$@ -exec $(SED) 's|$$(src)||g' \{\} >> $$($1_DELETES_FILE) \;) $$(NEWLINE))
179239462Sdim  # The update contents macro updates the jar file with the previously capture contents.
180239462Sdim  # Use 'wc -w' to see if the contents file is empty.
181239462Sdim  $1_UPDATE_CONTENTS=$$(foreach src,$$($1_SRCS), \
182239462Sdim      (cd $$(src) && \
183199989Srdivacky       if [ "`$(WC) -w _the.$$($1_JARNAME)_contents | $(AWK) '{ print $$$$1 }'`" -gt "0" ]; then \
184239462Sdim         $(ECHO) "  updating" `$(WC) -l _the.$$($1_JARNAME)_contents | $(AWK) '{ print $$$$1 }'` files && \
185239462Sdim         $(JAR) $$($1_JAR_UPDATE_OPTIONS) $$@ @_the.$$($1_JARNAME)_contents; \
186239462Sdim       fi) $$(NEWLINE))
187239462Sdim  # The s-variants of the above macros are used when the jar is created from scratch.
188239462Sdim  # NOTICE: please leave the parentheses space separated otherwise the AIX build will break!
189239462Sdim  $1_SCAPTURE_CONTENTS=$$(foreach src,$$($1_SRCS), \
190239462Sdim      ( ( $(FIND) $$(src) -type f -a \( $$($1_FIND_PATTERNS) \) $$($1_GREP_INCLUDES) \
191239462Sdim          $$($1_GREP_EXCLUDES) | $(SED) 's|$$(src)/||g' && \
192239462Sdim      $$(subst $$(src)/,,$(ECHO) $$($1_EXTRA_FILES) ) ) > \
193239462Sdim      $$(src)/_the.$$($1_JARNAME)_contents) $$(NEWLINE) )
194239462Sdim
195239462Sdim  ifeq (,$$($1_SKIP_METAINF))
196239462Sdim    $1_SCAPTURE_METAINF=$$(foreach src,$$($1_SRCS), \
197239462Sdim        ($(FIND) $$(src)/META-INF -type f 2> /dev/null | $(SED) 's|$$(src)/||g' >> \
198239462Sdim        $$(src)/_the.$$($1_JARNAME)_contents) $$(NEWLINE))
199239462Sdim  endif
200239462Sdim  $1_SUPDATE_CONTENTS=$$(foreach src,$$($1_SRCS), \
201249423Sdim      (cd $$(src) && $(JAR) $$($1_JAR_UPDATE_OPTIONS) $$@ @$$(src)/_the.$$($1_JARNAME)_contents) $$(NEWLINE))
202239462Sdim
203239462Sdim  # Use a slightly shorter name for logging, but with enough path to identify this jar.
204239462Sdim  $1_NAME:=$$(subst $$(OUTPUT_ROOT)/,,$$($1_JAR))
205234353Sdim
206239462Sdim  ifneq (,$$($1_CHECK_COMPRESS_JAR))
207239462Sdim    $1_JAR_CREATE_OPTIONS := c0fm
208234353Sdim    $1_JAR_UPDATE_OPTIONS := u0f
209239462Sdim    ifeq ($(COMPRESS_JARS), true)
210239462Sdim      $1_JAR_CREATE_OPTIONS := cfm
211249423Sdim      $1_JAR_UPDATE_OPTIONS := uf
212194612Sed    endif
213195340Sed  else
214263508Sdim    $1_JAR_CREATE_OPTIONS := cfm
215263508Sdim    $1_JAR_UPDATE_OPTIONS := uf
216234982Sdim  endif
217249423Sdim
218249423Sdim  # Here is the rule that creates/updates the jar file.
219234353Sdim  $$($1_JAR) : $$($1_DEPS)
220206274Srdivacky	$(MKDIR) -p $$($1_BIN)
221206274Srdivacky	$$($1_GREP_INCLUDE_OUTPUT)
222234353Sdim	$$($1_GREP_EXCLUDE_OUTPUT)
223206274Srdivacky	$$(if $$($1_MANIFEST), \
224206274Srdivacky	  $(SED) -e "s#@@RELEASE@@#$(RELEASE)#" \
225218893Sdim	      -e "s#@@COMPANY_NAME@@#$(COMPANY_NAME)#" $$($1_MANIFEST) > $$($1_MANIFEST_FILE) \
226239462Sdim	, \
227239462Sdim	  $(RM) $$($1_MANIFEST_FILE) && $(TOUCH) $$($1_MANIFEST_FILE))
228239462Sdim	$$(if $$($1_JARMAIN),$(ECHO) "Main-Class: $$(strip $$($1_JARMAIN))" >> $$($1_MANIFEST_FILE))
229239462Sdim	$$(if $$($1_EXTRA_MANIFEST_ATTR),$(PRINTF) "$$($1_EXTRA_MANIFEST_ATTR)\n" >> $$($1_MANIFEST_FILE))
230239462Sdim	$$(if $$(wildcard $$@), \
231195340Sed	  $(ECHO) Modifying $$($1_NAME) $$(NEWLINE) \
232234982Sdim	  $$($1_CAPTURE_CONTENTS) \
233195340Sed	  $$($1_CAPTURE_METAINF) \
234195340Sed	  $(RM) $$($1_DELETES_FILE) $$(NEWLINE) \
235263508Sdim	  $$($1_CAPTURE_DELETES) \
236263508Sdim	  $(CAT) $$($1_DELETES_FILE) > $$($1_DELETESS_FILE) $$(NEWLINE) \
237263508Sdim	  if [ -s $$($1_DELETESS_FILE) ]; then \
238263508Sdim	    $(ECHO) "  deleting" `$(WC) -l $$($1_DELETESS_FILE) | $(AWK) '{ print $$$$1 }'` files && \
239263508Sdim	    $(ZIP) -q -d $$@ `$(CAT) $$($1_DELETESS_FILE)` ; \
240263508Sdim	  fi $$(NEWLINE) \
241195340Sed	  $$($1_UPDATE_CONTENTS) true $$(NEWLINE) \
242195340Sed	  $$($1_JARINDEX) && true \
243195340Sed	, \
244195340Sed	  $(ECHO) Creating $$($1_NAME) && $(JAR) $$($1_JAR_CREATE_OPTIONS) $$@ $$($1_MANIFEST_FILE) $$(NEWLINE) \
245249423Sdim	  $$($1_SCAPTURE_CONTENTS) \
246234353Sdim	  $$($1_SCAPTURE_METAINF) \
247249423Sdim	  $$($1_SUPDATE_CONTENTS) \
248249423Sdim	  $$($1_JARINDEX) && true )
249249423Sdim
250234353Sdim  # Add jar to target list
251249423Sdim  $1 += $$($1_JAR)
252249423Sdimendef
253249423Sdim
254234353Sdimdefine SetupZipArchive
255234353Sdim  # param 1 is for example ZIP_MYSOURCE
256249423Sdim  # param 2,3,4,5,6,7,8,9 are named args.
257249423Sdim  #   SRC,ZIP,INCLUDES,INCLUDE_FILES,EXCLUDES,EXCLUDE_FILES,SUFFIXES,EXTRA_DEPS
258249423Sdim  $(foreach i,2 3 4 5 6 7 8 9 10 11 12 13 14 15, $(if $($i),$1_$(strip $($i)))$(NEWLINE))
259249423Sdim  $(call LogSetupMacroEntry,SetupZipArchive($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))
260234353Sdim  $(if $(16),$(error Internal makefile error: Too many arguments to SetupZipArchive, please update JavaCompilation.gmk))
261249423Sdim
262249423Sdim  # To avoid running find over too large sets of files, which causes make to crash
263249423Sdim  # on some configurations (cygwin), use INCLUDES and INCLUDE_FILES to build a set
264249423Sdim  # of directories to run find in, if available.
265249423Sdim  ifneq ($$($1_INCLUDES)$$($1_INCLUDE_FILES),)
266249423Sdim    $1_FIND_LIST := $$(wildcard $$(foreach i,$$($1_SRC), \
267249423Sdim        $$(addprefix $$i/,$$($1_INCLUDES) $$($1_INCLUDE_FILES))))
268249423Sdim  else
269249423Sdim    $1_FIND_LIST := $$($1_SRC)
270249423Sdim  endif
271249423Sdim
272249423Sdim  # Find all files in the source tree.
273249423Sdim  $1_ALL_SRCS := $$(call not-containing,_the.,$$(call CacheFind,$$($1_FIND_LIST)))
274249423Sdim
275249423Sdim  # Filter on suffixes if set
276249423Sdim  ifneq ($$($1_SUFFIXES),)
277249423Sdim    $1_ALL_SRCS := $$(filter $$(addprefix %, $$($1_SUFFIXES)), $$($1_ALL_SRCS))
278249423Sdim  endif
279249423Sdim
280249423Sdim  ifneq ($$($1_INCLUDES),)
281249423Sdim    ifneq ($$($1_SUFFIXES),)
282249423Sdim      $1_ZIP_INCLUDES := $$(foreach s,$$($1_SUFFIXES), \
283249423Sdim          $$(addprefix -i$(SPACE)$(DQUOTE),$$(addsuffix /*$$s$(DQUOTE),$$($1_INCLUDES))))
284249423Sdim    else
285249423Sdim      $1_ZIP_INCLUDES := $$(addprefix -i$(SPACE)$(DQUOTE),$$(addsuffix /*$(DQUOTE),$$($1_INCLUDES)))
286249423Sdim    endif
287249423Sdim  endif
288249423Sdim  ifneq ($$($1_INCLUDE_FILES),)
289249423Sdim    $1_ZIP_INCLUDES += $$(addprefix -i$(SPACE),$$($1_INCLUDE_FILES))
290249423Sdim  endif
291249423Sdim  ifneq ($$($1_EXCLUDES),)
292249423Sdim    $1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES))))
293249423Sdim    $1_ZIP_EXCLUDES := $$(addprefix -x$(SPACE)$(DQUOTE),$$(addsuffix /*$(DQUOTE),$$($1_EXCLUDES)))
294249423Sdim    $1_ALL_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_ALL_SRCS))
295249423Sdim  endif
296249423Sdim
297249423Sdim  # Use a slightly shorter name for logging, but with enough path to identify this zip.
298249423Sdim  $1_NAME:=$$(subst $$(OUTPUT_ROOT)/,,$$($1_ZIP))
299249423Sdim
300249423Sdim  # Now $1_ALL_SRCS should contain all sources that are going to be put into the zip.
301249423Sdim  # I.e. the zip -i and -x options should match the filtering done in the makefile.
302249423Sdim  # Explicitly excluded files can be given with absolute path. The patsubst solution
303249423Sdim  # isn't perfect but the likelyhood of an absolute path to match something in a src
304249423Sdim  # dir is very small.
305249423Sdim  # If zip has nothing to do, it returns 12 and would fail the build. Check for 12
306249423Sdim  # and only fail if it's not.
307249423Sdim  $$($1_ZIP) : $$($1_ALL_SRCS) $$($1_EXTRA_DEPS)
308249423Sdim	$(MKDIR) -p $$(@D)
309249423Sdim	$(ECHO) Updating $$($1_NAME)
310249423Sdim	$$(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
311249423Sdim	$(TOUCH) $$@
312249423Sdim
313249423Sdim  # Add zip to target list
314249423Sdim  $1 += $$($1_ZIP)
315249423Sdimendef
316249423Sdim
317249423Sdimdefine add_file_to_copy
318249423Sdim  # param 1 = BUILD_MYPACKAGE
319249423Sdim  # parma 2 = The source file to copy.
320249423Sdim  $2_TARGET:=$2
321249423Sdim  # Remove the source prefix.
322249423Sdim  $$(foreach i,$$($1_SRC),$$(eval $$(call remove_string,$$i,$2_TARGET)))
323249423Sdim  # Now we can setup the depency that will trigger the copying.
324249423Sdim  $$($1_BIN)$$($2_TARGET) : $2
325249423Sdim	$(MKDIR) -p $$(@D)
326249423Sdim	$(CP) $$< $$@
327249423Sdim	$(CHMOD) -f ug+w $$@
328249423Sdim
329249423Sdim  # And do not forget this target
330249423Sdim  $1_ALL_COPY_TARGETS += $$($1_BIN)$$($2_TARGET)
331249423Sdimendef
332249423Sdim
333249423Sdim
334249423Sdim# This macro is used only for properties files that are to be
335249423Sdim# copied over to the classes directory in cleaned form:
336249423Sdim# Previously this was inconsistently done in different repositories.
337249423Sdim# This is the new clean standard. Though it is to be superseded by
338249423Sdim# a standard annotation processor from with sjavac.
339249423Sdim#
340249423Sdim# The sed expression does this:
341249423Sdim# 1. Add a backslash before any :, = or ! that do not have a backslash already.
342249423Sdim# 2. Apply the file unicode2x.sed which does a whole bunch of \u00XX to \xXX 
343249423Sdim#    conversions.
344249423Sdim# 3. Delete all lines starting with #.
345249423Sdim# 4. Delete empty lines.
346249423Sdim# 5. Append lines ending with \ with the next line.
347249423Sdim# 6. Remove leading and trailing white space.
348234982Sdim# 7. Replace the first \= with just =.
349234982Sdim# 8. Finally it's all sorted to create a stable output.
350239462Sdim# 
351239462Sdim# It is assumed that = is the character used for separating names and values.
352234982Sdimdefine add_file_to_clean
353234982Sdim  # param 1 = BUILD_MYPACKAGE
354234982Sdim  # parma 2 = The source file to copy and clean.
355234982Sdim  $2_TARGET:=$2
356195340Sed  # Remove the source prefix.
357195340Sed  $$(foreach i,$$($1_SRC),$$(eval $$(call remove_string,$$i,$2_TARGET)))
358195340Sed  # Now we can setup the depency that will trigger the copying.
359202878Srdivacky  $$($1_BIN)$$($2_TARGET) : $2
360202878Srdivacky	$(MKDIR) -p $$(@D)
361202878Srdivacky	$(CAT) $$< | $(SED) -e 's/\([^\\]\):/\1\\:/g' -e 's/\([^\\]\)=/\1\\=/g' \
362202878Srdivacky	        -e 's/\([^\\]\)!/\1\\!/g' -e 's/#.*/#/g' \
363202878Srdivacky	    | $(SED) -f "$(SRC_ROOT)/make/common/support/unicode2x.sed" \
364203954Srdivacky	    | $(SED) -e '/^#/d' -e '/^$$$$/d' \
365202878Srdivacky	        -e :a -e '/\\$$$$/N; s/\\\n//; ta' \
366202878Srdivacky	        -e 's/^[ \t]*//;s/[ \t]*$$$$//' \
367202878Srdivacky	        -e 's/\\=/=/' | LANG=C $(SORT) > $$@
368202878Srdivacky	$(CHMOD) -f ug+w $$@
369202878Srdivacky
370202878Srdivacky  # And do not forget this target
371195340Sed  $1_ALL_COPY_CLEAN_TARGETS += $$($1_BIN)$$($2_TARGET)
372203954Srdivackyendef
373234353Sdim
374234982Sdimdefine remove_string
375234982Sdim  $2 := $$(subst $1,,$$($2))
376234982Sdimendef
377234982Sdim
378234982Sdimdefine replace_space_with_pathsep
379234982Sdim  $1:=$(subst $(SPACE),$(PATH_SEP),$(strip $(patsubst %,%,$2)))
380234982Sdimendef
381234982Sdim
382234982Sdimdefine SetupJavaCompilation
383234982Sdim  # param 1 is for example BUILD_MYPACKAGE
384234982Sdim  # param 2,3,4,5,6,7,8 are named args.
385234982Sdim  #   SETUP:=must point to a previously setup java compiler, for example: SETUP:=BOOTJAVAC
386234982Sdim  #   JVM:=path to ..bin/java
387234982Sdim  #   ADD_JAVAC_FLAGS:=javac flags to append to the default ones.
388234982Sdim  #   SRC:=one or more directories to search for sources
389234353Sdim  #   BIN:=store classes here
390234982Sdim  #   INCLUDES:=myapp.foo means will only compile java files in myapp.foo or any of its sub-packages.
391234982Sdim  #   EXCLUDES:=myapp.foo means will do not compile java files in myapp.foo or any of its sub-packages.
392234982Sdim  #   COPY:=.prp means copy all prp files to the corresponding package in BIN.
393234982Sdim  #   COPY_FILES:=myapp/foo/setting.txt means copy this file over to the package myapp/foo
394234982Sdim  #   CLEAN:=.properties means copy and clean all properties file to the corresponding package in BIN.
395234982Sdim  #   CLEAN_FILES:=myapp/foo/setting.txt means clean this file over to the package myapp/foo
396202878Srdivacky  #   SRCZIP:=Create a src.zip based on the found sources and copied files.
397199989Srdivacky  #   INCLUDE_FILES:="com/sun/SolarisFoobar.java" means only compile this file!
398234982Sdim  #   EXCLUDE_FILES:="com/sun/SolarisFoobar.java" means do not compile this particular file!
399234982Sdim  #       "SolarisFoobar.java" means do not compile SolarisFoobar, wherever it is found.
400234982Sdim  #   JAVAC_SOURCE_PATH_OVERRIDE:=This forces an explicit -sourcepath to javac instead of the complete
401234353Sdim  #       source roots from SRC. This is sometimes needed when compiling specific subsets of the source.
402234353Sdim  #   HEADERS:=path to directory where all generated c-headers are written.
403203954Srdivacky  #   DEPENDS:=Extra dependecy
404249423Sdim  $(foreach i,2 3 4 5 6 7 8 9 10 11 12 13 14 15, $(if $($i),$1_$(strip $($i)))$(NEWLINE))
405249423Sdim  $(call LogSetupMacroEntry,SetupJavaCompilation($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))
406249423Sdim  $(if $(16),$(error Internal makefile error: Too many arguments to SetupJavaCompilation, please update JavaCompilation.gmk))
407249423Sdim
408249423Sdim  # Extract the info from the java compiler setup.
409249423Sdim  $1_JVM := $$($$($1_SETUP)_JVM)
410249423Sdim  $1_JAVAC := $$($$($1_SETUP)_JAVAC)
411249423Sdim  $1_FLAGS := $$($$($1_SETUP)_FLAGS) $(JAVAC_FLAGS) $$($1_ADD_JAVAC_FLAGS)
412249423Sdim  ifeq ($$($1_JAVAC),)
413249423Sdim    $$(error The Java compilation $1 refers to a non-existant java compiler setup $$($1_SETUP))
414249423Sdim  endif
415249423Sdim  $1_SJAVAC_PORTFILE := $$($$($1_SETUP)_SJAVAC_PORTFILE)
416234353Sdim  $1_SERVER_JVM := $$($$($1_SETUP)_SERVER_JVM)
417249423Sdim
418234353Sdim  # Handle addons and overrides.
419234353Sdim  $1_SRC:=$$(call ADD_SRCS,$$($1_SRC))
420234353Sdim  # Make sure the dirs exist.
421234353Sdim  $$(foreach d,$$($1_SRC), $$(if $$(wildcard $$d),,$$(error SRC specified to SetupJavaCompilation $1 contains missing directory $$d)))
422249423Sdim  $$(eval $$(call MakeDir,$$($1_BIN)))
423249423Sdim  # Find all files in the source trees.
424249423Sdim  $1_ALL_SRCS += $$(filter-out $(OVR_SRCS),$$(call CacheFind,$$($1_SRC)))
425195340Sed  # Extract the java files.
426249423Sdim  ifneq ($$($1_EXCLUDE_FILES),)
427249423Sdim    $1_EXCLUDE_FILES_PATTERN:=$$(addprefix %,$$($1_EXCLUDE_FILES))
428249423Sdim  endif
429249423Sdim  $1_SRCS := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$(filter %.java,$$($1_ALL_SRCS)))
430249423Sdim  ifneq ($$($1_INCLUDE_FILES),)
431249423Sdim    $1_INCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES)))
432249423Sdim    $1_SRCS := $$(filter $$($1_INCLUDE_FILES), $$($1_SRCS))
433249423Sdim  endif
434234353Sdim
435249423Sdim  # Now we have a list of all java files to compile: $$($1_SRCS)
436234353Sdim
437234353Sdim  # Create the corresponding smart javac wrapper command line.
438249423Sdim  $1_SJAVAC_ARGS:=$$(addprefix -x ,$$(addsuffix .*,$$(subst /,.,$$($1_EXCLUDES)))) \
439234353Sdim      $$(addprefix -i ,$$(addsuffix .*,$$(subst /,.,$$($1_INCLUDES)))) \
440234353Sdim      $$(addprefix -xf *,$$(strip $$($1_EXCLUDE_FILES))) \
441234353Sdim      $$(addprefix -if *,$$(strip $$($1_INCLUDE_FILES))) \
442234353Sdim      -src "$$(subst $$(SPACE),$$(PATH_SEP),$$(strip $$($1_SRC)))"
443234353Sdim
444234353Sdim  # Prepend the source/bin path to the filter expressions.
445249423Sdim  ifneq ($$($1_INCLUDES),)
446234353Sdim    $1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES))))
447234982Sdim    $1_SRCS := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS))
448234982Sdim  endif
449234982Sdim  ifneq ($$($1_EXCLUDES),)
450234353Sdim    $1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES))))
451234353Sdim    $1_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS))
452234353Sdim  endif
453234353Sdim
454234353Sdim  # Find all files to be copied from source to bin.
455234353Sdim  ifneq (,$$($1_COPY)$$($1_COPY_FILES))
456234353Sdim    # Search for all files to be copied.
457234353Sdim    $1_ALL_COPIES := $$(filter $$(addprefix %,$$($1_COPY)),$$($1_ALL_SRCS))
458234353Sdim    # Copy these explicitly
459234353Sdim    $1_ALL_COPIES += $$($1_COPY_FILES)
460234353Sdim    # Copy must also respect filters.
461234353Sdim    ifneq (,$$($1_INCLUDES))
462249423Sdim      $1_ALL_COPIES := $$(filter $$($1_SRC_INCLUDES),$$($1_ALL_COPIES))
463234353Sdim    endif
464249423Sdim    ifneq (,$$($1_EXCLUDES))
465234982Sdim      $1_ALL_COPIES := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_ALL_COPIES))
466234982Sdim    endif
467234982Sdim    ifneq (,$$($1_EXCLUDE_FILES))
468249423Sdim      $1_ALL_COPIES := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$($1_ALL_COPIES))
469249423Sdim    endif
470249423Sdim  endif
471249423Sdim  # All files below META-INF are always copied.
472234353Sdim  $1_ALL_COPIES += $$(filter $$(addsuffix /META-INF%,$$($1_SRC)),$$($1_ALL_SRCS))
473263508Sdim  ifneq (,$$($1_ALL_COPIES))
474249423Sdim    # Yep, there are files to be copied!
475249423Sdim    $1_ALL_COPY_TARGETS:=
476249423Sdim        $$(foreach i,$$($1_ALL_COPIES),$$(eval $$(call add_file_to_copy,$1,$$i)))
477249423Sdim    # Now we can depend on $$($1_ALL_COPY_TARGETS) to copy all files!
478249423Sdim  endif
479249423Sdim
480249423Sdim  # Find all property files to be copied and cleaned from source to bin.
481249423Sdim  ifneq (,$$($1_CLEAN)$$($1_CLEAN_FILES))
482249423Sdim    # Search for all files to be copied.
483249423Sdim    $1_ALL_CLEANS := $$(filter $$(addprefix %,$$($1_CLEAN)),$$($1_ALL_SRCS))
484249423Sdim    # Clean these explicitly
485249423Sdim    $1_ALL_CLEANS += $$($1_CLEAN_FILES)
486249423Sdim    # Copy and clean must also respect filters.
487249423Sdim    ifneq (,$$($1_INCLUDES))
488249423Sdim      $1_ALL_CLEANS := $$(filter $$($1_SRC_INCLUDES),$$($1_ALL_CLEANS))
489249423Sdim    endif
490249423Sdim    ifneq (,$$($1_EXCLUDES))
491249423Sdim      $1_ALL_CLEANS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_ALL_CLEANS))
492249423Sdim    endif
493234353Sdim    ifneq (,$$($1_EXCLUDE_FILES))
494195340Sed      $1_ALL_CLEANS := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$($1_ALL_CLEANS))
495    endif
496    ifneq (,$$($1_ALL_CLEANS))
497      # Yep, there are files to be copied and cleaned!
498      $1_ALL_COPY_CLEAN_TARGETS:=
499          $$(foreach i,$$($1_ALL_CLEANS),$$(eval $$(call add_file_to_clean,$1,$$i)))
500      # Now we can depend on $$($1_ALL_COPY_CLEAN_TARGETS) to copy all files!
501    endif
502  endif
503
504  # Prep the source paths.
505  ifneq ($$($1_JAVAC_SOURCE_PATH_OVERRIDE),)
506    $$(eval $$(call replace_space_with_pathsep,$1_SRCROOTSC,$$($1_JAVAC_SOURCE_PATH_OVERRIDE)))
507  else
508    $$(eval $$(call replace_space_with_pathsep,$1_SRCROOTSC,$$($1_SRC)))
509  endif
510
511  # Create a sed expression to remove the source roots and to replace / with .
512  # and remove .java at the end.
513  $1_REWRITE_INTO_CLASSES:=$$(foreach i,$$($1_SRC),-e 's|$$i/||g') -e 's|/|.|g' -e 's|.java$$$$||g'
514
515  ifeq ($$($1_DISABLE_SJAVAC)x$$(ENABLE_SJAVAC),xyes)
516    ifneq (,$$($1_HEADERS))
517      $1_HEADERS_ARG := -h $$($1_HEADERS)
518    endif
519
520    # Using sjavac to compile.
521    $1 := $$($1_ALL_COPY_TARGETS) $$($1_ALL_COPY_CLEAN_TARGETS) $$($1_BIN)/javac_state
522
523    # Create SJAVAC variable form JAVAC variable. Expects $1_JAVAC to be
524    # "bootclasspathprepend -cp .../javac.jar com.sun.tools.javac.Main"
525    # and javac is simply replaced with sjavac.
526    $1_SJAVAC:=$$(subst com.sun.tools.javac.Main,com.sun.tools.sjavac.Main,$$($1_JAVAC))
527
528    # Set the $1_REMOTE to spawn a background javac server.
529    $1_REMOTE:=--server:portfile=$$($1_SJAVAC_PORTFILE),id=$1,sjavac=$$(subst $$(SPACE),%20,$$(subst $$(COMMA),%2C,$$(strip $$($1_SERVER_JVM) $$($1_SJAVAC))))
530
531    $$($1_BIN)/javac_state: $$($1_SRCS) $$($1_DEPENDS)
532	$(MKDIR) -p $$(@D)
533	$$(call ListPathsSafely,$1_SRCS,\n, >> $$($1_BIN)/_the.$1_batch.tmp)
534	$(ECHO) Compiling $1
535	($$($1_JVM) $$($1_SJAVAC) \
536	    $$($1_REMOTE) \
537	    -j $(JOBS) \
538	    --permit-unidentified-artifacts \
539	    --permit-sources-without-package \
540	    --compare-found-sources $$($1_BIN)/_the.$1_batch.tmp \
541	    --log=$(LOG_LEVEL) \
542	    $$($1_SJAVAC_ARGS) \
543	    $$($1_FLAGS) \
544	    $$($1_HEADERS_ARG) \
545	    -d $$($1_BIN) && \
546	$(MV) $$($1_BIN)/_the.$1_batch.tmp $$($1_BIN)/_the.$1_batch)
547  else
548    # Using plain javac to batch compile everything.
549    $1 := $$($1_ALL_COPY_TARGETS) $$($1_ALL_COPY_CLEAN_TARGETS) $$($1_BIN)/_the.$1_batch
550
551    # When building in batch, put headers in a temp dir to filter out those that actually
552    # changed before copying them to the real header dir.
553    ifneq (,$$($1_HEADERS))
554      $1_HEADERS_ARG := -h $$($1_HEADERS).$1.tmp
555
556      $$($1_HEADERS)/_the.$1_headers: $$($1_BIN)/_the.$1_batch
557		$(MKDIR) -p $$(@D)
558		for f in `ls $$($1_HEADERS).$1.tmp`; do \
559		  if [ ! -f "$$($1_HEADERS)/$$$$f" ] || [ "`$(DIFF) $$($1_HEADERS)/$$$$f $$($1_HEADERS).$1.tmp/$$$$f`" != "" ]; then \
560		    $(CP) -f $$($1_HEADERS).$1.tmp/$$$$f $$($1_HEADERS)/$$$$f; \
561		  fi; \
562		done
563		$(RM) -r $$($1_HEADERS).$1.tmp
564		$(TOUCH) $$@
565
566      $1 += $$($1_HEADERS)/_the.$1_headers
567    endif
568
569    # When not using sjavac, pass along all sources to javac using an @file.
570    $$($1_BIN)/_the.$1_batch: $$($1_SRCS) $$($1_DEPENDS)
571	$(MKDIR) -p $$(@D)
572	$(RM) $$($1_BIN)/_the.$1_batch $$($1_BIN)/_the.$1_batch.tmp
573	$$(call ListPathsSafely,$1_SRCS,\n, >> $$($1_BIN)/_the.$1_batch.tmp)
574	$(ECHO) Compiling `$(WC) $$($1_BIN)/_the.$1_batch.tmp | $(TR) -s ' ' | $(CUT) -f 2 -d ' '` files for $1
575	($$($1_JVM) $$($1_JAVAC) $$($1_FLAGS) \
576	    -implicit:none -sourcepath "$$($1_SRCROOTSC)" \
577	    -d $$($1_BIN) $$($1_HEADERS_ARG) @$$($1_BIN)/_the.$1_batch.tmp && \
578	$(MV) $$($1_BIN)/_the.$1_batch.tmp $$($1_BIN)/_the.$1_batch)
579
580  endif
581
582  # Check if a jar file was specified, then setup the rules for the jar.
583  ifneq (,$$($1_JAR))
584    # If no suffixes was explicitly set for this jar file.
585    # Use class and the cleaned/copied properties file suffixes as the default
586    # for the types of files to be put into the jar.
587    ifeq (,$$($1_SUFFIXES))
588      $1_SUFFIXES:=.class $$($1_CLEAN) $$($1_COPY)
589    endif
590
591    $$(eval $$(call SetupArchive,ARCHIVE_$1,$$($1), \
592        SRCS:=$$($1_BIN), \
593        SUFFIXES:=$$($1_SUFFIXES), \
594        EXCLUDE:=$$($1_EXCLUDES), \
595        INCLUDES:=$$($1_INCLUDES), \
596        EXTRA_FILES:=$$($1_ALL_COPY_TARGETS) $$($1_ALL_COPY_CLEAN_TARGETS), \
597        JAR:=$$($1_JAR), \
598        JARMAIN:=$$($1_JARMAIN), \
599        MANIFEST:=$$($1_MANIFEST), \
600        EXTRA_MANIFEST_ATTR:=$$($1_EXTRA_MANIFEST_ATTR), \
601        JARINDEX:=$$($1_JARINDEX), \
602        HEADERS:=$$($1_HEADERS), \
603        SETUP:=$$($1_SETUP)))
604
605    # Add jar to target list
606    $1 += $$($1_JAR)
607  endif
608
609  # Check if a srczip was specified, then setup the rules for the srczip.
610  ifneq (,$$($1_SRCZIP))
611    $$(eval $$(call SetupZipArchive,ARCHIVE_$1, \
612        SRC:=$$($1_SRC), \
613        ZIP:=$$($1_SRCZIP), \
614        INCLUDES:=$$($1_INCLUDES), \
615        EXCLUDES:=$$($1_EXCLUDES), \
616        EXCLUDE_FILES:=$$($1_EXCLUDE_FILES)))
617
618    # Add zip to target list
619    $1 += $$($1_SRCZIP)
620  endif
621endef
622