blob: 3065d57eb5c9b4c3f34625cbf75e013fed369897 [file] [log] [blame]
Jiyong Parkc678ad32018-04-10 13:07:10 +09001// 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 (
Jiyong Parkc678ad32018-04-10 13:07:10 +090018 "fmt"
19 "path"
Sundong Ahn054b19a2018-10-19 13:46:09 +090020 "path/filepath"
Paul Duffin46a26a82020-04-07 19:27:04 +010021 "reflect"
Paul Duffin46dc45a2020-05-14 15:39:10 +010022 "regexp"
Jiyong Park82484c02018-04-23 21:41:26 +090023 "sort"
Pedro Loureiro9956e5e2021-09-07 17:21:59 +000024 "strconv"
Jiyong Parkc678ad32018-04-10 13:07:10 +090025 "strings"
Jiyong Park82484c02018-04-23 21:41:26 +090026 "sync"
Jiyong Parkc678ad32018-04-10 13:07:10 +090027
Paul Duffind1b3a922020-01-22 11:57:20 +000028 "github.com/google/blueprint"
Jiyong Parkc678ad32018-04-10 13:07:10 +090029 "github.com/google/blueprint/proptools"
Paul Duffin46a26a82020-04-07 19:27:04 +010030
31 "android/soong/android"
Ulya Trafimovichdbf31662020-12-17 12:07:54 +000032 "android/soong/dexpreopt"
Jiyong Parkc678ad32018-04-10 13:07:10 +090033)
34
Jooyung Han58f26ab2019-12-18 15:34:32 +090035const (
Pedro Loureiro9956e5e2021-09-07 17:21:59 +000036 sdkXmlFileSuffix = ".xml"
Jiyong Parkc678ad32018-04-10 13:07:10 +090037)
38
Paul Duffind1b3a922020-01-22 11:57:20 +000039// A tag to associated a dependency with a specific api scope.
40type scopeDependencyTag struct {
41 blueprint.BaseDependencyTag
42 name string
43 apiScope *apiScope
Paul Duffinc8782502020-04-29 20:45:27 +010044
45 // Function for extracting appropriate path information from the dependency.
Colin Crossdcf71b22021-02-01 13:59:03 -080046 depInfoExtractor func(paths *scopePaths, ctx android.ModuleContext, dep android.Module) error
Paul Duffinc8782502020-04-29 20:45:27 +010047}
48
49// Extract tag specific information from the dependency.
50func (tag scopeDependencyTag) extractDepInfo(ctx android.ModuleContext, dep android.Module, paths *scopePaths) {
Colin Crossdcf71b22021-02-01 13:59:03 -080051 err := tag.depInfoExtractor(paths, ctx, dep)
Paul Duffinc8782502020-04-29 20:45:27 +010052 if err != nil {
53 ctx.ModuleErrorf("has an invalid {scopeDependencyTag: %s} dependency on module %s: %s", tag.name, ctx.OtherModuleName(dep), err.Error())
54 }
Paul Duffind1b3a922020-01-22 11:57:20 +000055}
56
Paul Duffin80342d72020-06-26 22:08:43 +010057var _ android.ReplaceSourceWithPrebuilt = (*scopeDependencyTag)(nil)
58
59func (tag scopeDependencyTag) ReplaceSourceWithPrebuilt() bool {
60 return false
61}
62
Paul Duffind1b3a922020-01-22 11:57:20 +000063// Provides information about an api scope, e.g. public, system, test.
64type apiScope struct {
65 // The name of the api scope, e.g. public, system, test
66 name string
67
Paul Duffin97b53b82020-05-05 14:40:52 +010068 // The api scope that this scope extends.
69 extends *apiScope
70
Paul Duffin3375e352020-04-28 10:44:03 +010071 // The legacy enabled status for a specific scope can be dependent on other
72 // properties that have been specified on the library so it is provided by
73 // a function that can determine the status by examining those properties.
74 legacyEnabledStatus func(module *SdkLibrary) bool
75
76 // The default enabled status for non-legacy behavior, which is triggered by
77 // explicitly enabling at least one api scope.
78 defaultEnabledStatus bool
79
80 // Gets a pointer to the scope specific properties.
81 scopeSpecificProperties func(module *SdkLibrary) *ApiScopeProperties
82
Paul Duffin46a26a82020-04-07 19:27:04 +010083 // The name of the field in the dynamically created structure.
84 fieldName string
85
Paul Duffin6b836ba2020-05-13 19:19:49 +010086 // The name of the property in the java_sdk_library_import
87 propertyName string
88
Paul Duffind1b3a922020-01-22 11:57:20 +000089 // The tag to use to depend on the stubs library module.
90 stubsTag scopeDependencyTag
91
Paul Duffin0ff08bd2020-04-29 13:30:54 +010092 // The tag to use to depend on the stubs source module (if separate from the API module).
93 stubsSourceTag scopeDependencyTag
94
95 // The tag to use to depend on the API file generating module (if separate from the stubs source module).
96 apiFileTag scopeDependencyTag
97
Paul Duffinc8782502020-04-29 20:45:27 +010098 // The tag to use to depend on the stubs source and API module.
99 stubsSourceAndApiTag scopeDependencyTag
Paul Duffind1b3a922020-01-22 11:57:20 +0000100
101 // The scope specific prefix to add to the api file base of "current.txt" or "removed.txt".
102 apiFilePrefix string
103
104 // The scope specific prefix to add to the sdk library module name to construct a scope specific
105 // module name.
106 moduleSuffix string
107
Paul Duffind1b3a922020-01-22 11:57:20 +0000108 // SDK version that the stubs library is built against. Note that this is always
109 // *current. Older stubs library built with a numbered SDK version is created from
110 // the prebuilt jar.
111 sdkVersion string
Paul Duffin1fb487d2020-04-07 18:50:10 +0100112
Paul Duffin15f34ef2020-07-20 18:04:44 +0100113 // The annotation that identifies this API level, empty for the public API scope.
114 annotation string
115
Paul Duffin1fb487d2020-04-07 18:50:10 +0100116 // Extra arguments to pass to droidstubs for this scope.
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100117 //
Paul Duffin15f34ef2020-07-20 18:04:44 +0100118 // This is not used directly but is used to construct the droidstubsArgs.
119 extraArgs []string
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100120
Paul Duffin15f34ef2020-07-20 18:04:44 +0100121 // The args that must be passed to droidstubs to generate the API and stubs source
122 // for this scope, constructed dynamically by initApiScope().
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100123 //
124 // The API only includes the additional members that this scope adds over the scope
125 // that it extends.
Paul Duffin15f34ef2020-07-20 18:04:44 +0100126 //
127 // The stubs source must include the definitions of everything that is in this
128 // api scope and all the scopes that this one extends.
129 droidstubsArgs []string
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100130
Anton Hansson6478ac12020-05-02 11:19:36 +0100131 // Whether the api scope can be treated as unstable, and should skip compat checks.
132 unstable bool
Paul Duffind1b3a922020-01-22 11:57:20 +0000133}
134
135// Initialize a scope, creating and adding appropriate dependency tags
136func initApiScope(scope *apiScope) *apiScope {
Paul Duffinc8782502020-04-29 20:45:27 +0100137 name := scope.name
Paul Duffin46dc45a2020-05-14 15:39:10 +0100138 scopeByName[name] = scope
139 allScopeNames = append(allScopeNames, name)
Paul Duffin6b836ba2020-05-13 19:19:49 +0100140 scope.propertyName = strings.ReplaceAll(name, "-", "_")
141 scope.fieldName = proptools.FieldNameForProperty(scope.propertyName)
Paul Duffind1b3a922020-01-22 11:57:20 +0000142 scope.stubsTag = scopeDependencyTag{
Paul Duffinc8782502020-04-29 20:45:27 +0100143 name: name + "-stubs",
144 apiScope: scope,
145 depInfoExtractor: (*scopePaths).extractStubsLibraryInfoFromDependency,
Paul Duffind1b3a922020-01-22 11:57:20 +0000146 }
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100147 scope.stubsSourceTag = scopeDependencyTag{
148 name: name + "-stubs-source",
149 apiScope: scope,
150 depInfoExtractor: (*scopePaths).extractStubsSourceInfoFromDep,
151 }
152 scope.apiFileTag = scopeDependencyTag{
153 name: name + "-api",
154 apiScope: scope,
155 depInfoExtractor: (*scopePaths).extractApiInfoFromDep,
156 }
Paul Duffinc8782502020-04-29 20:45:27 +0100157 scope.stubsSourceAndApiTag = scopeDependencyTag{
158 name: name + "-stubs-source-and-api",
159 apiScope: scope,
160 depInfoExtractor: (*scopePaths).extractStubsSourceAndApiInfoFromApiStubsProvider,
Paul Duffind1b3a922020-01-22 11:57:20 +0000161 }
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100162
163 // To get the args needed to generate the stubs source append all the args from
164 // this scope and all the scopes it extends as each set of args adds additional
165 // members to the stubs.
Paul Duffin15f34ef2020-07-20 18:04:44 +0100166 var scopeSpecificArgs []string
167 if scope.annotation != "" {
168 scopeSpecificArgs = []string{"--show-annotation", scope.annotation}
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100169 }
Paul Duffin15f34ef2020-07-20 18:04:44 +0100170 for s := scope; s != nil; s = s.extends {
171 scopeSpecificArgs = append(scopeSpecificArgs, s.extraArgs...)
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100172
Paul Duffin15f34ef2020-07-20 18:04:44 +0100173 // Ensure that the generated stubs includes all the API elements from the API scope
174 // that this scope extends.
175 if s != scope && s.annotation != "" {
176 scopeSpecificArgs = append(scopeSpecificArgs, "--show-for-stub-purposes-annotation", s.annotation)
177 }
178 }
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100179
Paul Duffin15f34ef2020-07-20 18:04:44 +0100180 // Escape any special characters in the arguments. This is needed because droidstubs
181 // passes these directly to the shell command.
182 scope.droidstubsArgs = proptools.ShellEscapeList(scopeSpecificArgs)
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100183
Paul Duffind1b3a922020-01-22 11:57:20 +0000184 return scope
185}
186
Anton Hansson08f476b2021-04-07 15:32:19 +0100187func (scope *apiScope) stubsLibraryModuleNameSuffix() string {
188 return ".stubs" + scope.moduleSuffix
189}
190
Paul Duffinc3091c82020-05-08 14:16:20 +0100191func (scope *apiScope) stubsLibraryModuleName(baseName string) string {
Anton Hansson08f476b2021-04-07 15:32:19 +0100192 return baseName + scope.stubsLibraryModuleNameSuffix()
Paul Duffind1b3a922020-01-22 11:57:20 +0000193}
194
Paul Duffinc8782502020-04-29 20:45:27 +0100195func (scope *apiScope) stubsSourceModuleName(baseName string) string {
Paul Duffindd9d0742020-05-08 15:52:37 +0100196 return baseName + ".stubs.source" + scope.moduleSuffix
Paul Duffind1b3a922020-01-22 11:57:20 +0000197}
198
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100199func (scope *apiScope) apiModuleName(baseName string) string {
Paul Duffindd9d0742020-05-08 15:52:37 +0100200 return baseName + ".api" + scope.moduleSuffix
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100201}
202
Paul Duffin3375e352020-04-28 10:44:03 +0100203func (scope *apiScope) String() string {
204 return scope.name
205}
206
Paul Duffind1b3a922020-01-22 11:57:20 +0000207type apiScopes []*apiScope
208
209func (scopes apiScopes) Strings(accessor func(*apiScope) string) []string {
210 var list []string
211 for _, scope := range scopes {
212 list = append(list, accessor(scope))
213 }
214 return list
215}
216
Jiyong Parkc678ad32018-04-10 13:07:10 +0900217var (
Paul Duffin46dc45a2020-05-14 15:39:10 +0100218 scopeByName = make(map[string]*apiScope)
219 allScopeNames []string
Paul Duffind1b3a922020-01-22 11:57:20 +0000220 apiScopePublic = initApiScope(&apiScope{
Paul Duffin3375e352020-04-28 10:44:03 +0100221 name: "public",
222
223 // Public scope is enabled by default for both legacy and non-legacy modes.
224 legacyEnabledStatus: func(module *SdkLibrary) bool {
225 return true
226 },
227 defaultEnabledStatus: true,
228
229 scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties {
230 return &module.sdkLibraryProperties.Public
231 },
Paul Duffind1b3a922020-01-22 11:57:20 +0000232 sdkVersion: "current",
233 })
234 apiScopeSystem = initApiScope(&apiScope{
Paul Duffin3375e352020-04-28 10:44:03 +0100235 name: "system",
236 extends: apiScopePublic,
237 legacyEnabledStatus: (*SdkLibrary).generateTestAndSystemScopesByDefault,
238 scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties {
239 return &module.sdkLibraryProperties.System
240 },
Paul Duffin15f34ef2020-07-20 18:04:44 +0100241 apiFilePrefix: "system-",
242 moduleSuffix: ".system",
243 sdkVersion: "system_current",
244 annotation: "android.annotation.SystemApi(client=android.annotation.SystemApi.Client.PRIVILEGED_APPS)",
Paul Duffind1b3a922020-01-22 11:57:20 +0000245 })
246 apiScopeTest = initApiScope(&apiScope{
Paul Duffin3375e352020-04-28 10:44:03 +0100247 name: "test",
Anton Hansson4fe970f2020-10-09 10:16:49 +0100248 extends: apiScopeSystem,
Paul Duffin3375e352020-04-28 10:44:03 +0100249 legacyEnabledStatus: (*SdkLibrary).generateTestAndSystemScopesByDefault,
250 scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties {
251 return &module.sdkLibraryProperties.Test
252 },
Paul Duffin15f34ef2020-07-20 18:04:44 +0100253 apiFilePrefix: "test-",
254 moduleSuffix: ".test",
255 sdkVersion: "test_current",
256 annotation: "android.annotation.TestApi",
257 unstable: true,
Paul Duffind1b3a922020-01-22 11:57:20 +0000258 })
Paul Duffin8f265b92020-04-28 14:13:56 +0100259 apiScopeModuleLib = initApiScope(&apiScope{
Paul Duffin6b836ba2020-05-13 19:19:49 +0100260 name: "module-lib",
Paul Duffin8f265b92020-04-28 14:13:56 +0100261 extends: apiScopeSystem,
Paul Duffin0c5bae52020-06-02 13:00:08 +0100262 // The module-lib scope is disabled by default in legacy mode.
Paul Duffin8f265b92020-04-28 14:13:56 +0100263 //
264 // Enabling this would break existing usages.
265 legacyEnabledStatus: func(module *SdkLibrary) bool {
266 return false
267 },
268 scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties {
269 return &module.sdkLibraryProperties.Module_lib
270 },
271 apiFilePrefix: "module-lib-",
272 moduleSuffix: ".module_lib",
273 sdkVersion: "module_current",
Paul Duffin15f34ef2020-07-20 18:04:44 +0100274 annotation: "android.annotation.SystemApi(client=android.annotation.SystemApi.Client.MODULE_LIBRARIES)",
Paul Duffin8f265b92020-04-28 14:13:56 +0100275 })
Paul Duffin0c5bae52020-06-02 13:00:08 +0100276 apiScopeSystemServer = initApiScope(&apiScope{
277 name: "system-server",
278 extends: apiScopePublic,
279 // The system-server scope is disabled by default in legacy mode.
280 //
281 // Enabling this would break existing usages.
282 legacyEnabledStatus: func(module *SdkLibrary) bool {
283 return false
284 },
285 scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties {
286 return &module.sdkLibraryProperties.System_server
287 },
288 apiFilePrefix: "system-server-",
289 moduleSuffix: ".system_server",
290 sdkVersion: "system_server_current",
Paul Duffin15f34ef2020-07-20 18:04:44 +0100291 annotation: "android.annotation.SystemApi(client=android.annotation.SystemApi.Client.SYSTEM_SERVER)",
292 extraArgs: []string{
293 "--hide-annotation", "android.annotation.Hide",
Paul Duffin0c5bae52020-06-02 13:00:08 +0100294 // com.android.* classes are okay in this interface"
Paul Duffin15f34ef2020-07-20 18:04:44 +0100295 "--hide", "InternalClasses",
Paul Duffin0c5bae52020-06-02 13:00:08 +0100296 },
297 })
Paul Duffind1b3a922020-01-22 11:57:20 +0000298 allApiScopes = apiScopes{
299 apiScopePublic,
300 apiScopeSystem,
301 apiScopeTest,
Paul Duffin8f265b92020-04-28 14:13:56 +0100302 apiScopeModuleLib,
Paul Duffin0c5bae52020-06-02 13:00:08 +0100303 apiScopeSystemServer,
Paul Duffind1b3a922020-01-22 11:57:20 +0000304 }
Jiyong Parkc678ad32018-04-10 13:07:10 +0900305)
306
Jiyong Park82484c02018-04-23 21:41:26 +0900307var (
308 javaSdkLibrariesLock sync.Mutex
309)
310
Jiyong Parkc678ad32018-04-10 13:07:10 +0900311// TODO: these are big features that are currently missing
Jiyong Park1be96912018-05-28 18:02:19 +0900312// 1) disallowing linking to the runtime shared lib
313// 2) HTML generation
Jiyong Parkc678ad32018-04-10 13:07:10 +0900314
315func init() {
Paul Duffin43dc1cc2019-12-19 11:18:54 +0000316 RegisterSdkLibraryBuildComponents(android.InitRegistrationContext)
Jiyong Parkc678ad32018-04-10 13:07:10 +0900317
Jiyong Park82484c02018-04-23 21:41:26 +0900318 android.RegisterMakeVarsProvider(pctx, func(ctx android.MakeVarsContext) {
319 javaSdkLibraries := javaSdkLibraries(ctx.Config())
320 sort.Strings(*javaSdkLibraries)
321 ctx.Strict("JAVA_SDK_LIBRARIES", strings.Join(*javaSdkLibraries, " "))
322 })
Paul Duffindd46f712020-02-10 13:37:10 +0000323
324 // Register sdk member types.
Paul Duffin976b0e52021-04-27 23:20:26 +0100325 android.RegisterSdkMemberType(javaSdkLibrarySdkMemberType)
Jiyong Parkc678ad32018-04-10 13:07:10 +0900326}
327
Paul Duffin43dc1cc2019-12-19 11:18:54 +0000328func RegisterSdkLibraryBuildComponents(ctx android.RegistrationContext) {
329 ctx.RegisterModuleType("java_sdk_library", SdkLibraryFactory)
330 ctx.RegisterModuleType("java_sdk_library_import", sdkLibraryImportFactory)
331}
332
Paul Duffin3375e352020-04-28 10:44:03 +0100333// Properties associated with each api scope.
334type ApiScopeProperties struct {
335 // Indicates whether the api surface is generated.
336 //
337 // If this is set for any scope then all scopes must explicitly specify if they
338 // are enabled. This is to prevent new usages from depending on legacy behavior.
339 //
340 // Otherwise, if this is not set for any scope then the default behavior is
341 // scope specific so please refer to the scope specific property documentation.
342 Enabled *bool
Paul Duffin87a05a32020-05-12 11:50:28 +0100343
344 // The sdk_version to use for building the stubs.
345 //
346 // If not specified then it will use an sdk_version determined as follows:
Trevor Radcliffedf8aa1f2021-11-04 14:25:39 +0000347 //
Paul Duffin87a05a32020-05-12 11:50:28 +0100348 // 1) If the sdk_version specified on the java_sdk_library is none then this
Trevor Radcliffedf8aa1f2021-11-04 14:25:39 +0000349 // will be none. This is used for java_sdk_library instances that are used
350 // to create stubs that contribute to the core_current sdk version.
351 // 2) Otherwise, it is assumed that this library extends but does not
352 // contribute directly to a specific sdk_version and so this uses the
353 // sdk_version appropriate for the api scope. e.g. public will use
354 // sdk_version: current, system will use sdk_version: system_current, etc.
Paul Duffin87a05a32020-05-12 11:50:28 +0100355 //
356 // This does not affect the sdk_version used for either generating the stubs source
357 // or the API file. They both have to use the same sdk_version as is used for
358 // compiling the implementation library.
359 Sdk_version *string
Paul Duffin3375e352020-04-28 10:44:03 +0100360}
361
Jiyong Parkc678ad32018-04-10 13:07:10 +0900362type sdkLibraryProperties struct {
Anton Hanssonf8ea3722021-09-16 14:24:13 +0100363 // List of source files that are needed to compile the API, but are not part of runtime library.
364 Api_srcs []string `android:"arch_variant"`
365
Paul Duffin5df79302020-05-16 15:52:12 +0100366 // Visibility for impl library module. If not specified then defaults to the
367 // visibility property.
368 Impl_library_visibility []string
369
Paul Duffin4911a892020-04-29 23:35:13 +0100370 // Visibility for stubs library modules. If not specified then defaults to the
371 // visibility property.
372 Stubs_library_visibility []string
373
374 // Visibility for stubs source modules. If not specified then defaults to the
375 // visibility property.
376 Stubs_source_visibility []string
377
Anton Hansson7f66efa2020-10-08 14:47:23 +0100378 // List of Java libraries that will be in the classpath when building the implementation lib
379 Impl_only_libs []string `android:"arch_variant"`
380
Sundong Ahnf043cf62018-06-25 16:04:37 +0900381 // List of Java libraries that will be in the classpath when building stubs
382 Stub_only_libs []string `android:"arch_variant"`
383
Anton Hanssondae54cd2021-04-21 16:30:10 +0100384 // List of Java libraries that will included in stub libraries
385 Stub_only_static_libs []string `android:"arch_variant"`
386
Paul Duffin7a586d32019-12-30 17:09:34 +0000387 // list of package names that will be documented and publicized as API.
388 // This allows the API to be restricted to a subset of the source files provided.
389 // If this is unspecified then all the source files will be treated as being part
390 // of the API.
Jiyong Parkc678ad32018-04-10 13:07:10 +0900391 Api_packages []string
392
Jiyong Park5a2c9d72018-05-01 22:25:41 +0900393 // list of package names that must be hidden from the API
394 Hidden_api_packages []string
395
Paul Duffin749f98f2019-12-30 17:23:46 +0000396 // the relative path to the directory containing the api specification files.
397 // Defaults to "api".
398 Api_dir *string
399
Paul Duffindfa131e2020-05-15 20:37:11 +0100400 // Determines whether a runtime implementation library is built; defaults to false.
401 //
402 // If true then it also prevents the module from being used as a shared module, i.e.
403 // it is as is shared_library: false, was set.
Paul Duffin43db9be2019-12-30 17:35:49 +0000404 Api_only *bool
405
Paul Duffin11512472019-02-11 15:55:17 +0000406 // local files that are used within user customized droiddoc options.
407 Droiddoc_option_files []string
408
Spandan Das93e95992021-07-29 18:26:39 +0000409 // additional droiddoc options.
Paul Duffin11512472019-02-11 15:55:17 +0000410 // Available variables for substitution:
411 //
412 // $(location <label>): the path to the droiddoc_option_files with name <label>
Sundong Ahndd567f92018-07-31 17:19:11 +0900413 Droiddoc_options []string
414
Paul Duffine22c2ab2020-05-20 19:35:27 +0100415 // is set to true, Metalava will allow framework SDK to contain annotations.
416 Annotations_enabled *bool
417
Sundong Ahn054b19a2018-10-19 13:46:09 +0900418 // a list of top-level directories containing files to merge qualifier annotations
419 // (i.e. those intended to be included in the stubs written) from.
420 Merge_annotations_dirs []string
421
422 // a list of top-level directories containing Java stub files to merge show/hide annotations from.
423 Merge_inclusion_annotations_dirs []string
424
Paul Duffin4f5c1ef2020-11-19 14:53:43 +0000425 // If set to true then don't create dist rules.
426 No_dist *bool
Sundong Ahn80a87b32019-05-13 15:02:50 +0900427
Paul Duffin31310252020-11-20 21:26:20 +0000428 // The stem for the artifacts that are copied to the dist, if not specified
429 // then defaults to the base module name.
430 //
431 // For each scope the following artifacts are copied to the apistubs/<scope>
432 // directory in the dist.
433 // * stubs impl jar -> <dist-stem>.jar
434 // * API specification file -> api/<dist-stem>.txt
435 // * Removed API specification file -> api/<dist-stem>-removed.txt
436 //
437 // Also used to construct the name of the filegroup (created by prebuilt_apis)
438 // that references the latest released API and remove API specification files.
439 // * API specification filegroup -> <dist-stem>.api.<scope>.latest
440 // * Removed API specification filegroup -> <dist-stem>-removed.api.<scope>.latest
Jaewoong Jung1a97ee02021-03-09 13:25:02 -0800441 // * API incompatibilities baseline filegroup -> <dist-stem>-incompatibilities.api.<scope>.latest
Paul Duffin31310252020-11-20 21:26:20 +0000442 Dist_stem *string
443
Colin Cross986b69a2021-06-01 13:13:40 -0700444 // The subdirectory for the artifacts that are copied to the dist directory. If not specified
Colin Cross3dd66252021-06-01 14:05:09 -0700445 // then defaults to "unknown". Should be set to "android" for anything that should be published
Colin Cross986b69a2021-06-01 13:13:40 -0700446 // in the public Android SDK.
447 Dist_group *string
448
Anton Hanssondff2c782020-12-21 17:10:01 +0000449 // A compatibility mode that allows historical API-tracking files to not exist.
450 // Do not use.
451 Unsafe_ignore_missing_latest_api bool
452
Paul Duffin3375e352020-04-28 10:44:03 +0100453 // indicates whether system and test apis should be generated.
454 Generate_system_and_test_apis bool `blueprint:"mutated"`
455
456 // The properties specific to the public api scope
457 //
458 // Unless explicitly specified by using public.enabled the public api scope is
459 // enabled by default in both legacy and non-legacy mode.
460 Public ApiScopeProperties
461
462 // The properties specific to the system api scope
463 //
464 // In legacy mode the system api scope is enabled by default when sdk_version
465 // is set to something other than "none".
466 //
467 // In non-legacy mode the system api scope is disabled by default.
468 System ApiScopeProperties
469
470 // The properties specific to the test api scope
471 //
472 // In legacy mode the test api scope is enabled by default when sdk_version
473 // is set to something other than "none".
474 //
475 // In non-legacy mode the test api scope is disabled by default.
476 Test ApiScopeProperties
Paul Duffin37e0b772019-12-30 17:20:10 +0000477
Paul Duffin0c5bae52020-06-02 13:00:08 +0100478 // The properties specific to the module-lib api scope
Paul Duffin8f265b92020-04-28 14:13:56 +0100479 //
Paul Duffin0c5bae52020-06-02 13:00:08 +0100480 // Unless explicitly specified by using test.enabled the module-lib api scope is
Paul Duffin8f265b92020-04-28 14:13:56 +0100481 // disabled by default.
482 Module_lib ApiScopeProperties
483
Paul Duffin0c5bae52020-06-02 13:00:08 +0100484 // The properties specific to the system-server api scope
485 //
486 // Unless explicitly specified by using test.enabled the module-lib api scope is
487 // disabled by default.
488 System_server ApiScopeProperties
489
Jiyong Park932cdfe2020-05-28 00:19:53 +0900490 // Determines if the stubs are preferred over the implementation library
491 // for linking, even when the client doesn't specify sdk_version. When this
492 // is set to true, such clients are provided with the widest API surface that
493 // this lib provides. Note however that this option doesn't affect the clients
494 // that are in the same APEX as this library. In that case, the clients are
495 // always linked with the implementation library. Default is false.
496 Default_to_stubs *bool
497
Paul Duffin160fe412020-05-10 19:32:20 +0100498 // Properties related to api linting.
499 Api_lint struct {
500 // Enable api linting.
501 Enabled *bool
502 }
503
Jiyong Parkc678ad32018-04-10 13:07:10 +0900504 // TODO: determines whether to create HTML doc or not
505 //Html_doc *bool
506}
507
Paul Duffin0f8faff2020-05-20 16:18:00 +0100508// Paths to outputs from java_sdk_library and java_sdk_library_import.
509//
510// Fields that are android.Paths are always set (during GenerateAndroidBuildActions).
511// OptionalPaths are always set by java_sdk_library but may not be set by
512// java_sdk_library_import as not all instances provide that information.
Paul Duffind1b3a922020-01-22 11:57:20 +0000513type scopePaths struct {
Paul Duffin0f8faff2020-05-20 16:18:00 +0100514 // The path (represented as Paths for convenience when returning) to the stubs header jar.
515 //
516 // That is the jar that is created by turbine.
517 stubsHeaderPath android.Paths
518
519 // The path (represented as Paths for convenience when returning) to the stubs implementation jar.
520 //
521 // This is not the implementation jar, it still only contains stubs.
522 stubsImplPath android.Paths
523
Paul Duffin1267d872021-04-16 17:21:36 +0100524 // The dex jar for the stubs.
525 //
526 // This is not the implementation jar, it still only contains stubs.
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +0100527 stubsDexJarPath OptionalDexJarPath
Paul Duffin1267d872021-04-16 17:21:36 +0100528
Paul Duffin0f8faff2020-05-20 16:18:00 +0100529 // The API specification file, e.g. system_current.txt.
530 currentApiFilePath android.OptionalPath
531
532 // The specification of API elements removed since the last release.
533 removedApiFilePath android.OptionalPath
534
535 // The stubs source jar.
536 stubsSrcJar android.OptionalPath
Anton Hanssond78eb762021-09-21 15:25:12 +0100537
538 // Extracted annotations.
539 annotationsZip android.OptionalPath
Paul Duffind1b3a922020-01-22 11:57:20 +0000540}
541
Colin Crossdcf71b22021-02-01 13:59:03 -0800542func (paths *scopePaths) extractStubsLibraryInfoFromDependency(ctx android.ModuleContext, dep android.Module) error {
543 if ctx.OtherModuleHasProvider(dep, JavaInfoProvider) {
544 lib := ctx.OtherModuleProvider(dep, JavaInfoProvider).(JavaInfo)
545 paths.stubsHeaderPath = lib.HeaderJars
546 paths.stubsImplPath = lib.ImplementationJars
Paul Duffin1267d872021-04-16 17:21:36 +0100547
548 libDep := dep.(UsesLibraryDependency)
549 paths.stubsDexJarPath = libDep.DexJarBuildPath()
Paul Duffinc8782502020-04-29 20:45:27 +0100550 return nil
551 } else {
Colin Crossdcf71b22021-02-01 13:59:03 -0800552 return fmt.Errorf("expected module that has JavaInfoProvider, e.g. java_library")
Paul Duffinc8782502020-04-29 20:45:27 +0100553 }
554}
555
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100556func (paths *scopePaths) treatDepAsApiStubsProvider(dep android.Module, action func(provider ApiStubsProvider)) error {
557 if apiStubsProvider, ok := dep.(ApiStubsProvider); ok {
558 action(apiStubsProvider)
Paul Duffinc8782502020-04-29 20:45:27 +0100559 return nil
560 } else {
561 return fmt.Errorf("expected module that implements ApiStubsProvider, e.g. droidstubs")
562 }
563}
564
Paul Duffin0f8faff2020-05-20 16:18:00 +0100565func (paths *scopePaths) treatDepAsApiStubsSrcProvider(dep android.Module, action func(provider ApiStubsSrcProvider)) error {
566 if apiStubsProvider, ok := dep.(ApiStubsSrcProvider); ok {
567 action(apiStubsProvider)
568 return nil
569 } else {
570 return fmt.Errorf("expected module that implements ApiStubsSrcProvider, e.g. droidstubs")
571 }
572}
573
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100574func (paths *scopePaths) extractApiInfoFromApiStubsProvider(provider ApiStubsProvider) {
Anton Hanssond78eb762021-09-21 15:25:12 +0100575 paths.annotationsZip = android.OptionalPathForPath(provider.AnnotationsZip())
Paul Duffin0f8faff2020-05-20 16:18:00 +0100576 paths.currentApiFilePath = android.OptionalPathForPath(provider.ApiFilePath())
577 paths.removedApiFilePath = android.OptionalPathForPath(provider.RemovedApiFilePath())
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100578}
579
Colin Crossdcf71b22021-02-01 13:59:03 -0800580func (paths *scopePaths) extractApiInfoFromDep(ctx android.ModuleContext, dep android.Module) error {
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100581 return paths.treatDepAsApiStubsProvider(dep, func(provider ApiStubsProvider) {
582 paths.extractApiInfoFromApiStubsProvider(provider)
583 })
584}
585
Paul Duffin0f8faff2020-05-20 16:18:00 +0100586func (paths *scopePaths) extractStubsSourceInfoFromApiStubsProviders(provider ApiStubsSrcProvider) {
587 paths.stubsSrcJar = android.OptionalPathForPath(provider.StubsSrcJar())
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100588}
589
Colin Crossdcf71b22021-02-01 13:59:03 -0800590func (paths *scopePaths) extractStubsSourceInfoFromDep(ctx android.ModuleContext, dep android.Module) error {
Paul Duffin0f8faff2020-05-20 16:18:00 +0100591 return paths.treatDepAsApiStubsSrcProvider(dep, func(provider ApiStubsSrcProvider) {
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100592 paths.extractStubsSourceInfoFromApiStubsProviders(provider)
593 })
594}
595
Colin Crossdcf71b22021-02-01 13:59:03 -0800596func (paths *scopePaths) extractStubsSourceAndApiInfoFromApiStubsProvider(ctx android.ModuleContext, dep android.Module) error {
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100597 return paths.treatDepAsApiStubsProvider(dep, func(provider ApiStubsProvider) {
598 paths.extractApiInfoFromApiStubsProvider(provider)
599 paths.extractStubsSourceInfoFromApiStubsProviders(provider)
600 })
601}
602
603type commonToSdkLibraryAndImportProperties struct {
Paul Duffin1b1e8062020-05-08 13:44:43 +0100604 // The naming scheme to use for the components that this module creates.
605 //
Paul Duffinee9ad5d2020-09-11 13:04:05 +0100606 // If not specified then it defaults to "default".
Paul Duffin1b1e8062020-05-08 13:44:43 +0100607 //
608 // This is a temporary mechanism to simplify conversion from separate modules for each
609 // component that follow a different naming pattern to the default one.
610 //
611 // TODO(b/155480189) - Remove once naming inconsistencies have been resolved.
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100612 Naming_scheme *string
Paul Duffindfa131e2020-05-15 20:37:11 +0100613
614 // Specifies whether this module can be used as an Android shared library; defaults
615 // to true.
616 //
617 // An Android shared library is one that can be referenced in a <uses-library> element
618 // in an AndroidManifest.xml.
619 Shared_library *bool
Paul Duffina2ae7e02020-09-11 11:55:00 +0100620
621 // Files containing information about supported java doc tags.
622 Doctag_files []string `android:"path"`
Pedro Loureiro9956e5e2021-09-07 17:21:59 +0000623
624 // Signals that this shared library is part of the bootclasspath starting
625 // on the version indicated in this attribute.
626 //
627 // This will make platforms at this level and above to ignore
628 // <uses-library> tags with this library name because the library is already
629 // available
630 On_bootclasspath_since *string
631
632 // Signals that this shared library was part of the bootclasspath before
633 // (but not including) the version indicated in this attribute.
634 //
635 // The system will automatically add a <uses-library> tag with this library to
636 // apps that target any SDK less than the version indicated in this attribute.
637 On_bootclasspath_before *string
638
639 // Indicates that PackageManager should ignore this shared library if the
640 // platform is below the version indicated in this attribute.
641 //
642 // This means that the device won't recognise this library as installed.
643 Min_device_sdk *string
644
645 // Indicates that PackageManager should ignore this shared library if the
646 // platform is above the version indicated in this attribute.
647 //
648 // This means that the device won't recognise this library as installed.
649 Max_device_sdk *string
Paul Duffin0ff08bd2020-04-29 13:30:54 +0100650}
651
Paul Duffin71b33cc2021-06-23 11:39:47 +0100652// commonSdkLibraryAndImportModule defines the interface that must be provided by a module that
653// embeds the commonToSdkLibraryAndImport struct.
654type commonSdkLibraryAndImportModule interface {
Paul Duffinb97b1572021-04-29 21:50:40 +0100655 android.SdkAware
Paul Duffin71b33cc2021-06-23 11:39:47 +0100656
657 BaseModuleName() string
658}
659
Paul Duffin56d44902020-01-31 13:36:25 +0000660// Common code between sdk library and sdk library import
661type commonToSdkLibraryAndImport struct {
Paul Duffin71b33cc2021-06-23 11:39:47 +0100662 module commonSdkLibraryAndImportModule
Paul Duffinc3091c82020-05-08 14:16:20 +0100663
Paul Duffin56d44902020-01-31 13:36:25 +0000664 scopePaths map[*apiScope]*scopePaths
Paul Duffin1b1e8062020-05-08 13:44:43 +0100665
666 namingScheme sdkLibraryComponentNamingScheme
667
Paul Duffindfa131e2020-05-15 20:37:11 +0100668 commonSdkLibraryProperties commonToSdkLibraryAndImportProperties
Paul Duffin859fe962020-05-15 10:20:31 +0100669
Paul Duffina2ae7e02020-09-11 11:55:00 +0100670 // Paths to commonSdkLibraryProperties.Doctag_files
671 doctagPaths android.Paths
672
Paul Duffin859fe962020-05-15 10:20:31 +0100673 // Functionality related to this being used as a component of a java_sdk_library.
674 EmbeddableSdkLibraryComponent
Paul Duffin56d44902020-01-31 13:36:25 +0000675}
676
Paul Duffin71b33cc2021-06-23 11:39:47 +0100677func (c *commonToSdkLibraryAndImport) initCommon(module commonSdkLibraryAndImportModule) {
678 c.module = module
Paul Duffin1b1e8062020-05-08 13:44:43 +0100679
Paul Duffin71b33cc2021-06-23 11:39:47 +0100680 module.AddProperties(&c.commonSdkLibraryProperties)
Paul Duffin859fe962020-05-15 10:20:31 +0100681
682 // Initialize this as an sdk library component.
Paul Duffin71b33cc2021-06-23 11:39:47 +0100683 c.initSdkLibraryComponent(module)
Paul Duffin1b1e8062020-05-08 13:44:43 +0100684}
685
686func (c *commonToSdkLibraryAndImport) initCommonAfterDefaultsApplied(ctx android.DefaultableHookContext) bool {
Paul Duffindfa131e2020-05-15 20:37:11 +0100687 schemeProperty := proptools.StringDefault(c.commonSdkLibraryProperties.Naming_scheme, "default")
Paul Duffin1b1e8062020-05-08 13:44:43 +0100688 switch schemeProperty {
689 case "default":
690 c.namingScheme = &defaultNamingScheme{}
691 default:
692 ctx.PropertyErrorf("naming_scheme", "expected 'default' but was %q", schemeProperty)
693 return false
694 }
695
Paul Duffin3f0290e2021-06-30 18:25:36 +0100696 namePtr := proptools.StringPtr(c.module.BaseModuleName())
697 c.sdkLibraryComponentProperties.SdkLibraryName = namePtr
698
Paul Duffindfa131e2020-05-15 20:37:11 +0100699 // Only track this sdk library if this can be used as a shared library.
700 if c.sharedLibrary() {
701 // Use the name specified in the module definition as the owner.
Paul Duffin3f0290e2021-06-30 18:25:36 +0100702 c.sdkLibraryComponentProperties.SdkLibraryToImplicitlyTrack = namePtr
Paul Duffindfa131e2020-05-15 20:37:11 +0100703 }
Paul Duffin859fe962020-05-15 10:20:31 +0100704
Paul Duffin1b1e8062020-05-08 13:44:43 +0100705 return true
Paul Duffinc3091c82020-05-08 14:16:20 +0100706}
707
Paul Duffinea8f8082021-06-24 13:25:57 +0100708// uniqueApexVariations provides common implementation of the ApexModule.UniqueApexVariations
709// method.
710func (c *commonToSdkLibraryAndImport) uniqueApexVariations() bool {
711 // A java_sdk_library that is a shared library produces an XML file that makes the shared library
712 // usable from an AndroidManifest.xml's <uses-library> entry. That XML file contains the name of
713 // the APEX and so it needs a unique variation per APEX.
714 return c.sharedLibrary()
715}
716
Paul Duffina2ae7e02020-09-11 11:55:00 +0100717func (c *commonToSdkLibraryAndImport) generateCommonBuildActions(ctx android.ModuleContext) {
718 c.doctagPaths = android.PathsForModuleSrc(ctx, c.commonSdkLibraryProperties.Doctag_files)
719}
720
Paul Duffineedc5d52020-06-12 17:46:39 +0100721// Module name of the runtime implementation library
722func (c *commonToSdkLibraryAndImport) implLibraryModuleName() string {
Paul Duffin71b33cc2021-06-23 11:39:47 +0100723 return c.module.BaseModuleName() + ".impl"
Paul Duffineedc5d52020-06-12 17:46:39 +0100724}
725
726// Module name of the XML file for the lib
727func (c *commonToSdkLibraryAndImport) xmlPermissionsModuleName() string {
Paul Duffin71b33cc2021-06-23 11:39:47 +0100728 return c.module.BaseModuleName() + sdkXmlFileSuffix
Paul Duffineedc5d52020-06-12 17:46:39 +0100729}
730
Paul Duffinc3091c82020-05-08 14:16:20 +0100731// Name of the java_library module that compiles the stubs source.
732func (c *commonToSdkLibraryAndImport) stubsLibraryModuleName(apiScope *apiScope) string {
Paul Duffinb97b1572021-04-29 21:50:40 +0100733 baseName := c.module.BaseModuleName()
734 return c.module.SdkMemberComponentName(baseName, func(name string) string {
735 return c.namingScheme.stubsLibraryModuleName(apiScope, name)
736 })
Paul Duffinc3091c82020-05-08 14:16:20 +0100737}
738
739// Name of the droidstubs module that generates the stubs source and may also
740// generate/check the API.
741func (c *commonToSdkLibraryAndImport) stubsSourceModuleName(apiScope *apiScope) string {
Paul Duffinb97b1572021-04-29 21:50:40 +0100742 baseName := c.module.BaseModuleName()
743 return c.module.SdkMemberComponentName(baseName, func(name string) string {
744 return c.namingScheme.stubsSourceModuleName(apiScope, name)
745 })
Paul Duffinc3091c82020-05-08 14:16:20 +0100746}
747
Paul Duffin46dc45a2020-05-14 15:39:10 +0100748// The component names for different outputs of the java_sdk_library.
749//
750// They are similar to the names used for the child modules it creates
751const (
752 stubsSourceComponentName = "stubs.source"
753
754 apiTxtComponentName = "api.txt"
755
756 removedApiTxtComponentName = "removed-api.txt"
Anton Hanssond78eb762021-09-21 15:25:12 +0100757
758 annotationsComponentName = "annotations.zip"
Paul Duffin46dc45a2020-05-14 15:39:10 +0100759)
760
761// A regular expression to match tags that reference a specific stubs component.
762//
763// It will only match if given a valid scope and a valid component. It is verfy strict
764// to ensure it does not accidentally match a similar looking tag that should be processed
765// by the embedded Library.
766var tagSplitter = func() *regexp.Regexp {
767 // Given a list of literal string items returns a regular expression that will
768 // match any one of the items.
769 choice := func(items ...string) string {
770 return `\Q` + strings.Join(items, `\E|\Q`) + `\E`
771 }
772
773 // Regular expression to match one of the scopes.
774 scopesRegexp := choice(allScopeNames...)
775
776 // Regular expression to match one of the components.
Anton Hanssond78eb762021-09-21 15:25:12 +0100777 componentsRegexp := choice(stubsSourceComponentName, apiTxtComponentName, removedApiTxtComponentName, annotationsComponentName)
Paul Duffin46dc45a2020-05-14 15:39:10 +0100778
779 // Regular expression to match any combination of one scope and one component.
780 return regexp.MustCompile(fmt.Sprintf(`^\.(%s)\.(%s)$`, scopesRegexp, componentsRegexp))
781}()
782
783// For OutputFileProducer interface
784//
Anton Hanssond78eb762021-09-21 15:25:12 +0100785// .<scope>.<component name>, for all ComponentNames (for example: .public.removed-api.txt)
Paul Duffin46dc45a2020-05-14 15:39:10 +0100786func (c *commonToSdkLibraryAndImport) commonOutputFiles(tag string) (android.Paths, error) {
787 if groups := tagSplitter.FindStringSubmatch(tag); groups != nil {
788 scopeName := groups[1]
789 component := groups[2]
790
791 if scope, ok := scopeByName[scopeName]; ok {
792 paths := c.findScopePaths(scope)
793 if paths == nil {
Paul Duffin71b33cc2021-06-23 11:39:47 +0100794 return nil, fmt.Errorf("%q does not provide api scope %s", c.module.BaseModuleName(), scopeName)
Paul Duffin46dc45a2020-05-14 15:39:10 +0100795 }
796
797 switch component {
798 case stubsSourceComponentName:
799 if paths.stubsSrcJar.Valid() {
800 return android.Paths{paths.stubsSrcJar.Path()}, nil
801 }
802
803 case apiTxtComponentName:
804 if paths.currentApiFilePath.Valid() {
805 return android.Paths{paths.currentApiFilePath.Path()}, nil
806 }
807
808 case removedApiTxtComponentName:
809 if paths.removedApiFilePath.Valid() {
810 return android.Paths{paths.removedApiFilePath.Path()}, nil
811 }
Anton Hanssond78eb762021-09-21 15:25:12 +0100812
813 case annotationsComponentName:
814 if paths.annotationsZip.Valid() {
815 return android.Paths{paths.annotationsZip.Path()}, nil
816 }
Paul Duffin46dc45a2020-05-14 15:39:10 +0100817 }
818
819 return nil, fmt.Errorf("%s not available for api scope %s", component, scopeName)
820 } else {
821 return nil, fmt.Errorf("unknown scope %s in %s", scope, tag)
822 }
823
824 } else {
Paul Duffina2ae7e02020-09-11 11:55:00 +0100825 switch tag {
826 case ".doctags":
827 if c.doctagPaths != nil {
828 return c.doctagPaths, nil
829 } else {
Paul Duffin71b33cc2021-06-23 11:39:47 +0100830 return nil, fmt.Errorf("no doctag_files specified on %s", c.module.BaseModuleName())
Paul Duffina2ae7e02020-09-11 11:55:00 +0100831 }
832 }
Paul Duffin46dc45a2020-05-14 15:39:10 +0100833 return nil, nil
834 }
835}
836
Paul Duffin803a9562020-05-20 11:52:25 +0100837func (c *commonToSdkLibraryAndImport) getScopePathsCreateIfNeeded(scope *apiScope) *scopePaths {
Paul Duffin56d44902020-01-31 13:36:25 +0000838 if c.scopePaths == nil {
839 c.scopePaths = make(map[*apiScope]*scopePaths)
840 }
841 paths := c.scopePaths[scope]
842 if paths == nil {
843 paths = &scopePaths{}
844 c.scopePaths[scope] = paths
845 }
846
847 return paths
848}
849
Paul Duffin803a9562020-05-20 11:52:25 +0100850func (c *commonToSdkLibraryAndImport) findScopePaths(scope *apiScope) *scopePaths {
851 if c.scopePaths == nil {
852 return nil
853 }
854
855 return c.scopePaths[scope]
856}
857
858// If this does not support the requested api scope then find the closest available
859// scope it does support. Returns nil if no such scope is available.
860func (c *commonToSdkLibraryAndImport) findClosestScopePath(scope *apiScope) *scopePaths {
861 for s := scope; s != nil; s = s.extends {
862 if paths := c.findScopePaths(s); paths != nil {
863 return paths
864 }
865 }
866
867 // This should never happen outside tests as public should be the base scope for every
868 // scope and is enabled by default.
869 return nil
870}
871
Jiyong Parkf1691d22021-03-29 20:11:58 +0900872func (c *commonToSdkLibraryAndImport) selectHeaderJarsForSdkVersion(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths {
Paul Duffinb05d4292020-05-20 12:19:10 +0100873
874 // If a specific numeric version has been requested then use prebuilt versions of the sdk.
Jiyong Park54105c42021-03-31 18:17:53 +0900875 if !sdkVersion.ApiLevel.IsPreview() {
Paul Duffin71b33cc2021-06-23 11:39:47 +0100876 return PrebuiltJars(ctx, c.module.BaseModuleName(), sdkVersion)
Paul Duffinb05d4292020-05-20 12:19:10 +0100877 }
878
Paul Duffin1267d872021-04-16 17:21:36 +0100879 paths := c.selectScopePaths(ctx, sdkVersion.Kind)
880 if paths == nil {
881 return nil
882 }
883
884 return paths.stubsHeaderPath
885}
886
887// selectScopePaths returns the *scopePaths appropriate for the specific kind.
888//
889// If the module does not support the specific kind then it will return the *scopePaths for the
890// closest kind which is a subset of the requested kind. e.g. if requesting android.SdkModule then
891// it will return *scopePaths for android.SdkSystem if available or android.SdkPublic of not.
892func (c *commonToSdkLibraryAndImport) selectScopePaths(ctx android.BaseModuleContext, kind android.SdkKind) *scopePaths {
Paul Duffin32cf58a2021-05-18 16:32:50 +0100893 apiScope := sdkKindToApiScope(kind)
Paul Duffinb05d4292020-05-20 12:19:10 +0100894
Paul Duffin803a9562020-05-20 11:52:25 +0100895 paths := c.findClosestScopePath(apiScope)
896 if paths == nil {
897 var scopes []string
898 for _, s := range allApiScopes {
899 if c.findScopePaths(s) != nil {
900 scopes = append(scopes, s.name)
901 }
902 }
Paul Duffin71b33cc2021-06-23 11:39:47 +0100903 ctx.ModuleErrorf("requires api scope %s from %s but it only has %q available", apiScope.name, c.module.BaseModuleName(), scopes)
Paul Duffin803a9562020-05-20 11:52:25 +0100904 return nil
905 }
906
Paul Duffin1267d872021-04-16 17:21:36 +0100907 return paths
908}
909
Paul Duffin32cf58a2021-05-18 16:32:50 +0100910// sdkKindToApiScope maps from android.SdkKind to apiScope.
911func sdkKindToApiScope(kind android.SdkKind) *apiScope {
912 var apiScope *apiScope
913 switch kind {
914 case android.SdkSystem:
915 apiScope = apiScopeSystem
916 case android.SdkModule:
917 apiScope = apiScopeModuleLib
918 case android.SdkTest:
919 apiScope = apiScopeTest
920 case android.SdkSystemServer:
921 apiScope = apiScopeSystemServer
922 default:
923 apiScope = apiScopePublic
924 }
925 return apiScope
926}
927
Paul Duffin1267d872021-04-16 17:21:36 +0100928// to satisfy SdkLibraryDependency interface
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +0100929func (c *commonToSdkLibraryAndImport) SdkApiStubDexJar(ctx android.BaseModuleContext, kind android.SdkKind) OptionalDexJarPath {
Paul Duffin1267d872021-04-16 17:21:36 +0100930 paths := c.selectScopePaths(ctx, kind)
931 if paths == nil {
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +0100932 return makeUnsetDexJarPath()
Paul Duffin1267d872021-04-16 17:21:36 +0100933 }
934
935 return paths.stubsDexJarPath
Paul Duffinb05d4292020-05-20 12:19:10 +0100936}
937
Paul Duffin32cf58a2021-05-18 16:32:50 +0100938// to satisfy SdkLibraryDependency interface
939func (c *commonToSdkLibraryAndImport) SdkRemovedTxtFile(ctx android.BaseModuleContext, kind android.SdkKind) android.OptionalPath {
940 apiScope := sdkKindToApiScope(kind)
941 paths := c.findScopePaths(apiScope)
942 if paths == nil {
943 return android.OptionalPath{}
944 }
945
946 return paths.removedApiFilePath
947}
948
Paul Duffin859fe962020-05-15 10:20:31 +0100949func (c *commonToSdkLibraryAndImport) sdkComponentPropertiesForChildLibrary() interface{} {
950 componentProps := &struct {
Paul Duffin3f0290e2021-06-30 18:25:36 +0100951 SdkLibraryName *string
Paul Duffin859fe962020-05-15 10:20:31 +0100952 SdkLibraryToImplicitlyTrack *string
Paul Duffindfa131e2020-05-15 20:37:11 +0100953 }{}
954
Paul Duffin3f0290e2021-06-30 18:25:36 +0100955 namePtr := proptools.StringPtr(c.module.BaseModuleName())
956 componentProps.SdkLibraryName = namePtr
957
Paul Duffindfa131e2020-05-15 20:37:11 +0100958 if c.sharedLibrary() {
Paul Duffin859fe962020-05-15 10:20:31 +0100959 // Mark the stubs library as being components of this java_sdk_library so that
960 // any app that includes code which depends (directly or indirectly) on the stubs
961 // library will have the appropriate <uses-library> invocation inserted into its
962 // manifest if necessary.
Paul Duffin3f0290e2021-06-30 18:25:36 +0100963 componentProps.SdkLibraryToImplicitlyTrack = namePtr
Paul Duffin859fe962020-05-15 10:20:31 +0100964 }
965
966 return componentProps
967}
968
Paul Duffindfa131e2020-05-15 20:37:11 +0100969func (c *commonToSdkLibraryAndImport) sharedLibrary() bool {
970 return proptools.BoolDefault(c.commonSdkLibraryProperties.Shared_library, true)
971}
972
Paul Duffinf4600f62021-05-13 22:34:45 +0100973// Check if the stub libraries should be compiled for dex
974func (c *commonToSdkLibraryAndImport) stubLibrariesCompiledForDex() bool {
975 // Always compile the dex file files for the stub libraries if they will be used on the
976 // bootclasspath.
977 return !c.sharedLibrary()
978}
979
Paul Duffin859fe962020-05-15 10:20:31 +0100980// Properties related to the use of a module as an component of a java_sdk_library.
981type SdkLibraryComponentProperties struct {
Paul Duffin3f0290e2021-06-30 18:25:36 +0100982 // The name of the java_sdk_library/_import module.
983 SdkLibraryName *string `blueprint:"mutated"`
Paul Duffin859fe962020-05-15 10:20:31 +0100984
985 // The name of the java_sdk_library/_import to add to a <uses-library> entry
986 // in the AndroidManifest.xml of any Android app that includes code that references
987 // this module. If not set then no java_sdk_library/_import is tracked.
988 SdkLibraryToImplicitlyTrack *string `blueprint:"mutated"`
989}
990
991// Structure to be embedded in a module struct that needs to support the
992// SdkLibraryComponentDependency interface.
993type EmbeddableSdkLibraryComponent struct {
994 sdkLibraryComponentProperties SdkLibraryComponentProperties
995}
996
Paul Duffin71b33cc2021-06-23 11:39:47 +0100997func (e *EmbeddableSdkLibraryComponent) initSdkLibraryComponent(module android.Module) {
998 module.AddProperties(&e.sdkLibraryComponentProperties)
Paul Duffin859fe962020-05-15 10:20:31 +0100999}
1000
1001// to satisfy SdkLibraryComponentDependency
Paul Duffin3f0290e2021-06-30 18:25:36 +01001002func (e *EmbeddableSdkLibraryComponent) SdkLibraryName() *string {
1003 return e.sdkLibraryComponentProperties.SdkLibraryName
1004}
1005
1006// to satisfy SdkLibraryComponentDependency
Ulya Trafimovich39b437b2020-09-23 16:42:35 +01001007func (e *EmbeddableSdkLibraryComponent) OptionalSdkLibraryImplementation() *string {
Ulya Trafimovich78645fb2021-07-16 15:29:25 +01001008 // For shared libraries, this is the same as the SDK library name. If a Java library or app
1009 // depends on a component library (e.g. a stub library) it still needs to know the name of the
1010 // run-time library and the corresponding module that provides the implementation. This name is
1011 // passed to manifest_fixer (to be added to AndroidManifest.xml) and added to CLC (to be used
1012 // in dexpreopt).
1013 //
1014 // For non-shared SDK (component or not) libraries this returns `nil`, as they are not
1015 // <uses-library> and should not be added to the manifest or to CLC.
Ulya Trafimovich39b437b2020-09-23 16:42:35 +01001016 return e.sdkLibraryComponentProperties.SdkLibraryToImplicitlyTrack
1017}
1018
Paul Duffin859fe962020-05-15 10:20:31 +01001019// Implemented by modules that are (or possibly could be) a component of a java_sdk_library
1020// (including the java_sdk_library) itself.
1021type SdkLibraryComponentDependency interface {
Ulya Trafimovich31e444e2020-08-14 17:32:16 +01001022 UsesLibraryDependency
1023
Paul Duffin3f0290e2021-06-30 18:25:36 +01001024 // SdkLibraryName returns the name of the java_sdk_library/_import module.
1025 SdkLibraryName() *string
1026
Ulya Trafimovich39b437b2020-09-23 16:42:35 +01001027 // The name of the implementation library for the optional SDK library or nil, if there isn't one.
1028 OptionalSdkLibraryImplementation() *string
Paul Duffin859fe962020-05-15 10:20:31 +01001029}
1030
1031// Make sure that all the module types that are components of java_sdk_library/_import
1032// and which can be referenced (directly or indirectly) from an android app implement
1033// the SdkLibraryComponentDependency interface.
1034var _ SdkLibraryComponentDependency = (*Library)(nil)
1035var _ SdkLibraryComponentDependency = (*Import)(nil)
1036var _ SdkLibraryComponentDependency = (*SdkLibrary)(nil)
Paul Duffineedc5d52020-06-12 17:46:39 +01001037var _ SdkLibraryComponentDependency = (*SdkLibraryImport)(nil)
Paul Duffin859fe962020-05-15 10:20:31 +01001038
Paul Duffin32cf58a2021-05-18 16:32:50 +01001039// Provides access to sdk_version related files, e.g. header and implementation jars.
Paul Duffin859fe962020-05-15 10:20:31 +01001040type SdkLibraryDependency interface {
1041 SdkLibraryComponentDependency
1042
1043 // Get the header jars appropriate for the supplied sdk_version.
1044 //
1045 // These are turbine generated jars so they only change if the externals of the
1046 // class changes but it does not contain and implementation or JavaDoc.
Jiyong Parkf1691d22021-03-29 20:11:58 +09001047 SdkHeaderJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths
Paul Duffin859fe962020-05-15 10:20:31 +01001048
1049 // Get the implementation jars appropriate for the supplied sdk version.
1050 //
1051 // These are either the implementation jar for the whole sdk library or the implementation
1052 // jars for the stubs. The latter should only be needed when generating JavaDoc as otherwise
1053 // they are identical to the corresponding header jars.
Jiyong Parkf1691d22021-03-29 20:11:58 +09001054 SdkImplementationJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths
Paul Duffin1267d872021-04-16 17:21:36 +01001055
1056 // SdkApiStubDexJar returns the dex jar for the stubs. It is needed by the hiddenapi processing
1057 // tool which processes dex files.
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +01001058 SdkApiStubDexJar(ctx android.BaseModuleContext, kind android.SdkKind) OptionalDexJarPath
Paul Duffinf4600f62021-05-13 22:34:45 +01001059
Paul Duffin32cf58a2021-05-18 16:32:50 +01001060 // SdkRemovedTxtFile returns the optional path to the removed.txt file for the specified sdk kind.
1061 SdkRemovedTxtFile(ctx android.BaseModuleContext, kind android.SdkKind) android.OptionalPath
1062
Paul Duffinf4600f62021-05-13 22:34:45 +01001063 // sharedLibrary returns true if this can be used as a shared library.
1064 sharedLibrary() bool
Paul Duffin859fe962020-05-15 10:20:31 +01001065}
1066
Inseob Kimc0907f12019-02-08 21:00:45 +09001067type SdkLibrary struct {
Sundong Ahn054b19a2018-10-19 13:46:09 +09001068 Library
Jiyong Parkc678ad32018-04-10 13:07:10 +09001069
Sundong Ahn054b19a2018-10-19 13:46:09 +09001070 sdkLibraryProperties sdkLibraryProperties
Jiyong Parkc678ad32018-04-10 13:07:10 +09001071
Paul Duffin3375e352020-04-28 10:44:03 +01001072 // Map from api scope to the scope specific property structure.
1073 scopeToProperties map[*apiScope]*ApiScopeProperties
1074
Paul Duffin56d44902020-01-31 13:36:25 +00001075 commonToSdkLibraryAndImport
Jiyong Parkc678ad32018-04-10 13:07:10 +09001076}
1077
Inseob Kimc0907f12019-02-08 21:00:45 +09001078var _ SdkLibraryDependency = (*SdkLibrary)(nil)
Colin Cross897d2ed2019-02-11 14:03:51 -08001079
Paul Duffin3375e352020-04-28 10:44:03 +01001080func (module *SdkLibrary) generateTestAndSystemScopesByDefault() bool {
1081 return module.sdkLibraryProperties.Generate_system_and_test_apis
1082}
1083
1084func (module *SdkLibrary) getGeneratedApiScopes(ctx android.EarlyModuleContext) apiScopes {
1085 // Check to see if any scopes have been explicitly enabled. If any have then all
1086 // must be.
1087 anyScopesExplicitlyEnabled := false
1088 for _, scope := range allApiScopes {
1089 scopeProperties := module.scopeToProperties[scope]
1090 if scopeProperties.Enabled != nil {
1091 anyScopesExplicitlyEnabled = true
1092 break
1093 }
Paul Duffind1b3a922020-01-22 11:57:20 +00001094 }
Paul Duffin3375e352020-04-28 10:44:03 +01001095
1096 var generatedScopes apiScopes
1097 enabledScopes := make(map[*apiScope]struct{})
1098 for _, scope := range allApiScopes {
1099 scopeProperties := module.scopeToProperties[scope]
1100 // If any scopes are explicitly enabled then ignore the legacy enabled status.
1101 // This is to ensure that any new usages of this module type do not rely on legacy
1102 // behaviour.
1103 defaultEnabledStatus := false
1104 if anyScopesExplicitlyEnabled {
1105 defaultEnabledStatus = scope.defaultEnabledStatus
1106 } else {
1107 defaultEnabledStatus = scope.legacyEnabledStatus(module)
1108 }
1109 enabled := proptools.BoolDefault(scopeProperties.Enabled, defaultEnabledStatus)
1110 if enabled {
1111 enabledScopes[scope] = struct{}{}
1112 generatedScopes = append(generatedScopes, scope)
1113 }
1114 }
1115
1116 // Now check to make sure that any scope that is extended by an enabled scope is also
1117 // enabled.
1118 for _, scope := range allApiScopes {
1119 if _, ok := enabledScopes[scope]; ok {
1120 extends := scope.extends
1121 if extends != nil {
1122 if _, ok := enabledScopes[extends]; !ok {
1123 ctx.ModuleErrorf("enabled api scope %q depends on disabled scope %q", scope, extends)
1124 }
1125 }
1126 }
1127 }
1128
1129 return generatedScopes
Paul Duffind1b3a922020-01-22 11:57:20 +00001130}
1131
Paul Duffineedc5d52020-06-12 17:46:39 +01001132type sdkLibraryComponentTag struct {
1133 blueprint.BaseDependencyTag
1134 name string
1135}
1136
1137// Mark this tag so dependencies that use it are excluded from visibility enforcement.
1138func (t sdkLibraryComponentTag) ExcludeFromVisibilityEnforcement() {}
1139
1140var xmlPermissionsFileTag = sdkLibraryComponentTag{name: "xml-permissions-file"}
Paul Duffine74ac732020-02-06 13:51:46 +00001141
Jiyong Parke3833882020-02-17 17:28:10 +09001142func IsXmlPermissionsFileDepTag(depTag blueprint.DependencyTag) bool {
Paul Duffineedc5d52020-06-12 17:46:39 +01001143 if dt, ok := depTag.(sdkLibraryComponentTag); ok {
Jiyong Parke3833882020-02-17 17:28:10 +09001144 return dt == xmlPermissionsFileTag
1145 }
1146 return false
1147}
1148
Paul Duffineedc5d52020-06-12 17:46:39 +01001149var implLibraryTag = sdkLibraryComponentTag{name: "impl-library"}
Paul Duffin5df79302020-05-16 15:52:12 +01001150
Paul Duffin44f1d842020-06-26 20:17:02 +01001151// Add the dependencies on the child modules in the component deps mutator.
1152func (module *SdkLibrary) ComponentDepsMutator(ctx android.BottomUpMutatorContext) {
Paul Duffin3375e352020-04-28 10:44:03 +01001153 for _, apiScope := range module.getGeneratedApiScopes(ctx) {
Paul Duffind1b3a922020-01-22 11:57:20 +00001154 // Add dependencies to the stubs library
Paul Duffinc3091c82020-05-08 14:16:20 +01001155 ctx.AddVariationDependencies(nil, apiScope.stubsTag, module.stubsLibraryModuleName(apiScope))
Paul Duffind1b3a922020-01-22 11:57:20 +00001156
Paul Duffin15f34ef2020-07-20 18:04:44 +01001157 // Add a dependency on the stubs source in order to access both stubs source and api information.
1158 ctx.AddVariationDependencies(nil, apiScope.stubsSourceAndApiTag, module.stubsSourceModuleName(apiScope))
Sundong Ahn054b19a2018-10-19 13:46:09 +09001159 }
1160
Paul Duffindfa131e2020-05-15 20:37:11 +01001161 if module.requiresRuntimeImplementationLibrary() {
Paul Duffin5df79302020-05-16 15:52:12 +01001162 // Add dependency to the rule for generating the implementation library.
1163 ctx.AddDependency(module, implLibraryTag, module.implLibraryModuleName())
1164
Paul Duffindfa131e2020-05-15 20:37:11 +01001165 if module.sharedLibrary() {
1166 // Add dependency to the rule for generating the xml permissions file
Paul Duffineedc5d52020-06-12 17:46:39 +01001167 ctx.AddDependency(module, xmlPermissionsFileTag, module.xmlPermissionsModuleName())
Paul Duffindfa131e2020-05-15 20:37:11 +01001168 }
Paul Duffin44f1d842020-06-26 20:17:02 +01001169 }
1170}
Paul Duffine74ac732020-02-06 13:51:46 +00001171
Paul Duffin44f1d842020-06-26 20:17:02 +01001172// Add other dependencies as normal.
1173func (module *SdkLibrary) DepsMutator(ctx android.BottomUpMutatorContext) {
Anton Hanssone77fccc2021-01-20 16:52:41 +00001174 var missingApiModules []string
1175 for _, apiScope := range module.getGeneratedApiScopes(ctx) {
1176 if apiScope.unstable {
1177 continue
1178 }
1179 if m := android.SrcIsModule(module.latestApiFilegroupName(apiScope)); !ctx.OtherModuleExists(m) {
1180 missingApiModules = append(missingApiModules, m)
1181 }
1182 if m := android.SrcIsModule(module.latestRemovedApiFilegroupName(apiScope)); !ctx.OtherModuleExists(m) {
1183 missingApiModules = append(missingApiModules, m)
1184 }
Jaewoong Jung1a97ee02021-03-09 13:25:02 -08001185 if m := android.SrcIsModule(module.latestIncompatibilitiesFilegroupName(apiScope)); !ctx.OtherModuleExists(m) {
1186 missingApiModules = append(missingApiModules, m)
1187 }
Anton Hanssone77fccc2021-01-20 16:52:41 +00001188 }
1189 if len(missingApiModules) != 0 && !module.sdkLibraryProperties.Unsafe_ignore_missing_latest_api {
1190 m := module.Name() + " is missing tracking files for previously released library versions.\n"
1191 m += "You need to do one of the following:\n"
1192 m += "- Add `unsafe_ignore_missing_latest_api: true` to your blueprint (to disable compat tracking)\n"
1193 m += "- Add a set of prebuilt txt files representing the last released version of this library for compat checking.\n"
1194 m += " (the current set of API files can be used as a seed for this compatibility tracking\n"
1195 m += "\n"
1196 m += "The following filegroup modules are missing:\n "
1197 m += strings.Join(missingApiModules, "\n ") + "\n"
1198 m += "Please see the documentation of the prebuilt_apis module type (and a usage example in prebuilts/sdk) for a convenient way to generate these."
1199 ctx.ModuleErrorf(m)
1200 }
Paul Duffin44f1d842020-06-26 20:17:02 +01001201 if module.requiresRuntimeImplementationLibrary() {
Paul Duffindfa131e2020-05-15 20:37:11 +01001202 // Only add the deps for the library if it is actually going to be built.
1203 module.Library.deps(ctx)
1204 }
Jiyong Parkc678ad32018-04-10 13:07:10 +09001205}
1206
Paul Duffin46dc45a2020-05-14 15:39:10 +01001207func (module *SdkLibrary) OutputFiles(tag string) (android.Paths, error) {
1208 paths, err := module.commonOutputFiles(tag)
1209 if paths == nil && err == nil {
1210 return module.Library.OutputFiles(tag)
1211 } else {
1212 return paths, err
1213 }
1214}
1215
Inseob Kimc0907f12019-02-08 21:00:45 +09001216func (module *SdkLibrary) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Paul Duffina2ae7e02020-09-11 11:55:00 +01001217 module.generateCommonBuildActions(ctx)
1218
Paul Duffindfa131e2020-05-15 20:37:11 +01001219 // Only build an implementation library if required.
1220 if module.requiresRuntimeImplementationLibrary() {
Paul Duffin43db9be2019-12-30 17:35:49 +00001221 module.Library.GenerateAndroidBuildActions(ctx)
1222 }
Sundong Ahn054b19a2018-10-19 13:46:09 +09001223
Paul Duffinb97b1572021-04-29 21:50:40 +01001224 // Collate the components exported by this module. All scope specific modules are exported but
1225 // the impl and xml component modules are not.
1226 exportedComponents := map[string]struct{}{}
1227
Sundong Ahn57368eb2018-07-06 11:20:23 +09001228 // Record the paths to the header jars of the library (stubs and impl).
Paul Duffind1b3a922020-01-22 11:57:20 +00001229 // When this java_sdk_library is depended upon from others via "libs" property,
Jiyong Parkc678ad32018-04-10 13:07:10 +09001230 // the recorded paths will be returned depending on the link type of the caller.
1231 ctx.VisitDirectDeps(func(to android.Module) {
Jiyong Parkc678ad32018-04-10 13:07:10 +09001232 tag := ctx.OtherModuleDependencyTag(to)
1233
Paul Duffinc8782502020-04-29 20:45:27 +01001234 // Extract information from any of the scope specific dependencies.
1235 if scopeTag, ok := tag.(scopeDependencyTag); ok {
1236 apiScope := scopeTag.apiScope
Paul Duffin803a9562020-05-20 11:52:25 +01001237 scopePaths := module.getScopePathsCreateIfNeeded(apiScope)
Paul Duffinc8782502020-04-29 20:45:27 +01001238
1239 // Extract information from the dependency. The exact information extracted
1240 // is determined by the nature of the dependency which is determined by the tag.
1241 scopeTag.extractDepInfo(ctx, to, scopePaths)
Paul Duffinb97b1572021-04-29 21:50:40 +01001242
1243 exportedComponents[ctx.OtherModuleName(to)] = struct{}{}
Sundong Ahn20e998b2018-07-24 11:19:26 +09001244 }
Jiyong Parkc678ad32018-04-10 13:07:10 +09001245 })
Paul Duffinb97b1572021-04-29 21:50:40 +01001246
1247 // Make the set of components exported by this module available for use elsewhere.
1248 exportedComponentInfo := android.ExportedComponentsInfo{Components: android.SortedStringKeys(exportedComponents)}
1249 ctx.SetProvider(android.ExportedComponentsInfoProvider, exportedComponentInfo)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001250}
1251
Jiyong Park0b0e1b92019-12-03 13:24:29 +09001252func (module *SdkLibrary) AndroidMkEntries() []android.AndroidMkEntries {
Paul Duffindfa131e2020-05-15 20:37:11 +01001253 if !module.requiresRuntimeImplementationLibrary() {
Paul Duffin43db9be2019-12-30 17:35:49 +00001254 return nil
1255 }
Jiyong Park0b0e1b92019-12-03 13:24:29 +09001256 entriesList := module.Library.AndroidMkEntries()
Yo Chiang07d75072020-06-05 17:43:19 +08001257 if module.sharedLibrary() {
1258 entries := &entriesList[0]
1259 entries.Required = append(entries.Required, module.xmlPermissionsModuleName())
1260 }
Jiyong Park0b0e1b92019-12-03 13:24:29 +09001261 return entriesList
Jiyong Park82484c02018-04-23 21:41:26 +09001262}
1263
Anton Hansson5fd5d242020-03-27 19:43:19 +00001264// The dist path of the stub artifacts
1265func (module *SdkLibrary) apiDistPath(apiScope *apiScope) string {
Colin Crossf0eace92021-06-02 13:02:23 -07001266 return path.Join("apistubs", module.distGroup(), apiScope.name)
Anton Hansson5fd5d242020-03-27 19:43:19 +00001267}
1268
Paul Duffin12ceb462019-12-24 20:31:31 +00001269// Get the sdk version for use when compiling the stubs library.
Paul Duffin780c5f42020-05-12 15:52:55 +01001270func (module *SdkLibrary) sdkVersionForStubsLibrary(mctx android.EarlyModuleContext, apiScope *apiScope) string {
Paul Duffin87a05a32020-05-12 11:50:28 +01001271 scopeProperties := module.scopeToProperties[apiScope]
1272 if scopeProperties.Sdk_version != nil {
1273 return proptools.String(scopeProperties.Sdk_version)
1274 }
1275
Jiyong Parkf1691d22021-03-29 20:11:58 +09001276 sdkDep := decodeSdkDep(mctx, android.SdkContext(&module.Library))
Paul Duffin12ceb462019-12-24 20:31:31 +00001277 if sdkDep.hasStandardLibs() {
1278 // If building against a standard sdk then use the sdk version appropriate for the scope.
Paul Duffind1b3a922020-01-22 11:57:20 +00001279 return apiScope.sdkVersion
Paul Duffin12ceb462019-12-24 20:31:31 +00001280 } else {
1281 // Otherwise, use no system module.
1282 return "none"
1283 }
1284}
1285
Paul Duffin31310252020-11-20 21:26:20 +00001286func (module *SdkLibrary) distStem() string {
1287 return proptools.StringDefault(module.sdkLibraryProperties.Dist_stem, module.BaseModuleName())
1288}
1289
Colin Cross986b69a2021-06-01 13:13:40 -07001290// distGroup returns the subdirectory of the dist path of the stub artifacts.
1291func (module *SdkLibrary) distGroup() string {
Colin Cross59b92bf2021-06-01 14:07:56 -07001292 return proptools.StringDefault(module.sdkLibraryProperties.Dist_group, "unknown")
Colin Cross986b69a2021-06-01 13:13:40 -07001293}
1294
Paul Duffind1b3a922020-01-22 11:57:20 +00001295func (module *SdkLibrary) latestApiFilegroupName(apiScope *apiScope) string {
Paul Duffin31310252020-11-20 21:26:20 +00001296 return ":" + module.distStem() + ".api." + apiScope.name + ".latest"
Jiyong Park58c518b2018-05-12 22:29:12 +09001297}
Jiyong Parkc678ad32018-04-10 13:07:10 +09001298
Paul Duffind1b3a922020-01-22 11:57:20 +00001299func (module *SdkLibrary) latestRemovedApiFilegroupName(apiScope *apiScope) string {
Paul Duffin31310252020-11-20 21:26:20 +00001300 return ":" + module.distStem() + "-removed.api." + apiScope.name + ".latest"
Jiyong Parkc678ad32018-04-10 13:07:10 +09001301}
1302
Jaewoong Jung1a97ee02021-03-09 13:25:02 -08001303func (module *SdkLibrary) latestIncompatibilitiesFilegroupName(apiScope *apiScope) string {
1304 return ":" + module.distStem() + "-incompatibilities.api." + apiScope.name + ".latest"
1305}
1306
Anton Hansson944e77d2020-08-19 11:40:22 +01001307func childModuleVisibility(childVisibility []string) []string {
1308 if childVisibility == nil {
1309 // No child visibility set. The child will use the visibility of the sdk_library.
1310 return nil
1311 }
1312
1313 // Prepend an override to ignore the sdk_library's visibility, and rely on the child visibility.
1314 var visibility []string
1315 visibility = append(visibility, "//visibility:override")
1316 visibility = append(visibility, childVisibility...)
1317 return visibility
1318}
1319
Paul Duffin5df79302020-05-16 15:52:12 +01001320// Creates the implementation java library
1321func (module *SdkLibrary) createImplLibrary(mctx android.DefaultableHookContext) {
Anton Hansson944e77d2020-08-19 11:40:22 +01001322 visibility := childModuleVisibility(module.sdkLibraryProperties.Impl_library_visibility)
1323
Paul Duffin5df79302020-05-16 15:52:12 +01001324 props := struct {
Paul Duffin66cdbf02021-05-14 16:35:06 +01001325 Name *string
1326 Visibility []string
1327 Instrument bool
1328 Libs []string
Paul Duffin5df79302020-05-16 15:52:12 +01001329 }{
1330 Name: proptools.StringPtr(module.implLibraryModuleName()),
Anton Hansson944e77d2020-08-19 11:40:22 +01001331 Visibility: visibility,
Paul Duffin296cf332020-06-18 21:09:55 +01001332 // Set the instrument property to ensure it is instrumented when instrumentation is required.
1333 Instrument: true,
Anton Hansson7f66efa2020-10-08 14:47:23 +01001334 // Set the impl_only libs. Note that the module's "Libs" get appended as well, via the
1335 // addition of &module.properties below.
1336 Libs: module.sdkLibraryProperties.Impl_only_libs,
Paul Duffin5df79302020-05-16 15:52:12 +01001337 }
1338
1339 properties := []interface{}{
1340 &module.properties,
1341 &module.protoProperties,
1342 &module.deviceProperties,
Liz Kammera7a64f32020-07-09 15:16:41 -07001343 &module.dexProperties,
Paul Duffin5df79302020-05-16 15:52:12 +01001344 &module.dexpreoptProperties,
Colin Cross014489c2020-06-02 20:09:13 -07001345 &module.linter.properties,
Paul Duffin5df79302020-05-16 15:52:12 +01001346 &props,
1347 module.sdkComponentPropertiesForChildLibrary(),
1348 }
1349 mctx.CreateModule(LibraryFactory, properties...)
1350}
1351
Jiyong Parkc678ad32018-04-10 13:07:10 +09001352// Creates a static java library that has API stubs
Paul Duffinf0229202020-04-29 16:47:28 +01001353func (module *SdkLibrary) createStubsLibrary(mctx android.DefaultableHookContext, apiScope *apiScope) {
Jiyong Parkc678ad32018-04-10 13:07:10 +09001354 props := struct {
Dan Willemsen9f435972020-05-28 15:28:00 -07001355 Name *string
1356 Visibility []string
1357 Srcs []string
1358 Installable *bool
1359 Sdk_version *string
1360 System_modules *string
1361 Patch_module *string
1362 Libs []string
Anton Hanssondae54cd2021-04-21 16:30:10 +01001363 Static_libs []string
Dan Willemsen9f435972020-05-28 15:28:00 -07001364 Compile_dex *bool
1365 Java_version *string
1366 Openjdk9 struct {
Sundong Ahn054b19a2018-10-19 13:46:09 +09001367 Srcs []string
1368 Javacflags []string
1369 }
Anton Hansson5fd5d242020-03-27 19:43:19 +00001370 Dist struct {
1371 Targets []string
1372 Dest *string
1373 Dir *string
1374 Tag *string
1375 }
Jiyong Parkc678ad32018-04-10 13:07:10 +09001376 }{}
1377
Paul Duffinc3091c82020-05-08 14:16:20 +01001378 props.Name = proptools.StringPtr(module.stubsLibraryModuleName(apiScope))
Anton Hansson944e77d2020-08-19 11:40:22 +01001379 props.Visibility = childModuleVisibility(module.sdkLibraryProperties.Stubs_library_visibility)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001380 // sources are generated from the droiddoc
Paul Duffinc3091c82020-05-08 14:16:20 +01001381 props.Srcs = []string{":" + module.stubsSourceModuleName(apiScope)}
Paul Duffin12ceb462019-12-24 20:31:31 +00001382 sdkVersion := module.sdkVersionForStubsLibrary(mctx, apiScope)
Paul Duffin52d398a2019-06-11 12:31:14 +01001383 props.Sdk_version = proptools.StringPtr(sdkVersion)
Paul Duffina18abc22020-05-16 18:54:24 +01001384 props.System_modules = module.deviceProperties.System_modules
1385 props.Patch_module = module.properties.Patch_module
Paul Duffin367ab912019-12-23 19:40:36 +00001386 props.Installable = proptools.BoolPtr(false)
Sundong Ahn054b19a2018-10-19 13:46:09 +09001387 props.Libs = module.sdkLibraryProperties.Stub_only_libs
Anton Hanssondae54cd2021-04-21 16:30:10 +01001388 props.Static_libs = module.sdkLibraryProperties.Stub_only_static_libs
Paul Duffine22c2ab2020-05-20 19:35:27 +01001389 // The stub-annotations library contains special versions of the annotations
1390 // with CLASS retention policy, so that they're kept.
1391 if proptools.Bool(module.sdkLibraryProperties.Annotations_enabled) {
1392 props.Libs = append(props.Libs, "stub-annotations")
1393 }
Paul Duffina18abc22020-05-16 18:54:24 +01001394 props.Openjdk9.Srcs = module.properties.Openjdk9.Srcs
1395 props.Openjdk9.Javacflags = module.properties.Openjdk9.Javacflags
Anton Hansson83509b52020-05-21 09:21:57 +01001396 // We compile the stubs for 1.8 in line with the main android.jar stubs, and potential
1397 // interop with older developer tools that don't support 1.9.
1398 props.Java_version = proptools.StringPtr("1.8")
Paul Duffinf4600f62021-05-13 22:34:45 +01001399
1400 // The imports need to be compiled to dex if the java_sdk_library requests it.
1401 compileDex := module.dexProperties.Compile_dex
1402 if module.stubLibrariesCompiledForDex() {
1403 compileDex = proptools.BoolPtr(true)
Sundong Ahndd567f92018-07-31 17:19:11 +09001404 }
Paul Duffinf4600f62021-05-13 22:34:45 +01001405 props.Compile_dex = compileDex
Jiyong Parkc678ad32018-04-10 13:07:10 +09001406
Anton Hansson5fd5d242020-03-27 19:43:19 +00001407 // Dist the class jar artifact for sdk builds.
1408 if !Bool(module.sdkLibraryProperties.No_dist) {
1409 props.Dist.Targets = []string{"sdk", "win_sdk"}
Paul Duffin31310252020-11-20 21:26:20 +00001410 props.Dist.Dest = proptools.StringPtr(fmt.Sprintf("%v.jar", module.distStem()))
Anton Hansson5fd5d242020-03-27 19:43:19 +00001411 props.Dist.Dir = proptools.StringPtr(module.apiDistPath(apiScope))
1412 props.Dist.Tag = proptools.StringPtr(".jar")
1413 }
Jiyong Parkc678ad32018-04-10 13:07:10 +09001414
Paul Duffin859fe962020-05-15 10:20:31 +01001415 mctx.CreateModule(LibraryFactory, &props, module.sdkComponentPropertiesForChildLibrary())
Jiyong Parkc678ad32018-04-10 13:07:10 +09001416}
1417
Paul Duffin6d0886e2020-04-07 18:49:53 +01001418// Creates a droidstubs module that creates stubs source files from the given full source
Paul Duffinc8782502020-04-29 20:45:27 +01001419// files and also updates and checks the API specification files.
Paul Duffin15f34ef2020-07-20 18:04:44 +01001420func (module *SdkLibrary) createStubsSourcesAndApi(mctx android.DefaultableHookContext, apiScope *apiScope, name string, scopeSpecificDroidstubsArgs []string) {
Jiyong Parkc678ad32018-04-10 13:07:10 +09001421 props := struct {
Sundong Ahn054b19a2018-10-19 13:46:09 +09001422 Name *string
Paul Duffin4911a892020-04-29 23:35:13 +01001423 Visibility []string
Sundong Ahn054b19a2018-10-19 13:46:09 +09001424 Srcs []string
1425 Installable *bool
Paul Duffin52d398a2019-06-11 12:31:14 +01001426 Sdk_version *string
Paul Duffin12ceb462019-12-24 20:31:31 +00001427 System_modules *string
Sundong Ahn054b19a2018-10-19 13:46:09 +09001428 Libs []string
Paul Duffin6877e6d2020-09-25 19:59:14 +01001429 Output_javadoc_comments *bool
Paul Duffin11512472019-02-11 15:55:17 +00001430 Arg_files []string
Sundong Ahn054b19a2018-10-19 13:46:09 +09001431 Args *string
Sundong Ahn054b19a2018-10-19 13:46:09 +09001432 Java_version *string
Paul Duffine22c2ab2020-05-20 19:35:27 +01001433 Annotations_enabled *bool
Sundong Ahn054b19a2018-10-19 13:46:09 +09001434 Merge_annotations_dirs []string
1435 Merge_inclusion_annotations_dirs []string
Paul Duffin0ff08bd2020-04-29 13:30:54 +01001436 Generate_stubs *bool
Anton Hanssone87b03d2020-12-21 15:29:34 +00001437 Previous_api *string
Sundong Ahn054b19a2018-10-19 13:46:09 +09001438 Check_api struct {
Anton Hanssone6056152020-12-31 10:37:27 +00001439 Current ApiToCheck
1440 Last_released ApiToCheck
Paul Duffin160fe412020-05-10 19:32:20 +01001441
1442 Api_lint struct {
1443 Enabled *bool
1444 New_since *string
1445 Baseline_file *string
1446 }
Jiyong Park58c518b2018-05-12 22:29:12 +09001447 }
Sundong Ahn1b92c822018-05-29 11:35:17 +09001448 Aidl struct {
1449 Include_dirs []string
1450 Local_include_dirs []string
1451 }
Paul Duffin040e9062020-11-23 17:41:36 +00001452 Dists []android.Dist
Jiyong Parkc678ad32018-04-10 13:07:10 +09001453 }{}
1454
Paul Duffin7b78b4d2020-04-28 14:08:32 +01001455 // The stubs source processing uses the same compile time classpath when extracting the
1456 // API from the implementation library as it does when compiling it. i.e. the same
1457 // * sdk version
1458 // * system_modules
1459 // * libs (static_libs/libs)
Paul Duffin250e6192019-06-07 10:44:37 +01001460
Paul Duffin0ff08bd2020-04-29 13:30:54 +01001461 props.Name = proptools.StringPtr(name)
Anton Hansson944e77d2020-08-19 11:40:22 +01001462 props.Visibility = childModuleVisibility(module.sdkLibraryProperties.Stubs_source_visibility)
Paul Duffina18abc22020-05-16 18:54:24 +01001463 props.Srcs = append(props.Srcs, module.properties.Srcs...)
Anton Hanssonf8ea3722021-09-16 14:24:13 +01001464 props.Srcs = append(props.Srcs, module.sdkLibraryProperties.Api_srcs...)
Paul Duffina18abc22020-05-16 18:54:24 +01001465 props.Sdk_version = module.deviceProperties.Sdk_version
1466 props.System_modules = module.deviceProperties.System_modules
Jiyong Parkc678ad32018-04-10 13:07:10 +09001467 props.Installable = proptools.BoolPtr(false)
Sundong Ahne6f0b052018-06-05 16:46:14 +09001468 // A droiddoc module has only one Libs property and doesn't distinguish between
1469 // shared libs and static libs. So we need to add both of these libs to Libs property.
Paul Duffina18abc22020-05-16 18:54:24 +01001470 props.Libs = module.properties.Libs
1471 props.Libs = append(props.Libs, module.properties.Static_libs...)
1472 props.Aidl.Include_dirs = module.deviceProperties.Aidl.Include_dirs
1473 props.Aidl.Local_include_dirs = module.deviceProperties.Aidl.Local_include_dirs
1474 props.Java_version = module.properties.Java_version
Jiyong Parkc678ad32018-04-10 13:07:10 +09001475
Paul Duffine22c2ab2020-05-20 19:35:27 +01001476 props.Annotations_enabled = module.sdkLibraryProperties.Annotations_enabled
Sundong Ahn054b19a2018-10-19 13:46:09 +09001477 props.Merge_annotations_dirs = module.sdkLibraryProperties.Merge_annotations_dirs
1478 props.Merge_inclusion_annotations_dirs = module.sdkLibraryProperties.Merge_inclusion_annotations_dirs
1479
Paul Duffin6d0886e2020-04-07 18:49:53 +01001480 droidstubsArgs := []string{}
Paul Duffin235ffff2019-12-24 10:41:30 +00001481 if len(module.sdkLibraryProperties.Api_packages) != 0 {
Paul Duffin6d0886e2020-04-07 18:49:53 +01001482 droidstubsArgs = append(droidstubsArgs, "--stub-packages "+strings.Join(module.sdkLibraryProperties.Api_packages, ":"))
Paul Duffin235ffff2019-12-24 10:41:30 +00001483 }
1484 if len(module.sdkLibraryProperties.Hidden_api_packages) != 0 {
Paul Duffin6d0886e2020-04-07 18:49:53 +01001485 droidstubsArgs = append(droidstubsArgs,
Paul Duffin235ffff2019-12-24 10:41:30 +00001486 android.JoinWithPrefix(module.sdkLibraryProperties.Hidden_api_packages, " --hide-package "))
1487 }
Paul Duffin6d0886e2020-04-07 18:49:53 +01001488 droidstubsArgs = append(droidstubsArgs, module.sdkLibraryProperties.Droiddoc_options...)
Paul Duffin235ffff2019-12-24 10:41:30 +00001489 disabledWarnings := []string{
1490 "MissingPermission",
1491 "BroadcastBehavior",
1492 "HiddenSuperclass",
1493 "DeprecationMismatch",
1494 "UnavailableSymbol",
1495 "SdkConstant",
1496 "HiddenTypeParameter",
1497 "Todo",
1498 "Typo",
1499 }
Paul Duffin6d0886e2020-04-07 18:49:53 +01001500 droidstubsArgs = append(droidstubsArgs, android.JoinWithPrefix(disabledWarnings, "--hide "))
Sundong Ahnfb2721f2018-09-17 13:23:09 +09001501
Paul Duffin6877e6d2020-09-25 19:59:14 +01001502 // Output Javadoc comments for public scope.
1503 if apiScope == apiScopePublic {
1504 props.Output_javadoc_comments = proptools.BoolPtr(true)
1505 }
1506
Paul Duffin1fb487d2020-04-07 18:50:10 +01001507 // Add in scope specific arguments.
Paul Duffin0ff08bd2020-04-29 13:30:54 +01001508 droidstubsArgs = append(droidstubsArgs, scopeSpecificDroidstubsArgs...)
Paul Duffin11512472019-02-11 15:55:17 +00001509 props.Arg_files = module.sdkLibraryProperties.Droiddoc_option_files
Paul Duffin6d0886e2020-04-07 18:49:53 +01001510 props.Args = proptools.StringPtr(strings.Join(droidstubsArgs, " "))
Jiyong Parkc678ad32018-04-10 13:07:10 +09001511
Paul Duffin15f34ef2020-07-20 18:04:44 +01001512 // List of APIs identified from the provided source files are created. They are later
1513 // compared against to the not-yet-released (a.k.a current) list of APIs and to the
1514 // last-released (a.k.a numbered) list of API.
1515 currentApiFileName := apiScope.apiFilePrefix + "current.txt"
1516 removedApiFileName := apiScope.apiFilePrefix + "removed.txt"
1517 apiDir := module.getApiDir()
1518 currentApiFileName = path.Join(apiDir, currentApiFileName)
1519 removedApiFileName = path.Join(apiDir, removedApiFileName)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001520
Paul Duffin15f34ef2020-07-20 18:04:44 +01001521 // check against the not-yet-release API
1522 props.Check_api.Current.Api_file = proptools.StringPtr(currentApiFileName)
1523 props.Check_api.Current.Removed_api_file = proptools.StringPtr(removedApiFileName)
Jiyong Park58c518b2018-05-12 22:29:12 +09001524
Anton Hanssone6056152020-12-31 10:37:27 +00001525 if !(apiScope.unstable || module.sdkLibraryProperties.Unsafe_ignore_missing_latest_api) {
Paul Duffin15f34ef2020-07-20 18:04:44 +01001526 // check against the latest released API
1527 latestApiFilegroupName := proptools.StringPtr(module.latestApiFilegroupName(apiScope))
Anton Hanssone87b03d2020-12-21 15:29:34 +00001528 props.Previous_api = latestApiFilegroupName
Paul Duffin15f34ef2020-07-20 18:04:44 +01001529 props.Check_api.Last_released.Api_file = latestApiFilegroupName
1530 props.Check_api.Last_released.Removed_api_file = proptools.StringPtr(
1531 module.latestRemovedApiFilegroupName(apiScope))
Jaewoong Jung1a97ee02021-03-09 13:25:02 -08001532 props.Check_api.Last_released.Baseline_file = proptools.StringPtr(
1533 module.latestIncompatibilitiesFilegroupName(apiScope))
Paul Duffin160fe412020-05-10 19:32:20 +01001534
Paul Duffin15f34ef2020-07-20 18:04:44 +01001535 if proptools.Bool(module.sdkLibraryProperties.Api_lint.Enabled) {
1536 // Enable api lint.
1537 props.Check_api.Api_lint.Enabled = proptools.BoolPtr(true)
1538 props.Check_api.Api_lint.New_since = latestApiFilegroupName
Paul Duffin160fe412020-05-10 19:32:20 +01001539
Paul Duffin15f34ef2020-07-20 18:04:44 +01001540 // If it exists then pass a lint-baseline.txt through to droidstubs.
1541 baselinePath := path.Join(apiDir, apiScope.apiFilePrefix+"lint-baseline.txt")
1542 baselinePathRelativeToRoot := path.Join(mctx.ModuleDir(), baselinePath)
1543 paths, err := mctx.GlobWithDeps(baselinePathRelativeToRoot, nil)
1544 if err != nil {
1545 mctx.ModuleErrorf("error checking for presence of %s: %s", baselinePathRelativeToRoot, err)
1546 }
1547 if len(paths) == 1 {
1548 props.Check_api.Api_lint.Baseline_file = proptools.StringPtr(baselinePath)
1549 } else if len(paths) != 0 {
1550 mctx.ModuleErrorf("error checking for presence of %s: expected one path, found: %v", baselinePathRelativeToRoot, paths)
Paul Duffin160fe412020-05-10 19:32:20 +01001551 }
1552 }
Paul Duffin15f34ef2020-07-20 18:04:44 +01001553 }
Jiyong Park58c518b2018-05-12 22:29:12 +09001554
Paul Duffin15f34ef2020-07-20 18:04:44 +01001555 if !Bool(module.sdkLibraryProperties.No_dist) {
Paul Duffin040e9062020-11-23 17:41:36 +00001556 // Dist the api txt and removed api txt artifacts for sdk builds.
1557 distDir := proptools.StringPtr(path.Join(module.apiDistPath(apiScope), "api"))
1558 for _, p := range []struct {
1559 tag string
1560 pattern string
1561 }{
1562 {tag: ".api.txt", pattern: "%s.txt"},
1563 {tag: ".removed-api.txt", pattern: "%s-removed.txt"},
1564 } {
1565 props.Dists = append(props.Dists, android.Dist{
1566 Targets: []string{"sdk", "win_sdk"},
1567 Dir: distDir,
1568 Dest: proptools.StringPtr(fmt.Sprintf(p.pattern, module.distStem())),
1569 Tag: proptools.StringPtr(p.tag),
1570 })
1571 }
Anton Hansson5fd5d242020-03-27 19:43:19 +00001572 }
1573
Colin Cross84dfc3d2019-09-25 11:33:01 -07001574 mctx.CreateModule(DroidstubsFactory, &props)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001575}
1576
Paul Duffinea8f8082021-06-24 13:25:57 +01001577// Implements android.ApexModule
Jooyung Han5e9013b2020-03-10 06:23:13 +09001578func (module *SdkLibrary) DepIsInSameApex(mctx android.BaseModuleContext, dep android.Module) bool {
1579 depTag := mctx.OtherModuleDependencyTag(dep)
1580 if depTag == xmlPermissionsFileTag {
1581 return true
1582 }
1583 return module.Library.DepIsInSameApex(mctx, dep)
1584}
1585
Paul Duffinea8f8082021-06-24 13:25:57 +01001586// Implements android.ApexModule
1587func (module *SdkLibrary) UniqueApexVariations() bool {
1588 return module.uniqueApexVariations()
1589}
1590
Jiyong Parkc678ad32018-04-10 13:07:10 +09001591// Creates the xml file that publicizes the runtime library
Paul Duffinf0229202020-04-29 16:47:28 +01001592func (module *SdkLibrary) createXmlFile(mctx android.DefaultableHookContext) {
Pedro Loureiroc3621422021-09-28 15:40:23 +00001593 moduleMinApiLevel := module.Library.MinSdkVersion(mctx).ApiLevel
1594 var moduleMinApiLevelStr = moduleMinApiLevel.String()
1595 if moduleMinApiLevel == android.NoneApiLevel {
1596 moduleMinApiLevelStr = "current"
1597 }
Jiyong Parke3833882020-02-17 17:28:10 +09001598 props := struct {
Pedro Loureiroc3621422021-09-28 15:40:23 +00001599 Name *string
1600 Lib_name *string
1601 Apex_available []string
1602 On_bootclasspath_since *string
1603 On_bootclasspath_before *string
1604 Min_device_sdk *string
1605 Max_device_sdk *string
1606 Sdk_library_min_api_level *string
Jiyong Parke3833882020-02-17 17:28:10 +09001607 }{
Pedro Loureiroc3621422021-09-28 15:40:23 +00001608 Name: proptools.StringPtr(module.xmlPermissionsModuleName()),
1609 Lib_name: proptools.StringPtr(module.BaseModuleName()),
1610 Apex_available: module.ApexProperties.Apex_available,
1611 On_bootclasspath_since: module.commonSdkLibraryProperties.On_bootclasspath_since,
1612 On_bootclasspath_before: module.commonSdkLibraryProperties.On_bootclasspath_before,
1613 Min_device_sdk: module.commonSdkLibraryProperties.Min_device_sdk,
1614 Max_device_sdk: module.commonSdkLibraryProperties.Max_device_sdk,
1615 Sdk_library_min_api_level: &moduleMinApiLevelStr,
Jiyong Parkc678ad32018-04-10 13:07:10 +09001616 }
Jiyong Parke3833882020-02-17 17:28:10 +09001617
Jiyong Parke3833882020-02-17 17:28:10 +09001618 mctx.CreateModule(sdkLibraryXmlFactory, &props)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001619}
1620
Jiyong Parkf1691d22021-03-29 20:11:58 +09001621func PrebuiltJars(ctx android.BaseModuleContext, baseName string, s android.SdkSpec) android.Paths {
Jiyong Park54105c42021-03-31 18:17:53 +09001622 var ver android.ApiLevel
Jiyong Parkf1691d22021-03-29 20:11:58 +09001623 var kind android.SdkKind
1624 if s.UsePrebuilt(ctx) {
Jiyong Park54105c42021-03-31 18:17:53 +09001625 ver = s.ApiLevel
Jiyong Parkf1691d22021-03-29 20:11:58 +09001626 kind = s.Kind
Jiyong Parkc678ad32018-04-10 13:07:10 +09001627 } else {
Jiyong Park6a927c42020-01-21 02:03:43 +09001628 // We don't have prebuilt SDK for the specific sdkVersion.
1629 // Instead of breaking the build, fallback to use "system_current"
Jiyong Park54105c42021-03-31 18:17:53 +09001630 ver = android.FutureApiLevel
Jiyong Parkf1691d22021-03-29 20:11:58 +09001631 kind = android.SdkSystem
Sundong Ahn054b19a2018-10-19 13:46:09 +09001632 }
Jiyong Park6a927c42020-01-21 02:03:43 +09001633
1634 dir := filepath.Join("prebuilts", "sdk", ver.String(), kind.String())
Paul Duffin50061512020-01-21 16:31:05 +00001635 jar := filepath.Join(dir, baseName+".jar")
Sundong Ahn054b19a2018-10-19 13:46:09 +09001636 jarPath := android.ExistentPathForSource(ctx, jar)
Sundong Ahnae418ac2019-02-28 15:01:28 +09001637 if !jarPath.Valid() {
Colin Cross07c88562020-01-07 09:34:44 -08001638 if ctx.Config().AllowMissingDependencies() {
1639 return android.Paths{android.PathForSource(ctx, jar)}
1640 } else {
Jiyong Parkf1691d22021-03-29 20:11:58 +09001641 ctx.PropertyErrorf("sdk_library", "invalid sdk version %q, %q does not exist", s.Raw, jar)
Colin Cross07c88562020-01-07 09:34:44 -08001642 }
Sundong Ahnae418ac2019-02-28 15:01:28 +09001643 return nil
1644 }
Sundong Ahn054b19a2018-10-19 13:46:09 +09001645 return android.Paths{jarPath.Path()}
1646}
1647
Colin Crossaede88c2020-08-11 12:17:01 -07001648// Check to see if the other module is within the same set of named APEXes as this module.
Paul Duffin9b879592020-05-26 13:21:35 +01001649//
1650// If either this or the other module are on the platform then this will return
1651// false.
Colin Cross56a83212020-09-15 18:30:11 -07001652func withinSameApexesAs(ctx android.BaseModuleContext, other android.Module) bool {
1653 apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo)
1654 otherApexInfo := ctx.OtherModuleProvider(other, android.ApexInfoProvider).(android.ApexInfo)
Jiyong Parkab50b072021-05-12 17:13:56 +09001655 return len(otherApexInfo.InApexVariants) > 0 && reflect.DeepEqual(apexInfo.InApexVariants, otherApexInfo.InApexVariants)
Paul Duffin9b879592020-05-26 13:21:35 +01001656}
1657
Jiyong Parkf1691d22021-03-29 20:11:58 +09001658func (module *SdkLibrary) sdkJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec, headerJars bool) android.Paths {
Jiyong Park932cdfe2020-05-28 00:19:53 +09001659 // If the client doesn't set sdk_version, but if this library prefers stubs over
1660 // the impl library, let's provide the widest API surface possible. To do so,
1661 // force override sdk_version to module_current so that the closest possible API
1662 // surface could be found in selectHeaderJarsForSdkVersion
Jiyong Parkf1691d22021-03-29 20:11:58 +09001663 if module.defaultsToStubs() && !sdkVersion.Specified() {
Jiyong Park92315372021-04-02 08:45:46 +09001664 sdkVersion = android.SdkSpecFrom(ctx, "module_current")
Jiyong Park932cdfe2020-05-28 00:19:53 +09001665 }
Paul Duffind1b3a922020-01-22 11:57:20 +00001666
Paul Duffindaaa3322020-05-26 18:13:57 +01001667 // Only provide access to the implementation library if it is actually built.
1668 if module.requiresRuntimeImplementationLibrary() {
1669 // Check any special cases for java_sdk_library.
1670 //
1671 // Only allow access to the implementation library in the following condition:
1672 // * No sdk_version specified on the referencing module.
Paul Duffin9b879592020-05-26 13:21:35 +01001673 // * The referencing module is in the same apex as this.
Jiyong Parkf1691d22021-03-29 20:11:58 +09001674 if sdkVersion.Kind == android.SdkPrivate || withinSameApexesAs(ctx, module) {
Paul Duffindaaa3322020-05-26 18:13:57 +01001675 if headerJars {
1676 return module.HeaderJars()
1677 } else {
1678 return module.ImplementationJars()
1679 }
Sundong Ahn054b19a2018-10-19 13:46:09 +09001680 }
Jiyong Parkc678ad32018-04-10 13:07:10 +09001681 }
Paul Duffinb05d4292020-05-20 12:19:10 +01001682
Paul Duffin23970f42020-05-20 14:20:02 +01001683 return module.selectHeaderJarsForSdkVersion(ctx, sdkVersion)
Jiyong Parkc678ad32018-04-10 13:07:10 +09001684}
1685
Sundong Ahn241cd372018-07-13 16:16:44 +09001686// to satisfy SdkLibraryDependency interface
Jiyong Parkf1691d22021-03-29 20:11:58 +09001687func (module *SdkLibrary) SdkHeaderJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths {
Paul Duffind1b3a922020-01-22 11:57:20 +00001688 return module.sdkJars(ctx, sdkVersion, true /*headerJars*/)
1689}
1690
1691// to satisfy SdkLibraryDependency interface
Jiyong Parkf1691d22021-03-29 20:11:58 +09001692func (module *SdkLibrary) SdkImplementationJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths {
Paul Duffind1b3a922020-01-22 11:57:20 +00001693 return module.sdkJars(ctx, sdkVersion, false /*headerJars*/)
Sundong Ahn241cd372018-07-13 16:16:44 +09001694}
1695
Colin Cross571cccf2019-02-04 11:22:08 -08001696var javaSdkLibrariesKey = android.NewOnceKey("javaSdkLibraries")
1697
Jiyong Park82484c02018-04-23 21:41:26 +09001698func javaSdkLibraries(config android.Config) *[]string {
Colin Cross571cccf2019-02-04 11:22:08 -08001699 return config.Once(javaSdkLibrariesKey, func() interface{} {
Jiyong Park82484c02018-04-23 21:41:26 +09001700 return &[]string{}
1701 }).(*[]string)
1702}
1703
Paul Duffin749f98f2019-12-30 17:23:46 +00001704func (module *SdkLibrary) getApiDir() string {
1705 return proptools.StringDefault(module.sdkLibraryProperties.Api_dir, "api")
1706}
1707
Jiyong Parkc678ad32018-04-10 13:07:10 +09001708// For a java_sdk_library module, create internal modules for stubs, docs,
1709// runtime libs and xml file. If requested, the stubs and docs are created twice
1710// once for public API level and once for system API level
Paul Duffinf0229202020-04-29 16:47:28 +01001711func (module *SdkLibrary) CreateInternalModules(mctx android.DefaultableHookContext) {
1712 // If the module has been disabled then don't create any child modules.
1713 if !module.Enabled() {
1714 return
1715 }
1716
Paul Duffina18abc22020-05-16 18:54:24 +01001717 if len(module.properties.Srcs) == 0 {
Inseob Kimc0907f12019-02-08 21:00:45 +09001718 mctx.PropertyErrorf("srcs", "java_sdk_library must specify srcs")
Jooyung Han58f26ab2019-12-18 15:34:32 +09001719 return
Inseob Kimc0907f12019-02-08 21:00:45 +09001720 }
1721
Paul Duffin37e0b772019-12-30 17:20:10 +00001722 // If this builds against standard libraries (i.e. is not part of the core libraries)
Paul Duffin4f5c1ef2020-11-19 14:53:43 +00001723 // then assume it provides both system and test apis.
Jiyong Parkf1691d22021-03-29 20:11:58 +09001724 sdkDep := decodeSdkDep(mctx, android.SdkContext(&module.Library))
Paul Duffin37e0b772019-12-30 17:20:10 +00001725 hasSystemAndTestApis := sdkDep.hasStandardLibs()
Paul Duffin3375e352020-04-28 10:44:03 +01001726 module.sdkLibraryProperties.Generate_system_and_test_apis = hasSystemAndTestApis
Paul Duffin4f5c1ef2020-11-19 14:53:43 +00001727
Jaewoong Jung18aefc12020-12-21 09:11:10 -08001728 missingCurrentApi := false
Inseob Kim8098faa2019-03-18 10:19:51 +09001729
Paul Duffin3375e352020-04-28 10:44:03 +01001730 generatedScopes := module.getGeneratedApiScopes(mctx)
Paul Duffind1b3a922020-01-22 11:57:20 +00001731
Paul Duffin749f98f2019-12-30 17:23:46 +00001732 apiDir := module.getApiDir()
Paul Duffin3375e352020-04-28 10:44:03 +01001733 for _, scope := range generatedScopes {
Inseob Kim8098faa2019-03-18 10:19:51 +09001734 for _, api := range []string{"current.txt", "removed.txt"} {
Paul Duffind1b3a922020-01-22 11:57:20 +00001735 path := path.Join(mctx.ModuleDir(), apiDir, scope.apiFilePrefix+api)
Inseob Kim8098faa2019-03-18 10:19:51 +09001736 p := android.ExistentPathForSource(mctx, path)
1737 if !p.Valid() {
Colin Cross18f840c2021-05-20 17:56:54 -07001738 if mctx.Config().AllowMissingDependencies() {
1739 mctx.AddMissingDependencies([]string{path})
1740 } else {
1741 mctx.ModuleErrorf("Current api file %#v doesn't exist", path)
1742 missingCurrentApi = true
1743 }
Inseob Kim8098faa2019-03-18 10:19:51 +09001744 }
1745 }
1746 }
1747
Jaewoong Jung18aefc12020-12-21 09:11:10 -08001748 if missingCurrentApi {
Inseob Kim8098faa2019-03-18 10:19:51 +09001749 script := "build/soong/scripts/gen-java-current-api-files.sh"
1750 p := android.ExistentPathForSource(mctx, script)
1751
1752 if !p.Valid() {
1753 panic(fmt.Sprintf("script file %s doesn't exist", script))
1754 }
1755
1756 mctx.ModuleErrorf("One or more current api files are missing. "+
1757 "You can update them by:\n"+
Paul Duffin37e0b772019-12-30 17:20:10 +00001758 "%s %q %s && m update-api",
Paul Duffind1b3a922020-01-22 11:57:20 +00001759 script, filepath.Join(mctx.ModuleDir(), apiDir),
Paul Duffin3375e352020-04-28 10:44:03 +01001760 strings.Join(generatedScopes.Strings(func(s *apiScope) string { return s.apiFilePrefix }), " "))
Inseob Kim8098faa2019-03-18 10:19:51 +09001761 return
1762 }
1763
Paul Duffin3375e352020-04-28 10:44:03 +01001764 for _, scope := range generatedScopes {
Paul Duffin15f34ef2020-07-20 18:04:44 +01001765 // Use the stubs source name for legacy reasons.
1766 module.createStubsSourcesAndApi(mctx, scope, module.stubsSourceModuleName(scope), scope.droidstubsArgs)
Paul Duffin0ff08bd2020-04-29 13:30:54 +01001767
Paul Duffind1b3a922020-01-22 11:57:20 +00001768 module.createStubsLibrary(mctx, scope)
Inseob Kimc0907f12019-02-08 21:00:45 +09001769 }
1770
Paul Duffindfa131e2020-05-15 20:37:11 +01001771 if module.requiresRuntimeImplementationLibrary() {
Paul Duffin5df79302020-05-16 15:52:12 +01001772 // Create child module to create an implementation library.
1773 //
1774 // This temporarily creates a second implementation library that can be explicitly
1775 // referenced.
1776 //
1777 // TODO(b/156618935) - update comment once only one implementation library is created.
1778 module.createImplLibrary(mctx)
1779
Paul Duffindfa131e2020-05-15 20:37:11 +01001780 // Only create an XML permissions file that declares the library as being usable
1781 // as a shared library if required.
1782 if module.sharedLibrary() {
1783 module.createXmlFile(mctx)
1784 }
Paul Duffin43db9be2019-12-30 17:35:49 +00001785
1786 // record java_sdk_library modules so that they are exported to make
1787 javaSdkLibraries := javaSdkLibraries(mctx.Config())
1788 javaSdkLibrariesLock.Lock()
1789 defer javaSdkLibrariesLock.Unlock()
1790 *javaSdkLibraries = append(*javaSdkLibraries, module.BaseModuleName())
1791 }
Anton Hansson7f66efa2020-10-08 14:47:23 +01001792
1793 // Add the impl_only_libs *after* we're done using the Libs prop in submodules.
1794 module.properties.Libs = append(module.properties.Libs, module.sdkLibraryProperties.Impl_only_libs...)
Inseob Kimc0907f12019-02-08 21:00:45 +09001795}
1796
1797func (module *SdkLibrary) InitSdkLibraryProperties() {
Colin Crossce6734e2020-06-15 16:09:53 -07001798 module.addHostAndDeviceProperties()
1799 module.AddProperties(&module.sdkLibraryProperties)
Sundong Ahn054b19a2018-10-19 13:46:09 +09001800
Paul Duffin71b33cc2021-06-23 11:39:47 +01001801 module.initSdkLibraryComponent(module)
Paul Duffin859fe962020-05-15 10:20:31 +01001802
Paul Duffina18abc22020-05-16 18:54:24 +01001803 module.properties.Installable = proptools.BoolPtr(true)
1804 module.deviceProperties.IsSDKLibrary = true
Inseob Kimc0907f12019-02-08 21:00:45 +09001805}
Sundong Ahn054b19a2018-10-19 13:46:09 +09001806
Paul Duffindfa131e2020-05-15 20:37:11 +01001807func (module *SdkLibrary) requiresRuntimeImplementationLibrary() bool {
1808 return !proptools.Bool(module.sdkLibraryProperties.Api_only)
1809}
1810
Jiyong Park932cdfe2020-05-28 00:19:53 +09001811func (module *SdkLibrary) defaultsToStubs() bool {
1812 return proptools.Bool(module.sdkLibraryProperties.Default_to_stubs)
1813}
1814
Paul Duffin1b1e8062020-05-08 13:44:43 +01001815// Defines how to name the individual component modules the sdk library creates.
1816type sdkLibraryComponentNamingScheme interface {
1817 stubsLibraryModuleName(scope *apiScope, baseName string) string
1818
1819 stubsSourceModuleName(scope *apiScope, baseName string) string
Paul Duffin1b1e8062020-05-08 13:44:43 +01001820}
1821
1822type defaultNamingScheme struct {
1823}
1824
1825func (s *defaultNamingScheme) stubsLibraryModuleName(scope *apiScope, baseName string) string {
1826 return scope.stubsLibraryModuleName(baseName)
1827}
1828
1829func (s *defaultNamingScheme) stubsSourceModuleName(scope *apiScope, baseName string) string {
1830 return scope.stubsSourceModuleName(baseName)
1831}
1832
Paul Duffin1b1e8062020-05-08 13:44:43 +01001833var _ sdkLibraryComponentNamingScheme = (*defaultNamingScheme)(nil)
1834
Jaewoong Jungbc15e3a2021-03-10 17:02:43 -08001835func moduleStubLinkType(name string) (stub bool, ret sdkLinkType) {
Anton Hansson2d0c1942020-05-25 12:20:51 +01001836 // This suffix-based approach is fragile and could potentially mis-trigger.
1837 // TODO(b/155164730): Clean this up when modules no longer reference sdk_lib stubs directly.
Anton Hansson08f476b2021-04-07 15:32:19 +01001838 if strings.HasSuffix(name, apiScopePublic.stubsLibraryModuleNameSuffix()) {
1839 if name == "hwbinder.stubs" || name == "libcore_private.stubs" {
1840 // Due to a previous bug, these modules were not considered stubs, so we retain that.
1841 return false, javaPlatform
1842 }
Anton Hansson2d0c1942020-05-25 12:20:51 +01001843 return true, javaSdk
1844 }
Anton Hansson08f476b2021-04-07 15:32:19 +01001845 if strings.HasSuffix(name, apiScopeSystem.stubsLibraryModuleNameSuffix()) {
Anton Hansson2d0c1942020-05-25 12:20:51 +01001846 return true, javaSystem
1847 }
Anton Hansson08f476b2021-04-07 15:32:19 +01001848 if strings.HasSuffix(name, apiScopeModuleLib.stubsLibraryModuleNameSuffix()) {
Anton Hansson2d0c1942020-05-25 12:20:51 +01001849 return true, javaModule
1850 }
Anton Hansson08f476b2021-04-07 15:32:19 +01001851 if strings.HasSuffix(name, apiScopeTest.stubsLibraryModuleNameSuffix()) {
Anton Hansson2d0c1942020-05-25 12:20:51 +01001852 return true, javaSystem
1853 }
1854 return false, javaPlatform
1855}
1856
Jaewoong Jung4f158ee2019-07-11 10:05:35 -07001857// java_sdk_library is a special Java library that provides optional platform APIs to apps.
1858// In practice, it can be viewed as a combination of several modules: 1) stubs library that clients
1859// are linked against to, 2) droiddoc module that internally generates API stubs source files,
1860// 3) the real runtime shared library that implements the APIs, and 4) XML file for adding
1861// the runtime lib to the classpath at runtime if requested via <uses-library>.
Inseob Kimc0907f12019-02-08 21:00:45 +09001862func SdkLibraryFactory() android.Module {
1863 module := &SdkLibrary{}
Paul Duffinc3091c82020-05-08 14:16:20 +01001864
1865 // Initialize information common between source and prebuilt.
Paul Duffin71b33cc2021-06-23 11:39:47 +01001866 module.initCommon(module)
Paul Duffinc3091c82020-05-08 14:16:20 +01001867
Inseob Kimc0907f12019-02-08 21:00:45 +09001868 module.InitSdkLibraryProperties()
Jooyung Han58f26ab2019-12-18 15:34:32 +09001869 android.InitApexModule(module)
Paul Duffinb6b89a42021-05-06 16:33:43 +01001870 android.InitSdkAwareModule(module)
Sundong Ahn054b19a2018-10-19 13:46:09 +09001871 InitJavaModule(module, android.HostAndDeviceSupported)
Paul Duffin3375e352020-04-28 10:44:03 +01001872
1873 // Initialize the map from scope to scope specific properties.
1874 scopeToProperties := make(map[*apiScope]*ApiScopeProperties)
1875 for _, scope := range allApiScopes {
1876 scopeToProperties[scope] = scope.scopeSpecificProperties(module)
1877 }
1878 module.scopeToProperties = scopeToProperties
1879
Paul Duffin4911a892020-04-29 23:35:13 +01001880 // Add the properties containing visibility rules so that they are checked.
Paul Duffin5df79302020-05-16 15:52:12 +01001881 android.AddVisibilityProperty(module, "impl_library_visibility", &module.sdkLibraryProperties.Impl_library_visibility)
Paul Duffin4911a892020-04-29 23:35:13 +01001882 android.AddVisibilityProperty(module, "stubs_library_visibility", &module.sdkLibraryProperties.Stubs_library_visibility)
1883 android.AddVisibilityProperty(module, "stubs_source_visibility", &module.sdkLibraryProperties.Stubs_source_visibility)
1884
Paul Duffin1b1e8062020-05-08 13:44:43 +01001885 module.SetDefaultableHook(func(ctx android.DefaultableHookContext) {
Paul Duffindfa131e2020-05-15 20:37:11 +01001886 // If no implementation is required then it cannot be used as a shared library
1887 // either.
1888 if !module.requiresRuntimeImplementationLibrary() {
1889 // If shared_library has been explicitly set to true then it is incompatible
1890 // with api_only: true.
1891 if proptools.Bool(module.commonSdkLibraryProperties.Shared_library) {
1892 ctx.PropertyErrorf("api_only/shared_library", "inconsistent settings, shared_library and api_only cannot both be true")
1893 }
1894 // Set shared_library: false.
1895 module.commonSdkLibraryProperties.Shared_library = proptools.BoolPtr(false)
1896 }
1897
Paul Duffin1b1e8062020-05-08 13:44:43 +01001898 if module.initCommonAfterDefaultsApplied(ctx) {
1899 module.CreateInternalModules(ctx)
1900 }
1901 })
Jiyong Parkc678ad32018-04-10 13:07:10 +09001902 return module
1903}
Colin Cross79c7c262019-04-17 11:11:46 -07001904
1905//
1906// SDK library prebuilts
1907//
1908
Paul Duffin56d44902020-01-31 13:36:25 +00001909// Properties associated with each api scope.
1910type sdkLibraryScopeProperties struct {
Colin Cross79c7c262019-04-17 11:11:46 -07001911 Jars []string `android:"path"`
1912
1913 Sdk_version *string
1914
Colin Cross79c7c262019-04-17 11:11:46 -07001915 // List of shared java libs that this module has dependencies to
1916 Libs []string
Paul Duffin3d1248c2020-04-09 00:10:17 +01001917
Paul Duffinc8782502020-04-29 20:45:27 +01001918 // The stubs source.
Paul Duffin3d1248c2020-04-09 00:10:17 +01001919 Stub_srcs []string `android:"path"`
Paul Duffin1fd005d2020-04-09 01:08:11 +01001920
1921 // The current.txt
Paul Duffin0f8faff2020-05-20 16:18:00 +01001922 Current_api *string `android:"path"`
Paul Duffin1fd005d2020-04-09 01:08:11 +01001923
1924 // The removed.txt
Paul Duffin0f8faff2020-05-20 16:18:00 +01001925 Removed_api *string `android:"path"`
Anton Hanssond78eb762021-09-21 15:25:12 +01001926
1927 // Annotation zip
1928 Annotations *string `android:"path"`
Colin Cross79c7c262019-04-17 11:11:46 -07001929}
1930
Paul Duffin56d44902020-01-31 13:36:25 +00001931type sdkLibraryImportProperties struct {
Paul Duffinfcfd7912020-01-31 17:54:30 +00001932 // List of shared java libs, common to all scopes, that this module has
1933 // dependencies to
1934 Libs []string
Paul Duffin1267d872021-04-16 17:21:36 +01001935
1936 // If set to true, compile dex files for the stubs. Defaults to false.
1937 Compile_dex *bool
Paul Duffin869de142021-07-15 14:14:41 +01001938
1939 // If not empty, classes are restricted to the specified packages and their sub-packages.
Paul Duffin869de142021-07-15 14:14:41 +01001940 Permitted_packages []string
Paul Duffin56d44902020-01-31 13:36:25 +00001941}
1942
Paul Duffineedc5d52020-06-12 17:46:39 +01001943type SdkLibraryImport struct {
Colin Cross79c7c262019-04-17 11:11:46 -07001944 android.ModuleBase
1945 android.DefaultableModuleBase
1946 prebuilt android.Prebuilt
Paul Duffindd46f712020-02-10 13:37:10 +00001947 android.ApexModuleBase
1948 android.SdkBase
Colin Cross79c7c262019-04-17 11:11:46 -07001949
Paul Duffin37856732021-02-26 14:24:15 +00001950 hiddenAPI
Jiakai Zhang204356f2021-09-09 08:12:46 +00001951 dexpreopter
Paul Duffin37856732021-02-26 14:24:15 +00001952
Colin Cross79c7c262019-04-17 11:11:46 -07001953 properties sdkLibraryImportProperties
1954
Paul Duffin46a26a82020-04-07 19:27:04 +01001955 // Map from api scope to the scope specific property structure.
1956 scopeProperties map[*apiScope]*sdkLibraryScopeProperties
1957
Paul Duffin56d44902020-01-31 13:36:25 +00001958 commonToSdkLibraryAndImport
Paul Duffineedc5d52020-06-12 17:46:39 +01001959
1960 // The reference to the implementation library created by the source module.
1961 // Is nil if the source module does not exist.
1962 implLibraryModule *Library
1963
1964 // The reference to the xml permissions module created by the source module.
1965 // Is nil if the source module does not exist.
1966 xmlPermissionsFileModule *sdkLibraryXml
Paul Duffin39853512021-02-26 11:09:39 +00001967
Jeongik Chad5fe8782021-07-08 01:13:11 +09001968 // Build path to the dex implementation jar obtained from the prebuilt_apex, if any.
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +01001969 dexJarFile OptionalDexJarPath
Jeongik Chad5fe8782021-07-08 01:13:11 +09001970
1971 // Expected install file path of the source module(sdk_library)
1972 // or dex implementation jar obtained from the prebuilt_apex, if any.
1973 installFile android.Path
Colin Cross79c7c262019-04-17 11:11:46 -07001974}
1975
Paul Duffineedc5d52020-06-12 17:46:39 +01001976var _ SdkLibraryDependency = (*SdkLibraryImport)(nil)
Colin Cross79c7c262019-04-17 11:11:46 -07001977
Paul Duffin46a26a82020-04-07 19:27:04 +01001978// The type of a structure that contains a field of type sdkLibraryScopeProperties
1979// for each apiscope in allApiScopes, e.g. something like:
1980// struct {
1981// Public sdkLibraryScopeProperties
1982// System sdkLibraryScopeProperties
1983// ...
1984// }
1985var allScopeStructType = createAllScopePropertiesStructType()
1986
1987// Dynamically create a structure type for each apiscope in allApiScopes.
1988func createAllScopePropertiesStructType() reflect.Type {
1989 var fields []reflect.StructField
1990 for _, apiScope := range allApiScopes {
1991 field := reflect.StructField{
1992 Name: apiScope.fieldName,
1993 Type: reflect.TypeOf(sdkLibraryScopeProperties{}),
1994 }
1995 fields = append(fields, field)
1996 }
1997
1998 return reflect.StructOf(fields)
1999}
2000
2001// Create an instance of the scope specific structure type and return a map
2002// from apiscope to a pointer to each scope specific field.
2003func createPropertiesInstance() (interface{}, map[*apiScope]*sdkLibraryScopeProperties) {
2004 allScopePropertiesPtr := reflect.New(allScopeStructType)
2005 allScopePropertiesStruct := allScopePropertiesPtr.Elem()
2006 scopeProperties := make(map[*apiScope]*sdkLibraryScopeProperties)
2007
2008 for _, apiScope := range allApiScopes {
2009 field := allScopePropertiesStruct.FieldByName(apiScope.fieldName)
2010 scopeProperties[apiScope] = field.Addr().Interface().(*sdkLibraryScopeProperties)
2011 }
2012
2013 return allScopePropertiesPtr.Interface(), scopeProperties
2014}
2015
Jaewoong Jung4f158ee2019-07-11 10:05:35 -07002016// java_sdk_library_import imports a prebuilt java_sdk_library.
Colin Cross79c7c262019-04-17 11:11:46 -07002017func sdkLibraryImportFactory() android.Module {
Paul Duffineedc5d52020-06-12 17:46:39 +01002018 module := &SdkLibraryImport{}
Colin Cross79c7c262019-04-17 11:11:46 -07002019
Paul Duffin46a26a82020-04-07 19:27:04 +01002020 allScopeProperties, scopeToProperties := createPropertiesInstance()
2021 module.scopeProperties = scopeToProperties
2022 module.AddProperties(&module.properties, allScopeProperties)
Colin Cross79c7c262019-04-17 11:11:46 -07002023
Paul Duffinc3091c82020-05-08 14:16:20 +01002024 // Initialize information common between source and prebuilt.
Paul Duffin71b33cc2021-06-23 11:39:47 +01002025 module.initCommon(module)
Paul Duffinc3091c82020-05-08 14:16:20 +01002026
Paul Duffin0bdcb272020-02-06 15:24:57 +00002027 android.InitPrebuiltModule(module, &[]string{""})
Paul Duffindd46f712020-02-10 13:37:10 +00002028 android.InitApexModule(module)
2029 android.InitSdkAwareModule(module)
Colin Cross79c7c262019-04-17 11:11:46 -07002030 InitJavaModule(module, android.HostAndDeviceSupported)
2031
Paul Duffin1b1e8062020-05-08 13:44:43 +01002032 module.SetDefaultableHook(func(mctx android.DefaultableHookContext) {
2033 if module.initCommonAfterDefaultsApplied(mctx) {
2034 module.createInternalModules(mctx)
2035 }
2036 })
Colin Cross79c7c262019-04-17 11:11:46 -07002037 return module
2038}
2039
Paul Duffin630b11e2021-07-15 13:35:26 +01002040var _ PermittedPackagesForUpdatableBootJars = (*SdkLibraryImport)(nil)
2041
2042func (module *SdkLibraryImport) PermittedPackagesForUpdatableBootJars() []string {
2043 return module.properties.Permitted_packages
2044}
2045
Paul Duffineedc5d52020-06-12 17:46:39 +01002046func (module *SdkLibraryImport) Prebuilt() *android.Prebuilt {
Colin Cross79c7c262019-04-17 11:11:46 -07002047 return &module.prebuilt
2048}
2049
Paul Duffineedc5d52020-06-12 17:46:39 +01002050func (module *SdkLibraryImport) Name() string {
Colin Cross79c7c262019-04-17 11:11:46 -07002051 return module.prebuilt.Name(module.ModuleBase.Name())
2052}
2053
Paul Duffineedc5d52020-06-12 17:46:39 +01002054func (module *SdkLibraryImport) createInternalModules(mctx android.DefaultableHookContext) {
Colin Cross79c7c262019-04-17 11:11:46 -07002055
Paul Duffin50061512020-01-21 16:31:05 +00002056 // If the build is configured to use prebuilts then force this to be preferred.
Jeongik Cha816a23a2020-07-08 01:09:23 +09002057 if mctx.Config().AlwaysUsePrebuiltSdks() {
Paul Duffin50061512020-01-21 16:31:05 +00002058 module.prebuilt.ForcePrefer()
2059 }
2060
Paul Duffin46a26a82020-04-07 19:27:04 +01002061 for apiScope, scopeProperties := range module.scopeProperties {
Paul Duffin56d44902020-01-31 13:36:25 +00002062 if len(scopeProperties.Jars) == 0 {
2063 continue
2064 }
2065
Paul Duffinbbb546b2020-04-09 00:07:11 +01002066 module.createJavaImportForStubs(mctx, apiScope, scopeProperties)
Paul Duffin3d1248c2020-04-09 00:10:17 +01002067
Paul Duffin0f8faff2020-05-20 16:18:00 +01002068 if len(scopeProperties.Stub_srcs) > 0 {
2069 module.createPrebuiltStubsSources(mctx, apiScope, scopeProperties)
2070 }
Paul Duffin56d44902020-01-31 13:36:25 +00002071 }
Colin Cross79c7c262019-04-17 11:11:46 -07002072
2073 javaSdkLibraries := javaSdkLibraries(mctx.Config())
2074 javaSdkLibrariesLock.Lock()
2075 defer javaSdkLibrariesLock.Unlock()
2076 *javaSdkLibraries = append(*javaSdkLibraries, module.BaseModuleName())
2077}
2078
Paul Duffineedc5d52020-06-12 17:46:39 +01002079func (module *SdkLibraryImport) createJavaImportForStubs(mctx android.DefaultableHookContext, apiScope *apiScope, scopeProperties *sdkLibraryScopeProperties) {
Paul Duffinbbb546b2020-04-09 00:07:11 +01002080 // Creates a java import for the jar with ".stubs" suffix
2081 props := struct {
Paul Duffin1dbe3ca2020-05-16 09:57:59 +01002082 Name *string
2083 Sdk_version *string
2084 Libs []string
2085 Jars []string
2086 Prefer *bool
Paul Duffin1267d872021-04-16 17:21:36 +01002087 Compile_dex *bool
Paul Duffinbbb546b2020-04-09 00:07:11 +01002088 }{}
Paul Duffinc3091c82020-05-08 14:16:20 +01002089 props.Name = proptools.StringPtr(module.stubsLibraryModuleName(apiScope))
Paul Duffinbbb546b2020-04-09 00:07:11 +01002090 props.Sdk_version = scopeProperties.Sdk_version
2091 // Prepend any of the libs from the legacy public properties to the libs for each of the
2092 // scopes to avoid having to duplicate them in each scope.
2093 props.Libs = append(module.properties.Libs, scopeProperties.Libs...)
2094 props.Jars = scopeProperties.Jars
Paul Duffin1dbe3ca2020-05-16 09:57:59 +01002095
Paul Duffin38b57852020-05-13 16:08:09 +01002096 // The imports are preferred if the java_sdk_library_import is preferred.
2097 props.Prefer = proptools.BoolPtr(module.prebuilt.Prefer())
Paul Duffin859fe962020-05-15 10:20:31 +01002098
Paul Duffin1267d872021-04-16 17:21:36 +01002099 // The imports need to be compiled to dex if the java_sdk_library_import requests it.
Paul Duffinf4600f62021-05-13 22:34:45 +01002100 compileDex := module.properties.Compile_dex
2101 if module.stubLibrariesCompiledForDex() {
2102 compileDex = proptools.BoolPtr(true)
2103 }
2104 props.Compile_dex = compileDex
Paul Duffin1267d872021-04-16 17:21:36 +01002105
Paul Duffin859fe962020-05-15 10:20:31 +01002106 mctx.CreateModule(ImportFactory, &props, module.sdkComponentPropertiesForChildLibrary())
Paul Duffinbbb546b2020-04-09 00:07:11 +01002107}
2108
Paul Duffineedc5d52020-06-12 17:46:39 +01002109func (module *SdkLibraryImport) createPrebuiltStubsSources(mctx android.DefaultableHookContext, apiScope *apiScope, scopeProperties *sdkLibraryScopeProperties) {
Paul Duffin3d1248c2020-04-09 00:10:17 +01002110 props := struct {
Paul Duffin38b57852020-05-13 16:08:09 +01002111 Name *string
2112 Srcs []string
2113 Prefer *bool
Paul Duffin3d1248c2020-04-09 00:10:17 +01002114 }{}
Paul Duffinc3091c82020-05-08 14:16:20 +01002115 props.Name = proptools.StringPtr(module.stubsSourceModuleName(apiScope))
Paul Duffin3d1248c2020-04-09 00:10:17 +01002116 props.Srcs = scopeProperties.Stub_srcs
2117 mctx.CreateModule(PrebuiltStubsSourcesFactory, &props)
Paul Duffin38b57852020-05-13 16:08:09 +01002118
2119 // The stubs source is preferred if the java_sdk_library_import is preferred.
2120 props.Prefer = proptools.BoolPtr(module.prebuilt.Prefer())
Paul Duffin3d1248c2020-04-09 00:10:17 +01002121}
2122
Paul Duffin44f1d842020-06-26 20:17:02 +01002123// Add the dependencies on the child module in the component deps mutator so that it
2124// creates references to the prebuilt and not the source modules.
2125func (module *SdkLibraryImport) ComponentDepsMutator(ctx android.BottomUpMutatorContext) {
Paul Duffin46a26a82020-04-07 19:27:04 +01002126 for apiScope, scopeProperties := range module.scopeProperties {
Paul Duffin56d44902020-01-31 13:36:25 +00002127 if len(scopeProperties.Jars) == 0 {
2128 continue
2129 }
2130
2131 // Add dependencies to the prebuilt stubs library
Paul Duffin864116c2021-04-02 10:24:13 +01002132 ctx.AddVariationDependencies(nil, apiScope.stubsTag, android.PrebuiltNameFromSource(module.stubsLibraryModuleName(apiScope)))
Paul Duffin0f8faff2020-05-20 16:18:00 +01002133
2134 if len(scopeProperties.Stub_srcs) > 0 {
2135 // Add dependencies to the prebuilt stubs source library
Paul Duffin864116c2021-04-02 10:24:13 +01002136 ctx.AddVariationDependencies(nil, apiScope.stubsSourceTag, android.PrebuiltNameFromSource(module.stubsSourceModuleName(apiScope)))
Paul Duffin0f8faff2020-05-20 16:18:00 +01002137 }
Paul Duffin56d44902020-01-31 13:36:25 +00002138 }
Paul Duffin44f1d842020-06-26 20:17:02 +01002139}
2140
2141// Add other dependencies as normal.
2142func (module *SdkLibraryImport) DepsMutator(ctx android.BottomUpMutatorContext) {
Paul Duffineedc5d52020-06-12 17:46:39 +01002143
2144 implName := module.implLibraryModuleName()
2145 if ctx.OtherModuleExists(implName) {
2146 ctx.AddVariationDependencies(nil, implLibraryTag, implName)
2147
2148 xmlPermissionsModuleName := module.xmlPermissionsModuleName()
2149 if module.sharedLibrary() && ctx.OtherModuleExists(xmlPermissionsModuleName) {
2150 // Add dependency to the rule for generating the xml permissions file
2151 ctx.AddDependency(module, xmlPermissionsFileTag, xmlPermissionsModuleName)
2152 }
2153 }
Colin Cross79c7c262019-04-17 11:11:46 -07002154}
2155
Jiakai Zhang204356f2021-09-09 08:12:46 +00002156func (module *SdkLibraryImport) AndroidMkEntries() []android.AndroidMkEntries {
2157 // For an SDK library imported from a prebuilt APEX, we don't need a Make module for itself, as we
2158 // don't need to install it. However, we need to add its dexpreopt outputs as sub-modules, if it
2159 // is preopted.
2160 dexpreoptEntries := module.dexpreopter.AndroidMkEntriesForApex()
2161 return append(dexpreoptEntries, android.AndroidMkEntries{Disabled: true})
2162}
2163
Jiyong Park45bf82e2020-12-15 22:29:02 +09002164var _ android.ApexModule = (*SdkLibraryImport)(nil)
2165
2166// Implements android.ApexModule
Paul Duffineedc5d52020-06-12 17:46:39 +01002167func (module *SdkLibraryImport) DepIsInSameApex(mctx android.BaseModuleContext, dep android.Module) bool {
2168 depTag := mctx.OtherModuleDependencyTag(dep)
2169 if depTag == xmlPermissionsFileTag {
2170 return true
2171 }
2172
2173 // None of the other dependencies of the java_sdk_library_import are in the same apex
2174 // as the one that references this module.
2175 return false
2176}
2177
Jiyong Park45bf82e2020-12-15 22:29:02 +09002178// Implements android.ApexModule
Dan Albertc8060532020-07-22 22:32:17 -07002179func (module *SdkLibraryImport) ShouldSupportSdkVersion(ctx android.BaseModuleContext,
2180 sdkVersion android.ApiLevel) error {
Jooyung Han749dc692020-04-15 11:03:39 +09002181 // we don't check prebuilt modules for sdk_version
2182 return nil
2183}
2184
Paul Duffinea8f8082021-06-24 13:25:57 +01002185// Implements android.ApexModule
2186func (module *SdkLibraryImport) UniqueApexVariations() bool {
2187 return module.uniqueApexVariations()
2188}
2189
Paul Duffineedc5d52020-06-12 17:46:39 +01002190func (module *SdkLibraryImport) OutputFiles(tag string) (android.Paths, error) {
Paul Duffin46dc45a2020-05-14 15:39:10 +01002191 return module.commonOutputFiles(tag)
2192}
2193
Paul Duffineedc5d52020-06-12 17:46:39 +01002194func (module *SdkLibraryImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Paul Duffina2ae7e02020-09-11 11:55:00 +01002195 module.generateCommonBuildActions(ctx)
2196
Jeongik Chad5fe8782021-07-08 01:13:11 +09002197 // Assume that source module(sdk_library) is installed in /<sdk_library partition>/framework
2198 module.installFile = android.PathForModuleInstall(ctx, "framework", module.Stem()+".jar")
2199
Paul Duffin0f8faff2020-05-20 16:18:00 +01002200 // Record the paths to the prebuilt stubs library and stubs source.
Colin Cross79c7c262019-04-17 11:11:46 -07002201 ctx.VisitDirectDeps(func(to android.Module) {
2202 tag := ctx.OtherModuleDependencyTag(to)
2203
Paul Duffin0f8faff2020-05-20 16:18:00 +01002204 // Extract information from any of the scope specific dependencies.
2205 if scopeTag, ok := tag.(scopeDependencyTag); ok {
2206 apiScope := scopeTag.apiScope
2207 scopePaths := module.getScopePathsCreateIfNeeded(apiScope)
2208
2209 // Extract information from the dependency. The exact information extracted
2210 // is determined by the nature of the dependency which is determined by the tag.
2211 scopeTag.extractDepInfo(ctx, to, scopePaths)
Paul Duffineedc5d52020-06-12 17:46:39 +01002212 } else if tag == implLibraryTag {
2213 if implLibrary, ok := to.(*Library); ok {
2214 module.implLibraryModule = implLibrary
2215 } else {
2216 ctx.ModuleErrorf("implementation library must be of type *java.Library but was %T", to)
2217 }
2218 } else if tag == xmlPermissionsFileTag {
2219 if xmlPermissionsFileModule, ok := to.(*sdkLibraryXml); ok {
2220 module.xmlPermissionsFileModule = xmlPermissionsFileModule
2221 } else {
2222 ctx.ModuleErrorf("xml permissions file module must be of type *sdkLibraryXml but was %T", to)
2223 }
Colin Cross79c7c262019-04-17 11:11:46 -07002224 }
2225 })
Paul Duffin0f8faff2020-05-20 16:18:00 +01002226
2227 // Populate the scope paths with information from the properties.
2228 for apiScope, scopeProperties := range module.scopeProperties {
2229 if len(scopeProperties.Jars) == 0 {
2230 continue
2231 }
2232
2233 paths := module.getScopePathsCreateIfNeeded(apiScope)
Anton Hanssond78eb762021-09-21 15:25:12 +01002234 paths.annotationsZip = android.OptionalPathForModuleSrc(ctx, scopeProperties.Annotations)
Paul Duffin0f8faff2020-05-20 16:18:00 +01002235 paths.currentApiFilePath = android.OptionalPathForModuleSrc(ctx, scopeProperties.Current_api)
2236 paths.removedApiFilePath = android.OptionalPathForModuleSrc(ctx, scopeProperties.Removed_api)
2237 }
Paul Duffin39853512021-02-26 11:09:39 +00002238
2239 if ctx.Device() {
2240 // If this is a variant created for a prebuilt_apex then use the dex implementation jar
2241 // obtained from the associated deapexer module.
2242 ai := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo)
2243 if ai.ForPrebuiltApex {
Paul Duffin39853512021-02-26 11:09:39 +00002244 // Get the path of the dex implementation jar from the `deapexer` module.
Martin Stjernholm44825602021-09-17 01:44:12 +01002245 di := android.FindDeapexerProviderForModule(ctx)
2246 if di == nil {
2247 return // An error has been reported by FindDeapexerProviderForModule.
2248 }
Paul Duffinb4bbf2c2021-06-17 15:59:07 +01002249 if dexOutputPath := di.PrebuiltExportPath(apexRootRelativePathToJavaLib(module.BaseModuleName())); dexOutputPath != nil {
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +01002250 dexJarFile := makeDexJarPathFromPath(dexOutputPath)
2251 module.dexJarFile = dexJarFile
Jiakai Zhang204356f2021-09-09 08:12:46 +00002252 installPath := android.PathForModuleInPartitionInstall(
2253 ctx, "apex", ai.ApexVariationName, apexRootRelativePathToJavaLib(module.BaseModuleName()))
2254 module.installFile = installPath
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +01002255 module.initHiddenAPI(ctx, dexJarFile, module.findScopePaths(apiScopePublic).stubsImplPath[0], nil)
Jiakai Zhang204356f2021-09-09 08:12:46 +00002256
2257 // Dexpreopting.
2258 module.dexpreopter.installPath = module.dexpreopter.getInstallPath(ctx, installPath)
2259 module.dexpreopter.isSDKLibrary = true
2260 module.dexpreopter.uncompressedDex = shouldUncompressDex(ctx, &module.dexpreopter)
2261 module.dexpreopt(ctx, dexOutputPath)
Paul Duffin39853512021-02-26 11:09:39 +00002262 } else {
2263 // This should never happen as a variant for a prebuilt_apex is only created if the
2264 // prebuilt_apex has been configured to export the java library dex file.
Martin Stjernholm44825602021-09-17 01:44:12 +01002265 ctx.ModuleErrorf("internal error: no dex implementation jar available from prebuilt APEX %s", di.ApexModuleName())
Paul Duffin39853512021-02-26 11:09:39 +00002266 }
2267 }
2268 }
Colin Cross79c7c262019-04-17 11:11:46 -07002269}
2270
Jiyong Parkf1691d22021-03-29 20:11:58 +09002271func (module *SdkLibraryImport) sdkJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec, headerJars bool) android.Paths {
Paul Duffineedc5d52020-06-12 17:46:39 +01002272
2273 // For consistency with SdkLibrary make the implementation jar available to libraries that
2274 // are within the same APEX.
2275 implLibraryModule := module.implLibraryModule
Colin Cross56a83212020-09-15 18:30:11 -07002276 if implLibraryModule != nil && withinSameApexesAs(ctx, module) {
Paul Duffineedc5d52020-06-12 17:46:39 +01002277 if headerJars {
2278 return implLibraryModule.HeaderJars()
2279 } else {
2280 return implLibraryModule.ImplementationJars()
2281 }
2282 }
2283
Paul Duffin23970f42020-05-20 14:20:02 +01002284 return module.selectHeaderJarsForSdkVersion(ctx, sdkVersion)
Paul Duffin56d44902020-01-31 13:36:25 +00002285}
2286
Colin Cross79c7c262019-04-17 11:11:46 -07002287// to satisfy SdkLibraryDependency interface
Jiyong Parkf1691d22021-03-29 20:11:58 +09002288func (module *SdkLibraryImport) SdkHeaderJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths {
Colin Cross79c7c262019-04-17 11:11:46 -07002289 // This module is just a wrapper for the prebuilt stubs.
Paul Duffineedc5d52020-06-12 17:46:39 +01002290 return module.sdkJars(ctx, sdkVersion, true)
Colin Cross79c7c262019-04-17 11:11:46 -07002291}
2292
2293// to satisfy SdkLibraryDependency interface
Jiyong Parkf1691d22021-03-29 20:11:58 +09002294func (module *SdkLibraryImport) SdkImplementationJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths {
Colin Cross79c7c262019-04-17 11:11:46 -07002295 // This module is just a wrapper for the stubs.
Paul Duffineedc5d52020-06-12 17:46:39 +01002296 return module.sdkJars(ctx, sdkVersion, false)
2297}
2298
Ulya Trafimovichdbf31662020-12-17 12:07:54 +00002299// to satisfy UsesLibraryDependency interface
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +01002300func (module *SdkLibraryImport) DexJarBuildPath() OptionalDexJarPath {
Paul Duffin39853512021-02-26 11:09:39 +00002301 // The dex implementation jar extracted from the .apex file should be used in preference to the
2302 // source.
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +01002303 if module.dexJarFile.IsSet() {
Paul Duffin39853512021-02-26 11:09:39 +00002304 return module.dexJarFile
2305 }
Paul Duffineedc5d52020-06-12 17:46:39 +01002306 if module.implLibraryModule == nil {
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +01002307 return makeUnsetDexJarPath()
Paul Duffineedc5d52020-06-12 17:46:39 +01002308 } else {
2309 return module.implLibraryModule.DexJarBuildPath()
2310 }
2311}
2312
Ulya Trafimovichdbf31662020-12-17 12:07:54 +00002313// to satisfy UsesLibraryDependency interface
Ulya Trafimovich31e444e2020-08-14 17:32:16 +01002314func (module *SdkLibraryImport) DexJarInstallPath() android.Path {
Jeongik Chad5fe8782021-07-08 01:13:11 +09002315 return module.installFile
Ulya Trafimovich31e444e2020-08-14 17:32:16 +01002316}
2317
Ulya Trafimovichdbf31662020-12-17 12:07:54 +00002318// to satisfy UsesLibraryDependency interface
2319func (module *SdkLibraryImport) ClassLoaderContexts() dexpreopt.ClassLoaderContextMap {
2320 return nil
2321}
2322
Paul Duffineedc5d52020-06-12 17:46:39 +01002323// to satisfy apex.javaDependency interface
2324func (module *SdkLibraryImport) JacocoReportClassesFile() android.Path {
2325 if module.implLibraryModule == nil {
2326 return nil
2327 } else {
2328 return module.implLibraryModule.JacocoReportClassesFile()
2329 }
2330}
2331
2332// to satisfy apex.javaDependency interface
Colin Cross08dca382020-07-21 20:31:17 -07002333func (module *SdkLibraryImport) LintDepSets() LintDepSets {
2334 if module.implLibraryModule == nil {
2335 return LintDepSets{}
2336 } else {
2337 return module.implLibraryModule.LintDepSets()
2338 }
2339}
2340
Jaewoong Jung476b9d62021-05-10 15:30:00 -07002341func (module *SdkLibraryImport) getStrictUpdatabilityLinting() bool {
2342 if module.implLibraryModule == nil {
2343 return false
2344 } else {
2345 return module.implLibraryModule.getStrictUpdatabilityLinting()
2346 }
2347}
2348
2349func (module *SdkLibraryImport) setStrictUpdatabilityLinting(strictLinting bool) {
2350 if module.implLibraryModule != nil {
2351 module.implLibraryModule.setStrictUpdatabilityLinting(strictLinting)
2352 }
2353}
2354
Colin Cross08dca382020-07-21 20:31:17 -07002355// to satisfy apex.javaDependency interface
Paul Duffineedc5d52020-06-12 17:46:39 +01002356func (module *SdkLibraryImport) Stem() string {
2357 return module.BaseModuleName()
Colin Cross79c7c262019-04-17 11:11:46 -07002358}
Jiyong Parke3833882020-02-17 17:28:10 +09002359
Paul Duffin44b481b2020-06-17 16:59:43 +01002360var _ ApexDependency = (*SdkLibraryImport)(nil)
2361
2362// to satisfy java.ApexDependency interface
2363func (module *SdkLibraryImport) HeaderJars() android.Paths {
2364 if module.implLibraryModule == nil {
2365 return nil
2366 } else {
2367 return module.implLibraryModule.HeaderJars()
2368 }
2369}
2370
2371// to satisfy java.ApexDependency interface
2372func (module *SdkLibraryImport) ImplementationAndResourcesJars() android.Paths {
2373 if module.implLibraryModule == nil {
2374 return nil
2375 } else {
2376 return module.implLibraryModule.ImplementationAndResourcesJars()
2377 }
2378}
2379
Jiakai Zhang204356f2021-09-09 08:12:46 +00002380// to satisfy java.DexpreopterInterface interface
2381func (module *SdkLibraryImport) IsInstallable() bool {
2382 return true
2383}
2384
Paul Duffinfef55002021-06-17 14:56:05 +01002385var _ android.RequiredFilesFromPrebuiltApex = (*SdkLibraryImport)(nil)
2386
Paul Duffinb4bbf2c2021-06-17 15:59:07 +01002387func (module *SdkLibraryImport) RequiredFilesFromPrebuiltApex(ctx android.BaseModuleContext) []string {
Paul Duffinfef55002021-06-17 14:56:05 +01002388 name := module.BaseModuleName()
2389 return requiredFilesFromPrebuiltApexForImport(name)
2390}
2391
Jiyong Parke3833882020-02-17 17:28:10 +09002392//
2393// java_sdk_library_xml
2394//
2395type sdkLibraryXml struct {
2396 android.ModuleBase
2397 android.DefaultableModuleBase
2398 android.ApexModuleBase
2399
2400 properties sdkLibraryXmlProperties
2401
2402 outputFilePath android.OutputPath
2403 installDirPath android.InstallPath
Colin Cross56a83212020-09-15 18:30:11 -07002404
2405 hideApexVariantFromMake bool
Jiyong Parke3833882020-02-17 17:28:10 +09002406}
2407
2408type sdkLibraryXmlProperties struct {
2409 // canonical name of the lib
2410 Lib_name *string
Pedro Loureiro9956e5e2021-09-07 17:21:59 +00002411
2412 // Signals that this shared library is part of the bootclasspath starting
2413 // on the version indicated in this attribute.
2414 //
2415 // This will make platforms at this level and above to ignore
2416 // <uses-library> tags with this library name because the library is already
2417 // available
2418 On_bootclasspath_since *string
2419
2420 // Signals that this shared library was part of the bootclasspath before
2421 // (but not including) the version indicated in this attribute.
2422 //
2423 // The system will automatically add a <uses-library> tag with this library to
2424 // apps that target any SDK less than the version indicated in this attribute.
2425 On_bootclasspath_before *string
2426
2427 // Indicates that PackageManager should ignore this shared library if the
2428 // platform is below the version indicated in this attribute.
2429 //
2430 // This means that the device won't recognise this library as installed.
2431 Min_device_sdk *string
2432
2433 // Indicates that PackageManager should ignore this shared library if the
2434 // platform is above the version indicated in this attribute.
2435 //
2436 // This means that the device won't recognise this library as installed.
2437 Max_device_sdk *string
Pedro Loureiroc3621422021-09-28 15:40:23 +00002438
2439 // The SdkLibrary's min api level as a string
2440 //
2441 // This value comes from the ApiLevel of the MinSdkVersion property.
2442 Sdk_library_min_api_level *string
Jiyong Parke3833882020-02-17 17:28:10 +09002443}
2444
2445// java_sdk_library_xml builds the permission xml file for a java_sdk_library.
2446// Not to be used directly by users. java_sdk_library internally uses this.
2447func sdkLibraryXmlFactory() android.Module {
2448 module := &sdkLibraryXml{}
2449
2450 module.AddProperties(&module.properties)
2451
2452 android.InitApexModule(module)
2453 android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon)
2454
2455 return module
2456}
2457
Colin Crossaede88c2020-08-11 12:17:01 -07002458func (module *sdkLibraryXml) UniqueApexVariations() bool {
2459 // sdkLibraryXml needs a unique variation per APEX because the generated XML file contains the path to the
2460 // mounted APEX, which contains the name of the APEX.
2461 return true
2462}
2463
Jiyong Parke3833882020-02-17 17:28:10 +09002464// from android.PrebuiltEtcModule
Jooyung Han0703fd82020-08-26 22:11:53 +09002465func (module *sdkLibraryXml) BaseDir() string {
2466 return "etc"
2467}
2468
2469// from android.PrebuiltEtcModule
Jiyong Parke3833882020-02-17 17:28:10 +09002470func (module *sdkLibraryXml) SubDir() string {
2471 return "permissions"
2472}
2473
2474// from android.PrebuiltEtcModule
2475func (module *sdkLibraryXml) OutputFile() android.OutputPath {
2476 return module.outputFilePath
2477}
2478
2479// from android.ApexModule
2480func (module *sdkLibraryXml) AvailableFor(what string) bool {
2481 return true
2482}
2483
2484func (module *sdkLibraryXml) DepsMutator(ctx android.BottomUpMutatorContext) {
2485 // do nothing
2486}
2487
Jiyong Park45bf82e2020-12-15 22:29:02 +09002488var _ android.ApexModule = (*sdkLibraryXml)(nil)
2489
2490// Implements android.ApexModule
Dan Albertc8060532020-07-22 22:32:17 -07002491func (module *sdkLibraryXml) ShouldSupportSdkVersion(ctx android.BaseModuleContext,
2492 sdkVersion android.ApiLevel) error {
Jooyung Han749dc692020-04-15 11:03:39 +09002493 // sdkLibraryXml doesn't need to be checked separately because java_sdk_library is checked
2494 return nil
2495}
2496
Jiyong Parke3833882020-02-17 17:28:10 +09002497// File path to the runtime implementation library
Colin Cross56a83212020-09-15 18:30:11 -07002498func (module *sdkLibraryXml) implPath(ctx android.ModuleContext) string {
Jiyong Parke3833882020-02-17 17:28:10 +09002499 implName := proptools.String(module.properties.Lib_name)
Colin Cross56a83212020-09-15 18:30:11 -07002500 if apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo); !apexInfo.IsForPlatform() {
Colin Crosse07f2312020-08-13 11:24:56 -07002501 // TODO(b/146468504): ApexVariationName() is only a soong module name, not apex name.
Jiyong Parke3833882020-02-17 17:28:10 +09002502 // In most cases, this works fine. But when apex_name is set or override_apex is used
2503 // this can be wrong.
Colin Cross56a83212020-09-15 18:30:11 -07002504 return fmt.Sprintf("/apex/%s/javalib/%s.jar", apexInfo.ApexVariationName, implName)
Jiyong Parke3833882020-02-17 17:28:10 +09002505 }
2506 partition := "system"
2507 if module.SocSpecific() {
2508 partition = "vendor"
2509 } else if module.DeviceSpecific() {
2510 partition = "odm"
2511 } else if module.ProductSpecific() {
2512 partition = "product"
2513 } else if module.SystemExtSpecific() {
2514 partition = "system_ext"
2515 }
2516 return "/" + partition + "/framework/" + implName + ".jar"
2517}
2518
Pedro Loureiro9956e5e2021-09-07 17:21:59 +00002519func formattedOptionalSdkLevelAttribute(ctx android.ModuleContext, attrName string, value *string) string {
2520 if value == nil {
2521 return ""
2522 }
2523 apiLevel, err := android.ApiLevelFromUser(ctx, *value)
2524 if err != nil {
Pedro Loureiroba6682f2021-10-29 09:32:32 +00002525 // attributes in bp files have underscores but in the xml have dashes.
2526 ctx.PropertyErrorf(strings.ReplaceAll(attrName, "-", "_"), err.Error())
Pedro Loureiro9956e5e2021-09-07 17:21:59 +00002527 return ""
2528 }
2529 intStr := strconv.Itoa(apiLevel.FinalOrPreviewInt())
2530 return formattedOptionalAttribute(attrName, &intStr)
2531}
2532
2533// formats an attribute for the xml permissions file if the value is not null
2534// returns empty string otherwise
2535func formattedOptionalAttribute(attrName string, value *string) string {
2536 if value == nil {
2537 return ""
2538 }
2539 return fmt.Sprintf(` %s=\"%s\"\n`, attrName, *value)
2540}
2541
2542func (module *sdkLibraryXml) permissionsContents(ctx android.ModuleContext) string {
2543 libName := proptools.String(module.properties.Lib_name)
2544 libNameAttr := formattedOptionalAttribute("name", &libName)
2545 filePath := module.implPath(ctx)
2546 filePathAttr := formattedOptionalAttribute("file", &filePath)
Pedro Loureiroba6682f2021-10-29 09:32:32 +00002547 implicitFromAttr := formattedOptionalSdkLevelAttribute(ctx, "on-bootclasspath-since", module.properties.On_bootclasspath_since)
2548 implicitUntilAttr := formattedOptionalSdkLevelAttribute(ctx, "on-bootclasspath-before", module.properties.On_bootclasspath_before)
2549 minSdkAttr := formattedOptionalSdkLevelAttribute(ctx, "min-device-sdk", module.properties.Min_device_sdk)
2550 maxSdkAttr := formattedOptionalSdkLevelAttribute(ctx, "max-device-sdk", module.properties.Max_device_sdk)
Pedro Loureiroc3621422021-09-28 15:40:23 +00002551 // <library> is understood in all android versions whereas <updatable-library> is only understood from API T (and ignored before that).
2552 // similarly, min_device_sdk is only understood from T. So if a library is using that, we need to use the updatable-library to make sure this library is not loaded before T
2553 var libraryTag string
2554 if module.properties.Min_device_sdk != nil {
2555 libraryTag = ` <updatable-library\n`
2556 } else {
2557 libraryTag = ` <library\n`
2558 }
Pedro Loureiro9956e5e2021-09-07 17:21:59 +00002559
2560 return strings.Join([]string{
2561 `<?xml version=\"1.0\" encoding=\"utf-8\"?>\n`,
2562 `<!-- Copyright (C) 2018 The Android Open Source Project\n`,
2563 `\n`,
2564 ` Licensed under the Apache License, Version 2.0 (the \"License\");\n`,
2565 ` you may not use this file except in compliance with the License.\n`,
2566 ` You may obtain a copy of the License at\n`,
2567 `\n`,
2568 ` http://www.apache.org/licenses/LICENSE-2.0\n`,
2569 `\n`,
2570 ` Unless required by applicable law or agreed to in writing, software\n`,
2571 ` distributed under the License is distributed on an \"AS IS\" BASIS,\n`,
2572 ` WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n`,
2573 ` See the License for the specific language governing permissions and\n`,
2574 ` limitations under the License.\n`,
2575 `-->\n`,
2576 `<permissions>\n`,
Pedro Loureiroc3621422021-09-28 15:40:23 +00002577 libraryTag,
Pedro Loureiro9956e5e2021-09-07 17:21:59 +00002578 libNameAttr,
2579 filePathAttr,
2580 implicitFromAttr,
2581 implicitUntilAttr,
2582 minSdkAttr,
2583 maxSdkAttr,
2584 ` />\n`,
2585 `</permissions>\n`}, "")
2586}
2587
Jiyong Parke3833882020-02-17 17:28:10 +09002588func (module *sdkLibraryXml) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross56a83212020-09-15 18:30:11 -07002589 module.hideApexVariantFromMake = !ctx.Provider(android.ApexInfoProvider).(android.ApexInfo).IsForPlatform()
2590
Jiyong Parke3833882020-02-17 17:28:10 +09002591 libName := proptools.String(module.properties.Lib_name)
Pedro Loureiroc3621422021-09-28 15:40:23 +00002592 module.selfValidate(ctx)
Pedro Loureiro9956e5e2021-09-07 17:21:59 +00002593 xmlContent := module.permissionsContents(ctx)
Jiyong Parke3833882020-02-17 17:28:10 +09002594
2595 module.outputFilePath = android.PathForModuleOut(ctx, libName+".xml").OutputPath
Colin Crossf1a035e2020-11-16 17:32:30 -08002596 rule := android.NewRuleBuilder(pctx, ctx)
Jiyong Parke3833882020-02-17 17:28:10 +09002597 rule.Command().
2598 Text("/bin/bash -c \"echo -e '" + xmlContent + "'\" > ").
2599 Output(module.outputFilePath)
2600
Colin Crossf1a035e2020-11-16 17:32:30 -08002601 rule.Build("java_sdk_xml", "Permission XML")
Jiyong Parke3833882020-02-17 17:28:10 +09002602
2603 module.installDirPath = android.PathForModuleInstall(ctx, "etc", module.SubDir())
2604}
2605
2606func (module *sdkLibraryXml) AndroidMkEntries() []android.AndroidMkEntries {
Colin Cross56a83212020-09-15 18:30:11 -07002607 if module.hideApexVariantFromMake {
Jiyong Parke3833882020-02-17 17:28:10 +09002608 return []android.AndroidMkEntries{android.AndroidMkEntries{
2609 Disabled: true,
2610 }}
2611 }
2612
2613 return []android.AndroidMkEntries{android.AndroidMkEntries{
2614 Class: "ETC",
2615 OutputFile: android.OptionalPathForPath(module.outputFilePath),
2616 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -07002617 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Jiyong Parke3833882020-02-17 17:28:10 +09002618 entries.SetString("LOCAL_MODULE_TAGS", "optional")
2619 entries.SetString("LOCAL_MODULE_PATH", module.installDirPath.ToMakePath().String())
2620 entries.SetString("LOCAL_INSTALLED_MODULE_STEM", module.outputFilePath.Base())
2621 },
2622 },
2623 }}
2624}
Paul Duffindd46f712020-02-10 13:37:10 +00002625
Pedro Loureiroc3621422021-09-28 15:40:23 +00002626func (module *sdkLibraryXml) selfValidate(ctx android.ModuleContext) {
2627 module.validateAtLeastTAttributes(ctx)
2628 module.validateMinAndMaxDeviceSdk(ctx)
2629 module.validateMinMaxDeviceSdkAndModuleMinSdk(ctx)
2630 module.validateOnBootclasspathBeforeRequirements(ctx)
2631}
2632
2633func (module *sdkLibraryXml) validateAtLeastTAttributes(ctx android.ModuleContext) {
2634 t := android.ApiLevelOrPanic(ctx, "Tiramisu")
2635 module.attrAtLeastT(ctx, t, module.properties.Min_device_sdk, "min_device_sdk")
2636 module.attrAtLeastT(ctx, t, module.properties.Max_device_sdk, "max_device_sdk")
2637 module.attrAtLeastT(ctx, t, module.properties.On_bootclasspath_before, "on_bootclasspath_before")
2638 module.attrAtLeastT(ctx, t, module.properties.On_bootclasspath_since, "on_bootclasspath_since")
2639}
2640
2641func (module *sdkLibraryXml) attrAtLeastT(ctx android.ModuleContext, t android.ApiLevel, attr *string, attrName string) {
2642 if attr != nil {
2643 if level, err := android.ApiLevelFromUser(ctx, *attr); err == nil {
2644 // we will inform the user of invalid inputs when we try to write the
2645 // permissions xml file so we don't need to do it here
2646 if t.GreaterThan(level) {
2647 ctx.PropertyErrorf(attrName, "Attribute value needs to be at least T")
2648 }
2649 }
2650 }
2651}
2652
2653func (module *sdkLibraryXml) validateMinAndMaxDeviceSdk(ctx android.ModuleContext) {
2654 if module.properties.Min_device_sdk != nil && module.properties.Max_device_sdk != nil {
2655 min, minErr := android.ApiLevelFromUser(ctx, *module.properties.Min_device_sdk)
2656 max, maxErr := android.ApiLevelFromUser(ctx, *module.properties.Max_device_sdk)
2657 if minErr == nil && maxErr == nil {
2658 // we will inform the user of invalid inputs when we try to write the
2659 // permissions xml file so we don't need to do it here
2660 if min.GreaterThan(max) {
2661 ctx.ModuleErrorf("min_device_sdk can't be greater than max_device_sdk")
2662 }
2663 }
2664 }
2665}
2666
2667func (module *sdkLibraryXml) validateMinMaxDeviceSdkAndModuleMinSdk(ctx android.ModuleContext) {
2668 moduleMinApi := android.ApiLevelOrPanic(ctx, *module.properties.Sdk_library_min_api_level)
2669 if module.properties.Min_device_sdk != nil {
2670 api, err := android.ApiLevelFromUser(ctx, *module.properties.Min_device_sdk)
2671 if err == nil {
2672 if moduleMinApi.GreaterThan(api) {
2673 ctx.PropertyErrorf("min_device_sdk", "Can't be less than module's min sdk (%s)", moduleMinApi)
2674 }
2675 }
2676 }
2677 if module.properties.Max_device_sdk != nil {
2678 api, err := android.ApiLevelFromUser(ctx, *module.properties.Max_device_sdk)
2679 if err == nil {
2680 if moduleMinApi.GreaterThan(api) {
2681 ctx.PropertyErrorf("max_device_sdk", "Can't be less than module's min sdk (%s)", moduleMinApi)
2682 }
2683 }
2684 }
2685}
2686
2687func (module *sdkLibraryXml) validateOnBootclasspathBeforeRequirements(ctx android.ModuleContext) {
2688 moduleMinApi := android.ApiLevelOrPanic(ctx, *module.properties.Sdk_library_min_api_level)
2689 if module.properties.On_bootclasspath_before != nil {
2690 t := android.ApiLevelOrPanic(ctx, "Tiramisu")
2691 // if we use the attribute, then we need to do this validation
2692 if moduleMinApi.LessThan(t) {
2693 // if minAPi is < T, then we need to have min_device_sdk (which only accepts T+)
2694 if module.properties.Min_device_sdk == nil {
2695 ctx.PropertyErrorf("on_bootclasspath_before", "Using this property requires that the module's min_sdk_version or the shared library's min_device_sdk is at least T")
2696 }
2697 }
2698 }
2699}
2700
Paul Duffindd46f712020-02-10 13:37:10 +00002701type sdkLibrarySdkMemberType struct {
2702 android.SdkMemberTypeBase
2703}
2704
Paul Duffin296701e2021-07-14 10:29:36 +01002705func (s *sdkLibrarySdkMemberType) AddDependencies(ctx android.SdkDependencyContext, dependencyTag blueprint.DependencyTag, names []string) {
2706 ctx.AddVariationDependencies(nil, dependencyTag, names...)
Paul Duffindd46f712020-02-10 13:37:10 +00002707}
2708
2709func (s *sdkLibrarySdkMemberType) IsInstance(module android.Module) bool {
2710 _, ok := module.(*SdkLibrary)
2711 return ok
2712}
2713
2714func (s *sdkLibrarySdkMemberType) AddPrebuiltModule(ctx android.SdkMemberContext, member android.SdkMember) android.BpModule {
2715 return ctx.SnapshotBuilder().AddPrebuiltModule(member, "java_sdk_library_import")
2716}
2717
2718func (s *sdkLibrarySdkMemberType) CreateVariantPropertiesStruct() android.SdkMemberProperties {
2719 return &sdkLibrarySdkMemberProperties{}
2720}
2721
Paul Duffin976b0e52021-04-27 23:20:26 +01002722var javaSdkLibrarySdkMemberType = &sdkLibrarySdkMemberType{
2723 android.SdkMemberTypeBase{
2724 PropertyName: "java_sdk_libs",
2725 SupportsSdk: true,
2726 },
2727}
2728
Paul Duffindd46f712020-02-10 13:37:10 +00002729type sdkLibrarySdkMemberProperties struct {
2730 android.SdkMemberPropertiesBase
2731
2732 // Scope to per scope properties.
2733 Scopes map[*apiScope]scopeProperties
2734
Paul Duffin3d1248c2020-04-09 00:10:17 +01002735 // The Java stubs source files.
2736 Stub_srcs []string
Paul Duffinf7a64332020-05-13 16:54:55 +01002737
2738 // The naming scheme.
2739 Naming_scheme *string
Paul Duffind7eb1c22020-05-26 20:57:10 +01002740
2741 // True if the java_sdk_library_import is for a shared library, false
2742 // otherwise.
2743 Shared_library *bool
Paul Duffina2ae7e02020-09-11 11:55:00 +01002744
Paul Duffin1267d872021-04-16 17:21:36 +01002745 // True if the stub imports should produce dex jars.
2746 Compile_dex *bool
2747
Paul Duffina2ae7e02020-09-11 11:55:00 +01002748 // The paths to the doctag files to add to the prebuilt.
2749 Doctag_paths android.Paths
Paul Duffin869de142021-07-15 14:14:41 +01002750
2751 Permitted_packages []string
Pedro Loureiro9956e5e2021-09-07 17:21:59 +00002752
2753 // Signals that this shared library is part of the bootclasspath starting
2754 // on the version indicated in this attribute.
2755 //
2756 // This will make platforms at this level and above to ignore
2757 // <uses-library> tags with this library name because the library is already
2758 // available
2759 On_bootclasspath_since *string
2760
2761 // Signals that this shared library was part of the bootclasspath before
2762 // (but not including) the version indicated in this attribute.
2763 //
2764 // The system will automatically add a <uses-library> tag with this library to
2765 // apps that target any SDK less than the version indicated in this attribute.
2766 On_bootclasspath_before *string
2767
2768 // Indicates that PackageManager should ignore this shared library if the
2769 // platform is below the version indicated in this attribute.
2770 //
2771 // This means that the device won't recognise this library as installed.
2772 Min_device_sdk *string
2773
2774 // Indicates that PackageManager should ignore this shared library if the
2775 // platform is above the version indicated in this attribute.
2776 //
2777 // This means that the device won't recognise this library as installed.
2778 Max_device_sdk *string
Paul Duffindd46f712020-02-10 13:37:10 +00002779}
2780
2781type scopeProperties struct {
Paul Duffin1fd005d2020-04-09 01:08:11 +01002782 Jars android.Paths
2783 StubsSrcJar android.Path
2784 CurrentApiFile android.Path
2785 RemovedApiFile android.Path
Anton Hanssond78eb762021-09-21 15:25:12 +01002786 AnnotationsZip android.Path
Paul Duffin1fd005d2020-04-09 01:08:11 +01002787 SdkVersion string
Paul Duffindd46f712020-02-10 13:37:10 +00002788}
2789
2790func (s *sdkLibrarySdkMemberProperties) PopulateFromVariant(ctx android.SdkMemberContext, variant android.Module) {
2791 sdk := variant.(*SdkLibrary)
2792
2793 s.Scopes = make(map[*apiScope]scopeProperties)
2794 for _, apiScope := range allApiScopes {
Paul Duffin803a9562020-05-20 11:52:25 +01002795 paths := sdk.findScopePaths(apiScope)
2796 if paths == nil {
2797 continue
2798 }
2799
Paul Duffindd46f712020-02-10 13:37:10 +00002800 jars := paths.stubsImplPath
2801 if len(jars) > 0 {
2802 properties := scopeProperties{}
2803 properties.Jars = jars
Paul Duffin780c5f42020-05-12 15:52:55 +01002804 properties.SdkVersion = sdk.sdkVersionForStubsLibrary(ctx.SdkModuleContext(), apiScope)
Paul Duffin0f8faff2020-05-20 16:18:00 +01002805 properties.StubsSrcJar = paths.stubsSrcJar.Path()
Paul Duffin10269f12020-06-19 18:39:55 +01002806 if paths.currentApiFilePath.Valid() {
2807 properties.CurrentApiFile = paths.currentApiFilePath.Path()
2808 }
2809 if paths.removedApiFilePath.Valid() {
2810 properties.RemovedApiFile = paths.removedApiFilePath.Path()
2811 }
Anton Hanssond78eb762021-09-21 15:25:12 +01002812 // The annotations zip is only available for modules that set annotations_enabled: true.
2813 if paths.annotationsZip.Valid() {
2814 properties.AnnotationsZip = paths.annotationsZip.Path()
2815 }
Paul Duffindd46f712020-02-10 13:37:10 +00002816 s.Scopes[apiScope] = properties
2817 }
2818 }
2819
Paul Duffindfa131e2020-05-15 20:37:11 +01002820 s.Naming_scheme = sdk.commonSdkLibraryProperties.Naming_scheme
Paul Duffind7eb1c22020-05-26 20:57:10 +01002821 s.Shared_library = proptools.BoolPtr(sdk.sharedLibrary())
Paul Duffin1267d872021-04-16 17:21:36 +01002822 s.Compile_dex = sdk.dexProperties.Compile_dex
Paul Duffina2ae7e02020-09-11 11:55:00 +01002823 s.Doctag_paths = sdk.doctagPaths
Paul Duffin869de142021-07-15 14:14:41 +01002824 s.Permitted_packages = sdk.PermittedPackagesForUpdatableBootJars()
Pedro Loureiro9956e5e2021-09-07 17:21:59 +00002825 s.On_bootclasspath_since = sdk.commonSdkLibraryProperties.On_bootclasspath_since
2826 s.On_bootclasspath_before = sdk.commonSdkLibraryProperties.On_bootclasspath_before
2827 s.Min_device_sdk = sdk.commonSdkLibraryProperties.Min_device_sdk
2828 s.Max_device_sdk = sdk.commonSdkLibraryProperties.Max_device_sdk
Paul Duffindd46f712020-02-10 13:37:10 +00002829}
2830
2831func (s *sdkLibrarySdkMemberProperties) AddToPropertySet(ctx android.SdkMemberContext, propertySet android.BpPropertySet) {
Paul Duffinf7a64332020-05-13 16:54:55 +01002832 if s.Naming_scheme != nil {
2833 propertySet.AddProperty("naming_scheme", proptools.String(s.Naming_scheme))
2834 }
Paul Duffind7eb1c22020-05-26 20:57:10 +01002835 if s.Shared_library != nil {
2836 propertySet.AddProperty("shared_library", *s.Shared_library)
2837 }
Paul Duffin1267d872021-04-16 17:21:36 +01002838 if s.Compile_dex != nil {
2839 propertySet.AddProperty("compile_dex", *s.Compile_dex)
2840 }
Paul Duffin869de142021-07-15 14:14:41 +01002841 if len(s.Permitted_packages) > 0 {
2842 propertySet.AddProperty("permitted_packages", s.Permitted_packages)
2843 }
Paul Duffinf7a64332020-05-13 16:54:55 +01002844
Paul Duffindd46f712020-02-10 13:37:10 +00002845 for _, apiScope := range allApiScopes {
2846 if properties, ok := s.Scopes[apiScope]; ok {
Paul Duffin6b836ba2020-05-13 19:19:49 +01002847 scopeSet := propertySet.AddPropertySet(apiScope.propertyName)
Paul Duffindd46f712020-02-10 13:37:10 +00002848
Paul Duffin3d1248c2020-04-09 00:10:17 +01002849 scopeDir := filepath.Join("sdk_library", s.OsPrefix(), apiScope.name)
2850
Paul Duffindd46f712020-02-10 13:37:10 +00002851 var jars []string
2852 for _, p := range properties.Jars {
Paul Duffin3d1248c2020-04-09 00:10:17 +01002853 dest := filepath.Join(scopeDir, ctx.Name()+"-stubs.jar")
Paul Duffindd46f712020-02-10 13:37:10 +00002854 ctx.SnapshotBuilder().CopyToSnapshot(p, dest)
2855 jars = append(jars, dest)
2856 }
2857 scopeSet.AddProperty("jars", jars)
2858
Paul Duffin22628d52021-05-12 23:13:22 +01002859 if ctx.SdkModuleContext().Config().IsEnvTrue("SOONG_SDK_SNAPSHOT_USE_SRCJAR") {
2860 // Copy the stubs source jar into the snapshot zip as is.
2861 srcJarSnapshotPath := filepath.Join(scopeDir, ctx.Name()+".srcjar")
2862 ctx.SnapshotBuilder().CopyToSnapshot(properties.StubsSrcJar, srcJarSnapshotPath)
2863 scopeSet.AddProperty("stub_srcs", []string{srcJarSnapshotPath})
2864 } else {
2865 // Merge the stubs source jar into the snapshot zip so that when it is unpacked
2866 // the source files are also unpacked.
2867 snapshotRelativeDir := filepath.Join(scopeDir, ctx.Name()+"_stub_sources")
2868 ctx.SnapshotBuilder().UnzipToSnapshot(properties.StubsSrcJar, snapshotRelativeDir)
2869 scopeSet.AddProperty("stub_srcs", []string{snapshotRelativeDir})
2870 }
Paul Duffin3d1248c2020-04-09 00:10:17 +01002871
Paul Duffin1fd005d2020-04-09 01:08:11 +01002872 if properties.CurrentApiFile != nil {
2873 currentApiSnapshotPath := filepath.Join(scopeDir, ctx.Name()+".txt")
2874 ctx.SnapshotBuilder().CopyToSnapshot(properties.CurrentApiFile, currentApiSnapshotPath)
2875 scopeSet.AddProperty("current_api", currentApiSnapshotPath)
2876 }
2877
2878 if properties.RemovedApiFile != nil {
2879 removedApiSnapshotPath := filepath.Join(scopeDir, ctx.Name()+"-removed.txt")
Paul Duffin3dbf9fd2020-06-02 13:00:02 +01002880 ctx.SnapshotBuilder().CopyToSnapshot(properties.RemovedApiFile, removedApiSnapshotPath)
Paul Duffin1fd005d2020-04-09 01:08:11 +01002881 scopeSet.AddProperty("removed_api", removedApiSnapshotPath)
2882 }
2883
Anton Hanssond78eb762021-09-21 15:25:12 +01002884 if properties.AnnotationsZip != nil {
2885 annotationsSnapshotPath := filepath.Join(scopeDir, ctx.Name()+"_annotations.zip")
2886 ctx.SnapshotBuilder().CopyToSnapshot(properties.AnnotationsZip, annotationsSnapshotPath)
2887 scopeSet.AddProperty("annotations", annotationsSnapshotPath)
2888 }
2889
Paul Duffindd46f712020-02-10 13:37:10 +00002890 if properties.SdkVersion != "" {
2891 scopeSet.AddProperty("sdk_version", properties.SdkVersion)
2892 }
2893 }
2894 }
2895
Paul Duffina2ae7e02020-09-11 11:55:00 +01002896 if len(s.Doctag_paths) > 0 {
2897 dests := []string{}
2898 for _, p := range s.Doctag_paths {
2899 dest := filepath.Join("doctags", p.Rel())
2900 ctx.SnapshotBuilder().CopyToSnapshot(p, dest)
2901 dests = append(dests, dest)
2902 }
2903 propertySet.AddProperty("doctag_files", dests)
2904 }
Paul Duffindd46f712020-02-10 13:37:10 +00002905}