blob: 923a263a283826ae8c13a078f968c4caa9bfb995 [file] [log] [blame]
Nan Zhang581fd212018-01-10 16:06:12 -08001// Copyright 2018 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
17import (
Nan Zhang581fd212018-01-10 16:06:12 -080018 "fmt"
Nan Zhangb2b33de2018-02-23 11:18:47 -080019 "path/filepath"
Nan Zhang581fd212018-01-10 16:06:12 -080020 "strings"
21
Paul Duffin13879572019-11-28 14:31:38 +000022 "github.com/google/blueprint"
Jeongik Cha6bd33c12019-06-25 16:26:18 +090023 "github.com/google/blueprint/proptools"
Nan Zhang581fd212018-01-10 16:06:12 -080024
Colin Crossab054432019-07-15 16:13:59 -070025 "android/soong/android"
26 "android/soong/java/config"
Ramy Medhat427683c2020-04-30 03:08:37 -040027 "android/soong/remoteexec"
Nan Zhang581fd212018-01-10 16:06:12 -080028)
29
30func init() {
Paul Duffin884363e2019-12-19 10:21:09 +000031 RegisterDocsBuildComponents(android.InitRegistrationContext)
32 RegisterStubsBuildComponents(android.InitRegistrationContext)
Paul Duffin255f18e2019-12-13 11:22:16 +000033
34 // Register sdk member type.
35 android.RegisterSdkMemberType(&droidStubsSdkMemberType{
36 SdkMemberTypeBase: android.SdkMemberTypeBase{
37 PropertyName: "stubs_sources",
Paul Duffine6029182019-12-16 17:43:48 +000038 // stubs_sources can be used with sdk to provide the source stubs for APIs provided by
39 // the APEX.
40 SupportsSdk: true,
Paul Duffin255f18e2019-12-13 11:22:16 +000041 },
42 })
Nan Zhang581fd212018-01-10 16:06:12 -080043}
44
Paul Duffin884363e2019-12-19 10:21:09 +000045func RegisterDocsBuildComponents(ctx android.RegistrationContext) {
46 ctx.RegisterModuleType("doc_defaults", DocDefaultsFactory)
47
48 ctx.RegisterModuleType("droiddoc", DroiddocFactory)
49 ctx.RegisterModuleType("droiddoc_host", DroiddocHostFactory)
50 ctx.RegisterModuleType("droiddoc_exported_dir", ExportedDroiddocDirFactory)
51 ctx.RegisterModuleType("javadoc", JavadocFactory)
52 ctx.RegisterModuleType("javadoc_host", JavadocHostFactory)
53}
54
55func RegisterStubsBuildComponents(ctx android.RegistrationContext) {
56 ctx.RegisterModuleType("stubs_defaults", StubsDefaultsFactory)
57
58 ctx.RegisterModuleType("droidstubs", DroidstubsFactory)
59 ctx.RegisterModuleType("droidstubs_host", DroidstubsHostFactory)
60
61 ctx.RegisterModuleType("prebuilt_stubs_sources", PrebuiltStubsSourcesFactory)
62}
63
Colin Crossa1ce2a02018-06-20 15:19:39 -070064var (
65 srcsLibTag = dependencyTag{name: "sources from javalib"}
66)
67
Nan Zhang581fd212018-01-10 16:06:12 -080068type JavadocProperties struct {
69 // list of source files used to compile the Java module. May be .java, .logtags, .proto,
70 // or .aidl files.
Colin Cross27b922f2019-03-04 22:35:41 -080071 Srcs []string `android:"path,arch_variant"`
Nan Zhang581fd212018-01-10 16:06:12 -080072
Nan Zhang581fd212018-01-10 16:06:12 -080073 // list of source files that should not be used to build the Java module.
74 // This is most useful in the arch/multilib variants to remove non-common files
75 // filegroup or genrule can be included within this property.
Colin Cross27b922f2019-03-04 22:35:41 -080076 Exclude_srcs []string `android:"path,arch_variant"`
Nan Zhang581fd212018-01-10 16:06:12 -080077
Jiyong Parkc6ddccf2019-09-13 20:56:14 +090078 // list of package names that should actually be used. If this property is left unspecified,
79 // all the sources from the srcs property is used.
80 Filter_packages []string
81
Nan Zhangb2b33de2018-02-23 11:18:47 -080082 // list of java libraries that will be in the classpath.
Nan Zhang581fd212018-01-10 16:06:12 -080083 Libs []string `android:"arch_variant"`
84
85 // If set to false, don't allow this module(-docs.zip) to be exported. Defaults to true.
Nan Zhangb2b33de2018-02-23 11:18:47 -080086 Installable *bool
Nan Zhang581fd212018-01-10 16:06:12 -080087
Paul Duffine25c6442019-10-11 13:50:28 +010088 // if not blank, set to the version of the sdk to compile against.
89 // Defaults to compiling against the current platform.
Nan Zhang581fd212018-01-10 16:06:12 -080090 Sdk_version *string `android:"arch_variant"`
Jiyong Park1e440682018-05-23 18:42:04 +090091
Paul Duffine25c6442019-10-11 13:50:28 +010092 // When targeting 1.9 and above, override the modules to use with --system,
93 // otherwise provides defaults libraries to add to the bootclasspath.
94 // Defaults to "none"
95 System_modules *string
96
Jiyong Park1e440682018-05-23 18:42:04 +090097 Aidl struct {
98 // Top level directories to pass to aidl tool
99 Include_dirs []string
100
101 // Directories rooted at the Android.bp file to pass to aidl tool
102 Local_include_dirs []string
103 }
Nan Zhang357466b2018-04-17 17:38:36 -0700104
105 // If not blank, set the java version passed to javadoc as -source
106 Java_version *string
Nan Zhang1598a9e2018-09-04 17:14:32 -0700107
108 // local files that are used within user customized droiddoc options.
Colin Cross27b922f2019-03-04 22:35:41 -0800109 Arg_files []string `android:"path"`
Nan Zhang1598a9e2018-09-04 17:14:32 -0700110
Liz Kammer585cac22020-07-06 09:12:57 -0700111 // user customized droiddoc args. Deprecated, use flags instead.
Nan Zhang1598a9e2018-09-04 17:14:32 -0700112 // Available variables for substitution:
113 //
114 // $(location <label>): the path to the arg_files with name <label>
Colin Crosse4a05842019-05-28 10:17:14 -0700115 // $$: a literal $
Nan Zhang1598a9e2018-09-04 17:14:32 -0700116 Args *string
117
Liz Kammer585cac22020-07-06 09:12:57 -0700118 // user customized droiddoc args. Not compatible with property args.
119 // Available variables for substitution:
120 //
121 // $(location <label>): the path to the arg_files with name <label>
122 // $$: a literal $
123 Flags []string
124
Nan Zhang1598a9e2018-09-04 17:14:32 -0700125 // names of the output files used in args that will be generated
126 Out []string
Ramy Medhat2f99eec2020-06-13 17:38:27 -0400127
128 // If set, metalava is sandboxed to only read files explicitly specified on the command
129 // line. Defaults to false.
130 Sandbox *bool
Nan Zhang581fd212018-01-10 16:06:12 -0800131}
132
Nan Zhang61819ce2018-05-04 18:49:16 -0700133type ApiToCheck struct {
Jiyong Parkeeb8a642018-05-12 22:21:20 +0900134 // path to the API txt file that the new API extracted from source code is checked
135 // against. The path can be local to the module or from other module (via :module syntax).
Colin Cross27b922f2019-03-04 22:35:41 -0800136 Api_file *string `android:"path"`
Nan Zhang61819ce2018-05-04 18:49:16 -0700137
Jiyong Parkeeb8a642018-05-12 22:21:20 +0900138 // path to the API txt file that the new @removed API extractd from source code is
139 // checked against. The path can be local to the module or from other module (via
140 // :module syntax).
Colin Cross27b922f2019-03-04 22:35:41 -0800141 Removed_api_file *string `android:"path"`
Nan Zhang61819ce2018-05-04 18:49:16 -0700142
Adrian Roos14f75a92019-08-12 17:54:09 +0200143 // If not blank, path to the baseline txt file for approved API check violations.
144 Baseline_file *string `android:"path"`
145
Jiyong Parkeeb8a642018-05-12 22:21:20 +0900146 // Arguments to the apicheck tool.
Nan Zhang61819ce2018-05-04 18:49:16 -0700147 Args *string
148}
149
Nan Zhang581fd212018-01-10 16:06:12 -0800150type DroiddocProperties struct {
151 // directory relative to top of the source tree that contains doc templates files.
Nan Zhangb2b33de2018-02-23 11:18:47 -0800152 Custom_template *string
Nan Zhang581fd212018-01-10 16:06:12 -0800153
Nan Zhanga40da042018-08-01 12:48:00 -0700154 // directories under current module source which contains html/jd files.
Nan Zhangb2b33de2018-02-23 11:18:47 -0800155 Html_dirs []string
Nan Zhang581fd212018-01-10 16:06:12 -0800156
157 // set a value in the Clearsilver hdf namespace.
Nan Zhangb2b33de2018-02-23 11:18:47 -0800158 Hdf []string
Nan Zhang581fd212018-01-10 16:06:12 -0800159
160 // proofread file contains all of the text content of the javadocs concatenated into one file,
161 // suitable for spell-checking and other goodness.
Colin Crossab054432019-07-15 16:13:59 -0700162 Proofread_file *string
Nan Zhang581fd212018-01-10 16:06:12 -0800163
164 // a todo file lists the program elements that are missing documentation.
165 // At some point, this might be improved to show more warnings.
Colin Cross27b922f2019-03-04 22:35:41 -0800166 Todo_file *string `android:"path"`
Nan Zhangb2b33de2018-02-23 11:18:47 -0800167
168 // directory under current module source that provide additional resources (images).
169 Resourcesdir *string
170
171 // resources output directory under out/soong/.intermediates.
172 Resourcesoutdir *string
Nan Zhang581fd212018-01-10 16:06:12 -0800173
Nan Zhange2ba5d42018-07-11 15:16:55 -0700174 // index.html under current module will be copied to docs out dir, if not null.
Colin Cross27b922f2019-03-04 22:35:41 -0800175 Static_doc_index_redirect *string `android:"path"`
Nan Zhange2ba5d42018-07-11 15:16:55 -0700176
177 // source.properties under current module will be copied to docs out dir, if not null.
Colin Cross27b922f2019-03-04 22:35:41 -0800178 Static_doc_properties *string `android:"path"`
Nan Zhange2ba5d42018-07-11 15:16:55 -0700179
Nan Zhang581fd212018-01-10 16:06:12 -0800180 // a list of files under current module source dir which contains known tags in Java sources.
181 // filegroup or genrule can be included within this property.
Colin Cross27b922f2019-03-04 22:35:41 -0800182 Knowntags []string `android:"path"`
Nan Zhang28c68b92018-03-13 16:17:01 -0700183
Nan Zhang1598a9e2018-09-04 17:14:32 -0700184 // if set to true, generate docs through Dokka instead of Doclava.
185 Dokka_enabled *bool
Mathew Inwoodabd49ab2019-12-19 14:27:08 +0000186
187 // Compat config XML. Generates compat change documentation if set.
188 Compat_config *string `android:"path"`
Nan Zhang1598a9e2018-09-04 17:14:32 -0700189}
190
191type DroidstubsProperties struct {
Liz Kammer9ed79152020-08-24 15:56:32 -0700192 // The generated public API filename by Metalava, defaults to <module>_api.txt
Nan Zhang1598a9e2018-09-04 17:14:32 -0700193 Api_filename *string
194
Liz Kammer9ed79152020-08-24 15:56:32 -0700195 // the generated removed API filename by Metalava, defaults to <module>_removed.txt
Nan Zhang1598a9e2018-09-04 17:14:32 -0700196 Removed_api_filename *string
197
Nan Zhang199645c2018-09-19 12:40:06 -0700198 // the generated removed Dex API filename by Metalava.
Nan Zhang1598a9e2018-09-04 17:14:32 -0700199 Removed_dex_api_filename *string
200
Nan Zhang1598a9e2018-09-04 17:14:32 -0700201 Check_api struct {
202 Last_released ApiToCheck
203
204 Current ApiToCheck
Inseob Kim38449af2019-02-28 14:24:05 +0900205
Paul Duffin160fe412020-05-10 19:32:20 +0100206 // The java_sdk_library module generates references to modules (i.e. filegroups)
207 // from which information about the latest API version can be obtained. As those
208 // modules may not exist (e.g. because a previous version has not been released) it
209 // sets ignore_missing_latest_api=true on the droidstubs modules it creates so
210 // that droidstubs can ignore those references if the modules do not yet exist.
211 //
212 // If true then this will ignore module references for modules that do not exist
213 // in properties that supply the previous version of the API.
214 //
215 // There are two sets of those:
216 // * Api_file, Removed_api_file in check_api.last_released
217 // * New_since in check_api.api_lint.new_since
218 //
219 // The first two must be set as a pair, so either they should both exist or neither
220 // should exist - in which case when this property is true they are ignored. If one
221 // exists and the other does not then it is an error.
Inseob Kim38449af2019-02-28 14:24:05 +0900222 Ignore_missing_latest_api *bool `blueprint:"mutated"`
Adrian Roos075eedc2019-10-10 12:07:03 +0200223
224 Api_lint struct {
225 Enabled *bool
226
227 // If set, performs api_lint on any new APIs not found in the given signature file
228 New_since *string `android:"path"`
229
230 // If not blank, path to the baseline txt file for approved API lint violations.
231 Baseline_file *string `android:"path"`
232 }
Nan Zhang1598a9e2018-09-04 17:14:32 -0700233 }
Nan Zhang79614d12018-04-19 18:03:39 -0700234
235 // user can specify the version of previous released API file in order to do compatibility check.
Colin Cross27b922f2019-03-04 22:35:41 -0800236 Previous_api *string `android:"path"`
Nan Zhang79614d12018-04-19 18:03:39 -0700237
238 // is set to true, Metalava will allow framework SDK to contain annotations.
Nan Zhang1598a9e2018-09-04 17:14:32 -0700239 Annotations_enabled *bool
Nan Zhang79614d12018-04-19 18:03:39 -0700240
Pete Gillin77167902018-09-19 18:16:26 +0100241 // a list of top-level directories containing files to merge qualifier annotations (i.e. those intended to be included in the stubs written) from.
Nan Zhang1598a9e2018-09-04 17:14:32 -0700242 Merge_annotations_dirs []string
Nan Zhang86d2d552018-08-09 15:33:27 -0700243
Pete Gillin77167902018-09-19 18:16:26 +0100244 // a list of top-level directories containing Java stub files to merge show/hide annotations from.
245 Merge_inclusion_annotations_dirs []string
246
Pete Gillinc382a562018-11-14 18:45:46 +0000247 // a file containing a list of classes to do nullability validation for.
248 Validate_nullability_from_list *string
249
Pete Gillin581d6082018-10-22 15:55:04 +0100250 // a file containing expected warnings produced by validation of nullability annotations.
251 Check_nullability_warnings *string
252
Nan Zhang1598a9e2018-09-04 17:14:32 -0700253 // if set to true, allow Metalava to generate doc_stubs source files. Defaults to false.
254 Create_doc_stubs *bool
Nan Zhang9c69a122018-08-22 10:22:08 -0700255
Paul Duffin6877e6d2020-09-25 19:59:14 +0100256 // if set to true, cause Metalava to output Javadoc comments in the stubs source files. Defaults to false.
257 // Has no effect if create_doc_stubs: true.
258 Output_javadoc_comments *bool
259
Paul Duffin3ae29512020-04-08 18:18:03 +0100260 // if set to false then do not write out stubs. Defaults to true.
261 //
262 // TODO(b/146727827): Remove capability when we do not need to generate stubs and API separately.
263 Generate_stubs *bool
264
Nan Zhang9c69a122018-08-22 10:22:08 -0700265 // is set to true, Metalava will allow framework SDK to contain API levels annotations.
266 Api_levels_annotations_enabled *bool
267
268 // the dirs which Metalava extracts API levels annotations from.
269 Api_levels_annotations_dirs []string
270
Liz Kammer3d894b72020-08-04 09:55:13 -0700271 // the filename which Metalava extracts API levels annotations from. Defaults to android.jar.
272 Api_levels_jar_filename *string
273
Nan Zhang9c69a122018-08-22 10:22:08 -0700274 // if set to true, collect the values used by the Dev tools and
275 // write them in files packaged with the SDK. Defaults to false.
276 Write_sdk_values *bool
Nan Zhang581fd212018-01-10 16:06:12 -0800277}
278
Nan Zhanga40da042018-08-01 12:48:00 -0700279//
280// Common flags passed down to build rule
281//
282type droiddocBuilderFlags struct {
Nan Zhang86d2d552018-08-09 15:33:27 -0700283 bootClasspathArgs string
284 classpathArgs string
Nan Zhang1598a9e2018-09-04 17:14:32 -0700285 sourcepathArgs string
Nan Zhang86d2d552018-08-09 15:33:27 -0700286 dokkaClasspathArgs string
287 aidlFlags string
Colin Cross3047fa22019-04-18 10:56:44 -0700288 aidlDeps android.Paths
Nan Zhanga40da042018-08-01 12:48:00 -0700289
Nan Zhanga40da042018-08-01 12:48:00 -0700290 doclavaStubsFlags string
Nan Zhang86d2d552018-08-09 15:33:27 -0700291 doclavaDocsFlags string
Nan Zhanga40da042018-08-01 12:48:00 -0700292 postDoclavaCmds string
Nan Zhanga40da042018-08-01 12:48:00 -0700293}
294
295func InitDroiddocModule(module android.DefaultableModule, hod android.HostOrDeviceSupported) {
296 android.InitAndroidArchModule(module, hod, android.MultilibCommon)
297 android.InitDefaultableModule(module)
298}
299
Luca Stefanid63ea0a2019-09-01 21:49:45 +0200300func apiCheckEnabled(ctx android.ModuleContext, apiToCheck ApiToCheck, apiVersionTag string) bool {
301 if ctx.Config().IsEnvTrue("WITHOUT_CHECK_API") {
302 return false
303 } else if String(apiToCheck.Api_file) != "" && String(apiToCheck.Removed_api_file) != "" {
Nan Zhang1598a9e2018-09-04 17:14:32 -0700304 return true
305 } else if String(apiToCheck.Api_file) != "" {
306 panic("for " + apiVersionTag + " removed_api_file has to be non-empty!")
307 } else if String(apiToCheck.Removed_api_file) != "" {
308 panic("for " + apiVersionTag + " api_file has to be non-empty!")
309 }
310
311 return false
312}
313
Inseob Kim38449af2019-02-28 14:24:05 +0900314func ignoreMissingModules(ctx android.BottomUpMutatorContext, apiToCheck *ApiToCheck) {
315 api_file := String(apiToCheck.Api_file)
316 removed_api_file := String(apiToCheck.Removed_api_file)
317
318 api_module := android.SrcIsModule(api_file)
319 removed_api_module := android.SrcIsModule(removed_api_file)
320
321 if api_module == "" || removed_api_module == "" {
322 return
323 }
324
325 if ctx.OtherModuleExists(api_module) || ctx.OtherModuleExists(removed_api_module) {
326 return
327 }
328
329 apiToCheck.Api_file = nil
330 apiToCheck.Removed_api_file = nil
331}
332
Paul Duffin3d1248c2020-04-09 00:10:17 +0100333// Used by xsd_config
Nan Zhang1598a9e2018-09-04 17:14:32 -0700334type ApiFilePath interface {
335 ApiFilePath() android.Path
336}
337
Paul Duffin0f8faff2020-05-20 16:18:00 +0100338type ApiStubsSrcProvider interface {
339 StubsSrcJar() android.Path
340}
341
Paul Duffin3d1248c2020-04-09 00:10:17 +0100342// Provider of information about API stubs, used by java_sdk_library.
343type ApiStubsProvider interface {
344 ApiFilePath
Paul Duffin1fd005d2020-04-09 01:08:11 +0100345 RemovedApiFilePath() android.Path
Paul Duffin0f8faff2020-05-20 16:18:00 +0100346
347 ApiStubsSrcProvider
Paul Duffin3d1248c2020-04-09 00:10:17 +0100348}
349
Nan Zhanga40da042018-08-01 12:48:00 -0700350//
351// Javadoc
352//
Nan Zhang581fd212018-01-10 16:06:12 -0800353type Javadoc struct {
354 android.ModuleBase
355 android.DefaultableModuleBase
356
357 properties JavadocProperties
358
359 srcJars android.Paths
360 srcFiles android.Paths
361 sourcepaths android.Paths
Nan Zhang1598a9e2018-09-04 17:14:32 -0700362 argFiles android.Paths
Ramy Medhatc7965cd2020-04-30 03:08:37 -0400363 implicits android.Paths
Nan Zhang1598a9e2018-09-04 17:14:32 -0700364
Liz Kammer585cac22020-07-06 09:12:57 -0700365 args []string
Nan Zhang581fd212018-01-10 16:06:12 -0800366
Nan Zhangccff0f72018-03-08 17:26:16 -0800367 docZip android.WritablePath
368 stubsSrcJar android.WritablePath
Nan Zhang581fd212018-01-10 16:06:12 -0800369}
370
Colin Cross41955e82019-05-29 14:40:35 -0700371func (j *Javadoc) OutputFiles(tag string) (android.Paths, error) {
372 switch tag {
373 case "":
374 return android.Paths{j.stubsSrcJar}, nil
Colin Crosse68e5542019-08-12 13:11:40 -0700375 case ".docs.zip":
376 return android.Paths{j.docZip}, nil
Colin Cross41955e82019-05-29 14:40:35 -0700377 default:
378 return nil, fmt.Errorf("unsupported module reference tag %q", tag)
379 }
Nan Zhangb2b33de2018-02-23 11:18:47 -0800380}
381
Colin Crossa3002fc2019-07-08 16:48:04 -0700382// javadoc converts .java source files to documentation using javadoc.
Nan Zhang581fd212018-01-10 16:06:12 -0800383func JavadocFactory() android.Module {
384 module := &Javadoc{}
385
386 module.AddProperties(&module.properties)
387
388 InitDroiddocModule(module, android.HostAndDeviceSupported)
389 return module
390}
391
Colin Crossa3002fc2019-07-08 16:48:04 -0700392// javadoc_host converts .java source files to documentation using javadoc.
Nan Zhang581fd212018-01-10 16:06:12 -0800393func JavadocHostFactory() android.Module {
394 module := &Javadoc{}
395
396 module.AddProperties(&module.properties)
397
398 InitDroiddocModule(module, android.HostSupported)
399 return module
400}
401
Colin Cross41955e82019-05-29 14:40:35 -0700402var _ android.OutputFileProducer = (*Javadoc)(nil)
Nan Zhang581fd212018-01-10 16:06:12 -0800403
Jiyong Park6a927c42020-01-21 02:03:43 +0900404func (j *Javadoc) sdkVersion() sdkSpec {
405 return sdkSpecFrom(String(j.properties.Sdk_version))
Colin Cross83bb3162018-06-25 15:48:06 -0700406}
407
Paul Duffine25c6442019-10-11 13:50:28 +0100408func (j *Javadoc) systemModules() string {
409 return proptools.String(j.properties.System_modules)
410}
411
Jiyong Park6a927c42020-01-21 02:03:43 +0900412func (j *Javadoc) minSdkVersion() sdkSpec {
Colin Cross83bb3162018-06-25 15:48:06 -0700413 return j.sdkVersion()
414}
415
Jiyong Park6a927c42020-01-21 02:03:43 +0900416func (j *Javadoc) targetSdkVersion() sdkSpec {
Dan Willemsen419290a2018-10-31 15:28:47 -0700417 return j.sdkVersion()
418}
419
Nan Zhang581fd212018-01-10 16:06:12 -0800420func (j *Javadoc) addDeps(ctx android.BottomUpMutatorContext) {
421 if ctx.Device() {
Paul Duffin250e6192019-06-07 10:44:37 +0100422 sdkDep := decodeSdkDep(ctx, sdkContext(j))
Pete Gilline3d44b22020-06-29 11:28:51 +0100423 if sdkDep.useModule {
Colin Cross6cef4812019-10-17 14:23:50 -0700424 ctx.AddVariationDependencies(nil, bootClasspathTag, sdkDep.bootclasspath...)
Paul Duffine25c6442019-10-11 13:50:28 +0100425 ctx.AddVariationDependencies(nil, systemModulesTag, sdkDep.systemModules)
Colin Cross6cef4812019-10-17 14:23:50 -0700426 ctx.AddVariationDependencies(nil, java9LibTag, sdkDep.java9Classpath...)
Pete Gilline3d44b22020-06-29 11:28:51 +0100427 ctx.AddVariationDependencies(nil, libTag, sdkDep.classpath...)
Nan Zhang581fd212018-01-10 16:06:12 -0800428 }
429 }
430
Colin Cross42d48b72018-08-29 14:10:52 -0700431 ctx.AddVariationDependencies(nil, libTag, j.properties.Libs...)
Nan Zhang581fd212018-01-10 16:06:12 -0800432}
433
Nan Zhanga40da042018-08-01 12:48:00 -0700434func (j *Javadoc) collectAidlFlags(ctx android.ModuleContext, deps deps) droiddocBuilderFlags {
435 var flags droiddocBuilderFlags
Jiyong Park1e440682018-05-23 18:42:04 +0900436
Colin Cross3047fa22019-04-18 10:56:44 -0700437 flags.aidlFlags, flags.aidlDeps = j.aidlFlags(ctx, deps.aidlPreprocess, deps.aidlIncludeDirs)
Jiyong Park1e440682018-05-23 18:42:04 +0900438
439 return flags
440}
441
442func (j *Javadoc) aidlFlags(ctx android.ModuleContext, aidlPreprocess android.OptionalPath,
Colin Cross3047fa22019-04-18 10:56:44 -0700443 aidlIncludeDirs android.Paths) (string, android.Paths) {
Jiyong Park1e440682018-05-23 18:42:04 +0900444
445 aidlIncludes := android.PathsForModuleSrc(ctx, j.properties.Aidl.Local_include_dirs)
446 aidlIncludes = append(aidlIncludes, android.PathsForSource(ctx, j.properties.Aidl.Include_dirs)...)
447
448 var flags []string
Colin Cross3047fa22019-04-18 10:56:44 -0700449 var deps android.Paths
450
Jiyong Park1e440682018-05-23 18:42:04 +0900451 if aidlPreprocess.Valid() {
452 flags = append(flags, "-p"+aidlPreprocess.String())
Colin Cross3047fa22019-04-18 10:56:44 -0700453 deps = append(deps, aidlPreprocess.Path())
Jiyong Park1e440682018-05-23 18:42:04 +0900454 } else {
455 flags = append(flags, android.JoinWithPrefix(aidlIncludeDirs.Strings(), "-I"))
456 }
457
458 flags = append(flags, android.JoinWithPrefix(aidlIncludes.Strings(), "-I"))
459 flags = append(flags, "-I"+android.PathForModuleSrc(ctx).String())
460 if src := android.ExistentPathForSource(ctx, ctx.ModuleDir(), "src"); src.Valid() {
461 flags = append(flags, "-I"+src.String())
462 }
463
Colin Cross3047fa22019-04-18 10:56:44 -0700464 return strings.Join(flags, " "), deps
Jiyong Park1e440682018-05-23 18:42:04 +0900465}
466
Jiyong Parkd90d7412019-08-20 22:49:19 +0900467// TODO: remove the duplication between this and the one in gen.go
Jiyong Park1e440682018-05-23 18:42:04 +0900468func (j *Javadoc) genSources(ctx android.ModuleContext, srcFiles android.Paths,
Nan Zhanga40da042018-08-01 12:48:00 -0700469 flags droiddocBuilderFlags) android.Paths {
Jiyong Park1e440682018-05-23 18:42:04 +0900470
471 outSrcFiles := make(android.Paths, 0, len(srcFiles))
Colin Crossc0806172019-06-14 18:51:47 -0700472 var aidlSrcs android.Paths
Jiyong Park1e440682018-05-23 18:42:04 +0900473
Jiyong Park1112c4c2019-08-16 21:12:10 +0900474 aidlIncludeFlags := genAidlIncludeFlags(srcFiles)
475
Jiyong Park1e440682018-05-23 18:42:04 +0900476 for _, srcFile := range srcFiles {
477 switch srcFile.Ext() {
478 case ".aidl":
Colin Crossc0806172019-06-14 18:51:47 -0700479 aidlSrcs = append(aidlSrcs, srcFile)
Jiyong Parkd90d7412019-08-20 22:49:19 +0900480 case ".logtags":
481 javaFile := genLogtags(ctx, srcFile)
482 outSrcFiles = append(outSrcFiles, javaFile)
Jiyong Park1e440682018-05-23 18:42:04 +0900483 default:
484 outSrcFiles = append(outSrcFiles, srcFile)
485 }
486 }
487
Colin Crossc0806172019-06-14 18:51:47 -0700488 // Process all aidl files together to support sharding them into one or more rules that produce srcjars.
489 if len(aidlSrcs) > 0 {
490 srcJarFiles := genAidl(ctx, aidlSrcs, flags.aidlFlags+aidlIncludeFlags, flags.aidlDeps)
491 outSrcFiles = append(outSrcFiles, srcJarFiles...)
492 }
493
Jiyong Park1e440682018-05-23 18:42:04 +0900494 return outSrcFiles
495}
496
Nan Zhang581fd212018-01-10 16:06:12 -0800497func (j *Javadoc) collectDeps(ctx android.ModuleContext) deps {
498 var deps deps
499
Colin Cross83bb3162018-06-25 15:48:06 -0700500 sdkDep := decodeSdkDep(ctx, sdkContext(j))
Nan Zhang581fd212018-01-10 16:06:12 -0800501 if sdkDep.invalidVersion {
Colin Cross6cef4812019-10-17 14:23:50 -0700502 ctx.AddMissingDependencies(sdkDep.bootclasspath)
503 ctx.AddMissingDependencies(sdkDep.java9Classpath)
Nan Zhang581fd212018-01-10 16:06:12 -0800504 } else if sdkDep.useFiles {
Colin Cross86a60ae2018-05-29 14:44:55 -0700505 deps.bootClasspath = append(deps.bootClasspath, sdkDep.jars...)
Anton Hansson26bf49b2020-02-08 20:26:29 +0000506 deps.aidlPreprocess = sdkDep.aidl
507 } else {
508 deps.aidlPreprocess = sdkDep.aidl
Nan Zhang581fd212018-01-10 16:06:12 -0800509 }
510
511 ctx.VisitDirectDeps(func(module android.Module) {
512 otherName := ctx.OtherModuleName(module)
513 tag := ctx.OtherModuleDependencyTag(module)
514
Colin Cross2d24c1b2018-05-23 10:59:18 -0700515 switch tag {
516 case bootClasspathTag:
517 if dep, ok := module.(Dependency); ok {
Nan Zhang581fd212018-01-10 16:06:12 -0800518 deps.bootClasspath = append(deps.bootClasspath, dep.ImplementationJars()...)
Paul Duffin83a2d962019-11-19 19:44:10 +0000519 } else if sm, ok := module.(SystemModulesProvider); ok {
Paul Duffine25c6442019-10-11 13:50:28 +0100520 // A system modules dependency has been added to the bootclasspath
521 // so add its libs to the bootclasspath.
Paul Duffin83a2d962019-11-19 19:44:10 +0000522 deps.bootClasspath = append(deps.bootClasspath, sm.HeaderJars()...)
Colin Cross2d24c1b2018-05-23 10:59:18 -0700523 } else {
524 panic(fmt.Errorf("unknown dependency %q for %q", otherName, ctx.ModuleName()))
525 }
526 case libTag:
527 switch dep := module.(type) {
Colin Cross897d2ed2019-02-11 14:03:51 -0800528 case SdkLibraryDependency:
Paul Duffin649dadf2020-05-26 11:42:13 +0100529 deps.classpath = append(deps.classpath, dep.SdkHeaderJars(ctx, j.sdkVersion())...)
Colin Cross2d24c1b2018-05-23 10:59:18 -0700530 case Dependency:
Sundong Ahnba493602018-11-20 17:36:35 +0900531 deps.classpath = append(deps.classpath, dep.HeaderJars()...)
Jiyong Park19a7f252019-07-10 16:59:31 +0900532 deps.aidlIncludeDirs = append(deps.aidlIncludeDirs, dep.AidlIncludeDirs()...)
Colin Cross2d24c1b2018-05-23 10:59:18 -0700533 case android.SourceFileProducer:
Nan Zhang581fd212018-01-10 16:06:12 -0800534 checkProducesJars(ctx, dep)
535 deps.classpath = append(deps.classpath, dep.Srcs()...)
Nan Zhang581fd212018-01-10 16:06:12 -0800536 default:
537 ctx.ModuleErrorf("depends on non-java module %q", otherName)
538 }
Colin Cross6cef4812019-10-17 14:23:50 -0700539 case java9LibTag:
540 switch dep := module.(type) {
541 case Dependency:
542 deps.java9Classpath = append(deps.java9Classpath, dep.HeaderJars()...)
543 default:
544 ctx.ModuleErrorf("depends on non-java module %q", otherName)
545 }
Nan Zhang357466b2018-04-17 17:38:36 -0700546 case systemModulesTag:
547 if deps.systemModules != nil {
548 panic("Found two system module dependencies")
549 }
Paul Duffin83a2d962019-11-19 19:44:10 +0000550 sm := module.(SystemModulesProvider)
551 outputDir, outputDeps := sm.OutputDirAndDeps()
552 deps.systemModules = &systemModules{outputDir, outputDeps}
Nan Zhang581fd212018-01-10 16:06:12 -0800553 }
554 })
555 // do not pass exclude_srcs directly when expanding srcFiles since exclude_srcs
556 // may contain filegroup or genrule.
Colin Cross8a497952019-03-05 22:25:09 -0800557 srcFiles := android.PathsForModuleSrcExcludes(ctx, j.properties.Srcs, j.properties.Exclude_srcs)
Ramy Medhatc7965cd2020-04-30 03:08:37 -0400558 j.implicits = append(j.implicits, srcFiles...)
Jiyong Parkc6ddccf2019-09-13 20:56:14 +0900559
560 filterByPackage := func(srcs []android.Path, filterPackages []string) []android.Path {
561 if filterPackages == nil {
562 return srcs
563 }
564 filtered := []android.Path{}
565 for _, src := range srcs {
566 if src.Ext() != ".java" {
567 // Don't filter-out non-Java (=generated sources) by package names. This is not ideal,
568 // but otherwise metalava emits stub sources having references to the generated AIDL classes
569 // in filtered-out pacages (e.g. com.android.internal.*).
570 // TODO(b/141149570) We need to fix this by introducing default private constructors or
571 // fixing metalava to not emit constructors having references to unknown classes.
572 filtered = append(filtered, src)
573 continue
574 }
575 packageName := strings.ReplaceAll(filepath.Dir(src.Rel()), "/", ".")
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800576 if android.HasAnyPrefix(packageName, filterPackages) {
577 filtered = append(filtered, src)
Jiyong Parkc6ddccf2019-09-13 20:56:14 +0900578 }
579 }
580 return filtered
581 }
582 srcFiles = filterByPackage(srcFiles, j.properties.Filter_packages)
583
Ramy Medhatc7965cd2020-04-30 03:08:37 -0400584 // While metalava needs package html files, it does not need them to be explicit on the command
Anton Hansson746be9c2020-10-08 19:05:40 +0100585 // line. javadoc complains if it receives html files on the command line. The filter
586 // below excludes html files from the rsp file metalava. Note that the html
Ramy Medhatc7965cd2020-04-30 03:08:37 -0400587 // files are still included as implicit inputs for successful remote execution and correct
588 // incremental builds.
589 filterHtml := func(srcs []android.Path) []android.Path {
590 filtered := []android.Path{}
591 for _, src := range srcs {
592 if src.Ext() == ".html" {
593 continue
594 }
595 filtered = append(filtered, src)
596 }
597 return filtered
598 }
599 srcFiles = filterHtml(srcFiles)
600
Liz Kammer585cac22020-07-06 09:12:57 -0700601 aidlFlags := j.collectAidlFlags(ctx, deps)
602 srcFiles = j.genSources(ctx, srcFiles, aidlFlags)
Nan Zhang581fd212018-01-10 16:06:12 -0800603
604 // srcs may depend on some genrule output.
605 j.srcJars = srcFiles.FilterByExt(".srcjar")
Nan Zhangb2b33de2018-02-23 11:18:47 -0800606 j.srcJars = append(j.srcJars, deps.srcJars...)
607
Nan Zhang581fd212018-01-10 16:06:12 -0800608 j.srcFiles = srcFiles.FilterOutByExt(".srcjar")
Nan Zhangb2b33de2018-02-23 11:18:47 -0800609 j.srcFiles = append(j.srcFiles, deps.srcs...)
Nan Zhang581fd212018-01-10 16:06:12 -0800610
Liz Kammere1ab2502020-09-10 15:29:25 +0000611 if len(j.srcFiles) > 0 {
612 j.sourcepaths = android.PathsForModuleSrc(ctx, []string{"."})
Nan Zhang581fd212018-01-10 16:06:12 -0800613 }
Nan Zhang581fd212018-01-10 16:06:12 -0800614
Colin Cross8a497952019-03-05 22:25:09 -0800615 j.argFiles = android.PathsForModuleSrc(ctx, j.properties.Arg_files)
Paul Duffin99e4a502019-02-11 15:38:42 +0000616 argFilesMap := map[string]string{}
617 argFileLabels := []string{}
Nan Zhang1598a9e2018-09-04 17:14:32 -0700618
Paul Duffin99e4a502019-02-11 15:38:42 +0000619 for _, label := range j.properties.Arg_files {
Colin Cross8a497952019-03-05 22:25:09 -0800620 var paths = android.PathsForModuleSrc(ctx, []string{label})
Paul Duffin99e4a502019-02-11 15:38:42 +0000621 if _, exists := argFilesMap[label]; !exists {
622 argFilesMap[label] = strings.Join(paths.Strings(), " ")
623 argFileLabels = append(argFileLabels, label)
Nan Zhang1598a9e2018-09-04 17:14:32 -0700624 } else {
625 ctx.ModuleErrorf("multiple arg_files for %q, %q and %q",
Paul Duffin99e4a502019-02-11 15:38:42 +0000626 label, argFilesMap[label], paths)
Nan Zhang1598a9e2018-09-04 17:14:32 -0700627 }
628 }
629
Liz Kammer585cac22020-07-06 09:12:57 -0700630 var argsPropertyName string
631 flags := make([]string, 0)
632 if j.properties.Args != nil && j.properties.Flags != nil {
633 ctx.PropertyErrorf("args", "flags is set. Cannot set args")
634 } else if args := proptools.String(j.properties.Args); args != "" {
635 flags = append(flags, args)
636 argsPropertyName = "args"
637 } else {
638 flags = append(flags, j.properties.Flags...)
639 argsPropertyName = "flags"
640 }
Nan Zhang1598a9e2018-09-04 17:14:32 -0700641
Liz Kammer585cac22020-07-06 09:12:57 -0700642 for _, flag := range flags {
643 args, err := android.Expand(flag, func(name string) (string, error) {
644 if strings.HasPrefix(name, "location ") {
645 label := strings.TrimSpace(strings.TrimPrefix(name, "location "))
646 if paths, ok := argFilesMap[label]; ok {
647 return paths, nil
648 } else {
649 return "", fmt.Errorf("unknown location label %q, expecting one of %q",
650 label, strings.Join(argFileLabels, ", "))
651 }
652 } else if name == "genDir" {
653 return android.PathForModuleGen(ctx).String(), nil
654 }
655 return "", fmt.Errorf("unknown variable '$(%s)'", name)
656 })
657
658 if err != nil {
659 ctx.PropertyErrorf(argsPropertyName, "%s", err.Error())
660 }
661 j.args = append(j.args, args)
Nan Zhang1598a9e2018-09-04 17:14:32 -0700662 }
663
Nan Zhang581fd212018-01-10 16:06:12 -0800664 return deps
665}
666
667func (j *Javadoc) DepsMutator(ctx android.BottomUpMutatorContext) {
668 j.addDeps(ctx)
669}
670
671func (j *Javadoc) GenerateAndroidBuildActions(ctx android.ModuleContext) {
672 deps := j.collectDeps(ctx)
673
Colin Crossdaa4c672019-07-15 22:53:46 -0700674 j.docZip = android.PathForModuleOut(ctx, ctx.ModuleName()+"-"+"docs.zip")
Nan Zhang581fd212018-01-10 16:06:12 -0800675
Colin Crossdaa4c672019-07-15 22:53:46 -0700676 outDir := android.PathForModuleOut(ctx, "out")
677 srcJarDir := android.PathForModuleOut(ctx, "srcjars")
678
679 j.stubsSrcJar = nil
680
681 rule := android.NewRuleBuilder()
682
683 rule.Command().Text("rm -rf").Text(outDir.String())
684 rule.Command().Text("mkdir -p").Text(outDir.String())
685
686 srcJarList := zipSyncCmd(ctx, rule, srcJarDir, j.srcJars)
Nan Zhang357466b2018-04-17 17:38:36 -0700687
Colin Cross83bb3162018-06-25 15:48:06 -0700688 javaVersion := getJavaVersion(ctx, String(j.properties.Java_version), sdkContext(j))
Nan Zhang581fd212018-01-10 16:06:12 -0800689
Colin Crossdaa4c672019-07-15 22:53:46 -0700690 cmd := javadocSystemModulesCmd(ctx, rule, j.srcFiles, outDir, srcJarDir, srcJarList,
691 deps.systemModules, deps.classpath, j.sourcepaths)
Nan Zhang581fd212018-01-10 16:06:12 -0800692
Colin Cross1e743852019-10-28 11:37:20 -0700693 cmd.FlagWithArg("-source ", javaVersion.String()).
Colin Crossdaa4c672019-07-15 22:53:46 -0700694 Flag("-J-Xmx1024m").
695 Flag("-XDignore.symbol.file").
696 Flag("-Xdoclint:none")
Nan Zhang581fd212018-01-10 16:06:12 -0800697
Colin Crossdaa4c672019-07-15 22:53:46 -0700698 rule.Command().
699 BuiltTool(ctx, "soong_zip").
700 Flag("-write_if_changed").
701 Flag("-d").
702 FlagWithOutput("-o ", j.docZip).
703 FlagWithArg("-C ", outDir.String()).
704 FlagWithArg("-D ", outDir.String())
Nan Zhang1598a9e2018-09-04 17:14:32 -0700705
Colin Crossdaa4c672019-07-15 22:53:46 -0700706 rule.Restat()
707
708 zipSyncCleanupCmd(rule, srcJarDir)
709
710 rule.Build(pctx, ctx, "javadoc", "javadoc")
Nan Zhang581fd212018-01-10 16:06:12 -0800711}
712
Nan Zhanga40da042018-08-01 12:48:00 -0700713//
714// Droiddoc
715//
716type Droiddoc struct {
717 Javadoc
718
Liz Kammere1ab2502020-09-10 15:29:25 +0000719 properties DroiddocProperties
Nan Zhanga40da042018-08-01 12:48:00 -0700720}
721
Colin Crossa3002fc2019-07-08 16:48:04 -0700722// droiddoc converts .java source files to documentation using doclava or dokka.
Nan Zhanga40da042018-08-01 12:48:00 -0700723func DroiddocFactory() android.Module {
724 module := &Droiddoc{}
725
726 module.AddProperties(&module.properties,
727 &module.Javadoc.properties)
728
729 InitDroiddocModule(module, android.HostAndDeviceSupported)
730 return module
731}
732
Colin Crossa3002fc2019-07-08 16:48:04 -0700733// droiddoc_host converts .java source files to documentation using doclava or dokka.
Nan Zhanga40da042018-08-01 12:48:00 -0700734func DroiddocHostFactory() android.Module {
735 module := &Droiddoc{}
736
737 module.AddProperties(&module.properties,
738 &module.Javadoc.properties)
739
740 InitDroiddocModule(module, android.HostSupported)
741 return module
742}
743
Liz Kammere1ab2502020-09-10 15:29:25 +0000744func (d *Droiddoc) OutputFiles(tag string) (android.Paths, error) {
745 switch tag {
746 case "", ".docs.zip":
747 return android.Paths{d.Javadoc.docZip}, nil
748 default:
749 return nil, fmt.Errorf("unsupported module reference tag %q", tag)
750 }
Nan Zhanga40da042018-08-01 12:48:00 -0700751}
752
Nan Zhang581fd212018-01-10 16:06:12 -0800753func (d *Droiddoc) DepsMutator(ctx android.BottomUpMutatorContext) {
754 d.Javadoc.addDeps(ctx)
755
Nan Zhang79614d12018-04-19 18:03:39 -0700756 if String(d.properties.Custom_template) != "" {
Dan Willemsencc090972018-02-26 14:33:31 -0800757 ctx.AddDependency(ctx.Module(), droiddocTemplateTag, String(d.properties.Custom_template))
758 }
Nan Zhang581fd212018-01-10 16:06:12 -0800759}
760
Colin Crossab054432019-07-15 16:13:59 -0700761func (d *Droiddoc) doclavaDocsFlags(ctx android.ModuleContext, cmd *android.RuleBuilderCommand, docletPath classpath) {
Colin Cross2a2e0db2020-02-21 16:55:46 -0800762 buildNumberFile := ctx.Config().BuildNumberFile(ctx)
Nan Zhang443fa522018-08-20 20:58:28 -0700763 // Droiddoc always gets "-source 1.8" because it doesn't support 1.9 sources. For modules with 1.9
764 // sources, droiddoc will get sources produced by metalava which will have already stripped out the
765 // 1.9 language features.
Colin Crossab054432019-07-15 16:13:59 -0700766 cmd.FlagWithArg("-source ", "1.8").
767 Flag("-J-Xmx1600m").
768 Flag("-J-XX:-OmitStackTraceInFastThrow").
769 Flag("-XDignore.symbol.file").
770 FlagWithArg("-doclet ", "com.google.doclava.Doclava").
771 FlagWithInputList("-docletpath ", docletPath.Paths(), ":").
Colin Cross2a2e0db2020-02-21 16:55:46 -0800772 FlagWithArg("-hdf page.build ", ctx.Config().BuildId()+"-$(cat "+buildNumberFile.String()+")").OrderOnly(buildNumberFile).
Elliott Hughes26bce342019-09-12 15:05:13 -0700773 FlagWithArg("-hdf page.now ", `"$(date -d @$(cat `+ctx.Config().Getenv("BUILD_DATETIME_FILE")+`) "+%d %b %Y %k:%M")" `)
Nan Zhang46130972018-06-04 11:28:01 -0700774
Nan Zhanga40da042018-08-01 12:48:00 -0700775 if String(d.properties.Custom_template) == "" {
776 // TODO: This is almost always droiddoc-templates-sdk
777 ctx.PropertyErrorf("custom_template", "must specify a template")
778 }
779
780 ctx.VisitDirectDepsWithTag(droiddocTemplateTag, func(m android.Module) {
Nan Zhangf4936b02018-08-01 15:00:28 -0700781 if t, ok := m.(*ExportedDroiddocDir); ok {
Colin Crossab054432019-07-15 16:13:59 -0700782 cmd.FlagWithArg("-templatedir ", t.dir.String()).Implicits(t.deps)
Nan Zhanga40da042018-08-01 12:48:00 -0700783 } else {
Paul Duffin884363e2019-12-19 10:21:09 +0000784 ctx.PropertyErrorf("custom_template", "module %q is not a droiddoc_exported_dir", ctx.OtherModuleName(m))
Nan Zhanga40da042018-08-01 12:48:00 -0700785 }
786 })
787
788 if len(d.properties.Html_dirs) > 0 {
Colin Crossab054432019-07-15 16:13:59 -0700789 htmlDir := android.PathForModuleSrc(ctx, d.properties.Html_dirs[0])
790 cmd.FlagWithArg("-htmldir ", htmlDir.String()).
791 Implicits(android.PathsForModuleSrc(ctx, []string{filepath.Join(d.properties.Html_dirs[0], "**/*")}))
Nan Zhanga40da042018-08-01 12:48:00 -0700792 }
793
794 if len(d.properties.Html_dirs) > 1 {
Colin Crossab054432019-07-15 16:13:59 -0700795 htmlDir2 := android.PathForModuleSrc(ctx, d.properties.Html_dirs[1])
796 cmd.FlagWithArg("-htmldir2 ", htmlDir2.String()).
797 Implicits(android.PathsForModuleSrc(ctx, []string{filepath.Join(d.properties.Html_dirs[1], "**/*")}))
Nan Zhanga40da042018-08-01 12:48:00 -0700798 }
799
800 if len(d.properties.Html_dirs) > 2 {
801 ctx.PropertyErrorf("html_dirs", "Droiddoc only supports up to 2 html dirs")
802 }
803
Colin Cross8a497952019-03-05 22:25:09 -0800804 knownTags := android.PathsForModuleSrc(ctx, d.properties.Knowntags)
Colin Crossab054432019-07-15 16:13:59 -0700805 cmd.FlagForEachInput("-knowntags ", knownTags)
Nan Zhanga40da042018-08-01 12:48:00 -0700806
Colin Crossab054432019-07-15 16:13:59 -0700807 cmd.FlagForEachArg("-hdf ", d.properties.Hdf)
Nan Zhanga40da042018-08-01 12:48:00 -0700808
809 if String(d.properties.Proofread_file) != "" {
810 proofreadFile := android.PathForModuleOut(ctx, String(d.properties.Proofread_file))
Colin Crossab054432019-07-15 16:13:59 -0700811 cmd.FlagWithOutput("-proofread ", proofreadFile)
Nan Zhanga40da042018-08-01 12:48:00 -0700812 }
813
814 if String(d.properties.Todo_file) != "" {
815 // tricky part:
816 // we should not compute full path for todo_file through PathForModuleOut().
817 // the non-standard doclet will get the full path relative to "-o".
Colin Crossab054432019-07-15 16:13:59 -0700818 cmd.FlagWithArg("-todo ", String(d.properties.Todo_file)).
819 ImplicitOutput(android.PathForModuleOut(ctx, String(d.properties.Todo_file)))
Nan Zhanga40da042018-08-01 12:48:00 -0700820 }
821
822 if String(d.properties.Resourcesdir) != "" {
823 // TODO: should we add files under resourcesDir to the implicits? It seems that
824 // resourcesDir is one sub dir of htmlDir
825 resourcesDir := android.PathForModuleSrc(ctx, String(d.properties.Resourcesdir))
Colin Crossab054432019-07-15 16:13:59 -0700826 cmd.FlagWithArg("-resourcesdir ", resourcesDir.String())
Nan Zhanga40da042018-08-01 12:48:00 -0700827 }
828
829 if String(d.properties.Resourcesoutdir) != "" {
830 // TODO: it seems -resourceoutdir reference/android/images/ didn't get generated anywhere.
Colin Crossab054432019-07-15 16:13:59 -0700831 cmd.FlagWithArg("-resourcesoutdir ", String(d.properties.Resourcesoutdir))
Nan Zhanga40da042018-08-01 12:48:00 -0700832 }
Nan Zhanga40da042018-08-01 12:48:00 -0700833}
834
Colin Crossab054432019-07-15 16:13:59 -0700835func (d *Droiddoc) postDoclavaCmds(ctx android.ModuleContext, rule *android.RuleBuilder) {
Nan Zhanga40da042018-08-01 12:48:00 -0700836 if String(d.properties.Static_doc_index_redirect) != "" {
Colin Crossab054432019-07-15 16:13:59 -0700837 staticDocIndexRedirect := android.PathForModuleSrc(ctx, String(d.properties.Static_doc_index_redirect))
838 rule.Command().Text("cp").
839 Input(staticDocIndexRedirect).
840 Output(android.PathForModuleOut(ctx, "out", "index.html"))
Nan Zhanga40da042018-08-01 12:48:00 -0700841 }
842
843 if String(d.properties.Static_doc_properties) != "" {
Colin Crossab054432019-07-15 16:13:59 -0700844 staticDocProperties := android.PathForModuleSrc(ctx, String(d.properties.Static_doc_properties))
845 rule.Command().Text("cp").
846 Input(staticDocProperties).
847 Output(android.PathForModuleOut(ctx, "out", "source.properties"))
Nan Zhanga40da042018-08-01 12:48:00 -0700848 }
Nan Zhanga40da042018-08-01 12:48:00 -0700849}
850
Colin Crossab054432019-07-15 16:13:59 -0700851func javadocCmd(ctx android.ModuleContext, rule *android.RuleBuilder, srcs android.Paths,
Colin Crossdaa4c672019-07-15 22:53:46 -0700852 outDir, srcJarDir, srcJarList android.Path, sourcepaths android.Paths) *android.RuleBuilderCommand {
Colin Crossab054432019-07-15 16:13:59 -0700853
854 cmd := rule.Command().
855 BuiltTool(ctx, "soong_javac_wrapper").Tool(config.JavadocCmd(ctx)).
856 Flag(config.JavacVmFlags).
857 FlagWithArg("-encoding ", "UTF-8").
Colin Crossab054432019-07-15 16:13:59 -0700858 FlagWithRspFileInputList("@", srcs).
859 FlagWithInput("@", srcJarList)
860
Colin Crossab054432019-07-15 16:13:59 -0700861 // TODO(ccross): Remove this if- statement once we finish migration for all Doclava
862 // based stubs generation.
863 // In the future, all the docs generation depends on Metalava stubs (droidstubs) srcjar
864 // dir. We need add the srcjar dir to -sourcepath arg, so that Javadoc can figure out
865 // the correct package name base path.
866 if len(sourcepaths) > 0 {
867 cmd.FlagWithList("-sourcepath ", sourcepaths.Strings(), ":")
868 } else {
869 cmd.FlagWithArg("-sourcepath ", srcJarDir.String())
870 }
871
872 cmd.FlagWithArg("-d ", outDir.String()).
873 Flag("-quiet")
874
875 return cmd
Nan Zhang1598a9e2018-09-04 17:14:32 -0700876}
877
Colin Crossdaa4c672019-07-15 22:53:46 -0700878func javadocSystemModulesCmd(ctx android.ModuleContext, rule *android.RuleBuilder, srcs android.Paths,
879 outDir, srcJarDir, srcJarList android.Path, systemModules *systemModules,
880 classpath classpath, sourcepaths android.Paths) *android.RuleBuilderCommand {
881
882 cmd := javadocCmd(ctx, rule, srcs, outDir, srcJarDir, srcJarList, sourcepaths)
883
884 flag, deps := systemModules.FormJavaSystemModulesPath(ctx.Device())
885 cmd.Flag(flag).Implicits(deps)
886
887 cmd.FlagWithArg("--patch-module ", "java.base=.")
888
889 if len(classpath) > 0 {
890 cmd.FlagWithInputList("-classpath ", classpath.Paths(), ":")
891 }
892
893 return cmd
Nan Zhang1598a9e2018-09-04 17:14:32 -0700894}
895
Colin Crossdaa4c672019-07-15 22:53:46 -0700896func javadocBootclasspathCmd(ctx android.ModuleContext, rule *android.RuleBuilder, srcs android.Paths,
897 outDir, srcJarDir, srcJarList android.Path, bootclasspath, classpath classpath,
898 sourcepaths android.Paths) *android.RuleBuilderCommand {
899
900 cmd := javadocCmd(ctx, rule, srcs, outDir, srcJarDir, srcJarList, sourcepaths)
901
902 if len(bootclasspath) == 0 && ctx.Device() {
903 // explicitly specify -bootclasspath "" if the bootclasspath is empty to
904 // ensure java does not fall back to the default bootclasspath.
905 cmd.FlagWithArg("-bootclasspath ", `""`)
906 } else if len(bootclasspath) > 0 {
907 cmd.FlagWithInputList("-bootclasspath ", bootclasspath.Paths(), ":")
908 }
909
910 if len(classpath) > 0 {
911 cmd.FlagWithInputList("-classpath ", classpath.Paths(), ":")
912 }
913
914 return cmd
915}
916
Colin Crossab054432019-07-15 16:13:59 -0700917func dokkaCmd(ctx android.ModuleContext, rule *android.RuleBuilder,
918 outDir, srcJarDir android.Path, bootclasspath, classpath classpath) *android.RuleBuilderCommand {
Nan Zhang1598a9e2018-09-04 17:14:32 -0700919
Colin Crossab054432019-07-15 16:13:59 -0700920 // Dokka doesn't support bootClasspath, so combine these two classpath vars for Dokka.
921 dokkaClasspath := append(bootclasspath.Paths(), classpath.Paths()...)
922
923 return rule.Command().
924 BuiltTool(ctx, "dokka").
925 Flag(config.JavacVmFlags).
926 Flag(srcJarDir.String()).
927 FlagWithInputList("-classpath ", dokkaClasspath, ":").
928 FlagWithArg("-format ", "dac").
929 FlagWithArg("-dacRoot ", "/reference/kotlin").
930 FlagWithArg("-output ", outDir.String())
Nan Zhang1598a9e2018-09-04 17:14:32 -0700931}
932
933func (d *Droiddoc) GenerateAndroidBuildActions(ctx android.ModuleContext) {
934 deps := d.Javadoc.collectDeps(ctx)
935
Colin Crossdaa4c672019-07-15 22:53:46 -0700936 d.Javadoc.docZip = android.PathForModuleOut(ctx, ctx.ModuleName()+"-"+"docs.zip")
Colin Crossdaa4c672019-07-15 22:53:46 -0700937
Nan Zhang1598a9e2018-09-04 17:14:32 -0700938 jsilver := android.PathForOutput(ctx, "host", ctx.Config().PrebuiltOS(), "framework", "jsilver.jar")
939 doclava := android.PathForOutput(ctx, "host", ctx.Config().PrebuiltOS(), "framework", "doclava.jar")
Nan Zhang1598a9e2018-09-04 17:14:32 -0700940
Colin Crossab054432019-07-15 16:13:59 -0700941 outDir := android.PathForModuleOut(ctx, "out")
942 srcJarDir := android.PathForModuleOut(ctx, "srcjars")
Nan Zhang1598a9e2018-09-04 17:14:32 -0700943
Colin Crossab054432019-07-15 16:13:59 -0700944 rule := android.NewRuleBuilder()
Nan Zhang1598a9e2018-09-04 17:14:32 -0700945
Colin Crossab054432019-07-15 16:13:59 -0700946 srcJarList := zipSyncCmd(ctx, rule, srcJarDir, d.Javadoc.srcJars)
947
948 var cmd *android.RuleBuilderCommand
Nan Zhang1598a9e2018-09-04 17:14:32 -0700949 if Bool(d.properties.Dokka_enabled) {
Colin Crossab054432019-07-15 16:13:59 -0700950 cmd = dokkaCmd(ctx, rule, outDir, srcJarDir, deps.bootClasspath, deps.classpath)
Nan Zhang1598a9e2018-09-04 17:14:32 -0700951 } else {
Colin Crossdaa4c672019-07-15 22:53:46 -0700952 cmd = javadocBootclasspathCmd(ctx, rule, d.Javadoc.srcFiles, outDir, srcJarDir, srcJarList,
Colin Crossab054432019-07-15 16:13:59 -0700953 deps.bootClasspath, deps.classpath, d.Javadoc.sourcepaths)
Nan Zhang1598a9e2018-09-04 17:14:32 -0700954 }
955
Liz Kammer585cac22020-07-06 09:12:57 -0700956 cmd.Flag(strings.Join(d.Javadoc.args, " ")).Implicits(d.Javadoc.argFiles)
Colin Crossab054432019-07-15 16:13:59 -0700957
Mathew Inwoodabd49ab2019-12-19 14:27:08 +0000958 if d.properties.Compat_config != nil {
959 compatConfig := android.PathForModuleSrc(ctx, String(d.properties.Compat_config))
960 cmd.FlagWithInput("-compatconfig ", compatConfig)
961 }
962
Colin Crossab054432019-07-15 16:13:59 -0700963 var desc string
964 if Bool(d.properties.Dokka_enabled) {
965 desc = "dokka"
966 } else {
967 d.doclavaDocsFlags(ctx, cmd, classpath{jsilver, doclava})
968
969 for _, o := range d.Javadoc.properties.Out {
970 cmd.ImplicitOutput(android.PathForModuleGen(ctx, o))
971 }
972
973 d.postDoclavaCmds(ctx, rule)
974 desc = "doclava"
975 }
976
977 rule.Command().
978 BuiltTool(ctx, "soong_zip").
979 Flag("-write_if_changed").
980 Flag("-d").
981 FlagWithOutput("-o ", d.docZip).
982 FlagWithArg("-C ", outDir.String()).
983 FlagWithArg("-D ", outDir.String())
984
Colin Crossab054432019-07-15 16:13:59 -0700985 rule.Restat()
986
987 zipSyncCleanupCmd(rule, srcJarDir)
988
989 rule.Build(pctx, ctx, "javadoc", desc)
Nan Zhang1598a9e2018-09-04 17:14:32 -0700990}
991
992//
993// Droidstubs
994//
995type Droidstubs struct {
996 Javadoc
Paul Duffin91547182019-11-12 19:39:36 +0000997 android.SdkBase
Nan Zhang1598a9e2018-09-04 17:14:32 -0700998
Pete Gillin581d6082018-10-22 15:55:04 +0100999 properties DroidstubsProperties
1000 apiFile android.WritablePath
1001 apiXmlFile android.WritablePath
1002 lastReleasedApiXmlFile android.WritablePath
Pete Gillin581d6082018-10-22 15:55:04 +01001003 privateApiFile android.WritablePath
Pete Gillin581d6082018-10-22 15:55:04 +01001004 removedApiFile android.WritablePath
1005 removedDexApiFile android.WritablePath
Pete Gillin581d6082018-10-22 15:55:04 +01001006 nullabilityWarningsFile android.WritablePath
Nan Zhang1598a9e2018-09-04 17:14:32 -07001007
1008 checkCurrentApiTimestamp android.WritablePath
1009 updateCurrentApiTimestamp android.WritablePath
1010 checkLastReleasedApiTimestamp android.WritablePath
Adrian Roos075eedc2019-10-10 12:07:03 +02001011 apiLintTimestamp android.WritablePath
Adrian Roos3b8f1cd2019-11-01 13:42:39 +01001012 apiLintReport android.WritablePath
Nan Zhang1598a9e2018-09-04 17:14:32 -07001013
Pete Gillin581d6082018-10-22 15:55:04 +01001014 checkNullabilityWarningsTimestamp android.WritablePath
1015
Nan Zhang1598a9e2018-09-04 17:14:32 -07001016 annotationsZip android.WritablePath
Nan Zhang9c69a122018-08-22 10:22:08 -07001017 apiVersionsXml android.WritablePath
Nan Zhang1598a9e2018-09-04 17:14:32 -07001018
1019 apiFilePath android.Path
Nan Zhang71bbe632018-09-17 14:32:21 -07001020
Jerome Gaillard0f599032019-10-10 19:29:11 +01001021 metadataZip android.WritablePath
1022 metadataDir android.WritablePath
Nan Zhang1598a9e2018-09-04 17:14:32 -07001023}
1024
Colin Crossa3002fc2019-07-08 16:48:04 -07001025// droidstubs passes sources files through Metalava to generate stub .java files that only contain the API to be
1026// documented, filtering out hidden classes and methods. The resulting .java files are intended to be passed to
1027// a droiddoc module to generate documentation.
Nan Zhang1598a9e2018-09-04 17:14:32 -07001028func DroidstubsFactory() android.Module {
1029 module := &Droidstubs{}
1030
1031 module.AddProperties(&module.properties,
1032 &module.Javadoc.properties)
1033
1034 InitDroiddocModule(module, android.HostAndDeviceSupported)
Paul Duffin91547182019-11-12 19:39:36 +00001035 android.InitSdkAwareModule(module)
Nan Zhang1598a9e2018-09-04 17:14:32 -07001036 return module
1037}
1038
Colin Crossa3002fc2019-07-08 16:48:04 -07001039// droidstubs_host passes sources files through Metalava to generate stub .java files that only contain the API
1040// to be documented, filtering out hidden classes and methods. The resulting .java files are intended to be
1041// passed to a droiddoc_host module to generate documentation. Use a droidstubs_host instead of a droidstubs
1042// module when symbols needed by the source files are provided by java_library_host modules.
Nan Zhang1598a9e2018-09-04 17:14:32 -07001043func DroidstubsHostFactory() android.Module {
1044 module := &Droidstubs{}
1045
1046 module.AddProperties(&module.properties,
1047 &module.Javadoc.properties)
1048
1049 InitDroiddocModule(module, android.HostSupported)
1050 return module
1051}
1052
Colin Cross014489c2020-06-02 20:09:13 -07001053func (d *Droidstubs) OutputFiles(tag string) (android.Paths, error) {
1054 switch tag {
1055 case "":
1056 return android.Paths{d.stubsSrcJar}, nil
1057 case ".docs.zip":
1058 return android.Paths{d.docZip}, nil
Anton Hanssonecf54352020-10-02 17:44:34 +01001059 case ".api.txt":
1060 return android.Paths{d.apiFilePath}, nil
1061 case ".removed-api.txt":
1062 return android.Paths{d.removedApiFile}, nil
Colin Cross014489c2020-06-02 20:09:13 -07001063 case ".annotations.zip":
1064 return android.Paths{d.annotationsZip}, nil
1065 case ".api_versions.xml":
1066 return android.Paths{d.apiVersionsXml}, nil
1067 default:
1068 return nil, fmt.Errorf("unsupported module reference tag %q", tag)
1069 }
1070}
1071
Nan Zhang1598a9e2018-09-04 17:14:32 -07001072func (d *Droidstubs) ApiFilePath() android.Path {
1073 return d.apiFilePath
1074}
1075
Paul Duffin1fd005d2020-04-09 01:08:11 +01001076func (d *Droidstubs) RemovedApiFilePath() android.Path {
1077 return d.removedApiFile
1078}
1079
Paul Duffin3d1248c2020-04-09 00:10:17 +01001080func (d *Droidstubs) StubsSrcJar() android.Path {
1081 return d.stubsSrcJar
1082}
1083
Nan Zhang1598a9e2018-09-04 17:14:32 -07001084func (d *Droidstubs) DepsMutator(ctx android.BottomUpMutatorContext) {
1085 d.Javadoc.addDeps(ctx)
1086
Paul Duffin160fe412020-05-10 19:32:20 +01001087 // If requested clear any properties that provide information about the latest version
1088 // of an API and which reference non-existent modules.
Inseob Kim38449af2019-02-28 14:24:05 +09001089 if Bool(d.properties.Check_api.Ignore_missing_latest_api) {
1090 ignoreMissingModules(ctx, &d.properties.Check_api.Last_released)
Paul Duffin160fe412020-05-10 19:32:20 +01001091
1092 // If the new_since references a module, e.g. :module-latest-api and the module
1093 // does not exist then clear it.
1094 newSinceSrc := d.properties.Check_api.Api_lint.New_since
1095 newSinceSrcModule := android.SrcIsModule(proptools.String(newSinceSrc))
1096 if newSinceSrcModule != "" && !ctx.OtherModuleExists(newSinceSrcModule) {
1097 d.properties.Check_api.Api_lint.New_since = nil
1098 }
Inseob Kim38449af2019-02-28 14:24:05 +09001099 }
1100
Nan Zhang1598a9e2018-09-04 17:14:32 -07001101 if len(d.properties.Merge_annotations_dirs) != 0 {
1102 for _, mergeAnnotationsDir := range d.properties.Merge_annotations_dirs {
1103 ctx.AddDependency(ctx.Module(), metalavaMergeAnnotationsDirTag, mergeAnnotationsDir)
1104 }
1105 }
Nan Zhang9c69a122018-08-22 10:22:08 -07001106
Pete Gillin77167902018-09-19 18:16:26 +01001107 if len(d.properties.Merge_inclusion_annotations_dirs) != 0 {
1108 for _, mergeInclusionAnnotationsDir := range d.properties.Merge_inclusion_annotations_dirs {
1109 ctx.AddDependency(ctx.Module(), metalavaMergeInclusionAnnotationsDirTag, mergeInclusionAnnotationsDir)
1110 }
1111 }
1112
Nan Zhang9c69a122018-08-22 10:22:08 -07001113 if len(d.properties.Api_levels_annotations_dirs) != 0 {
1114 for _, apiLevelsAnnotationsDir := range d.properties.Api_levels_annotations_dirs {
1115 ctx.AddDependency(ctx.Module(), metalavaAPILevelsAnnotationsDirTag, apiLevelsAnnotationsDir)
1116 }
1117 }
Nan Zhang1598a9e2018-09-04 17:14:32 -07001118}
1119
Paul Duffin3ae29512020-04-08 18:18:03 +01001120func (d *Droidstubs) stubsFlags(ctx android.ModuleContext, cmd *android.RuleBuilderCommand, stubsDir android.OptionalPath) {
Luca Stefanid63ea0a2019-09-01 21:49:45 +02001121 if apiCheckEnabled(ctx, d.properties.Check_api.Current, "current") ||
1122 apiCheckEnabled(ctx, d.properties.Check_api.Last_released, "last_released") ||
Nan Zhang1598a9e2018-09-04 17:14:32 -07001123 String(d.properties.Api_filename) != "" {
Liz Kammer9ed79152020-08-24 15:56:32 -07001124 filename := proptools.StringDefault(d.properties.Api_filename, ctx.ModuleName()+"_api.txt")
1125 d.apiFile = android.PathForModuleOut(ctx, filename)
Colin Cross33961b52019-07-11 11:01:22 -07001126 cmd.FlagWithOutput("--api ", d.apiFile)
Nan Zhang1598a9e2018-09-04 17:14:32 -07001127 d.apiFilePath = d.apiFile
1128 }
1129
Luca Stefanid63ea0a2019-09-01 21:49:45 +02001130 if apiCheckEnabled(ctx, d.properties.Check_api.Current, "current") ||
1131 apiCheckEnabled(ctx, d.properties.Check_api.Last_released, "last_released") ||
Nan Zhang1598a9e2018-09-04 17:14:32 -07001132 String(d.properties.Removed_api_filename) != "" {
Liz Kammer9ed79152020-08-24 15:56:32 -07001133 filename := proptools.StringDefault(d.properties.Removed_api_filename, ctx.ModuleName()+"_removed.txt")
1134 d.removedApiFile = android.PathForModuleOut(ctx, filename)
Colin Cross33961b52019-07-11 11:01:22 -07001135 cmd.FlagWithOutput("--removed-api ", d.removedApiFile)
Nan Zhang1598a9e2018-09-04 17:14:32 -07001136 }
1137
Nan Zhang1598a9e2018-09-04 17:14:32 -07001138 if String(d.properties.Removed_dex_api_filename) != "" {
1139 d.removedDexApiFile = android.PathForModuleOut(ctx, String(d.properties.Removed_dex_api_filename))
Colin Cross33961b52019-07-11 11:01:22 -07001140 cmd.FlagWithOutput("--removed-dex-api ", d.removedDexApiFile)
Nan Zhang1598a9e2018-09-04 17:14:32 -07001141 }
1142
Nan Zhang9c69a122018-08-22 10:22:08 -07001143 if Bool(d.properties.Write_sdk_values) {
Jerome Gaillard0f599032019-10-10 19:29:11 +01001144 d.metadataDir = android.PathForModuleOut(ctx, "metadata")
1145 cmd.FlagWithArg("--sdk-values ", d.metadataDir.String())
Nan Zhang9c69a122018-08-22 10:22:08 -07001146 }
1147
Paul Duffin3ae29512020-04-08 18:18:03 +01001148 if stubsDir.Valid() {
1149 if Bool(d.properties.Create_doc_stubs) {
1150 cmd.FlagWithArg("--doc-stubs ", stubsDir.String())
1151 } else {
1152 cmd.FlagWithArg("--stubs ", stubsDir.String())
Paul Duffin6877e6d2020-09-25 19:59:14 +01001153 if !Bool(d.properties.Output_javadoc_comments) {
1154 cmd.Flag("--exclude-documentation-from-stubs")
1155 }
Paul Duffin3ae29512020-04-08 18:18:03 +01001156 }
Nan Zhang1598a9e2018-09-04 17:14:32 -07001157 }
Nan Zhang1598a9e2018-09-04 17:14:32 -07001158}
1159
Colin Cross33961b52019-07-11 11:01:22 -07001160func (d *Droidstubs) annotationsFlags(ctx android.ModuleContext, cmd *android.RuleBuilderCommand) {
Nan Zhang1598a9e2018-09-04 17:14:32 -07001161 if Bool(d.properties.Annotations_enabled) {
Colin Cross33961b52019-07-11 11:01:22 -07001162 cmd.Flag("--include-annotations")
1163
Pete Gillinc382a562018-11-14 18:45:46 +00001164 validatingNullability :=
Liz Kammer585cac22020-07-06 09:12:57 -07001165 android.InList("--validate-nullability-from-merged-stubs", d.Javadoc.args) ||
Pete Gillinc382a562018-11-14 18:45:46 +00001166 String(d.properties.Validate_nullability_from_list) != ""
Paul Duffin13a9dd62019-11-04 10:26:47 +00001167
Pete Gillina262c052018-09-14 14:25:48 +01001168 migratingNullability := String(d.properties.Previous_api) != ""
Pete Gillina262c052018-09-14 14:25:48 +01001169 if migratingNullability {
Colin Cross8a497952019-03-05 22:25:09 -08001170 previousApi := android.PathForModuleSrc(ctx, String(d.properties.Previous_api))
Colin Cross33961b52019-07-11 11:01:22 -07001171 cmd.FlagWithInput("--migrate-nullness ", previousApi)
Pete Gillina262c052018-09-14 14:25:48 +01001172 }
Colin Cross33961b52019-07-11 11:01:22 -07001173
Pete Gillinc382a562018-11-14 18:45:46 +00001174 if s := String(d.properties.Validate_nullability_from_list); s != "" {
Colin Cross33961b52019-07-11 11:01:22 -07001175 cmd.FlagWithInput("--validate-nullability-from-list ", android.PathForModuleSrc(ctx, s))
Pete Gillinc382a562018-11-14 18:45:46 +00001176 }
Colin Cross33961b52019-07-11 11:01:22 -07001177
Pete Gillina262c052018-09-14 14:25:48 +01001178 if validatingNullability {
Pete Gillin581d6082018-10-22 15:55:04 +01001179 d.nullabilityWarningsFile = android.PathForModuleOut(ctx, ctx.ModuleName()+"_nullability_warnings.txt")
Colin Cross33961b52019-07-11 11:01:22 -07001180 cmd.FlagWithOutput("--nullability-warnings-txt ", d.nullabilityWarningsFile)
Pete Gillina262c052018-09-14 14:25:48 +01001181 }
Nan Zhanga40da042018-08-01 12:48:00 -07001182
1183 d.annotationsZip = android.PathForModuleOut(ctx, ctx.ModuleName()+"_annotations.zip")
Colin Cross33961b52019-07-11 11:01:22 -07001184 cmd.FlagWithOutput("--extract-annotations ", d.annotationsZip)
Nan Zhangf4936b02018-08-01 15:00:28 -07001185
Anton Hansson9d7c3fb2020-05-21 10:11:31 +01001186 if len(d.properties.Merge_annotations_dirs) != 0 {
1187 d.mergeAnnoDirFlags(ctx, cmd)
Nan Zhanga40da042018-08-01 12:48:00 -07001188 }
Neil Fullerb2f14ec2018-10-21 22:13:19 +01001189
Colin Cross33961b52019-07-11 11:01:22 -07001190 // TODO(tnorbye): find owners to fix these warnings when annotation was enabled.
1191 cmd.FlagWithArg("--hide ", "HiddenTypedefConstant").
1192 FlagWithArg("--hide ", "SuperfluousPrefix").
1193 FlagWithArg("--hide ", "AnnotationExtraction")
1194 }
Neil Fullerb2f14ec2018-10-21 22:13:19 +01001195}
1196
Colin Cross33961b52019-07-11 11:01:22 -07001197func (d *Droidstubs) mergeAnnoDirFlags(ctx android.ModuleContext, cmd *android.RuleBuilderCommand) {
1198 ctx.VisitDirectDepsWithTag(metalavaMergeAnnotationsDirTag, func(m android.Module) {
1199 if t, ok := m.(*ExportedDroiddocDir); ok {
1200 cmd.FlagWithArg("--merge-qualifier-annotations ", t.dir.String()).Implicits(t.deps)
1201 } else {
1202 ctx.PropertyErrorf("merge_annotations_dirs",
1203 "module %q is not a metalava merge-annotations dir", ctx.OtherModuleName(m))
1204 }
1205 })
1206}
1207
1208func (d *Droidstubs) inclusionAnnotationsFlags(ctx android.ModuleContext, cmd *android.RuleBuilderCommand) {
Pete Gillin77167902018-09-19 18:16:26 +01001209 ctx.VisitDirectDepsWithTag(metalavaMergeInclusionAnnotationsDirTag, func(m android.Module) {
1210 if t, ok := m.(*ExportedDroiddocDir); ok {
Colin Cross33961b52019-07-11 11:01:22 -07001211 cmd.FlagWithArg("--merge-inclusion-annotations ", t.dir.String()).Implicits(t.deps)
Pete Gillin77167902018-09-19 18:16:26 +01001212 } else {
1213 ctx.PropertyErrorf("merge_inclusion_annotations_dirs",
1214 "module %q is not a metalava merge-annotations dir", ctx.OtherModuleName(m))
1215 }
1216 })
Nan Zhanga40da042018-08-01 12:48:00 -07001217}
1218
Colin Cross33961b52019-07-11 11:01:22 -07001219func (d *Droidstubs) apiLevelsAnnotationsFlags(ctx android.ModuleContext, cmd *android.RuleBuilderCommand) {
Liz Kammer3d894b72020-08-04 09:55:13 -07001220 if !Bool(d.properties.Api_levels_annotations_enabled) {
1221 return
Nan Zhang9c69a122018-08-22 10:22:08 -07001222 }
Liz Kammer3d894b72020-08-04 09:55:13 -07001223
1224 d.apiVersionsXml = android.PathForModuleOut(ctx, "api-versions.xml")
1225
1226 if len(d.properties.Api_levels_annotations_dirs) == 0 {
1227 ctx.PropertyErrorf("api_levels_annotations_dirs",
1228 "has to be non-empty if api levels annotations was enabled!")
1229 }
1230
1231 cmd.FlagWithOutput("--generate-api-levels ", d.apiVersionsXml)
1232 cmd.FlagWithInput("--apply-api-levels ", d.apiVersionsXml)
Dan Albert4f378d72020-07-23 17:32:15 -07001233 cmd.FlagWithArg("--current-version ", ctx.Config().PlatformSdkVersion().String())
Liz Kammer3d894b72020-08-04 09:55:13 -07001234 cmd.FlagWithArg("--current-codename ", ctx.Config().PlatformSdkCodename())
1235
1236 filename := proptools.StringDefault(d.properties.Api_levels_jar_filename, "android.jar")
1237
1238 ctx.VisitDirectDepsWithTag(metalavaAPILevelsAnnotationsDirTag, func(m android.Module) {
1239 if t, ok := m.(*ExportedDroiddocDir); ok {
1240 for _, dep := range t.deps {
1241 if strings.HasSuffix(dep.String(), filename) {
1242 cmd.Implicit(dep)
1243 }
1244 }
1245 cmd.FlagWithArg("--android-jar-pattern ", t.dir.String()+"/%/public/"+filename)
1246 } else {
1247 ctx.PropertyErrorf("api_levels_annotations_dirs",
1248 "module %q is not a metalava api-levels-annotations dir", ctx.OtherModuleName(m))
1249 }
1250 })
Nan Zhang9c69a122018-08-22 10:22:08 -07001251}
1252
Colin Cross1e743852019-10-28 11:37:20 -07001253func metalavaCmd(ctx android.ModuleContext, rule *android.RuleBuilder, javaVersion javaVersion, srcs android.Paths,
Ramy Medhat2f99eec2020-06-13 17:38:27 -04001254 srcJarList android.Path, bootclasspath, classpath classpath, sourcepaths android.Paths, implicitsRsp android.WritablePath, sandbox bool) *android.RuleBuilderCommand {
Colin Cross8b8bec32019-11-15 13:18:43 -08001255 // Metalava uses lots of memory, restrict the number of metalava jobs that can run in parallel.
1256 rule.HighMem()
Ramy Medhat427683c2020-04-30 03:08:37 -04001257 cmd := rule.Command()
Ramy Medhat16f23a42020-09-03 01:29:49 -04001258 if ctx.Config().UseRBE() && ctx.Config().IsEnvTrue("RBE_METALAVA") {
Ramy Medhat427683c2020-04-30 03:08:37 -04001259 rule.Remoteable(android.RemoteRuleSupports{RBE: true})
Ramy Medhat2f99eec2020-06-13 17:38:27 -04001260 pool := ctx.Config().GetenvWithDefault("RBE_METALAVA_POOL", "metalava")
1261 execStrategy := ctx.Config().GetenvWithDefault("RBE_METALAVA_EXEC_STRATEGY", remoteexec.LocalExecStrategy)
1262 labels := map[string]string{"type": "compile", "lang": "java", "compiler": "metalava"}
1263 if !sandbox {
1264 execStrategy = remoteexec.LocalExecStrategy
1265 labels["shallow"] = "true"
Ramy Medhat427683c2020-04-30 03:08:37 -04001266 }
1267 inputs := []string{android.PathForOutput(ctx, "host", ctx.Config().PrebuiltOS(), "framework", "metalava.jar").String()}
1268 if v := ctx.Config().Getenv("RBE_METALAVA_INPUTS"); v != "" {
1269 inputs = append(inputs, strings.Split(v, ",")...)
1270 }
1271 cmd.Text((&remoteexec.REParams{
Ramy Medhat2f99eec2020-06-13 17:38:27 -04001272 Labels: labels,
Ramy Medhat427683c2020-04-30 03:08:37 -04001273 ExecStrategy: execStrategy,
1274 Inputs: inputs,
Ramy Medhatc8d60bc2020-06-04 01:54:07 -04001275 RSPFile: implicitsRsp.String(),
Ramy Medhat427683c2020-04-30 03:08:37 -04001276 ToolchainInputs: []string{config.JavaCmd(ctx).String()},
1277 Platform: map[string]string{remoteexec.PoolKey: pool},
1278 }).NoVarTemplate(ctx.Config()))
1279 }
1280
1281 cmd.BuiltTool(ctx, "metalava").
Colin Cross33961b52019-07-11 11:01:22 -07001282 Flag(config.JavacVmFlags).
Aurimas Liutikas4c5efde2020-09-21 11:18:06 -07001283 Flag("-J--add-opens=java.base/java.util=ALL-UNNAMED").
Colin Cross33961b52019-07-11 11:01:22 -07001284 FlagWithArg("-encoding ", "UTF-8").
Colin Cross1e743852019-10-28 11:37:20 -07001285 FlagWithArg("-source ", javaVersion.String()).
Colin Cross33961b52019-07-11 11:01:22 -07001286 FlagWithRspFileInputList("@", srcs).
Ramy Medhat2f99eec2020-06-13 17:38:27 -04001287 FlagWithInput("@", srcJarList)
1288
1289 if javaHome := ctx.Config().Getenv("ANDROID_JAVA_HOME"); javaHome != "" {
1290 cmd.Implicit(android.PathForSource(ctx, javaHome))
1291 }
1292
1293 if sandbox {
1294 cmd.FlagWithOutput("--strict-input-files ", android.PathForModuleOut(ctx, ctx.ModuleName()+"-"+"violations.txt"))
1295 } else {
1296 cmd.FlagWithOutput("--strict-input-files:warn ", android.PathForModuleOut(ctx, ctx.ModuleName()+"-"+"violations.txt"))
1297 }
Ramy Medhatc8d60bc2020-06-04 01:54:07 -04001298
Colin Cross238c1f32020-06-07 16:58:18 -07001299 if implicitsRsp != nil {
Ramy Medhatc8d60bc2020-06-04 01:54:07 -04001300 cmd.FlagWithArg("--strict-input-files-exempt ", "@"+implicitsRsp.String())
1301 }
Colin Cross33961b52019-07-11 11:01:22 -07001302
1303 if len(bootclasspath) > 0 {
1304 cmd.FlagWithInputList("-bootclasspath ", bootclasspath.Paths(), ":")
Nan Zhang71bbe632018-09-17 14:32:21 -07001305 }
1306
Colin Cross33961b52019-07-11 11:01:22 -07001307 if len(classpath) > 0 {
1308 cmd.FlagWithInputList("-classpath ", classpath.Paths(), ":")
1309 }
Nan Zhang71bbe632018-09-17 14:32:21 -07001310
Colin Cross33961b52019-07-11 11:01:22 -07001311 if len(sourcepaths) > 0 {
1312 cmd.FlagWithList("-sourcepath ", sourcepaths.Strings(), ":")
1313 } else {
1314 cmd.FlagWithArg("-sourcepath ", `""`)
1315 }
Nan Zhang9c69a122018-08-22 10:22:08 -07001316
Colin Cross33961b52019-07-11 11:01:22 -07001317 cmd.Flag("--no-banner").
1318 Flag("--color").
1319 Flag("--quiet").
Makoto Onuki0df103a2020-07-17 15:11:24 -07001320 Flag("--format=v2").
1321 FlagWithArg("--repeat-errors-max ", "10").
1322 FlagWithArg("--hide ", "UnresolvedImport")
Nan Zhang86d2d552018-08-09 15:33:27 -07001323
Colin Cross33961b52019-07-11 11:01:22 -07001324 return cmd
Nan Zhang71bbe632018-09-17 14:32:21 -07001325}
1326
Nan Zhang1598a9e2018-09-04 17:14:32 -07001327func (d *Droidstubs) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Nan Zhanga40da042018-08-01 12:48:00 -07001328 deps := d.Javadoc.collectDeps(ctx)
1329
1330 javaVersion := getJavaVersion(ctx, String(d.Javadoc.properties.Java_version), sdkContext(d))
Nan Zhang581fd212018-01-10 16:06:12 -08001331
Colin Cross33961b52019-07-11 11:01:22 -07001332 // Create rule for metalava
Nan Zhanga40da042018-08-01 12:48:00 -07001333
Colin Cross33961b52019-07-11 11:01:22 -07001334 srcJarDir := android.PathForModuleOut(ctx, "srcjars")
Nan Zhang71bbe632018-09-17 14:32:21 -07001335
Colin Cross33961b52019-07-11 11:01:22 -07001336 rule := android.NewRuleBuilder()
Nan Zhanga40da042018-08-01 12:48:00 -07001337
Paul Duffin3ae29512020-04-08 18:18:03 +01001338 generateStubs := BoolDefault(d.properties.Generate_stubs, true)
1339 var stubsDir android.OptionalPath
1340 if generateStubs {
1341 d.Javadoc.stubsSrcJar = android.PathForModuleOut(ctx, ctx.ModuleName()+"-"+"stubs.srcjar")
1342 stubsDir = android.OptionalPathForPath(android.PathForModuleOut(ctx, "stubsDir"))
1343 rule.Command().Text("rm -rf").Text(stubsDir.String())
1344 rule.Command().Text("mkdir -p").Text(stubsDir.String())
1345 }
Nan Zhanga40da042018-08-01 12:48:00 -07001346
Colin Cross33961b52019-07-11 11:01:22 -07001347 srcJarList := zipSyncCmd(ctx, rule, srcJarDir, d.Javadoc.srcJars)
1348
Ramy Medhat2f99eec2020-06-13 17:38:27 -04001349 implicitsRsp := android.PathForModuleOut(ctx, ctx.ModuleName()+"-"+"implicits.rsp")
1350
Colin Cross33961b52019-07-11 11:01:22 -07001351 cmd := metalavaCmd(ctx, rule, javaVersion, d.Javadoc.srcFiles, srcJarList,
Ramy Medhat2f99eec2020-06-13 17:38:27 -04001352 deps.bootClasspath, deps.classpath, d.Javadoc.sourcepaths, implicitsRsp,
1353 Bool(d.Javadoc.properties.Sandbox))
1354 cmd.Implicits(d.Javadoc.implicits)
Colin Cross33961b52019-07-11 11:01:22 -07001355
1356 d.stubsFlags(ctx, cmd, stubsDir)
1357
1358 d.annotationsFlags(ctx, cmd)
1359 d.inclusionAnnotationsFlags(ctx, cmd)
1360 d.apiLevelsAnnotationsFlags(ctx, cmd)
Nan Zhang71bbe632018-09-17 14:32:21 -07001361
Liz Kammer585cac22020-07-06 09:12:57 -07001362 if android.InList("--generate-documentation", d.Javadoc.args) {
Nan Zhang1598a9e2018-09-04 17:14:32 -07001363 // Currently Metalava have the ability to invoke Javadoc in a seperate process.
1364 // Pass "-nodocs" to suppress the Javadoc invocation when Metalava receives
1365 // "--generate-documentation" arg. This is not needed when Metalava removes this feature.
Liz Kammer585cac22020-07-06 09:12:57 -07001366 d.Javadoc.args = append(d.Javadoc.args, "-nodocs")
Nan Zhang79614d12018-04-19 18:03:39 -07001367 }
Colin Cross33961b52019-07-11 11:01:22 -07001368
Liz Kammer585cac22020-07-06 09:12:57 -07001369 cmd.Flag(strings.Join(d.Javadoc.args, " ")).Implicits(d.Javadoc.argFiles)
Colin Cross33961b52019-07-11 11:01:22 -07001370 for _, o := range d.Javadoc.properties.Out {
1371 cmd.ImplicitOutput(android.PathForModuleGen(ctx, o))
1372 }
1373
Makoto Onuki88b99052020-04-27 17:22:16 -07001374 // Add options for the other optional tasks: API-lint and check-released.
1375 // We generate separate timestamp files for them.
1376
1377 doApiLint := false
1378 doCheckReleased := false
1379
1380 // Add API lint options.
1381
Dan Willemsen9f435972020-05-28 15:28:00 -07001382 if BoolDefault(d.properties.Check_api.Api_lint.Enabled, false) {
Makoto Onuki88b99052020-04-27 17:22:16 -07001383 doApiLint = true
1384
1385 newSince := android.OptionalPathForModuleSrc(ctx, d.properties.Check_api.Api_lint.New_since)
1386 if newSince.Valid() {
1387 cmd.FlagWithInput("--api-lint ", newSince.Path())
1388 } else {
1389 cmd.Flag("--api-lint")
1390 }
1391 d.apiLintReport = android.PathForModuleOut(ctx, "api_lint_report.txt")
1392 cmd.FlagWithOutput("--report-even-if-suppressed ", d.apiLintReport) // TODO: Change to ":api-lint"
1393
Makoto Onuki194c43f2020-04-27 17:22:16 -07001394 // TODO(b/154317059): Clean up this whitelist by baselining and/or checking in last-released.
1395 if d.Name() != "android.car-system-stubs-docs" &&
Anton Hanssonb30f5932020-09-16 13:14:18 +01001396 d.Name() != "android.car-stubs-docs" {
Makoto Onuki194c43f2020-04-27 17:22:16 -07001397 cmd.Flag("--lints-as-errors")
1398 cmd.Flag("--warnings-as-errors") // Most lints are actually warnings.
1399 }
1400
Makoto Onuki88b99052020-04-27 17:22:16 -07001401 baselineFile := android.OptionalPathForModuleSrc(ctx, d.properties.Check_api.Api_lint.Baseline_file)
1402 updatedBaselineOutput := android.PathForModuleOut(ctx, "api_lint_baseline.txt")
1403 d.apiLintTimestamp = android.PathForModuleOut(ctx, "api_lint.timestamp")
1404
1405 // Note this string includes a special shell quote $' ... ', which decodes the "\n"s.
1406 // However, because $' ... ' doesn't expand environmental variables, we can't just embed
1407 // $PWD, so we have to terminate $'...', use "$PWD", then start $' ... ' again,
1408 // which is why we have '"$PWD"$' in it.
1409 //
1410 // TODO: metalava also has a slightly different message hardcoded. Should we unify this
1411 // message and metalava's one?
1412 msg := `$'` + // Enclose with $' ... '
1413 `************************************************************\n` +
1414 `Your API changes are triggering API Lint warnings or errors.\n` +
1415 `To make these errors go away, fix the code according to the\n` +
1416 `error and/or warning messages above.\n` +
1417 `\n` +
1418 `If it is not possible to do so, there are workarounds:\n` +
1419 `\n` +
1420 `1. You can suppress the errors with @SuppressLint("<id>")\n`
1421
1422 if baselineFile.Valid() {
1423 cmd.FlagWithInput("--baseline:api-lint ", baselineFile.Path())
1424 cmd.FlagWithOutput("--update-baseline:api-lint ", updatedBaselineOutput)
1425
1426 msg += fmt.Sprintf(``+
1427 `2. You can update the baseline by executing the following\n`+
1428 ` command:\n`+
Anton Hansson3361a292020-05-11 15:38:31 +01001429 ` cp \\\n`+
1430 ` "'"$PWD"$'/%s" \\\n`+
1431 ` "'"$PWD"$'/%s"\n`+
Makoto Onuki88b99052020-04-27 17:22:16 -07001432 ` To submit the revised baseline.txt to the main Android\n`+
1433 ` repository, you will need approval.\n`, updatedBaselineOutput, baselineFile.Path())
1434 } else {
1435 msg += fmt.Sprintf(``+
1436 `2. You can add a baseline file of existing lint failures\n`+
1437 ` to the build rule of %s.\n`, d.Name())
1438 }
1439 // Note the message ends with a ' (single quote), to close the $' ... ' .
1440 msg += `************************************************************\n'`
1441
1442 cmd.FlagWithArg("--error-message:api-lint ", msg)
1443 }
1444
1445 // Add "check released" options. (Detect incompatible API changes from the last public release)
1446
Dan Willemsen9f435972020-05-28 15:28:00 -07001447 if apiCheckEnabled(ctx, d.properties.Check_api.Last_released, "last_released") {
Makoto Onuki88b99052020-04-27 17:22:16 -07001448 doCheckReleased = true
1449
1450 if len(d.Javadoc.properties.Out) > 0 {
1451 ctx.PropertyErrorf("out", "out property may not be combined with check_api")
1452 }
1453
1454 apiFile := android.PathForModuleSrc(ctx, String(d.properties.Check_api.Last_released.Api_file))
1455 removedApiFile := android.PathForModuleSrc(ctx, String(d.properties.Check_api.Last_released.Removed_api_file))
1456 baselineFile := android.OptionalPathForModuleSrc(ctx, d.properties.Check_api.Last_released.Baseline_file)
1457 updatedBaselineOutput := android.PathForModuleOut(ctx, "last_released_baseline.txt")
1458
1459 d.checkLastReleasedApiTimestamp = android.PathForModuleOut(ctx, "check_last_released_api.timestamp")
1460
1461 cmd.FlagWithInput("--check-compatibility:api:released ", apiFile)
1462 cmd.FlagWithInput("--check-compatibility:removed:released ", removedApiFile)
1463
1464 if baselineFile.Valid() {
1465 cmd.FlagWithInput("--baseline:compatibility:released ", baselineFile.Path())
1466 cmd.FlagWithOutput("--update-baseline:compatibility:released ", updatedBaselineOutput)
1467 }
1468
1469 // Note this string includes quote ($' ... '), which decodes the "\n"s.
1470 msg := `$'\n******************************\n` +
1471 `You have tried to change the API from what has been previously released in\n` +
1472 `an SDK. Please fix the errors listed above.\n` +
1473 `******************************\n'`
1474
1475 cmd.FlagWithArg("--error-message:compatibility:released ", msg)
1476 }
1477
Ramy Medhat2f99eec2020-06-13 17:38:27 -04001478 impRule := android.NewRuleBuilder()
1479 impCmd := impRule.Command()
Liz Kammer20ebfb42020-07-28 11:32:07 -07001480 // An action that copies the ninja generated rsp file to a new location. This allows us to
Ramy Medhat2f99eec2020-06-13 17:38:27 -04001481 // add a large number of inputs to a file without exceeding bash command length limits (which
1482 // would happen if we use the WriteFile rule). The cp is needed because RuleBuilder sets the
1483 // rsp file to be ${output}.rsp.
1484 impCmd.Text("cp").FlagWithRspFileInputList("", cmd.GetImplicits()).Output(implicitsRsp)
1485 impRule.Build(pctx, ctx, "implicitsGen", "implicits generation")
1486 cmd.Implicit(implicitsRsp)
1487
Paul Duffin3ae29512020-04-08 18:18:03 +01001488 if generateStubs {
1489 rule.Command().
1490 BuiltTool(ctx, "soong_zip").
1491 Flag("-write_if_changed").
1492 Flag("-jar").
1493 FlagWithOutput("-o ", d.Javadoc.stubsSrcJar).
1494 FlagWithArg("-C ", stubsDir.String()).
1495 FlagWithArg("-D ", stubsDir.String())
1496 }
Jerome Gaillard0f599032019-10-10 19:29:11 +01001497
1498 if Bool(d.properties.Write_sdk_values) {
1499 d.metadataZip = android.PathForModuleOut(ctx, ctx.ModuleName()+"-metadata.zip")
1500 rule.Command().
1501 BuiltTool(ctx, "soong_zip").
1502 Flag("-write_if_changed").
1503 Flag("-d").
1504 FlagWithOutput("-o ", d.metadataZip).
1505 FlagWithArg("-C ", d.metadataDir.String()).
1506 FlagWithArg("-D ", d.metadataDir.String())
1507 }
1508
Makoto Onuki88b99052020-04-27 17:22:16 -07001509 // TODO: We don't really need two separate API files, but this is a reminiscence of how
1510 // we used to run metalava separately for API lint and the "last_released" check. Unify them.
1511 if doApiLint {
1512 rule.Command().Text("touch").Output(d.apiLintTimestamp)
1513 }
1514 if doCheckReleased {
1515 rule.Command().Text("touch").Output(d.checkLastReleasedApiTimestamp)
1516 }
1517
Colin Cross33961b52019-07-11 11:01:22 -07001518 rule.Restat()
1519
1520 zipSyncCleanupCmd(rule, srcJarDir)
1521
Makoto Onuki88b99052020-04-27 17:22:16 -07001522 rule.Build(pctx, ctx, "metalava", "metalava merged")
Adrian Roos075eedc2019-10-10 12:07:03 +02001523
Dan Willemsen9f435972020-05-28 15:28:00 -07001524 if apiCheckEnabled(ctx, d.properties.Check_api.Current, "current") {
Colin Cross33961b52019-07-11 11:01:22 -07001525
1526 if len(d.Javadoc.properties.Out) > 0 {
1527 ctx.PropertyErrorf("out", "out property may not be combined with check_api")
1528 }
1529
1530 apiFile := android.PathForModuleSrc(ctx, String(d.properties.Check_api.Current.Api_file))
1531 removedApiFile := android.PathForModuleSrc(ctx, String(d.properties.Check_api.Current.Removed_api_file))
Adrian Roos14f75a92019-08-12 17:54:09 +02001532 baselineFile := android.OptionalPathForModuleSrc(ctx, d.properties.Check_api.Current.Baseline_file)
Makoto Onuki5405a732020-04-16 17:02:40 -07001533
1534 if baselineFile.Valid() {
Makoto Onuki88b99052020-04-27 17:22:16 -07001535 ctx.PropertyErrorf("baseline_file", "current API check can't have a baseline file. (module %s)", ctx.ModuleName())
Makoto Onuki5405a732020-04-16 17:02:40 -07001536 }
Nan Zhang61819ce2018-05-04 18:49:16 -07001537
Nan Zhang2760dfc2018-08-24 17:32:54 +00001538 d.checkCurrentApiTimestamp = android.PathForModuleOut(ctx, "check_current_api.timestamp")
Nan Zhang2760dfc2018-08-24 17:32:54 +00001539
Colin Cross33961b52019-07-11 11:01:22 -07001540 rule := android.NewRuleBuilder()
1541
Makoto Onuki5405a732020-04-16 17:02:40 -07001542 // Diff command line.
Makoto Onuki88b99052020-04-27 17:22:16 -07001543 // -F matches the closest "opening" line, such as "package android {"
1544 // and " public class Intent {".
Makoto Onuki5405a732020-04-16 17:02:40 -07001545 diff := `diff -u -F '{ *$'`
1546
Colin Cross33961b52019-07-11 11:01:22 -07001547 rule.Command().Text("( true")
Makoto Onuki5405a732020-04-16 17:02:40 -07001548 rule.Command().
1549 Text(diff).
1550 Input(apiFile).Input(d.apiFile)
Colin Cross33961b52019-07-11 11:01:22 -07001551
Makoto Onuki5405a732020-04-16 17:02:40 -07001552 rule.Command().
1553 Text(diff).
1554 Input(removedApiFile).Input(d.removedApiFile)
Colin Cross33961b52019-07-11 11:01:22 -07001555
1556 msg := fmt.Sprintf(`\n******************************\n`+
1557 `You have tried to change the API from what has been previously approved.\n\n`+
1558 `To make these errors go away, you have two choices:\n`+
Makoto Onuki5405a732020-04-16 17:02:40 -07001559 ` 1. You can add '@hide' javadoc comments (and remove @SystemApi/@TestApi/etc)\n`+
1560 ` to the new methods, etc. shown in the above diff.\n\n`+
1561 ` 2. You can update current.txt and/or removed.txt by executing the following command:\n`+
Colin Cross33961b52019-07-11 11:01:22 -07001562 ` make %s-update-current-api\n\n`+
1563 ` To submit the revised current.txt to the main Android repository,\n`+
1564 ` you will need approval.\n`+
1565 `******************************\n`, ctx.ModuleName())
1566
1567 rule.Command().
1568 Text("touch").Output(d.checkCurrentApiTimestamp).
1569 Text(") || (").
1570 Text("echo").Flag("-e").Flag(`"` + msg + `"`).
1571 Text("; exit 38").
1572 Text(")")
1573
Makoto Onuki5405a732020-04-16 17:02:40 -07001574 rule.Build(pctx, ctx, "metalavaCurrentApiCheck", "check current API")
Nan Zhang61819ce2018-05-04 18:49:16 -07001575
1576 d.updateCurrentApiTimestamp = android.PathForModuleOut(ctx, "update_current_api.timestamp")
Colin Cross33961b52019-07-11 11:01:22 -07001577
1578 // update API rule
1579 rule = android.NewRuleBuilder()
1580
1581 rule.Command().Text("( true")
1582
1583 rule.Command().
1584 Text("cp").Flag("-f").
1585 Input(d.apiFile).Flag(apiFile.String())
1586
1587 rule.Command().
1588 Text("cp").Flag("-f").
1589 Input(d.removedApiFile).Flag(removedApiFile.String())
1590
1591 msg = "failed to update public API"
1592
1593 rule.Command().
1594 Text("touch").Output(d.updateCurrentApiTimestamp).
1595 Text(") || (").
1596 Text("echo").Flag("-e").Flag(`"` + msg + `"`).
1597 Text("; exit 38").
1598 Text(")")
1599
1600 rule.Build(pctx, ctx, "metalavaCurrentApiUpdate", "update current API")
Nan Zhang61819ce2018-05-04 18:49:16 -07001601 }
Nan Zhanga40da042018-08-01 12:48:00 -07001602
Pete Gillin581d6082018-10-22 15:55:04 +01001603 if String(d.properties.Check_nullability_warnings) != "" {
1604 if d.nullabilityWarningsFile == nil {
1605 ctx.PropertyErrorf("check_nullability_warnings",
1606 "Cannot specify check_nullability_warnings unless validating nullability")
1607 }
Colin Cross33961b52019-07-11 11:01:22 -07001608
1609 checkNullabilityWarnings := android.PathForModuleSrc(ctx, String(d.properties.Check_nullability_warnings))
1610
Pete Gillin581d6082018-10-22 15:55:04 +01001611 d.checkNullabilityWarningsTimestamp = android.PathForModuleOut(ctx, "check_nullability_warnings.timestamp")
Colin Cross33961b52019-07-11 11:01:22 -07001612
Pete Gillin581d6082018-10-22 15:55:04 +01001613 msg := fmt.Sprintf(`\n******************************\n`+
1614 `The warnings encountered during nullability annotation validation did\n`+
1615 `not match the checked in file of expected warnings. The diffs are shown\n`+
1616 `above. You have two options:\n`+
1617 ` 1. Resolve the differences by editing the nullability annotations.\n`+
1618 ` 2. Update the file of expected warnings by running:\n`+
1619 ` cp %s %s\n`+
1620 ` and submitting the updated file as part of your change.`,
1621 d.nullabilityWarningsFile, checkNullabilityWarnings)
Colin Cross33961b52019-07-11 11:01:22 -07001622
1623 rule := android.NewRuleBuilder()
1624
1625 rule.Command().
1626 Text("(").
1627 Text("diff").Input(checkNullabilityWarnings).Input(d.nullabilityWarningsFile).
1628 Text("&&").
1629 Text("touch").Output(d.checkNullabilityWarningsTimestamp).
1630 Text(") || (").
1631 Text("echo").Flag("-e").Flag(`"` + msg + `"`).
1632 Text("; exit 38").
1633 Text(")")
1634
1635 rule.Build(pctx, ctx, "nullabilityWarningsCheck", "nullability warnings check")
Pete Gillin581d6082018-10-22 15:55:04 +01001636 }
Nan Zhang581fd212018-01-10 16:06:12 -08001637}
Dan Willemsencc090972018-02-26 14:33:31 -08001638
Nan Zhanga40da042018-08-01 12:48:00 -07001639//
Nan Zhangf4936b02018-08-01 15:00:28 -07001640// Exported Droiddoc Directory
Nan Zhanga40da042018-08-01 12:48:00 -07001641//
Dan Willemsencc090972018-02-26 14:33:31 -08001642var droiddocTemplateTag = dependencyTag{name: "droiddoc-template"}
Nan Zhangf4936b02018-08-01 15:00:28 -07001643var metalavaMergeAnnotationsDirTag = dependencyTag{name: "metalava-merge-annotations-dir"}
Pete Gillin77167902018-09-19 18:16:26 +01001644var metalavaMergeInclusionAnnotationsDirTag = dependencyTag{name: "metalava-merge-inclusion-annotations-dir"}
Nan Zhang9c69a122018-08-22 10:22:08 -07001645var metalavaAPILevelsAnnotationsDirTag = dependencyTag{name: "metalava-api-levels-annotations-dir"}
Dan Willemsencc090972018-02-26 14:33:31 -08001646
Nan Zhangf4936b02018-08-01 15:00:28 -07001647type ExportedDroiddocDirProperties struct {
1648 // path to the directory containing Droiddoc related files.
Dan Willemsencc090972018-02-26 14:33:31 -08001649 Path *string
1650}
1651
Nan Zhangf4936b02018-08-01 15:00:28 -07001652type ExportedDroiddocDir struct {
Dan Willemsencc090972018-02-26 14:33:31 -08001653 android.ModuleBase
1654
Nan Zhangf4936b02018-08-01 15:00:28 -07001655 properties ExportedDroiddocDirProperties
Dan Willemsencc090972018-02-26 14:33:31 -08001656
1657 deps android.Paths
1658 dir android.Path
1659}
1660
Colin Crossa3002fc2019-07-08 16:48:04 -07001661// droiddoc_exported_dir exports a directory of html templates or nullability annotations for use by doclava.
Nan Zhangf4936b02018-08-01 15:00:28 -07001662func ExportedDroiddocDirFactory() android.Module {
1663 module := &ExportedDroiddocDir{}
Dan Willemsencc090972018-02-26 14:33:31 -08001664 module.AddProperties(&module.properties)
1665 android.InitAndroidModule(module)
1666 return module
1667}
1668
Nan Zhangf4936b02018-08-01 15:00:28 -07001669func (d *ExportedDroiddocDir) DepsMutator(android.BottomUpMutatorContext) {}
Dan Willemsencc090972018-02-26 14:33:31 -08001670
Nan Zhangf4936b02018-08-01 15:00:28 -07001671func (d *ExportedDroiddocDir) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross07e51612019-03-05 12:46:40 -08001672 path := String(d.properties.Path)
1673 d.dir = android.PathForModuleSrc(ctx, path)
Colin Cross8a497952019-03-05 22:25:09 -08001674 d.deps = android.PathsForModuleSrc(ctx, []string{filepath.Join(path, "**/*")})
Dan Willemsencc090972018-02-26 14:33:31 -08001675}
Nan Zhangb2b33de2018-02-23 11:18:47 -08001676
1677//
1678// Defaults
1679//
1680type DocDefaults struct {
1681 android.ModuleBase
1682 android.DefaultsModuleBase
1683}
1684
Nan Zhangb2b33de2018-02-23 11:18:47 -08001685func DocDefaultsFactory() android.Module {
1686 module := &DocDefaults{}
1687
1688 module.AddProperties(
1689 &JavadocProperties{},
1690 &DroiddocProperties{},
1691 )
1692
1693 android.InitDefaultsModule(module)
1694
1695 return module
1696}
Nan Zhang1598a9e2018-09-04 17:14:32 -07001697
1698func StubsDefaultsFactory() android.Module {
1699 module := &DocDefaults{}
1700
1701 module.AddProperties(
1702 &JavadocProperties{},
1703 &DroidstubsProperties{},
1704 )
1705
1706 android.InitDefaultsModule(module)
1707
1708 return module
1709}
Colin Cross33961b52019-07-11 11:01:22 -07001710
1711func zipSyncCmd(ctx android.ModuleContext, rule *android.RuleBuilder,
1712 srcJarDir android.ModuleOutPath, srcJars android.Paths) android.OutputPath {
1713
1714 rule.Command().Text("rm -rf").Text(srcJarDir.String())
1715 rule.Command().Text("mkdir -p").Text(srcJarDir.String())
1716 srcJarList := srcJarDir.Join(ctx, "list")
1717
1718 rule.Temporary(srcJarList)
1719
1720 rule.Command().BuiltTool(ctx, "zipsync").
1721 FlagWithArg("-d ", srcJarDir.String()).
1722 FlagWithOutput("-l ", srcJarList).
1723 FlagWithArg("-f ", `"*.java"`).
1724 Inputs(srcJars)
1725
1726 return srcJarList
1727}
1728
1729func zipSyncCleanupCmd(rule *android.RuleBuilder, srcJarDir android.ModuleOutPath) {
1730 rule.Command().Text("rm -rf").Text(srcJarDir.String())
1731}
Paul Duffin91547182019-11-12 19:39:36 +00001732
1733var _ android.PrebuiltInterface = (*PrebuiltStubsSources)(nil)
1734
1735type PrebuiltStubsSourcesProperties struct {
1736 Srcs []string `android:"path"`
1737}
1738
1739type PrebuiltStubsSources struct {
1740 android.ModuleBase
1741 android.DefaultableModuleBase
1742 prebuilt android.Prebuilt
1743 android.SdkBase
1744
1745 properties PrebuiltStubsSourcesProperties
1746
Paul Duffin9b478b02019-12-10 13:41:51 +00001747 // The source directories containing stubs source files.
1748 srcDirs android.Paths
Paul Duffin91547182019-11-12 19:39:36 +00001749 stubsSrcJar android.ModuleOutPath
1750}
1751
Paul Duffin9b478b02019-12-10 13:41:51 +00001752func (p *PrebuiltStubsSources) OutputFiles(tag string) (android.Paths, error) {
1753 switch tag {
1754 case "":
1755 return android.Paths{p.stubsSrcJar}, nil
1756 default:
1757 return nil, fmt.Errorf("unsupported module reference tag %q", tag)
1758 }
1759}
1760
Paul Duffin0f8faff2020-05-20 16:18:00 +01001761func (d *PrebuiltStubsSources) StubsSrcJar() android.Path {
1762 return d.stubsSrcJar
1763}
1764
Paul Duffin91547182019-11-12 19:39:36 +00001765func (p *PrebuiltStubsSources) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Paul Duffin9b478b02019-12-10 13:41:51 +00001766 p.stubsSrcJar = android.PathForModuleOut(ctx, ctx.ModuleName()+"-"+"stubs.srcjar")
1767
1768 p.srcDirs = android.PathsForModuleSrc(ctx, p.properties.Srcs)
1769
1770 rule := android.NewRuleBuilder()
1771 command := rule.Command().
1772 BuiltTool(ctx, "soong_zip").
1773 Flag("-write_if_changed").
1774 Flag("-jar").
1775 FlagWithOutput("-o ", p.stubsSrcJar)
1776
1777 for _, d := range p.srcDirs {
1778 dir := d.String()
1779 command.
1780 FlagWithArg("-C ", dir).
1781 FlagWithInput("-D ", d)
1782 }
1783
1784 rule.Restat()
1785
1786 rule.Build(pctx, ctx, "zip src", "Create srcjar from prebuilt source")
Paul Duffin91547182019-11-12 19:39:36 +00001787}
1788
1789func (p *PrebuiltStubsSources) Prebuilt() *android.Prebuilt {
1790 return &p.prebuilt
1791}
1792
1793func (p *PrebuiltStubsSources) Name() string {
1794 return p.prebuilt.Name(p.ModuleBase.Name())
1795}
1796
Paul Duffin91547182019-11-12 19:39:36 +00001797// prebuilt_stubs_sources imports a set of java source files as if they were
1798// generated by droidstubs.
1799//
1800// By default, a prebuilt_stubs_sources has a single variant that expects a
1801// set of `.java` files generated by droidstubs.
1802//
1803// Specifying `host_supported: true` will produce two variants, one for use as a dependency of device modules and one
1804// for host modules.
1805//
1806// Intended only for use by sdk snapshots.
1807func PrebuiltStubsSourcesFactory() android.Module {
1808 module := &PrebuiltStubsSources{}
1809
1810 module.AddProperties(&module.properties)
1811
1812 android.InitPrebuiltModule(module, &module.properties.Srcs)
1813 android.InitSdkAwareModule(module)
1814 InitDroiddocModule(module, android.HostAndDeviceSupported)
1815 return module
1816}
1817
Paul Duffin13879572019-11-28 14:31:38 +00001818type droidStubsSdkMemberType struct {
Paul Duffin255f18e2019-12-13 11:22:16 +00001819 android.SdkMemberTypeBase
Paul Duffin13879572019-11-28 14:31:38 +00001820}
1821
1822func (mt *droidStubsSdkMemberType) AddDependencies(mctx android.BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string) {
1823 mctx.AddVariationDependencies(nil, dependencyTag, names...)
1824}
1825
1826func (mt *droidStubsSdkMemberType) IsInstance(module android.Module) bool {
1827 _, ok := module.(*Droidstubs)
1828 return ok
1829}
1830
Paul Duffin495ffb92020-03-20 13:35:40 +00001831func (mt *droidStubsSdkMemberType) AddPrebuiltModule(ctx android.SdkMemberContext, member android.SdkMember) android.BpModule {
1832 return ctx.SnapshotBuilder().AddPrebuiltModule(member, "prebuilt_stubs_sources")
1833}
1834
1835func (mt *droidStubsSdkMemberType) CreateVariantPropertiesStruct() android.SdkMemberProperties {
1836 return &droidStubsInfoProperties{}
1837}
1838
1839type droidStubsInfoProperties struct {
1840 android.SdkMemberPropertiesBase
1841
1842 StubsSrcJar android.Path
1843}
1844
1845func (p *droidStubsInfoProperties) PopulateFromVariant(ctx android.SdkMemberContext, variant android.Module) {
1846 droidstubs := variant.(*Droidstubs)
1847 p.StubsSrcJar = droidstubs.stubsSrcJar
1848}
1849
1850func (p *droidStubsInfoProperties) AddToPropertySet(ctx android.SdkMemberContext, propertySet android.BpPropertySet) {
1851 if p.StubsSrcJar != nil {
1852 builder := ctx.SnapshotBuilder()
1853
1854 snapshotRelativeDir := filepath.Join("java", ctx.Name()+"_stubs_sources")
1855
1856 builder.UnzipToSnapshot(p.StubsSrcJar, snapshotRelativeDir)
1857
1858 propertySet.AddProperty("srcs", []string{snapshotRelativeDir})
Paul Duffin13879572019-11-28 14:31:38 +00001859 }
Paul Duffin91547182019-11-12 19:39:36 +00001860}