blob: 40f72e107c0637463826c8738f10eee57cbf044b [file] [log] [blame]
Colin Cross2fe66872015-03-30 17:20:39 -07001// Copyright 2015 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package java
16
17// This file generates the final rules for compiling all Java. All properties related to
18// compiling should have been translated into javaBuilderFlags or another argument to the Transform*
19// functions.
20
21import (
Nan Zhang61eaedb2017-11-02 13:28:15 -070022 "path/filepath"
23 "strconv"
Colin Cross2fe66872015-03-30 17:20:39 -070024 "strings"
25
Colin Cross2fe66872015-03-30 17:20:39 -070026 "github.com/google/blueprint"
Colin Crossfe4bc362018-09-12 10:02:13 -070027 "github.com/google/blueprint/proptools"
Colin Crossfee57cb2017-09-05 13:16:45 -070028
29 "android/soong/android"
Colin Cross2fe66872015-03-30 17:20:39 -070030)
31
32var (
Colin Cross635c3b02016-05-18 15:37:25 -070033 pctx = android.NewPackageContext("android/soong/java")
Colin Cross2fe66872015-03-30 17:20:39 -070034
35 // Compiling java is not conducive to proper dependency tracking. The path-matches-class-name
36 // requirement leads to unpredictable generated source file names, and a single .java file
37 // will get compiled into multiple .class files if it contains inner classes. To work around
Colin Crossf7eac7a2018-02-08 12:48:39 -080038 // this, all java rules write into separate directories and then are combined into a .jar file
39 // (if the rule produces .class files) or a .srcjar file (if the rule produces .java files).
40 // .srcjar files are unzipped into a temporary directory when compiled with javac.
Yoshisato Yanagisawa572324a2017-06-05 17:41:50 +090041 javac = pctx.AndroidGomaStaticRule("javac",
Colin Cross2fe66872015-03-30 17:20:39 -070042 blueprint.RuleParams{
Colin Cross8eadbf02017-10-24 17:46:00 -070043 Command: `rm -rf "$outDir" "$annoDir" "$srcJarDir" && mkdir -p "$outDir" "$annoDir" "$srcJarDir" && ` +
Colin Cross436b7652018-03-15 16:24:10 -070044 `${config.ZipSyncCmd} -d $srcJarDir -l $srcJarDir/list -f "*.java" $srcJars && ` +
Sundong Ahn24a099c2018-06-28 14:53:20 +090045 `(if [ -s $srcJarDir/list ] || [ -s $out.rsp ] ; then ` +
Colin Crossa4820652017-10-17 13:56:52 -070046 `${config.SoongJavacWrapper} ${config.JavacWrapper}${config.JavacCmd} ${config.JavacHeapFlags} ${config.CommonJdkFlags} ` +
Colin Cross6a77c982018-06-19 22:43:34 -070047 `$processorpath $javacFlags $bootClasspath $classpath ` +
Colin Cross64162712017-08-08 13:17:59 -070048 `-source $javaVersion -target $javaVersion ` +
Sundong Ahn24a099c2018-06-28 14:53:20 +090049 `-d $outDir -s $annoDir @$out.rsp @$srcJarDir/list ; fi ) && ` +
Colin Cross0a6e0072017-08-30 14:24:55 -070050 `${config.SoongZipCmd} -jar -o $out -C $outDir -D $outDir`,
Colin Cross8eadbf02017-10-24 17:46:00 -070051 CommandDeps: []string{
52 "${config.JavacCmd}",
53 "${config.SoongZipCmd}",
Colin Cross436b7652018-03-15 16:24:10 -070054 "${config.ZipSyncCmd}",
Colin Cross8eadbf02017-10-24 17:46:00 -070055 },
Colin Crossa4820652017-10-17 13:56:52 -070056 CommandOrderOnly: []string{"${config.SoongJavacWrapper}"},
57 Rspfile: "$out.rsp",
58 RspfileContent: "$in",
Colin Cross2fe66872015-03-30 17:20:39 -070059 },
Colin Cross6a77c982018-06-19 22:43:34 -070060 "javacFlags", "bootClasspath", "classpath", "processorpath", "srcJars", "srcJarDir",
Colin Cross8eadbf02017-10-24 17:46:00 -070061 "outDir", "annoDir", "javaVersion")
Colin Cross2fe66872015-03-30 17:20:39 -070062
Nan Zhanged19fc32017-10-19 13:06:22 -070063 turbine = pctx.AndroidStaticRule("turbine",
64 blueprint.RuleParams{
Colin Cross6981f652018-03-07 15:14:50 -080065 Command: `rm -rf "$outDir" && mkdir -p "$outDir" && ` +
Nan Zhanged19fc32017-10-19 13:06:22 -070066 `${config.JavaCmd} -jar ${config.TurbineJar} --output $out.tmp ` +
Colin Cross6981f652018-03-07 15:14:50 -080067 `--temp_dir "$outDir" --sources @$out.rsp --source_jars $srcJars ` +
Nan Zhanged19fc32017-10-19 13:06:22 -070068 `--javacopts ${config.CommonJdkFlags} ` +
Colin Cross924a0aa2018-03-07 10:51:05 -080069 `$javacFlags -source $javaVersion -target $javaVersion -- $bootClasspath $classpath && ` +
Nan Zhanged19fc32017-10-19 13:06:22 -070070 `${config.Ziptime} $out.tmp && ` +
71 `(if cmp -s $out.tmp $out ; then rm $out.tmp ; else mv $out.tmp $out ; fi )`,
Colin Cross8eadbf02017-10-24 17:46:00 -070072 CommandDeps: []string{
73 "${config.TurbineJar}",
74 "${config.JavaCmd}",
75 "${config.Ziptime}",
Colin Cross8eadbf02017-10-24 17:46:00 -070076 },
Nan Zhanged19fc32017-10-19 13:06:22 -070077 Rspfile: "$out.rsp",
78 RspfileContent: "$in",
79 Restat: true,
80 },
Colin Cross6981f652018-03-07 15:14:50 -080081 "javacFlags", "bootClasspath", "classpath", "srcJars", "outDir", "javaVersion")
Nan Zhanged19fc32017-10-19 13:06:22 -070082
Colin Cross9d45bb72016-08-29 16:14:13 -070083 jar = pctx.AndroidStaticRule("jar",
Colin Cross2fe66872015-03-30 17:20:39 -070084 blueprint.RuleParams{
Nan Zhang674dd932018-01-26 18:30:36 -080085 Command: `${config.SoongZipCmd} -jar -o $out @$out.rsp`,
86 CommandDeps: []string{"${config.SoongZipCmd}"},
87 Rspfile: "$out.rsp",
88 RspfileContent: "$jarArgs",
Colin Cross2fe66872015-03-30 17:20:39 -070089 },
Colin Cross0a6e0072017-08-30 14:24:55 -070090 "jarArgs")
91
Colin Crossa4f08812018-10-02 22:03:40 -070092 zip = pctx.AndroidStaticRule("zip",
93 blueprint.RuleParams{
94 Command: `${config.SoongZipCmd} -o $out @$out.rsp`,
95 CommandDeps: []string{"${config.SoongZipCmd}"},
96 Rspfile: "$out.rsp",
97 RspfileContent: "$jarArgs",
98 },
99 "jarArgs")
100
Colin Cross0a6e0072017-08-30 14:24:55 -0700101 combineJar = pctx.AndroidStaticRule("combineJar",
102 blueprint.RuleParams{
Colin Crossf91a08c2018-02-07 15:41:31 -0800103 Command: `${config.MergeZipsCmd} --ignore-duplicates -j $jarArgs $out $in`,
Colin Cross0a6e0072017-08-30 14:24:55 -0700104 CommandDeps: []string{"${config.MergeZipsCmd}"},
105 },
Colin Cross635acc92017-09-12 22:50:46 -0700106 "jarArgs")
Colin Cross2fe66872015-03-30 17:20:39 -0700107
Colin Cross9d45bb72016-08-29 16:14:13 -0700108 jarjar = pctx.AndroidStaticRule("jarjar",
Colin Cross65bf4f22015-04-03 16:54:17 -0700109 blueprint.RuleParams{
Colin Cross64162712017-08-08 13:17:59 -0700110 Command: "${config.JavaCmd} -jar ${config.JarjarCmd} process $rulesFile $in $out",
111 CommandDeps: []string{"${config.JavaCmd}", "${config.JarjarCmd}", "$rulesFile"},
Colin Cross65bf4f22015-04-03 16:54:17 -0700112 },
113 "rulesFile")
Nan Zhang4c819fb2018-08-27 18:31:46 -0700114
115 jetifier = pctx.AndroidStaticRule("jetifier",
116 blueprint.RuleParams{
117 Command: "${config.JavaCmd} -jar ${config.JetifierJar} -l error -o $out -i $in",
118 CommandDeps: []string{"${config.JavaCmd}", "${config.JetifierJar}"},
119 },
120 )
Colin Cross43f08db2018-11-12 10:13:39 -0800121
122 zipalign = pctx.AndroidStaticRule("zipalign",
123 blueprint.RuleParams{
124 Command: "if ! ${config.ZipAlign} -c 4 $in > /dev/null; then " +
125 "${config.ZipAlign} -f 4 $in $out; " +
126 "else " +
127 "cp -f $in $out; " +
128 "fi",
129 CommandDeps: []string{"${config.ZipAlign}"},
130 },
131 )
Colin Cross2fe66872015-03-30 17:20:39 -0700132)
133
134func init() {
Colin Cross3063b782018-08-15 11:19:12 -0700135 pctx.Import("android/soong/common")
Colin Cross64162712017-08-08 13:17:59 -0700136 pctx.Import("android/soong/java/config")
Colin Cross2fe66872015-03-30 17:20:39 -0700137}
138
139type javaBuilderFlags struct {
140 javacFlags string
Colin Cross6ade34f2017-09-15 13:00:47 -0700141 bootClasspath classpath
142 classpath classpath
Colin Cross6a77c982018-06-19 22:43:34 -0700143 processorPath classpath
Colin Cross1369cdb2017-09-29 17:58:17 -0700144 systemModules classpath
Colin Crossc0b06f12015-04-08 13:03:43 -0700145 aidlFlags string
Colin Cross64162712017-08-08 13:17:59 -0700146 javaVersion string
Colin Cross6af17aa2017-09-20 12:59:05 -0700147
Andreas Gampef3e5b552018-01-22 21:27:21 -0800148 errorProneExtraJavacFlags string
Colin Cross66548102018-06-19 22:47:35 -0700149 errorProneProcessorPath classpath
Andreas Gampef3e5b552018-01-22 21:27:21 -0800150
Colin Cross93e85952017-08-15 13:34:18 -0700151 kotlincFlags string
152 kotlincClasspath classpath
153
Joe Onorato09e94ab2017-11-18 18:23:14 -0800154 protoFlags []string
155 protoOutTypeFlag string // The flag itself: --java_out
156 protoOutParams string // Parameters to that flag: --java_out=$protoOutParams:$outDir
Dan Willemsenab9f4262018-02-14 13:58:34 -0800157 protoRoot bool
Colin Cross2fe66872015-03-30 17:20:39 -0700158}
159
Nan Zhang61eaedb2017-11-02 13:28:15 -0700160func TransformJavaToClasses(ctx android.ModuleContext, outputFile android.WritablePath, shardIdx int,
161 srcFiles, srcJars android.Paths, flags javaBuilderFlags, deps android.Paths) {
Colin Cross2fe66872015-03-30 17:20:39 -0700162
Nan Zhang61eaedb2017-11-02 13:28:15 -0700163 // Compile java sources into .class files
164 desc := "javac"
165 if shardIdx >= 0 {
166 desc += strconv.Itoa(shardIdx)
167 }
168
Colin Cross66548102018-06-19 22:47:35 -0700169 transformJavaToClasses(ctx, outputFile, shardIdx, srcFiles, srcJars, flags, deps, "javac", desc)
Colin Cross2fe66872015-03-30 17:20:39 -0700170}
171
Colin Crosse9a275b2017-10-16 17:09:48 -0700172func RunErrorProne(ctx android.ModuleContext, outputFile android.WritablePath,
Colin Cross8eadbf02017-10-24 17:46:00 -0700173 srcFiles, srcJars android.Paths, flags javaBuilderFlags) {
Colin Crossc6bbef32017-08-14 14:16:06 -0700174
Colin Cross66548102018-06-19 22:47:35 -0700175 flags.processorPath = append(flags.errorProneProcessorPath, flags.processorPath...)
Colin Crossfee57cb2017-09-05 13:16:45 -0700176
Andreas Gampef3e5b552018-01-22 21:27:21 -0800177 if len(flags.errorProneExtraJavacFlags) > 0 {
178 if len(flags.javacFlags) > 0 {
Colin Cross66548102018-06-19 22:47:35 -0700179 flags.javacFlags += " " + flags.errorProneExtraJavacFlags
Andreas Gampef3e5b552018-01-22 21:27:21 -0800180 } else {
181 flags.javacFlags = flags.errorProneExtraJavacFlags
182 }
183 }
184
Nan Zhang61eaedb2017-11-02 13:28:15 -0700185 transformJavaToClasses(ctx, outputFile, -1, srcFiles, srcJars, flags, nil,
Colin Cross66548102018-06-19 22:47:35 -0700186 "errorprone", "errorprone")
Colin Cross070879e2017-10-11 11:21:07 -0700187}
188
Nan Zhanged19fc32017-10-19 13:06:22 -0700189func TransformJavaToHeaderClasses(ctx android.ModuleContext, outputFile android.WritablePath,
Colin Cross8eadbf02017-10-24 17:46:00 -0700190 srcFiles, srcJars android.Paths, flags javaBuilderFlags) {
Nan Zhanged19fc32017-10-19 13:06:22 -0700191
192 var deps android.Paths
193 deps = append(deps, srcJars...)
194 deps = append(deps, flags.bootClasspath...)
195 deps = append(deps, flags.classpath...)
196
197 var bootClasspath string
198 if len(flags.bootClasspath) == 0 && ctx.Device() {
199 // explicitly specify -bootclasspath "" if the bootclasspath is empty to
200 // ensure java does not fall back to the default bootclasspath.
201 bootClasspath = `--bootclasspath ""`
202 } else {
Colin Crossafbb1732019-01-17 15:42:52 -0800203 bootClasspath = strings.Join(flags.bootClasspath.FormTurbineClasspath("--bootclasspath "), " ")
Nan Zhanged19fc32017-10-19 13:06:22 -0700204 }
Colin Cross8eadbf02017-10-24 17:46:00 -0700205
Colin Crossae887032017-10-23 17:16:14 -0700206 ctx.Build(pctx, android.BuildParams{
Nan Zhanged19fc32017-10-19 13:06:22 -0700207 Rule: turbine,
208 Description: "turbine",
209 Output: outputFile,
210 Inputs: srcFiles,
211 Implicits: deps,
212 Args: map[string]string{
213 "javacFlags": flags.javacFlags,
214 "bootClasspath": bootClasspath,
Colin Cross8eadbf02017-10-24 17:46:00 -0700215 "srcJars": strings.Join(srcJars.Strings(), " "),
Colin Crossafbb1732019-01-17 15:42:52 -0800216 "classpath": strings.Join(flags.classpath.FormTurbineClasspath("--classpath "), " "),
Nan Zhanged19fc32017-10-19 13:06:22 -0700217 "outDir": android.PathForModuleOut(ctx, "turbine", "classes").String(),
218 "javaVersion": flags.javaVersion,
219 },
220 })
221}
222
Colin Cross070879e2017-10-11 11:21:07 -0700223// transformJavaToClasses takes source files and converts them to a jar containing .class files.
Colin Cross59149b62017-10-16 18:07:29 -0700224// srcFiles is a list of paths to sources, srcJars is a list of paths to jar files that contain
225// sources. flags contains various command line flags to be passed to the compiler.
Colin Cross070879e2017-10-11 11:21:07 -0700226//
227// This method may be used for different compilers, including javac and Error Prone. The rule
228// argument specifies which command line to use and desc sets the description of the rule that will
229// be printed at build time. The stem argument provides the file name of the output jar, and
230// suffix will be appended to various intermediate files and directories to avoid collisions when
231// this function is called twice in the same module directory.
Colin Crosse9a275b2017-10-16 17:09:48 -0700232func transformJavaToClasses(ctx android.ModuleContext, outputFile android.WritablePath,
Nan Zhang61eaedb2017-11-02 13:28:15 -0700233 shardIdx int, srcFiles, srcJars android.Paths,
Colin Crosse9a275b2017-10-16 17:09:48 -0700234 flags javaBuilderFlags, deps android.Paths,
Colin Cross66548102018-06-19 22:47:35 -0700235 intermediatesDir, desc string) {
Colin Crossc6bbef32017-08-14 14:16:06 -0700236
Colin Cross59149b62017-10-16 18:07:29 -0700237 deps = append(deps, srcJars...)
Colin Cross1369cdb2017-09-29 17:58:17 -0700238
239 var bootClasspath string
240 if flags.javaVersion == "1.9" {
241 deps = append(deps, flags.systemModules...)
Nan Zhanged19fc32017-10-19 13:06:22 -0700242 bootClasspath = flags.systemModules.FormJavaSystemModulesPath("--system=", ctx.Device())
Colin Cross1369cdb2017-09-29 17:58:17 -0700243 } else {
244 deps = append(deps, flags.bootClasspath...)
Nan Zhanged19fc32017-10-19 13:06:22 -0700245 if len(flags.bootClasspath) == 0 && ctx.Device() {
246 // explicitly specify -bootclasspath "" if the bootclasspath is empty to
247 // ensure java does not fall back to the default bootclasspath.
248 bootClasspath = `-bootclasspath ""`
249 } else {
250 bootClasspath = flags.bootClasspath.FormJavaClassPath("-bootclasspath")
251 }
Colin Cross1369cdb2017-09-29 17:58:17 -0700252 }
253
Colin Cross6ade34f2017-09-15 13:00:47 -0700254 deps = append(deps, flags.classpath...)
Colin Cross6a77c982018-06-19 22:43:34 -0700255 deps = append(deps, flags.processorPath...)
Colin Crossc6bbef32017-08-14 14:16:06 -0700256
Nan Zhang61eaedb2017-11-02 13:28:15 -0700257 srcJarDir := "srcjars"
258 outDir := "classes"
259 annoDir := "anno"
260 if shardIdx >= 0 {
261 shardDir := "shard" + strconv.Itoa(shardIdx)
262 srcJarDir = filepath.Join(shardDir, srcJarDir)
263 outDir = filepath.Join(shardDir, outDir)
264 annoDir = filepath.Join(shardDir, annoDir)
265 }
Colin Crossae887032017-10-23 17:16:14 -0700266 ctx.Build(pctx, android.BuildParams{
Colin Cross66548102018-06-19 22:47:35 -0700267 Rule: javac,
Colin Cross070879e2017-10-11 11:21:07 -0700268 Description: desc,
269 Output: outputFile,
Colin Crossc6bbef32017-08-14 14:16:06 -0700270 Inputs: srcFiles,
271 Implicits: deps,
272 Args: map[string]string{
Colin Cross59149b62017-10-16 18:07:29 -0700273 "javacFlags": flags.javacFlags,
Colin Cross1369cdb2017-09-29 17:58:17 -0700274 "bootClasspath": bootClasspath,
Colin Cross8eadbf02017-10-24 17:46:00 -0700275 "classpath": flags.classpath.FormJavaClassPath("-classpath"),
Colin Cross6a77c982018-06-19 22:43:34 -0700276 "processorpath": flags.processorPath.FormJavaClassPath("-processorpath"),
Colin Cross8eadbf02017-10-24 17:46:00 -0700277 "srcJars": strings.Join(srcJars.Strings(), " "),
Nan Zhang61eaedb2017-11-02 13:28:15 -0700278 "srcJarDir": android.PathForModuleOut(ctx, intermediatesDir, srcJarDir).String(),
279 "outDir": android.PathForModuleOut(ctx, intermediatesDir, outDir).String(),
280 "annoDir": android.PathForModuleOut(ctx, intermediatesDir, annoDir).String(),
Colin Cross8eadbf02017-10-24 17:46:00 -0700281 "javaVersion": flags.javaVersion,
Colin Crossc6bbef32017-08-14 14:16:06 -0700282 },
283 })
Colin Crossc6bbef32017-08-14 14:16:06 -0700284}
285
Colin Crosse9a275b2017-10-16 17:09:48 -0700286func TransformResourcesToJar(ctx android.ModuleContext, outputFile android.WritablePath,
287 jarArgs []string, deps android.Paths) {
Colin Cross2fe66872015-03-30 17:20:39 -0700288
Colin Crossae887032017-10-23 17:16:14 -0700289 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700290 Rule: jar,
291 Description: "jar",
292 Output: outputFile,
293 Implicits: deps,
Colin Cross2fe66872015-03-30 17:20:39 -0700294 Args: map[string]string{
Colin Cross1d98ee22018-09-18 17:05:15 -0700295 "jarArgs": strings.Join(proptools.NinjaAndShellEscape(jarArgs), " "),
Colin Cross2fe66872015-03-30 17:20:39 -0700296 },
297 })
Colin Cross2fe66872015-03-30 17:20:39 -0700298}
299
Nan Zhanged19fc32017-10-19 13:06:22 -0700300func TransformJarsToJar(ctx android.ModuleContext, outputFile android.WritablePath, desc string,
Colin Cross37f6d792018-07-12 12:28:41 -0700301 jars android.Paths, manifest android.OptionalPath, stripDirEntries bool, filesToStrip []string,
302 dirsToStrip []string) {
Colin Cross0a6e0072017-08-30 14:24:55 -0700303
Colin Cross635acc92017-09-12 22:50:46 -0700304 var deps android.Paths
305
306 var jarArgs []string
307 if manifest.Valid() {
Nan Zhanged19fc32017-10-19 13:06:22 -0700308 jarArgs = append(jarArgs, "-m ", manifest.String())
Colin Cross635acc92017-09-12 22:50:46 -0700309 deps = append(deps, manifest.Path())
310 }
311
Colin Cross37f6d792018-07-12 12:28:41 -0700312 for _, dir := range dirsToStrip {
313 jarArgs = append(jarArgs, "-stripDir ", dir)
314 }
315
316 for _, file := range filesToStrip {
317 jarArgs = append(jarArgs, "-stripFile ", file)
Nan Zhanged19fc32017-10-19 13:06:22 -0700318 }
319
Colin Cross7b60cdd2017-12-21 13:52:58 -0800320 // Remove any module-info.class files that may have come from prebuilt jars, they cause problems
321 // for downstream tools like desugar.
322 jarArgs = append(jarArgs, "-stripFile module-info.class")
323
Colin Cross37f6d792018-07-12 12:28:41 -0700324 if stripDirEntries {
Colin Cross635acc92017-09-12 22:50:46 -0700325 jarArgs = append(jarArgs, "-D")
326 }
327
Colin Crossae887032017-10-23 17:16:14 -0700328 ctx.Build(pctx, android.BuildParams{
Colin Cross0a6e0072017-08-30 14:24:55 -0700329 Rule: combineJar,
Nan Zhanged19fc32017-10-19 13:06:22 -0700330 Description: desc,
Colin Cross0a6e0072017-08-30 14:24:55 -0700331 Output: outputFile,
332 Inputs: jars,
Colin Cross635acc92017-09-12 22:50:46 -0700333 Implicits: deps,
334 Args: map[string]string{
335 "jarArgs": strings.Join(jarArgs, " "),
336 },
Colin Cross0a6e0072017-08-30 14:24:55 -0700337 })
Colin Cross0a6e0072017-08-30 14:24:55 -0700338}
339
Colin Crosse9a275b2017-10-16 17:09:48 -0700340func TransformJarJar(ctx android.ModuleContext, outputFile android.WritablePath,
341 classesJar android.Path, rulesFile android.Path) {
Colin Crossae887032017-10-23 17:16:14 -0700342 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700343 Rule: jarjar,
344 Description: "jarjar",
345 Output: outputFile,
346 Input: classesJar,
347 Implicit: rulesFile,
Colin Cross65bf4f22015-04-03 16:54:17 -0700348 Args: map[string]string{
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700349 "rulesFile": rulesFile.String(),
Colin Cross65bf4f22015-04-03 16:54:17 -0700350 },
351 })
Colin Cross65bf4f22015-04-03 16:54:17 -0700352}
Colin Cross6ade34f2017-09-15 13:00:47 -0700353
Nan Zhang4c819fb2018-08-27 18:31:46 -0700354func TransformJetifier(ctx android.ModuleContext, outputFile android.WritablePath,
355 inputFile android.Path) {
356 ctx.Build(pctx, android.BuildParams{
357 Rule: jetifier,
358 Description: "jetifier",
359 Output: outputFile,
360 Input: inputFile,
361 })
362}
363
Colin Cross094054a2018-10-17 15:10:48 -0700364func GenerateMainClassManifest(ctx android.ModuleContext, outputFile android.WritablePath, mainClass string) {
365 ctx.Build(pctx, android.BuildParams{
366 Rule: android.WriteFile,
367 Description: "manifest",
368 Output: outputFile,
369 Args: map[string]string{
370 "content": "Main-Class: " + mainClass + "\n",
371 },
372 })
373}
374
Colin Cross43f08db2018-11-12 10:13:39 -0800375func TransformZipAlign(ctx android.ModuleContext, outputFile android.WritablePath, inputFile android.Path) {
376 ctx.Build(pctx, android.BuildParams{
377 Rule: zipalign,
378 Description: "align",
379 Input: inputFile,
380 Output: outputFile,
381 })
382}
383
Colin Cross6ade34f2017-09-15 13:00:47 -0700384type classpath []android.Path
385
Nan Zhanged19fc32017-10-19 13:06:22 -0700386func (x *classpath) FormJavaClassPath(optName string) string {
Colin Cross81440082018-08-15 20:21:55 -0700387 if optName != "" && !strings.HasSuffix(optName, "=") && !strings.HasSuffix(optName, " ") {
388 optName += " "
389 }
Colin Cross59149b62017-10-16 18:07:29 -0700390 if len(*x) > 0 {
Colin Cross81440082018-08-15 20:21:55 -0700391 return optName + strings.Join(x.Strings(), ":")
Colin Cross6ade34f2017-09-15 13:00:47 -0700392 } else {
393 return ""
394 }
395}
396
Colin Cross1369cdb2017-09-29 17:58:17 -0700397// Returns a --system argument in the form javac expects with -source 1.9. If forceEmpty is true,
398// returns --system=none if the list is empty to ensure javac does not fall back to the default
399// system modules.
Nan Zhanged19fc32017-10-19 13:06:22 -0700400func (x *classpath) FormJavaSystemModulesPath(optName string, forceEmpty bool) string {
Colin Cross1369cdb2017-09-29 17:58:17 -0700401 if len(*x) > 1 {
402 panic("more than one system module")
403 } else if len(*x) == 1 {
Nan Zhanged19fc32017-10-19 13:06:22 -0700404 return optName + strings.TrimSuffix((*x)[0].String(), "lib/modules")
Colin Cross1369cdb2017-09-29 17:58:17 -0700405 } else if forceEmpty {
Nan Zhanged19fc32017-10-19 13:06:22 -0700406 return optName + "none"
Colin Cross1369cdb2017-09-29 17:58:17 -0700407 } else {
408 return ""
409 }
410}
411
Colin Crossbafb8972018-06-06 21:46:32 +0000412func (x *classpath) FormTurbineClasspath(optName string) []string {
Colin Cross6ade34f2017-09-15 13:00:47 -0700413 if x == nil || *x == nil {
414 return nil
415 }
416 flags := make([]string, len(*x))
417 for i, v := range *x {
Colin Crossafbb1732019-01-17 15:42:52 -0800418 flags[i] = optName + v.String()
Colin Cross6ade34f2017-09-15 13:00:47 -0700419 }
420
421 return flags
422}
423
Colin Cross6ade34f2017-09-15 13:00:47 -0700424// Convert a classpath to an android.Paths
425func (x *classpath) Paths() android.Paths {
426 return append(android.Paths(nil), (*x)...)
427}
428
429func (x *classpath) Strings() []string {
430 if x == nil {
431 return nil
432 }
433 ret := make([]string, len(*x))
434 for i, path := range *x {
435 ret[i] = path.String()
436 }
437 return ret
438}