blob: d50a6653eb17ab65e569b35691e308da9f5f8d04 [file] [log] [blame]
Colin Crossc0b06f12015-04-08 13:03:43 -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
Colin Crossc0b06f12015-04-08 13:03:43 -070017import (
Colin Crossc0806172019-06-14 18:51:47 -070018 "strconv"
Jiyong Park29074592019-07-07 16:27:47 +090019 "strings"
20
Colin Crossc0b06f12015-04-08 13:03:43 -070021 "github.com/google/blueprint"
Colin Crossc0806172019-06-14 18:51:47 -070022 "github.com/google/blueprint/pathtools"
Colin Crossc0b06f12015-04-08 13:03:43 -070023
Colin Cross635c3b02016-05-18 15:37:25 -070024 "android/soong/android"
Colin Crossc0b06f12015-04-08 13:03:43 -070025)
26
27func init() {
Dan Willemsenaad19602019-04-07 09:44:35 -070028 pctx.SourcePathVariable("logtagsCmd", "build/make/tools/java-event-log-tags.py")
29 pctx.SourcePathVariable("mergeLogtagsCmd", "build/make/tools/merge-event-log-tags.py")
30 pctx.SourcePathVariable("logtagsLib", "build/make/tools/event_log_tags.py")
Colin Crossc0b06f12015-04-08 13:03:43 -070031}
32
33var (
Colin Cross9d45bb72016-08-29 16:14:13 -070034 logtags = pctx.AndroidStaticRule("logtags",
Colin Crossf05fe972015-04-10 17:45:20 -070035 blueprint.RuleParams{
Colin Crossb1bd1aa2017-11-15 22:47:16 -080036 Command: "$logtagsCmd -o $out $in",
Dan Willemsenaad19602019-04-07 09:44:35 -070037 CommandDeps: []string{"$logtagsCmd", "$logtagsLib"},
Colin Crossf05fe972015-04-10 17:45:20 -070038 })
39
Colin Cross9d45bb72016-08-29 16:14:13 -070040 mergeLogtags = pctx.AndroidStaticRule("mergeLogtags",
Colin Crossf05fe972015-04-10 17:45:20 -070041 blueprint.RuleParams{
42 Command: "$mergeLogtagsCmd -o $out $in",
Dan Willemsenaad19602019-04-07 09:44:35 -070043 CommandDeps: []string{"$mergeLogtagsCmd", "$logtagsLib"},
Colin Crossf05fe972015-04-10 17:45:20 -070044 })
Colin Crossc0b06f12015-04-08 13:03:43 -070045)
46
Colin Crossc0806172019-06-14 18:51:47 -070047func genAidl(ctx android.ModuleContext, aidlFiles android.Paths, aidlFlags string, deps android.Paths) android.Paths {
48 // Shard aidl files into groups of 50 to avoid having to recompile all of them if one changes and to avoid
49 // hitting command line length limits.
50 shards := android.ShardPaths(aidlFiles, 50)
Colin Crossc0b06f12015-04-08 13:03:43 -070051
Colin Crossc0806172019-06-14 18:51:47 -070052 srcJarFiles := make(android.Paths, 0, len(shards))
Colin Crossc0b06f12015-04-08 13:03:43 -070053
Colin Crossc0806172019-06-14 18:51:47 -070054 for i, shard := range shards {
55 srcJarFile := android.PathForModuleGen(ctx, "aidl", "aidl"+strconv.Itoa(i)+".srcjar")
56 srcJarFiles = append(srcJarFiles, srcJarFile)
57
58 outDir := srcJarFile.ReplaceExtension(ctx, "tmp")
59
60 rule := android.NewRuleBuilder()
61
62 rule.Command().Text("rm -rf").Flag(outDir.String())
63 rule.Command().Text("mkdir -p").Flag(outDir.String())
64 rule.Command().Text("FLAGS=' " + aidlFlags + "'")
65
66 for _, aidlFile := range shard {
67 depFile := srcJarFile.InSameDir(ctx, aidlFile.String()+".d")
68 javaFile := outDir.Join(ctx, pathtools.ReplaceExtension(aidlFile.String(), "java"))
69 rule.Command().
70 Tool(ctx.Config().HostToolPath(ctx, "aidl")).
71 FlagWithDepFile("-d", depFile).
72 Flag("$FLAGS").
73 Input(aidlFile).
74 Output(javaFile).
75 Implicits(deps)
76 rule.Temporary(javaFile)
77 }
78
79 rule.Command().
80 Tool(ctx.Config().HostToolPath(ctx, "soong_zip")).
81 // TODO(b/124333557): this can't use -srcjar for now, aidl on parcelables generates java files
82 // without a package statement, which causes -srcjar to put them in the top level of the zip file.
83 // Once aidl skips parcelables we can use -srcjar.
84 //Flag("-srcjar").
85 Flag("-write_if_changed").
86 FlagWithOutput("-o ", srcJarFile).
87 FlagWithArg("-C ", outDir.String()).
88 FlagWithArg("-D ", outDir.String())
89
90 rule.Command().Text("rm -rf").Flag(outDir.String())
91
92 rule.Restat()
93
94 ruleName := "aidl"
95 ruleDesc := "aidl"
96 if len(shards) > 1 {
97 ruleName += "_" + strconv.Itoa(i)
98 ruleDesc += " " + strconv.Itoa(i)
99 }
100
101 rule.Build(pctx, ctx, ruleName, ruleDesc)
102 }
103
104 return srcJarFiles
Colin Crossc0b06f12015-04-08 13:03:43 -0700105}
106
Colin Cross635c3b02016-05-18 15:37:25 -0700107func genLogtags(ctx android.ModuleContext, logtagsFile android.Path) android.Path {
Dan Willemsen21ec4902016-11-02 20:43:13 -0700108 javaFile := android.GenPathWithExt(ctx, "logtags", logtagsFile, "java")
Colin Crossf05fe972015-04-10 17:45:20 -0700109
Colin Crossae887032017-10-23 17:16:14 -0700110 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700111 Rule: logtags,
112 Description: "logtags " + logtagsFile.Rel(),
113 Output: javaFile,
114 Input: logtagsFile,
Colin Crossf05fe972015-04-10 17:45:20 -0700115 })
116
117 return javaFile
118}
119
Jiyong Park1112c4c2019-08-16 21:12:10 +0900120func genAidlIncludeFlags(srcFiles android.Paths) string {
121 var baseDirs []string
122 for _, srcFile := range srcFiles {
123 if srcFile.Ext() == ".aidl" {
124 baseDir := strings.TrimSuffix(srcFile.String(), srcFile.Rel())
125 if baseDir != "" && !android.InList(baseDir, baseDirs) {
126 baseDirs = append(baseDirs, baseDir)
127 }
128 }
129 }
130 return android.JoinWithPrefix(baseDirs, " -I")
131}
132
Colin Cross46c9b8b2017-06-22 16:51:17 -0700133func (j *Module) genSources(ctx android.ModuleContext, srcFiles android.Paths,
Colin Crossaf050172017-11-15 23:01:59 -0800134 flags javaBuilderFlags) android.Paths {
Colin Crossc0b06f12015-04-08 13:03:43 -0700135
Colin Cross6af17aa2017-09-20 12:59:05 -0700136 outSrcFiles := make(android.Paths, 0, len(srcFiles))
Colin Cross9516a6c2019-06-14 18:51:12 -0700137 var protoSrcs android.Paths
Colin Crossc0806172019-06-14 18:51:47 -0700138 var aidlSrcs android.Paths
Colin Cross6af17aa2017-09-20 12:59:05 -0700139
Jiyong Park1112c4c2019-08-16 21:12:10 +0900140 aidlIncludeFlags := genAidlIncludeFlags(srcFiles)
141
Colin Cross6af17aa2017-09-20 12:59:05 -0700142 for _, srcFile := range srcFiles {
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700143 switch srcFile.Ext() {
Colin Crossc0b06f12015-04-08 13:03:43 -0700144 case ".aidl":
Colin Crossc0806172019-06-14 18:51:47 -0700145 aidlSrcs = append(aidlSrcs, srcFile)
Colin Crossf05fe972015-04-10 17:45:20 -0700146 case ".logtags":
147 j.logtagsSrcs = append(j.logtagsSrcs, srcFile)
148 javaFile := genLogtags(ctx, srcFile)
Colin Cross6af17aa2017-09-20 12:59:05 -0700149 outSrcFiles = append(outSrcFiles, javaFile)
150 case ".proto":
Colin Cross9516a6c2019-06-14 18:51:12 -0700151 protoSrcs = append(protoSrcs, srcFile)
Colin Cross6af17aa2017-09-20 12:59:05 -0700152 default:
153 outSrcFiles = append(outSrcFiles, srcFile)
Colin Crossc0b06f12015-04-08 13:03:43 -0700154 }
155 }
156
Colin Cross9516a6c2019-06-14 18:51:12 -0700157 // Process all proto files together to support sharding them into one or more rules that produce srcjars.
158 if len(protoSrcs) > 0 {
159 srcJarFiles := genProto(ctx, protoSrcs, flags.proto)
160 outSrcFiles = append(outSrcFiles, srcJarFiles...)
161 }
162
Colin Crossc0806172019-06-14 18:51:47 -0700163 // Process all aidl files together to support sharding them into one or more rules that produce srcjars.
164 if len(aidlSrcs) > 0 {
165 srcJarFiles := genAidl(ctx, aidlSrcs, flags.aidlFlags+aidlIncludeFlags, flags.aidlDeps)
166 outSrcFiles = append(outSrcFiles, srcJarFiles...)
167 }
168
Colin Crossaf050172017-11-15 23:01:59 -0800169 return outSrcFiles
Colin Crossc0b06f12015-04-08 13:03:43 -0700170}
Colin Crossf05fe972015-04-10 17:45:20 -0700171
Colin Cross0875c522017-11-28 17:34:01 -0800172func LogtagsSingleton() android.Singleton {
Colin Crossf05fe972015-04-10 17:45:20 -0700173 return &logtagsSingleton{}
174}
175
176type logtagsProducer interface {
Colin Cross635c3b02016-05-18 15:37:25 -0700177 logtags() android.Paths
Colin Crossf05fe972015-04-10 17:45:20 -0700178}
179
180type logtagsSingleton struct{}
181
Colin Cross0875c522017-11-28 17:34:01 -0800182func (l *logtagsSingleton) GenerateBuildActions(ctx android.SingletonContext) {
Colin Cross635c3b02016-05-18 15:37:25 -0700183 var allLogtags android.Paths
Colin Cross0875c522017-11-28 17:34:01 -0800184 ctx.VisitAllModules(func(module android.Module) {
Colin Crossf05fe972015-04-10 17:45:20 -0700185 if logtags, ok := module.(logtagsProducer); ok {
186 allLogtags = append(allLogtags, logtags.logtags()...)
187 }
188 })
189
Colin Cross0875c522017-11-28 17:34:01 -0800190 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700191 Rule: mergeLogtags,
192 Description: "merge logtags",
Colin Cross0875c522017-11-28 17:34:01 -0800193 Output: android.PathForIntermediates(ctx, "all-event-log-tags.txt"),
194 Inputs: allLogtags,
Colin Crossf05fe972015-04-10 17:45:20 -0700195 })
196}