Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1 | // 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 | |
| 15 | package java |
| 16 | |
| 17 | import ( |
Jihoon Kang | ee11328 | 2024-01-23 00:16:41 +0000 | [diff] [blame] | 18 | "errors" |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 19 | "fmt" |
| 20 | "path" |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 21 | "path/filepath" |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 22 | "reflect" |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 23 | "regexp" |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 24 | "sort" |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 25 | "strings" |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 26 | "sync" |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 27 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 28 | "github.com/google/blueprint" |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 29 | "github.com/google/blueprint/proptools" |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 30 | |
| 31 | "android/soong/android" |
Ulya Trafimovich | dbf3166 | 2020-12-17 12:07:54 +0000 | [diff] [blame] | 32 | "android/soong/dexpreopt" |
ThiƩbaud Weksteen | 00e8b31 | 2024-03-18 14:06:00 +1100 | [diff] [blame] | 33 | "android/soong/etc" |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 34 | ) |
| 35 | |
Jooyung Han | 58f26ab | 2019-12-18 15:34:32 +0900 | [diff] [blame] | 36 | const ( |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 37 | sdkXmlFileSuffix = ".xml" |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 38 | ) |
| 39 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 40 | // A tag to associated a dependency with a specific api scope. |
| 41 | type scopeDependencyTag struct { |
| 42 | blueprint.BaseDependencyTag |
| 43 | name string |
| 44 | apiScope *apiScope |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 45 | |
| 46 | // Function for extracting appropriate path information from the dependency. |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 47 | depInfoExtractor func(paths *scopePaths, ctx android.ModuleContext, dep android.Module) error |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | // Extract tag specific information from the dependency. |
| 51 | func (tag scopeDependencyTag) extractDepInfo(ctx android.ModuleContext, dep android.Module, paths *scopePaths) { |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 52 | err := tag.depInfoExtractor(paths, ctx, dep) |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 53 | if err != nil { |
| 54 | ctx.ModuleErrorf("has an invalid {scopeDependencyTag: %s} dependency on module %s: %s", tag.name, ctx.OtherModuleName(dep), err.Error()) |
| 55 | } |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 56 | } |
| 57 | |
Paul Duffin | 80342d7 | 2020-06-26 22:08:43 +0100 | [diff] [blame] | 58 | var _ android.ReplaceSourceWithPrebuilt = (*scopeDependencyTag)(nil) |
| 59 | |
| 60 | func (tag scopeDependencyTag) ReplaceSourceWithPrebuilt() bool { |
| 61 | return false |
| 62 | } |
| 63 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 64 | // Provides information about an api scope, e.g. public, system, test. |
| 65 | type apiScope struct { |
| 66 | // The name of the api scope, e.g. public, system, test |
| 67 | name string |
| 68 | |
Paul Duffin | 97b53b8 | 2020-05-05 14:40:52 +0100 | [diff] [blame] | 69 | // The api scope that this scope extends. |
Paul Duffin | d0b9fca | 2022-09-30 18:11:41 +0100 | [diff] [blame] | 70 | // |
| 71 | // This organizes the scopes into an extension hierarchy. |
| 72 | // |
| 73 | // If set this means that the API provided by this scope includes the API provided by the scope |
| 74 | // set in this field. |
Paul Duffin | 97b53b8 | 2020-05-05 14:40:52 +0100 | [diff] [blame] | 75 | extends *apiScope |
| 76 | |
Paul Duffin | d0b9fca | 2022-09-30 18:11:41 +0100 | [diff] [blame] | 77 | // The next api scope that a library that uses this scope can access. |
| 78 | // |
| 79 | // This organizes the scopes into an access hierarchy. |
| 80 | // |
| 81 | // If set this means that a library that can access this API can also access the API provided by |
| 82 | // the scope set in this field. |
| 83 | // |
| 84 | // A module that sets sdk_version: "<scope>_current" should have access to the <scope> API of |
| 85 | // every java_sdk_library that it depends on. If the library does not provide an API for <scope> |
| 86 | // then it will traverse up this access hierarchy to find an API that it does provide. |
| 87 | // |
| 88 | // If this is not set then it defaults to the scope set in extends. |
| 89 | canAccess *apiScope |
| 90 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 91 | // The legacy enabled status for a specific scope can be dependent on other |
| 92 | // properties that have been specified on the library so it is provided by |
| 93 | // a function that can determine the status by examining those properties. |
| 94 | legacyEnabledStatus func(module *SdkLibrary) bool |
| 95 | |
| 96 | // The default enabled status for non-legacy behavior, which is triggered by |
| 97 | // explicitly enabling at least one api scope. |
| 98 | defaultEnabledStatus bool |
| 99 | |
| 100 | // Gets a pointer to the scope specific properties. |
| 101 | scopeSpecificProperties func(module *SdkLibrary) *ApiScopeProperties |
| 102 | |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 103 | // The name of the field in the dynamically created structure. |
| 104 | fieldName string |
| 105 | |
Paul Duffin | 6b836ba | 2020-05-13 19:19:49 +0100 | [diff] [blame] | 106 | // The name of the property in the java_sdk_library_import |
| 107 | propertyName string |
| 108 | |
Jihoon Kang | b743155 | 2024-01-22 19:40:08 +0000 | [diff] [blame] | 109 | // The tag to use to depend on the prebuilt stubs library module |
| 110 | prebuiltStubsTag scopeDependencyTag |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 111 | |
Jihoon Kang | bd09345 | 2023-12-26 19:08:01 +0000 | [diff] [blame] | 112 | // The tag to use to depend on the everything stubs library module. |
| 113 | everythingStubsTag scopeDependencyTag |
| 114 | |
| 115 | // The tag to use to depend on the exportable stubs library module. |
| 116 | exportableStubsTag scopeDependencyTag |
| 117 | |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 118 | // The tag to use to depend on the stubs source module (if separate from the API module). |
| 119 | stubsSourceTag scopeDependencyTag |
| 120 | |
| 121 | // The tag to use to depend on the API file generating module (if separate from the stubs source module). |
| 122 | apiFileTag scopeDependencyTag |
| 123 | |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 124 | // The tag to use to depend on the stubs source and API module. |
| 125 | stubsSourceAndApiTag scopeDependencyTag |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 126 | |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 127 | // The tag to use to depend on the module that provides the latest version of the API .txt file. |
| 128 | latestApiModuleTag scopeDependencyTag |
| 129 | |
| 130 | // The tag to use to depend on the module that provides the latest version of the API removed.txt |
| 131 | // file. |
| 132 | latestRemovedApiModuleTag scopeDependencyTag |
| 133 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 134 | // The scope specific prefix to add to the api file base of "current.txt" or "removed.txt". |
| 135 | apiFilePrefix string |
| 136 | |
Paul Duffin | d0b9fca | 2022-09-30 18:11:41 +0100 | [diff] [blame] | 137 | // The scope specific suffix to add to the sdk library module name to construct a scope specific |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 138 | // module name. |
| 139 | moduleSuffix string |
| 140 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 141 | // SDK version that the stubs library is built against. Note that this is always |
| 142 | // *current. Older stubs library built with a numbered SDK version is created from |
| 143 | // the prebuilt jar. |
| 144 | sdkVersion string |
Paul Duffin | 1fb487d | 2020-04-07 18:50:10 +0100 | [diff] [blame] | 145 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 146 | // The annotation that identifies this API level, empty for the public API scope. |
| 147 | annotation string |
| 148 | |
Paul Duffin | 1fb487d | 2020-04-07 18:50:10 +0100 | [diff] [blame] | 149 | // Extra arguments to pass to droidstubs for this scope. |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 150 | // |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 151 | // This is not used directly but is used to construct the droidstubsArgs. |
| 152 | extraArgs []string |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 153 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 154 | // The args that must be passed to droidstubs to generate the API and stubs source |
| 155 | // for this scope, constructed dynamically by initApiScope(). |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 156 | // |
| 157 | // The API only includes the additional members that this scope adds over the scope |
| 158 | // that it extends. |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 159 | // |
| 160 | // The stubs source must include the definitions of everything that is in this |
| 161 | // api scope and all the scopes that this one extends. |
| 162 | droidstubsArgs []string |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 163 | |
Anton Hansson | 6478ac1 | 2020-05-02 11:19:36 +0100 | [diff] [blame] | 164 | // Whether the api scope can be treated as unstable, and should skip compat checks. |
| 165 | unstable bool |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 166 | |
| 167 | // Represents the SDK kind of this scope. |
| 168 | kind android.SdkKind |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | // Initialize a scope, creating and adding appropriate dependency tags |
| 172 | func initApiScope(scope *apiScope) *apiScope { |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 173 | name := scope.name |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 174 | scopeByName[name] = scope |
| 175 | allScopeNames = append(allScopeNames, name) |
Paul Duffin | 6b836ba | 2020-05-13 19:19:49 +0100 | [diff] [blame] | 176 | scope.propertyName = strings.ReplaceAll(name, "-", "_") |
| 177 | scope.fieldName = proptools.FieldNameForProperty(scope.propertyName) |
Jihoon Kang | b743155 | 2024-01-22 19:40:08 +0000 | [diff] [blame] | 178 | scope.prebuiltStubsTag = scopeDependencyTag{ |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 179 | name: name + "-stubs", |
| 180 | apiScope: scope, |
| 181 | depInfoExtractor: (*scopePaths).extractStubsLibraryInfoFromDependency, |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 182 | } |
Jihoon Kang | bd09345 | 2023-12-26 19:08:01 +0000 | [diff] [blame] | 183 | scope.everythingStubsTag = scopeDependencyTag{ |
| 184 | name: name + "-stubs-everything", |
| 185 | apiScope: scope, |
| 186 | depInfoExtractor: (*scopePaths).extractEverythingStubsLibraryInfoFromDependency, |
| 187 | } |
| 188 | scope.exportableStubsTag = scopeDependencyTag{ |
| 189 | name: name + "-stubs-exportable", |
| 190 | apiScope: scope, |
| 191 | depInfoExtractor: (*scopePaths).extractExportableStubsLibraryInfoFromDependency, |
| 192 | } |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 193 | scope.stubsSourceTag = scopeDependencyTag{ |
| 194 | name: name + "-stubs-source", |
| 195 | apiScope: scope, |
| 196 | depInfoExtractor: (*scopePaths).extractStubsSourceInfoFromDep, |
| 197 | } |
| 198 | scope.apiFileTag = scopeDependencyTag{ |
| 199 | name: name + "-api", |
| 200 | apiScope: scope, |
| 201 | depInfoExtractor: (*scopePaths).extractApiInfoFromDep, |
| 202 | } |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 203 | scope.stubsSourceAndApiTag = scopeDependencyTag{ |
| 204 | name: name + "-stubs-source-and-api", |
| 205 | apiScope: scope, |
| 206 | depInfoExtractor: (*scopePaths).extractStubsSourceAndApiInfoFromApiStubsProvider, |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 207 | } |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 208 | scope.latestApiModuleTag = scopeDependencyTag{ |
| 209 | name: name + "-latest-api", |
| 210 | apiScope: scope, |
| 211 | depInfoExtractor: (*scopePaths).extractLatestApiPath, |
| 212 | } |
| 213 | scope.latestRemovedApiModuleTag = scopeDependencyTag{ |
| 214 | name: name + "-latest-removed-api", |
| 215 | apiScope: scope, |
| 216 | depInfoExtractor: (*scopePaths).extractLatestRemovedApiPath, |
| 217 | } |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 218 | |
| 219 | // To get the args needed to generate the stubs source append all the args from |
| 220 | // this scope and all the scopes it extends as each set of args adds additional |
| 221 | // members to the stubs. |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 222 | var scopeSpecificArgs []string |
| 223 | if scope.annotation != "" { |
| 224 | scopeSpecificArgs = []string{"--show-annotation", scope.annotation} |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 225 | } |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 226 | for s := scope; s != nil; s = s.extends { |
| 227 | scopeSpecificArgs = append(scopeSpecificArgs, s.extraArgs...) |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 228 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 229 | // Ensure that the generated stubs includes all the API elements from the API scope |
| 230 | // that this scope extends. |
| 231 | if s != scope && s.annotation != "" { |
| 232 | scopeSpecificArgs = append(scopeSpecificArgs, "--show-for-stub-purposes-annotation", s.annotation) |
| 233 | } |
| 234 | } |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 235 | |
Paul Duffin | d0b9fca | 2022-09-30 18:11:41 +0100 | [diff] [blame] | 236 | // By default, a library that can access a scope can also access the scope it extends. |
| 237 | if scope.canAccess == nil { |
| 238 | scope.canAccess = scope.extends |
| 239 | } |
| 240 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 241 | // Escape any special characters in the arguments. This is needed because droidstubs |
| 242 | // passes these directly to the shell command. |
| 243 | scope.droidstubsArgs = proptools.ShellEscapeList(scopeSpecificArgs) |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 244 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 245 | return scope |
| 246 | } |
| 247 | |
Anton Hansson | 08f476b | 2021-04-07 15:32:19 +0100 | [diff] [blame] | 248 | func (scope *apiScope) stubsLibraryModuleNameSuffix() string { |
| 249 | return ".stubs" + scope.moduleSuffix |
| 250 | } |
| 251 | |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 252 | func (scope *apiScope) exportableStubsLibraryModuleNameSuffix() string { |
| 253 | return ".stubs.exportable" + scope.moduleSuffix |
| 254 | } |
| 255 | |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 256 | func (scope *apiScope) apiLibraryModuleName(baseName string) string { |
| 257 | return scope.stubsLibraryModuleName(baseName) + ".from-text" |
| 258 | } |
| 259 | |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 260 | func (scope *apiScope) sourceStubLibraryModuleName(baseName string) string { |
| 261 | return scope.stubsLibraryModuleName(baseName) + ".from-source" |
| 262 | } |
| 263 | |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 264 | func (scope *apiScope) exportableSourceStubsLibraryModuleName(baseName string) string { |
| 265 | return scope.exportableStubsLibraryModuleName(baseName) + ".from-source" |
| 266 | } |
| 267 | |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 268 | func (scope *apiScope) stubsLibraryModuleName(baseName string) string { |
Anton Hansson | 08f476b | 2021-04-07 15:32:19 +0100 | [diff] [blame] | 269 | return baseName + scope.stubsLibraryModuleNameSuffix() |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 270 | } |
| 271 | |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 272 | func (scope *apiScope) exportableStubsLibraryModuleName(baseName string) string { |
| 273 | return baseName + scope.exportableStubsLibraryModuleNameSuffix() |
| 274 | } |
| 275 | |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 276 | func (scope *apiScope) stubsSourceModuleName(baseName string) string { |
Paul Duffin | dd9d074 | 2020-05-08 15:52:37 +0100 | [diff] [blame] | 277 | return baseName + ".stubs.source" + scope.moduleSuffix |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 278 | } |
| 279 | |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 280 | func (scope *apiScope) apiModuleName(baseName string) string { |
Paul Duffin | dd9d074 | 2020-05-08 15:52:37 +0100 | [diff] [blame] | 281 | return baseName + ".api" + scope.moduleSuffix |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 282 | } |
| 283 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 284 | func (scope *apiScope) String() string { |
| 285 | return scope.name |
| 286 | } |
| 287 | |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 288 | // snapshotRelativeDir returns the snapshot directory into which the files related to scopes will |
| 289 | // be stored. |
| 290 | func (scope *apiScope) snapshotRelativeDir() string { |
| 291 | return filepath.Join("sdk_library", scope.name) |
| 292 | } |
| 293 | |
| 294 | // snapshotRelativeCurrentApiTxtPath returns the snapshot path to the API .txt file for the named |
| 295 | // library. |
| 296 | func (scope *apiScope) snapshotRelativeCurrentApiTxtPath(name string) string { |
| 297 | return filepath.Join(scope.snapshotRelativeDir(), name+".txt") |
| 298 | } |
| 299 | |
| 300 | // snapshotRelativeRemovedApiTxtPath returns the snapshot path to the removed API .txt file for the |
| 301 | // named library. |
| 302 | func (scope *apiScope) snapshotRelativeRemovedApiTxtPath(name string) string { |
| 303 | return filepath.Join(scope.snapshotRelativeDir(), name+"-removed.txt") |
| 304 | } |
| 305 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 306 | type apiScopes []*apiScope |
| 307 | |
| 308 | func (scopes apiScopes) Strings(accessor func(*apiScope) string) []string { |
| 309 | var list []string |
| 310 | for _, scope := range scopes { |
| 311 | list = append(list, accessor(scope)) |
| 312 | } |
| 313 | return list |
| 314 | } |
| 315 | |
Jihoon Kang | a96a7b1 | 2023-09-20 23:43:32 +0000 | [diff] [blame] | 316 | // Method that maps the apiScopes properties to the index of each apiScopes elements. |
| 317 | // apiScopes property to be used as the key can be specified with the input accessor. |
| 318 | // Only a string property of apiScope can be used as the key of the map. |
| 319 | func (scopes apiScopes) MapToIndex(accessor func(*apiScope) string) map[string]int { |
| 320 | ret := make(map[string]int) |
| 321 | for i, scope := range scopes { |
| 322 | ret[accessor(scope)] = i |
| 323 | } |
| 324 | return ret |
| 325 | } |
| 326 | |
Jihoon Kang | 98aa8fa | 2024-06-07 11:06:57 +0000 | [diff] [blame] | 327 | func (scopes apiScopes) ConvertStubsLibraryExportableToEverything(name string) string { |
| 328 | for _, scope := range scopes { |
| 329 | if strings.HasSuffix(name, scope.exportableStubsLibraryModuleNameSuffix()) { |
| 330 | return strings.TrimSuffix(name, scope.exportableStubsLibraryModuleNameSuffix()) + |
| 331 | scope.stubsLibraryModuleNameSuffix() |
| 332 | } |
| 333 | } |
| 334 | return name |
| 335 | } |
| 336 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 337 | var ( |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 338 | scopeByName = make(map[string]*apiScope) |
| 339 | allScopeNames []string |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 340 | apiScopePublic = initApiScope(&apiScope{ |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 341 | name: "public", |
| 342 | |
| 343 | // Public scope is enabled by default for both legacy and non-legacy modes. |
| 344 | legacyEnabledStatus: func(module *SdkLibrary) bool { |
| 345 | return true |
| 346 | }, |
| 347 | defaultEnabledStatus: true, |
| 348 | |
| 349 | scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties { |
| 350 | return &module.sdkLibraryProperties.Public |
| 351 | }, |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 352 | sdkVersion: "current", |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 353 | kind: android.SdkPublic, |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 354 | }) |
| 355 | apiScopeSystem = initApiScope(&apiScope{ |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 356 | name: "system", |
| 357 | extends: apiScopePublic, |
| 358 | legacyEnabledStatus: (*SdkLibrary).generateTestAndSystemScopesByDefault, |
| 359 | scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties { |
| 360 | return &module.sdkLibraryProperties.System |
| 361 | }, |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 362 | apiFilePrefix: "system-", |
| 363 | moduleSuffix: ".system", |
| 364 | sdkVersion: "system_current", |
| 365 | annotation: "android.annotation.SystemApi(client=android.annotation.SystemApi.Client.PRIVILEGED_APPS)", |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 366 | kind: android.SdkSystem, |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 367 | }) |
| 368 | apiScopeTest = initApiScope(&apiScope{ |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 369 | name: "test", |
Anton Hansson | 4fe970f | 2020-10-09 10:16:49 +0100 | [diff] [blame] | 370 | extends: apiScopeSystem, |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 371 | legacyEnabledStatus: (*SdkLibrary).generateTestAndSystemScopesByDefault, |
| 372 | scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties { |
| 373 | return &module.sdkLibraryProperties.Test |
| 374 | }, |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 375 | apiFilePrefix: "test-", |
| 376 | moduleSuffix: ".test", |
| 377 | sdkVersion: "test_current", |
| 378 | annotation: "android.annotation.TestApi", |
| 379 | unstable: true, |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 380 | kind: android.SdkTest, |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 381 | }) |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 382 | apiScopeModuleLib = initApiScope(&apiScope{ |
Paul Duffin | 6b836ba | 2020-05-13 19:19:49 +0100 | [diff] [blame] | 383 | name: "module-lib", |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 384 | extends: apiScopeSystem, |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 385 | // The module-lib scope is disabled by default in legacy mode. |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 386 | // |
| 387 | // Enabling this would break existing usages. |
| 388 | legacyEnabledStatus: func(module *SdkLibrary) bool { |
| 389 | return false |
| 390 | }, |
| 391 | scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties { |
| 392 | return &module.sdkLibraryProperties.Module_lib |
| 393 | }, |
| 394 | apiFilePrefix: "module-lib-", |
| 395 | moduleSuffix: ".module_lib", |
| 396 | sdkVersion: "module_current", |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 397 | annotation: "android.annotation.SystemApi(client=android.annotation.SystemApi.Client.MODULE_LIBRARIES)", |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 398 | kind: android.SdkModule, |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 399 | }) |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 400 | apiScopeSystemServer = initApiScope(&apiScope{ |
| 401 | name: "system-server", |
| 402 | extends: apiScopePublic, |
Paul Duffin | d0b9fca | 2022-09-30 18:11:41 +0100 | [diff] [blame] | 403 | |
| 404 | // The system-server scope can access the module-lib scope. |
| 405 | // |
| 406 | // A module that provides a system-server API is appended to the standard bootclasspath that is |
| 407 | // used by the system server. So, it should be able to access module-lib APIs provided by |
| 408 | // libraries on the bootclasspath. |
| 409 | canAccess: apiScopeModuleLib, |
| 410 | |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 411 | // The system-server scope is disabled by default in legacy mode. |
| 412 | // |
| 413 | // Enabling this would break existing usages. |
| 414 | legacyEnabledStatus: func(module *SdkLibrary) bool { |
| 415 | return false |
| 416 | }, |
| 417 | scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties { |
| 418 | return &module.sdkLibraryProperties.System_server |
| 419 | }, |
| 420 | apiFilePrefix: "system-server-", |
| 421 | moduleSuffix: ".system_server", |
| 422 | sdkVersion: "system_server_current", |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 423 | annotation: "android.annotation.SystemApi(client=android.annotation.SystemApi.Client.SYSTEM_SERVER)", |
| 424 | extraArgs: []string{ |
| 425 | "--hide-annotation", "android.annotation.Hide", |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 426 | // com.android.* classes are okay in this interface" |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 427 | "--hide", "InternalClasses", |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 428 | }, |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 429 | kind: android.SdkSystemServer, |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 430 | }) |
Jihoon Kang | 98aa8fa | 2024-06-07 11:06:57 +0000 | [diff] [blame] | 431 | AllApiScopes = apiScopes{ |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 432 | apiScopePublic, |
| 433 | apiScopeSystem, |
| 434 | apiScopeTest, |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 435 | apiScopeModuleLib, |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 436 | apiScopeSystemServer, |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 437 | } |
Jihoon Kang | 0c705a4 | 2023-08-02 06:44:57 +0000 | [diff] [blame] | 438 | apiLibraryAdditionalProperties = map[string]struct { |
| 439 | FullApiSurfaceStubLib string |
| 440 | AdditionalApiContribution string |
| 441 | }{ |
| 442 | "legacy.i18n.module.platform.api": { |
| 443 | FullApiSurfaceStubLib: "legacy.core.platform.api.stubs", |
| 444 | AdditionalApiContribution: "i18n.module.public.api.stubs.source.api.contribution", |
| 445 | }, |
| 446 | "stable.i18n.module.platform.api": { |
| 447 | FullApiSurfaceStubLib: "stable.core.platform.api.stubs", |
| 448 | AdditionalApiContribution: "i18n.module.public.api.stubs.source.api.contribution", |
| 449 | }, |
| 450 | "conscrypt.module.platform.api": { |
| 451 | FullApiSurfaceStubLib: "stable.core.platform.api.stubs", |
| 452 | AdditionalApiContribution: "conscrypt.module.public.api.stubs.source.api.contribution", |
| 453 | }, |
| 454 | } |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 455 | ) |
| 456 | |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 457 | var ( |
| 458 | javaSdkLibrariesLock sync.Mutex |
| 459 | ) |
| 460 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 461 | // TODO: these are big features that are currently missing |
Jiyong Park | 1be9691 | 2018-05-28 18:02:19 +0900 | [diff] [blame] | 462 | // 1) disallowing linking to the runtime shared lib |
| 463 | // 2) HTML generation |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 464 | |
| 465 | func init() { |
Paul Duffin | 43dc1cc | 2019-12-19 11:18:54 +0000 | [diff] [blame] | 466 | RegisterSdkLibraryBuildComponents(android.InitRegistrationContext) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 467 | |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 468 | android.RegisterMakeVarsProvider(pctx, func(ctx android.MakeVarsContext) { |
| 469 | javaSdkLibraries := javaSdkLibraries(ctx.Config()) |
| 470 | sort.Strings(*javaSdkLibraries) |
| 471 | ctx.Strict("JAVA_SDK_LIBRARIES", strings.Join(*javaSdkLibraries, " ")) |
| 472 | }) |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 473 | |
| 474 | // Register sdk member types. |
Paul Duffin | 976b0e5 | 2021-04-27 23:20:26 +0100 | [diff] [blame] | 475 | android.RegisterSdkMemberType(javaSdkLibrarySdkMemberType) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 476 | } |
| 477 | |
Paul Duffin | 43dc1cc | 2019-12-19 11:18:54 +0000 | [diff] [blame] | 478 | func RegisterSdkLibraryBuildComponents(ctx android.RegistrationContext) { |
| 479 | ctx.RegisterModuleType("java_sdk_library", SdkLibraryFactory) |
| 480 | ctx.RegisterModuleType("java_sdk_library_import", sdkLibraryImportFactory) |
| 481 | } |
| 482 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 483 | // Properties associated with each api scope. |
| 484 | type ApiScopeProperties struct { |
| 485 | // Indicates whether the api surface is generated. |
| 486 | // |
| 487 | // If this is set for any scope then all scopes must explicitly specify if they |
| 488 | // are enabled. This is to prevent new usages from depending on legacy behavior. |
| 489 | // |
| 490 | // Otherwise, if this is not set for any scope then the default behavior is |
| 491 | // scope specific so please refer to the scope specific property documentation. |
| 492 | Enabled *bool |
Paul Duffin | 87a05a3 | 2020-05-12 11:50:28 +0100 | [diff] [blame] | 493 | |
| 494 | // The sdk_version to use for building the stubs. |
| 495 | // |
| 496 | // If not specified then it will use an sdk_version determined as follows: |
Trevor Radcliffe | df8aa1f | 2021-11-04 14:25:39 +0000 | [diff] [blame] | 497 | // |
Paul Duffin | 87a05a3 | 2020-05-12 11:50:28 +0100 | [diff] [blame] | 498 | // 1) If the sdk_version specified on the java_sdk_library is none then this |
Trevor Radcliffe | df8aa1f | 2021-11-04 14:25:39 +0000 | [diff] [blame] | 499 | // will be none. This is used for java_sdk_library instances that are used |
| 500 | // to create stubs that contribute to the core_current sdk version. |
| 501 | // 2) Otherwise, it is assumed that this library extends but does not |
| 502 | // contribute directly to a specific sdk_version and so this uses the |
| 503 | // sdk_version appropriate for the api scope. e.g. public will use |
| 504 | // sdk_version: current, system will use sdk_version: system_current, etc. |
Paul Duffin | 87a05a3 | 2020-05-12 11:50:28 +0100 | [diff] [blame] | 505 | // |
| 506 | // This does not affect the sdk_version used for either generating the stubs source |
| 507 | // or the API file. They both have to use the same sdk_version as is used for |
| 508 | // compiling the implementation library. |
| 509 | Sdk_version *string |
Mark White | 9421c4c | 2023-08-10 00:07:03 +0000 | [diff] [blame] | 510 | |
| 511 | // Extra libs used when compiling stubs for this scope. |
| 512 | Libs []string |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 513 | } |
| 514 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 515 | type sdkLibraryProperties struct { |
Anton Hansson | f8ea372 | 2021-09-16 14:24:13 +0100 | [diff] [blame] | 516 | // List of source files that are needed to compile the API, but are not part of runtime library. |
| 517 | Api_srcs []string `android:"arch_variant"` |
| 518 | |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 519 | // Visibility for impl library module. If not specified then defaults to the |
| 520 | // visibility property. |
| 521 | Impl_library_visibility []string |
| 522 | |
Paul Duffin | 4911a89 | 2020-04-29 23:35:13 +0100 | [diff] [blame] | 523 | // Visibility for stubs library modules. If not specified then defaults to the |
| 524 | // visibility property. |
| 525 | Stubs_library_visibility []string |
| 526 | |
| 527 | // Visibility for stubs source modules. If not specified then defaults to the |
| 528 | // visibility property. |
| 529 | Stubs_source_visibility []string |
| 530 | |
Anton Hansson | 7f66efa | 2020-10-08 14:47:23 +0100 | [diff] [blame] | 531 | // List of Java libraries that will be in the classpath when building the implementation lib |
| 532 | Impl_only_libs []string `android:"arch_variant"` |
| 533 | |
Paul Duffin | 77590a8 | 2022-04-28 14:13:30 +0000 | [diff] [blame] | 534 | // List of Java libraries that will included in the implementation lib. |
| 535 | Impl_only_static_libs []string `android:"arch_variant"` |
| 536 | |
Sundong Ahn | f043cf6 | 2018-06-25 16:04:37 +0900 | [diff] [blame] | 537 | // List of Java libraries that will be in the classpath when building stubs |
| 538 | Stub_only_libs []string `android:"arch_variant"` |
| 539 | |
Anton Hansson | dae54cd | 2021-04-21 16:30:10 +0100 | [diff] [blame] | 540 | // List of Java libraries that will included in stub libraries |
| 541 | Stub_only_static_libs []string `android:"arch_variant"` |
| 542 | |
Paul Duffin | 7a586d3 | 2019-12-30 17:09:34 +0000 | [diff] [blame] | 543 | // list of package names that will be documented and publicized as API. |
| 544 | // This allows the API to be restricted to a subset of the source files provided. |
| 545 | // If this is unspecified then all the source files will be treated as being part |
| 546 | // of the API. |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 547 | Api_packages []string |
| 548 | |
Jiyong Park | 5a2c9d7 | 2018-05-01 22:25:41 +0900 | [diff] [blame] | 549 | // list of package names that must be hidden from the API |
| 550 | Hidden_api_packages []string |
| 551 | |
Paul Duffin | 749f98f | 2019-12-30 17:23:46 +0000 | [diff] [blame] | 552 | // the relative path to the directory containing the api specification files. |
| 553 | // Defaults to "api". |
| 554 | Api_dir *string |
| 555 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 556 | // Determines whether a runtime implementation library is built; defaults to false. |
| 557 | // |
| 558 | // If true then it also prevents the module from being used as a shared module, i.e. |
MĆ„rten Kongstad | 81d9095 | 2022-05-25 16:27:11 +0200 | [diff] [blame] | 559 | // it is as if shared_library: false, was set. |
Paul Duffin | 43db9be | 2019-12-30 17:35:49 +0000 | [diff] [blame] | 560 | Api_only *bool |
| 561 | |
Paul Duffin | 1151247 | 2019-02-11 15:55:17 +0000 | [diff] [blame] | 562 | // local files that are used within user customized droiddoc options. |
| 563 | Droiddoc_option_files []string |
| 564 | |
Spandan Das | 93e9599 | 2021-07-29 18:26:39 +0000 | [diff] [blame] | 565 | // additional droiddoc options. |
Paul Duffin | 1151247 | 2019-02-11 15:55:17 +0000 | [diff] [blame] | 566 | // Available variables for substitution: |
| 567 | // |
| 568 | // $(location <label>): the path to the droiddoc_option_files with name <label> |
Sundong Ahn | dd567f9 | 2018-07-31 17:19:11 +0900 | [diff] [blame] | 569 | Droiddoc_options []string |
| 570 | |
Paul Duffin | e22c2ab | 2020-05-20 19:35:27 +0100 | [diff] [blame] | 571 | // is set to true, Metalava will allow framework SDK to contain annotations. |
| 572 | Annotations_enabled *bool |
| 573 | |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 574 | // a list of top-level directories containing files to merge qualifier annotations |
| 575 | // (i.e. those intended to be included in the stubs written) from. |
| 576 | Merge_annotations_dirs []string |
| 577 | |
| 578 | // a list of top-level directories containing Java stub files to merge show/hide annotations from. |
| 579 | Merge_inclusion_annotations_dirs []string |
| 580 | |
Paul Duffin | 4f5c1ef | 2020-11-19 14:53:43 +0000 | [diff] [blame] | 581 | // If set to true then don't create dist rules. |
| 582 | No_dist *bool |
Sundong Ahn | 80a87b3 | 2019-05-13 15:02:50 +0900 | [diff] [blame] | 583 | |
Paul Duffin | 3131025 | 2020-11-20 21:26:20 +0000 | [diff] [blame] | 584 | // The stem for the artifacts that are copied to the dist, if not specified |
| 585 | // then defaults to the base module name. |
| 586 | // |
| 587 | // For each scope the following artifacts are copied to the apistubs/<scope> |
| 588 | // directory in the dist. |
| 589 | // * stubs impl jar -> <dist-stem>.jar |
| 590 | // * API specification file -> api/<dist-stem>.txt |
| 591 | // * Removed API specification file -> api/<dist-stem>-removed.txt |
| 592 | // |
| 593 | // Also used to construct the name of the filegroup (created by prebuilt_apis) |
| 594 | // that references the latest released API and remove API specification files. |
| 595 | // * API specification filegroup -> <dist-stem>.api.<scope>.latest |
| 596 | // * Removed API specification filegroup -> <dist-stem>-removed.api.<scope>.latest |
Jaewoong Jung | 1a97ee0 | 2021-03-09 13:25:02 -0800 | [diff] [blame] | 597 | // * API incompatibilities baseline filegroup -> <dist-stem>-incompatibilities.api.<scope>.latest |
Paul Duffin | 3131025 | 2020-11-20 21:26:20 +0000 | [diff] [blame] | 598 | Dist_stem *string |
| 599 | |
Colin Cross | 986b69a | 2021-06-01 13:13:40 -0700 | [diff] [blame] | 600 | // The subdirectory for the artifacts that are copied to the dist directory. If not specified |
Colin Cross | 3dd6625 | 2021-06-01 14:05:09 -0700 | [diff] [blame] | 601 | // then defaults to "unknown". Should be set to "android" for anything that should be published |
Colin Cross | 986b69a | 2021-06-01 13:13:40 -0700 | [diff] [blame] | 602 | // in the public Android SDK. |
| 603 | Dist_group *string |
| 604 | |
Anton Hansson | dff2c78 | 2020-12-21 17:10:01 +0000 | [diff] [blame] | 605 | // A compatibility mode that allows historical API-tracking files to not exist. |
| 606 | // Do not use. |
| 607 | Unsafe_ignore_missing_latest_api bool |
| 608 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 609 | // indicates whether system and test apis should be generated. |
| 610 | Generate_system_and_test_apis bool `blueprint:"mutated"` |
| 611 | |
| 612 | // The properties specific to the public api scope |
| 613 | // |
| 614 | // Unless explicitly specified by using public.enabled the public api scope is |
| 615 | // enabled by default in both legacy and non-legacy mode. |
| 616 | Public ApiScopeProperties |
| 617 | |
| 618 | // The properties specific to the system api scope |
| 619 | // |
| 620 | // In legacy mode the system api scope is enabled by default when sdk_version |
| 621 | // is set to something other than "none". |
| 622 | // |
| 623 | // In non-legacy mode the system api scope is disabled by default. |
| 624 | System ApiScopeProperties |
| 625 | |
| 626 | // The properties specific to the test api scope |
| 627 | // |
| 628 | // In legacy mode the test api scope is enabled by default when sdk_version |
| 629 | // is set to something other than "none". |
| 630 | // |
| 631 | // In non-legacy mode the test api scope is disabled by default. |
| 632 | Test ApiScopeProperties |
Paul Duffin | 37e0b77 | 2019-12-30 17:20:10 +0000 | [diff] [blame] | 633 | |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 634 | // The properties specific to the module-lib api scope |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 635 | // |
Zi Wang | b2179e3 | 2023-01-31 15:53:30 -0800 | [diff] [blame] | 636 | // Unless explicitly specified by using module_lib.enabled the module_lib api |
| 637 | // scope is disabled by default. |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 638 | Module_lib ApiScopeProperties |
| 639 | |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 640 | // The properties specific to the system-server api scope |
| 641 | // |
Zi Wang | b2179e3 | 2023-01-31 15:53:30 -0800 | [diff] [blame] | 642 | // Unless explicitly specified by using system_server.enabled the |
| 643 | // system_server api scope is disabled by default. |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 644 | System_server ApiScopeProperties |
| 645 | |
Jiyong Park | 932cdfe | 2020-05-28 00:19:53 +0900 | [diff] [blame] | 646 | // Determines if the stubs are preferred over the implementation library |
| 647 | // for linking, even when the client doesn't specify sdk_version. When this |
| 648 | // is set to true, such clients are provided with the widest API surface that |
| 649 | // this lib provides. Note however that this option doesn't affect the clients |
| 650 | // that are in the same APEX as this library. In that case, the clients are |
| 651 | // always linked with the implementation library. Default is false. |
| 652 | Default_to_stubs *bool |
| 653 | |
Paul Duffin | 160fe41 | 2020-05-10 19:32:20 +0100 | [diff] [blame] | 654 | // Properties related to api linting. |
| 655 | Api_lint struct { |
| 656 | // Enable api linting. |
| 657 | Enabled *bool |
Anton Hansson | fd1c0d2 | 2023-11-02 15:18:09 +0000 | [diff] [blame] | 658 | |
| 659 | // If API lint is enabled, this flag controls whether a set of legitimate lint errors |
| 660 | // are turned off. The default is true. |
| 661 | Legacy_errors_allowed *bool |
Paul Duffin | 160fe41 | 2020-05-10 19:32:20 +0100 | [diff] [blame] | 662 | } |
| 663 | |
Jihoon Kang | 80456fd | 2023-11-15 19:22:14 +0000 | [diff] [blame] | 664 | // Determines if the module contributes to any api surfaces. |
| 665 | // This property should be set to true only if the module is listed under |
| 666 | // frameworks-base-api.bootclasspath in frameworks/base/api/Android.bp. |
| 667 | // Otherwise, this property should be set to false. |
| 668 | // Defaults to false. |
| 669 | Contribute_to_android_api *bool |
| 670 | |
Jihoon Kang | 6592e87 | 2023-12-19 01:13:16 +0000 | [diff] [blame] | 671 | // a list of aconfig_declarations module names that the stubs generated in this module |
| 672 | // depend on. |
| 673 | Aconfig_declarations []string |
| 674 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 675 | // TODO: determines whether to create HTML doc or not |
Paul Duffin | e840995 | 2022-09-22 16:24:46 +0100 | [diff] [blame] | 676 | // Html_doc *bool |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 677 | } |
| 678 | |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 679 | // Paths to outputs from java_sdk_library and java_sdk_library_import. |
| 680 | // |
| 681 | // Fields that are android.Paths are always set (during GenerateAndroidBuildActions). |
| 682 | // OptionalPaths are always set by java_sdk_library but may not be set by |
| 683 | // java_sdk_library_import as not all instances provide that information. |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 684 | type scopePaths struct { |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 685 | // The path (represented as Paths for convenience when returning) to the stubs header jar. |
| 686 | // |
| 687 | // That is the jar that is created by turbine. |
| 688 | stubsHeaderPath android.Paths |
| 689 | |
| 690 | // The path (represented as Paths for convenience when returning) to the stubs implementation jar. |
| 691 | // |
| 692 | // This is not the implementation jar, it still only contains stubs. |
| 693 | stubsImplPath android.Paths |
| 694 | |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 695 | // The dex jar for the stubs. |
| 696 | // |
| 697 | // This is not the implementation jar, it still only contains stubs. |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 698 | stubsDexJarPath OptionalDexJarPath |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 699 | |
Jihoon Kang | bd09345 | 2023-12-26 19:08:01 +0000 | [diff] [blame] | 700 | // The exportable dex jar for the stubs. |
| 701 | // This is not the implementation jar, it still only contains stubs. |
| 702 | // Includes unflagged apis and flagged apis enabled by release configurations. |
| 703 | exportableStubsDexJarPath OptionalDexJarPath |
| 704 | |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 705 | // The API specification file, e.g. system_current.txt. |
| 706 | currentApiFilePath android.OptionalPath |
| 707 | |
| 708 | // The specification of API elements removed since the last release. |
| 709 | removedApiFilePath android.OptionalPath |
| 710 | |
| 711 | // The stubs source jar. |
| 712 | stubsSrcJar android.OptionalPath |
Anton Hansson | d78eb76 | 2021-09-21 15:25:12 +0100 | [diff] [blame] | 713 | |
| 714 | // Extracted annotations. |
| 715 | annotationsZip android.OptionalPath |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 716 | |
| 717 | // The path to the latest API file. |
Jihoon Kang | 5623e54 | 2024-01-31 23:27:26 +0000 | [diff] [blame] | 718 | latestApiPaths android.Paths |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 719 | |
| 720 | // The path to the latest removed API file. |
Jihoon Kang | 5623e54 | 2024-01-31 23:27:26 +0000 | [diff] [blame] | 721 | latestRemovedApiPaths android.Paths |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 722 | } |
| 723 | |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 724 | func (paths *scopePaths) extractStubsLibraryInfoFromDependency(ctx android.ModuleContext, dep android.Module) error { |
Colin Cross | 313aa54 | 2023-12-13 13:47:44 -0800 | [diff] [blame] | 725 | if lib, ok := android.OtherModuleProvider(ctx, dep, JavaInfoProvider); ok { |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 726 | paths.stubsHeaderPath = lib.HeaderJars |
| 727 | paths.stubsImplPath = lib.ImplementationJars |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 728 | |
| 729 | libDep := dep.(UsesLibraryDependency) |
Spandan Das | 59a4a2b | 2024-01-09 21:35:56 +0000 | [diff] [blame] | 730 | paths.stubsDexJarPath = libDep.DexJarBuildPath(ctx) |
Jihoon Kang | bd09345 | 2023-12-26 19:08:01 +0000 | [diff] [blame] | 731 | paths.exportableStubsDexJarPath = libDep.DexJarBuildPath(ctx) |
| 732 | return nil |
| 733 | } else { |
| 734 | return fmt.Errorf("expected module that has JavaInfoProvider, e.g. java_library") |
| 735 | } |
| 736 | } |
| 737 | |
| 738 | func (paths *scopePaths) extractEverythingStubsLibraryInfoFromDependency(ctx android.ModuleContext, dep android.Module) error { |
| 739 | if lib, ok := android.OtherModuleProvider(ctx, dep, JavaInfoProvider); ok { |
| 740 | paths.stubsHeaderPath = lib.HeaderJars |
Jihoon Kang | f55a5f7 | 2024-01-08 08:56:20 +0000 | [diff] [blame] | 741 | if !ctx.Config().ReleaseHiddenApiExportableStubs() { |
| 742 | paths.stubsImplPath = lib.ImplementationJars |
| 743 | } |
Jihoon Kang | bd09345 | 2023-12-26 19:08:01 +0000 | [diff] [blame] | 744 | |
| 745 | libDep := dep.(UsesLibraryDependency) |
| 746 | paths.stubsDexJarPath = libDep.DexJarBuildPath(ctx) |
| 747 | return nil |
| 748 | } else { |
| 749 | return fmt.Errorf("expected module that has JavaInfoProvider, e.g. java_library") |
| 750 | } |
| 751 | } |
| 752 | |
| 753 | func (paths *scopePaths) extractExportableStubsLibraryInfoFromDependency(ctx android.ModuleContext, dep android.Module) error { |
Jihoon Kang | f55a5f7 | 2024-01-08 08:56:20 +0000 | [diff] [blame] | 754 | if lib, ok := android.OtherModuleProvider(ctx, dep, JavaInfoProvider); ok { |
| 755 | if ctx.Config().ReleaseHiddenApiExportableStubs() { |
| 756 | paths.stubsImplPath = lib.ImplementationJars |
| 757 | } |
| 758 | |
Jihoon Kang | bd09345 | 2023-12-26 19:08:01 +0000 | [diff] [blame] | 759 | libDep := dep.(UsesLibraryDependency) |
| 760 | paths.exportableStubsDexJarPath = libDep.DexJarBuildPath(ctx) |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 761 | return nil |
| 762 | } else { |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 763 | return fmt.Errorf("expected module that has JavaInfoProvider, e.g. java_library") |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 764 | } |
| 765 | } |
| 766 | |
Jihoon Kang | ee11328 | 2024-01-23 00:16:41 +0000 | [diff] [blame] | 767 | func (paths *scopePaths) treatDepAsApiStubsProvider(dep android.Module, action func(provider ApiStubsProvider) error) error { |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 768 | if apiStubsProvider, ok := dep.(ApiStubsProvider); ok { |
Jihoon Kang | ee11328 | 2024-01-23 00:16:41 +0000 | [diff] [blame] | 769 | err := action(apiStubsProvider) |
| 770 | if err != nil { |
| 771 | return err |
| 772 | } |
Jihoon Kang | f55a5f7 | 2024-01-08 08:56:20 +0000 | [diff] [blame] | 773 | return nil |
| 774 | } else { |
| 775 | return fmt.Errorf("expected module that implements ExportableApiStubsSrcProvider, e.g. droidstubs") |
| 776 | } |
| 777 | } |
| 778 | |
Jihoon Kang | ee11328 | 2024-01-23 00:16:41 +0000 | [diff] [blame] | 779 | func (paths *scopePaths) treatDepAsApiStubsSrcProvider(dep android.Module, action func(provider ApiStubsSrcProvider) error) error { |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 780 | if apiStubsProvider, ok := dep.(ApiStubsSrcProvider); ok { |
Jihoon Kang | ee11328 | 2024-01-23 00:16:41 +0000 | [diff] [blame] | 781 | err := action(apiStubsProvider) |
| 782 | if err != nil { |
| 783 | return err |
| 784 | } |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 785 | return nil |
| 786 | } else { |
| 787 | return fmt.Errorf("expected module that implements ApiStubsSrcProvider, e.g. droidstubs") |
| 788 | } |
| 789 | } |
| 790 | |
Jihoon Kang | ee11328 | 2024-01-23 00:16:41 +0000 | [diff] [blame] | 791 | func (paths *scopePaths) extractApiInfoFromApiStubsProvider(provider ApiStubsProvider, stubsType StubsType) error { |
| 792 | var annotationsZip, currentApiFilePath, removedApiFilePath android.Path |
| 793 | annotationsZip, annotationsZipErr := provider.AnnotationsZip(stubsType) |
| 794 | currentApiFilePath, currentApiFilePathErr := provider.ApiFilePath(stubsType) |
| 795 | removedApiFilePath, removedApiFilePathErr := provider.RemovedApiFilePath(stubsType) |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 796 | |
Jihoon Kang | ee11328 | 2024-01-23 00:16:41 +0000 | [diff] [blame] | 797 | combinedError := errors.Join(annotationsZipErr, currentApiFilePathErr, removedApiFilePathErr) |
| 798 | |
| 799 | if combinedError == nil { |
| 800 | paths.annotationsZip = android.OptionalPathForPath(annotationsZip) |
| 801 | paths.currentApiFilePath = android.OptionalPathForPath(currentApiFilePath) |
| 802 | paths.removedApiFilePath = android.OptionalPathForPath(removedApiFilePath) |
| 803 | } |
| 804 | return combinedError |
Jihoon Kang | f55a5f7 | 2024-01-08 08:56:20 +0000 | [diff] [blame] | 805 | } |
| 806 | |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 807 | func (paths *scopePaths) extractApiInfoFromDep(ctx android.ModuleContext, dep android.Module) error { |
Jihoon Kang | ee11328 | 2024-01-23 00:16:41 +0000 | [diff] [blame] | 808 | return paths.treatDepAsApiStubsProvider(dep, func(provider ApiStubsProvider) error { |
| 809 | return paths.extractApiInfoFromApiStubsProvider(provider, Everything) |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 810 | }) |
| 811 | } |
| 812 | |
Jihoon Kang | ee11328 | 2024-01-23 00:16:41 +0000 | [diff] [blame] | 813 | func (paths *scopePaths) extractStubsSourceInfoFromApiStubsProviders(provider ApiStubsSrcProvider, stubsType StubsType) error { |
| 814 | stubsSrcJar, err := provider.StubsSrcJar(stubsType) |
| 815 | if err == nil { |
| 816 | paths.stubsSrcJar = android.OptionalPathForPath(stubsSrcJar) |
| 817 | } |
| 818 | return err |
Jihoon Kang | f55a5f7 | 2024-01-08 08:56:20 +0000 | [diff] [blame] | 819 | } |
| 820 | |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 821 | func (paths *scopePaths) extractStubsSourceInfoFromDep(ctx android.ModuleContext, dep android.Module) error { |
Jihoon Kang | ee11328 | 2024-01-23 00:16:41 +0000 | [diff] [blame] | 822 | return paths.treatDepAsApiStubsSrcProvider(dep, func(provider ApiStubsSrcProvider) error { |
| 823 | return paths.extractStubsSourceInfoFromApiStubsProviders(provider, Everything) |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 824 | }) |
| 825 | } |
| 826 | |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 827 | func (paths *scopePaths) extractStubsSourceAndApiInfoFromApiStubsProvider(ctx android.ModuleContext, dep android.Module) error { |
Jihoon Kang | f55a5f7 | 2024-01-08 08:56:20 +0000 | [diff] [blame] | 828 | if ctx.Config().ReleaseHiddenApiExportableStubs() { |
Jihoon Kang | ee11328 | 2024-01-23 00:16:41 +0000 | [diff] [blame] | 829 | return paths.treatDepAsApiStubsProvider(dep, func(provider ApiStubsProvider) error { |
| 830 | extractApiInfoErr := paths.extractApiInfoFromApiStubsProvider(provider, Exportable) |
| 831 | extractStubsSourceInfoErr := paths.extractStubsSourceInfoFromApiStubsProviders(provider, Exportable) |
| 832 | return errors.Join(extractApiInfoErr, extractStubsSourceInfoErr) |
Jihoon Kang | f55a5f7 | 2024-01-08 08:56:20 +0000 | [diff] [blame] | 833 | }) |
| 834 | } |
Jihoon Kang | ee11328 | 2024-01-23 00:16:41 +0000 | [diff] [blame] | 835 | return paths.treatDepAsApiStubsProvider(dep, func(provider ApiStubsProvider) error { |
| 836 | extractApiInfoErr := paths.extractApiInfoFromApiStubsProvider(provider, Everything) |
| 837 | extractStubsSourceInfoErr := paths.extractStubsSourceInfoFromApiStubsProviders(provider, Everything) |
| 838 | return errors.Join(extractApiInfoErr, extractStubsSourceInfoErr) |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 839 | }) |
| 840 | } |
| 841 | |
Jihoon Kang | 5623e54 | 2024-01-31 23:27:26 +0000 | [diff] [blame] | 842 | func extractOutputPaths(dep android.Module) (android.Paths, error) { |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 843 | var paths android.Paths |
| 844 | if sourceFileProducer, ok := dep.(android.SourceFileProducer); ok { |
| 845 | paths = sourceFileProducer.Srcs() |
Jihoon Kang | 5623e54 | 2024-01-31 23:27:26 +0000 | [diff] [blame] | 846 | return paths, nil |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 847 | } else { |
Jihoon Kang | 5623e54 | 2024-01-31 23:27:26 +0000 | [diff] [blame] | 848 | return nil, fmt.Errorf("module %q does not produce source files", dep) |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 849 | } |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 850 | } |
| 851 | |
| 852 | func (paths *scopePaths) extractLatestApiPath(ctx android.ModuleContext, dep android.Module) error { |
Jihoon Kang | 5623e54 | 2024-01-31 23:27:26 +0000 | [diff] [blame] | 853 | outputPaths, err := extractOutputPaths(dep) |
| 854 | paths.latestApiPaths = outputPaths |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 855 | return err |
| 856 | } |
| 857 | |
| 858 | func (paths *scopePaths) extractLatestRemovedApiPath(ctx android.ModuleContext, dep android.Module) error { |
Jihoon Kang | 5623e54 | 2024-01-31 23:27:26 +0000 | [diff] [blame] | 859 | outputPaths, err := extractOutputPaths(dep) |
| 860 | paths.latestRemovedApiPaths = outputPaths |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 861 | return err |
| 862 | } |
| 863 | |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 864 | type commonToSdkLibraryAndImportProperties struct { |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 865 | // The naming scheme to use for the components that this module creates. |
| 866 | // |
Paul Duffin | ee9ad5d | 2020-09-11 13:04:05 +0100 | [diff] [blame] | 867 | // If not specified then it defaults to "default". |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 868 | // |
| 869 | // This is a temporary mechanism to simplify conversion from separate modules for each |
| 870 | // component that follow a different naming pattern to the default one. |
| 871 | // |
| 872 | // TODO(b/155480189) - Remove once naming inconsistencies have been resolved. |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 873 | Naming_scheme *string |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 874 | |
| 875 | // Specifies whether this module can be used as an Android shared library; defaults |
| 876 | // to true. |
| 877 | // |
| 878 | // An Android shared library is one that can be referenced in a <uses-library> element |
| 879 | // in an AndroidManifest.xml. |
| 880 | Shared_library *bool |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 881 | |
| 882 | // Files containing information about supported java doc tags. |
| 883 | Doctag_files []string `android:"path"` |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 884 | |
| 885 | // Signals that this shared library is part of the bootclasspath starting |
| 886 | // on the version indicated in this attribute. |
| 887 | // |
| 888 | // This will make platforms at this level and above to ignore |
| 889 | // <uses-library> tags with this library name because the library is already |
| 890 | // available |
| 891 | On_bootclasspath_since *string |
| 892 | |
| 893 | // Signals that this shared library was part of the bootclasspath before |
| 894 | // (but not including) the version indicated in this attribute. |
| 895 | // |
| 896 | // The system will automatically add a <uses-library> tag with this library to |
| 897 | // apps that target any SDK less than the version indicated in this attribute. |
| 898 | On_bootclasspath_before *string |
| 899 | |
| 900 | // Indicates that PackageManager should ignore this shared library if the |
| 901 | // platform is below the version indicated in this attribute. |
| 902 | // |
| 903 | // This means that the device won't recognise this library as installed. |
| 904 | Min_device_sdk *string |
| 905 | |
| 906 | // Indicates that PackageManager should ignore this shared library if the |
| 907 | // platform is above the version indicated in this attribute. |
| 908 | // |
| 909 | // This means that the device won't recognise this library as installed. |
| 910 | Max_device_sdk *string |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 911 | } |
| 912 | |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 913 | // commonSdkLibraryAndImportModule defines the interface that must be provided by a module that |
| 914 | // embeds the commonToSdkLibraryAndImport struct. |
| 915 | type commonSdkLibraryAndImportModule interface { |
Paul Duffin | d796f6f | 2022-11-23 23:06:05 +0000 | [diff] [blame] | 916 | android.Module |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 917 | |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 918 | // Returns the name of the root java_sdk_library that creates the child stub libraries |
| 919 | // This is the `name` as it appears in Android.bp, and not the name in Soong's build graph |
| 920 | // (with the prebuilt_ prefix) |
| 921 | // |
| 922 | // e.g. in the following java_sdk_library_import |
| 923 | // java_sdk_library_import { |
| 924 | // name: "framework-foo.v1", |
| 925 | // source_module_name: "framework-foo", |
| 926 | // } |
| 927 | // the values returned by |
| 928 | // 1. Name(): prebuilt_framework-foo.v1 # unique |
| 929 | // 2. BaseModuleName(): framework-foo # the source |
| 930 | // 3. RootLibraryName: framework-foo.v1 # the undecordated `name` from Android.bp |
| 931 | RootLibraryName() string |
| 932 | } |
| 933 | |
| 934 | func (m *SdkLibrary) RootLibraryName() string { |
| 935 | return m.BaseModuleName() |
| 936 | } |
| 937 | |
| 938 | func (m *SdkLibraryImport) RootLibraryName() string { |
| 939 | // m.BaseModuleName refers to the source of the import |
| 940 | // use moduleBase.Name to get the name of the module as it appears in the .bp file |
| 941 | return m.ModuleBase.Name() |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 942 | } |
| 943 | |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 944 | // Common code between sdk library and sdk library import |
| 945 | type commonToSdkLibraryAndImport struct { |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 946 | module commonSdkLibraryAndImportModule |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 947 | |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 948 | scopePaths map[*apiScope]*scopePaths |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 949 | |
| 950 | namingScheme sdkLibraryComponentNamingScheme |
| 951 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 952 | commonSdkLibraryProperties commonToSdkLibraryAndImportProperties |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 953 | |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 954 | // Paths to commonSdkLibraryProperties.Doctag_files |
| 955 | doctagPaths android.Paths |
| 956 | |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 957 | // Functionality related to this being used as a component of a java_sdk_library. |
| 958 | EmbeddableSdkLibraryComponent |
Jihoon Kang | 8479dea | 2024-04-04 01:19:05 +0000 | [diff] [blame] | 959 | |
| 960 | // Path to the header jars of the implementation library |
| 961 | // This is non-empty only when api_only is false. |
| 962 | implLibraryHeaderJars android.Paths |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 963 | |
| 964 | // The reference to the implementation library created by the source module. |
| 965 | // Is nil if the source module does not exist. |
| 966 | implLibraryModule *Library |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 967 | } |
| 968 | |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 969 | func (c *commonToSdkLibraryAndImport) initCommon(module commonSdkLibraryAndImportModule) { |
| 970 | c.module = module |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 971 | |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 972 | module.AddProperties(&c.commonSdkLibraryProperties) |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 973 | |
| 974 | // Initialize this as an sdk library component. |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 975 | c.initSdkLibraryComponent(module) |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 976 | } |
| 977 | |
| 978 | func (c *commonToSdkLibraryAndImport) initCommonAfterDefaultsApplied(ctx android.DefaultableHookContext) bool { |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 979 | schemeProperty := proptools.StringDefault(c.commonSdkLibraryProperties.Naming_scheme, "default") |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 980 | switch schemeProperty { |
| 981 | case "default": |
| 982 | c.namingScheme = &defaultNamingScheme{} |
| 983 | default: |
| 984 | ctx.PropertyErrorf("naming_scheme", "expected 'default' but was %q", schemeProperty) |
| 985 | return false |
| 986 | } |
| 987 | |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 988 | namePtr := proptools.StringPtr(c.module.RootLibraryName()) |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame] | 989 | c.sdkLibraryComponentProperties.SdkLibraryName = namePtr |
| 990 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 991 | // Only track this sdk library if this can be used as a shared library. |
| 992 | if c.sharedLibrary() { |
| 993 | // Use the name specified in the module definition as the owner. |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame] | 994 | c.sdkLibraryComponentProperties.SdkLibraryToImplicitlyTrack = namePtr |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 995 | } |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 996 | |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 997 | return true |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 998 | } |
| 999 | |
Paul Duffin | ea8f808 | 2021-06-24 13:25:57 +0100 | [diff] [blame] | 1000 | // uniqueApexVariations provides common implementation of the ApexModule.UniqueApexVariations |
| 1001 | // method. |
| 1002 | func (c *commonToSdkLibraryAndImport) uniqueApexVariations() bool { |
| 1003 | // A java_sdk_library that is a shared library produces an XML file that makes the shared library |
| 1004 | // usable from an AndroidManifest.xml's <uses-library> entry. That XML file contains the name of |
| 1005 | // the APEX and so it needs a unique variation per APEX. |
| 1006 | return c.sharedLibrary() |
| 1007 | } |
| 1008 | |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 1009 | func (c *commonToSdkLibraryAndImport) generateCommonBuildActions(ctx android.ModuleContext) { |
| 1010 | c.doctagPaths = android.PathsForModuleSrc(ctx, c.commonSdkLibraryProperties.Doctag_files) |
| 1011 | } |
| 1012 | |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1013 | func (c *commonToSdkLibraryAndImport) getImplLibraryModule() *Library { |
| 1014 | return c.implLibraryModule |
| 1015 | } |
| 1016 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1017 | // Module name of the runtime implementation library |
| 1018 | func (c *commonToSdkLibraryAndImport) implLibraryModuleName() string { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 1019 | return c.module.RootLibraryName() + ".impl" |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1020 | } |
| 1021 | |
| 1022 | // Module name of the XML file for the lib |
| 1023 | func (c *commonToSdkLibraryAndImport) xmlPermissionsModuleName() string { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 1024 | return c.module.RootLibraryName() + sdkXmlFileSuffix |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1025 | } |
| 1026 | |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 1027 | // Name of the java_library module that compiles the stubs source. |
| 1028 | func (c *commonToSdkLibraryAndImport) stubsLibraryModuleName(apiScope *apiScope) string { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 1029 | baseName := c.module.RootLibraryName() |
Paul Duffin | 2178762 | 2022-11-25 12:48:20 +0000 | [diff] [blame] | 1030 | return c.namingScheme.stubsLibraryModuleName(apiScope, baseName) |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 1031 | } |
| 1032 | |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 1033 | // Name of the java_library module that compiles the exportable stubs source. |
| 1034 | func (c *commonToSdkLibraryAndImport) exportableStubsLibraryModuleName(apiScope *apiScope) string { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 1035 | baseName := c.module.RootLibraryName() |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 1036 | return c.namingScheme.exportableStubsLibraryModuleName(apiScope, baseName) |
| 1037 | } |
| 1038 | |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 1039 | // Name of the droidstubs module that generates the stubs source and may also |
| 1040 | // generate/check the API. |
| 1041 | func (c *commonToSdkLibraryAndImport) stubsSourceModuleName(apiScope *apiScope) string { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 1042 | baseName := c.module.RootLibraryName() |
Paul Duffin | 2178762 | 2022-11-25 12:48:20 +0000 | [diff] [blame] | 1043 | return c.namingScheme.stubsSourceModuleName(apiScope, baseName) |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 1044 | } |
| 1045 | |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 1046 | // Name of the java_api_library module that generates the from-text stubs source |
| 1047 | // and compiles to a jar file. |
| 1048 | func (c *commonToSdkLibraryAndImport) apiLibraryModuleName(apiScope *apiScope) string { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 1049 | baseName := c.module.RootLibraryName() |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 1050 | return c.namingScheme.apiLibraryModuleName(apiScope, baseName) |
| 1051 | } |
| 1052 | |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 1053 | // Name of the java_library module that compiles the stubs |
| 1054 | // generated from source Java files. |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 1055 | func (c *commonToSdkLibraryAndImport) sourceStubsLibraryModuleName(apiScope *apiScope) string { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 1056 | baseName := c.module.RootLibraryName() |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 1057 | return c.namingScheme.sourceStubsLibraryModuleName(apiScope, baseName) |
| 1058 | } |
| 1059 | |
| 1060 | // Name of the java_library module that compiles the exportable stubs |
| 1061 | // generated from source Java files. |
| 1062 | func (c *commonToSdkLibraryAndImport) exportableSourceStubsLibraryModuleName(apiScope *apiScope) string { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 1063 | baseName := c.module.RootLibraryName() |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 1064 | return c.namingScheme.exportableSourceStubsLibraryModuleName(apiScope, baseName) |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 1065 | } |
| 1066 | |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 1067 | // The component names for different outputs of the java_sdk_library. |
| 1068 | // |
| 1069 | // They are similar to the names used for the child modules it creates |
| 1070 | const ( |
| 1071 | stubsSourceComponentName = "stubs.source" |
| 1072 | |
| 1073 | apiTxtComponentName = "api.txt" |
| 1074 | |
| 1075 | removedApiTxtComponentName = "removed-api.txt" |
Anton Hansson | d78eb76 | 2021-09-21 15:25:12 +0100 | [diff] [blame] | 1076 | |
| 1077 | annotationsComponentName = "annotations.zip" |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 1078 | ) |
| 1079 | |
| 1080 | // A regular expression to match tags that reference a specific stubs component. |
| 1081 | // |
| 1082 | // It will only match if given a valid scope and a valid component. It is verfy strict |
| 1083 | // to ensure it does not accidentally match a similar looking tag that should be processed |
| 1084 | // by the embedded Library. |
| 1085 | var tagSplitter = func() *regexp.Regexp { |
| 1086 | // Given a list of literal string items returns a regular expression that will |
| 1087 | // match any one of the items. |
| 1088 | choice := func(items ...string) string { |
| 1089 | return `\Q` + strings.Join(items, `\E|\Q`) + `\E` |
| 1090 | } |
| 1091 | |
| 1092 | // Regular expression to match one of the scopes. |
| 1093 | scopesRegexp := choice(allScopeNames...) |
| 1094 | |
| 1095 | // Regular expression to match one of the components. |
Anton Hansson | d78eb76 | 2021-09-21 15:25:12 +0100 | [diff] [blame] | 1096 | componentsRegexp := choice(stubsSourceComponentName, apiTxtComponentName, removedApiTxtComponentName, annotationsComponentName) |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 1097 | |
| 1098 | // Regular expression to match any combination of one scope and one component. |
| 1099 | return regexp.MustCompile(fmt.Sprintf(`^\.(%s)\.(%s)$`, scopesRegexp, componentsRegexp)) |
| 1100 | }() |
| 1101 | |
| 1102 | // For OutputFileProducer interface |
| 1103 | // |
Anton Hansson | d78eb76 | 2021-09-21 15:25:12 +0100 | [diff] [blame] | 1104 | // .<scope>.<component name>, for all ComponentNames (for example: .public.removed-api.txt) |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 1105 | func (c *commonToSdkLibraryAndImport) commonOutputFiles(tag string) (android.Paths, error) { |
| 1106 | if groups := tagSplitter.FindStringSubmatch(tag); groups != nil { |
| 1107 | scopeName := groups[1] |
| 1108 | component := groups[2] |
| 1109 | |
| 1110 | if scope, ok := scopeByName[scopeName]; ok { |
| 1111 | paths := c.findScopePaths(scope) |
| 1112 | if paths == nil { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 1113 | return nil, fmt.Errorf("%q does not provide api scope %s", c.module.RootLibraryName(), scopeName) |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 1114 | } |
| 1115 | |
| 1116 | switch component { |
| 1117 | case stubsSourceComponentName: |
| 1118 | if paths.stubsSrcJar.Valid() { |
| 1119 | return android.Paths{paths.stubsSrcJar.Path()}, nil |
| 1120 | } |
| 1121 | |
| 1122 | case apiTxtComponentName: |
| 1123 | if paths.currentApiFilePath.Valid() { |
| 1124 | return android.Paths{paths.currentApiFilePath.Path()}, nil |
| 1125 | } |
| 1126 | |
| 1127 | case removedApiTxtComponentName: |
| 1128 | if paths.removedApiFilePath.Valid() { |
| 1129 | return android.Paths{paths.removedApiFilePath.Path()}, nil |
| 1130 | } |
Anton Hansson | d78eb76 | 2021-09-21 15:25:12 +0100 | [diff] [blame] | 1131 | |
| 1132 | case annotationsComponentName: |
| 1133 | if paths.annotationsZip.Valid() { |
| 1134 | return android.Paths{paths.annotationsZip.Path()}, nil |
| 1135 | } |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | return nil, fmt.Errorf("%s not available for api scope %s", component, scopeName) |
| 1139 | } else { |
| 1140 | return nil, fmt.Errorf("unknown scope %s in %s", scope, tag) |
| 1141 | } |
| 1142 | |
| 1143 | } else { |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 1144 | switch tag { |
| 1145 | case ".doctags": |
| 1146 | if c.doctagPaths != nil { |
| 1147 | return c.doctagPaths, nil |
| 1148 | } else { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 1149 | return nil, fmt.Errorf("no doctag_files specified on %s", c.module.RootLibraryName()) |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 1150 | } |
| 1151 | } |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 1152 | return nil, nil |
| 1153 | } |
| 1154 | } |
| 1155 | |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 1156 | func (c *commonToSdkLibraryAndImport) getScopePathsCreateIfNeeded(scope *apiScope) *scopePaths { |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 1157 | if c.scopePaths == nil { |
| 1158 | c.scopePaths = make(map[*apiScope]*scopePaths) |
| 1159 | } |
| 1160 | paths := c.scopePaths[scope] |
| 1161 | if paths == nil { |
| 1162 | paths = &scopePaths{} |
| 1163 | c.scopePaths[scope] = paths |
| 1164 | } |
| 1165 | |
| 1166 | return paths |
| 1167 | } |
| 1168 | |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 1169 | func (c *commonToSdkLibraryAndImport) findScopePaths(scope *apiScope) *scopePaths { |
| 1170 | if c.scopePaths == nil { |
| 1171 | return nil |
| 1172 | } |
| 1173 | |
| 1174 | return c.scopePaths[scope] |
| 1175 | } |
| 1176 | |
| 1177 | // If this does not support the requested api scope then find the closest available |
| 1178 | // scope it does support. Returns nil if no such scope is available. |
| 1179 | func (c *commonToSdkLibraryAndImport) findClosestScopePath(scope *apiScope) *scopePaths { |
Paul Duffin | d0b9fca | 2022-09-30 18:11:41 +0100 | [diff] [blame] | 1180 | for s := scope; s != nil; s = s.canAccess { |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 1181 | if paths := c.findScopePaths(s); paths != nil { |
| 1182 | return paths |
| 1183 | } |
| 1184 | } |
| 1185 | |
| 1186 | // This should never happen outside tests as public should be the base scope for every |
| 1187 | // scope and is enabled by default. |
| 1188 | return nil |
| 1189 | } |
| 1190 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1191 | func (c *commonToSdkLibraryAndImport) selectHeaderJarsForSdkVersion(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths { |
Paul Duffin | b05d429 | 2020-05-20 12:19:10 +0100 | [diff] [blame] | 1192 | |
| 1193 | // If a specific numeric version has been requested then use prebuilt versions of the sdk. |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame] | 1194 | if !sdkVersion.ApiLevel.IsPreview() { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 1195 | return PrebuiltJars(ctx, c.module.RootLibraryName(), sdkVersion) |
Paul Duffin | b05d429 | 2020-05-20 12:19:10 +0100 | [diff] [blame] | 1196 | } |
| 1197 | |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 1198 | paths := c.selectScopePaths(ctx, sdkVersion.Kind) |
| 1199 | if paths == nil { |
| 1200 | return nil |
| 1201 | } |
| 1202 | |
| 1203 | return paths.stubsHeaderPath |
| 1204 | } |
| 1205 | |
| 1206 | // selectScopePaths returns the *scopePaths appropriate for the specific kind. |
| 1207 | // |
| 1208 | // If the module does not support the specific kind then it will return the *scopePaths for the |
| 1209 | // closest kind which is a subset of the requested kind. e.g. if requesting android.SdkModule then |
| 1210 | // it will return *scopePaths for android.SdkSystem if available or android.SdkPublic of not. |
| 1211 | func (c *commonToSdkLibraryAndImport) selectScopePaths(ctx android.BaseModuleContext, kind android.SdkKind) *scopePaths { |
Paul Duffin | 32cf58a | 2021-05-18 16:32:50 +0100 | [diff] [blame] | 1212 | apiScope := sdkKindToApiScope(kind) |
Paul Duffin | b05d429 | 2020-05-20 12:19:10 +0100 | [diff] [blame] | 1213 | |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 1214 | paths := c.findClosestScopePath(apiScope) |
| 1215 | if paths == nil { |
| 1216 | var scopes []string |
Jihoon Kang | 98aa8fa | 2024-06-07 11:06:57 +0000 | [diff] [blame] | 1217 | for _, s := range AllApiScopes { |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 1218 | if c.findScopePaths(s) != nil { |
| 1219 | scopes = append(scopes, s.name) |
| 1220 | } |
| 1221 | } |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 1222 | ctx.ModuleErrorf("requires api scope %s from %s but it only has %q available", apiScope.name, c.module.RootLibraryName(), scopes) |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 1223 | return nil |
| 1224 | } |
| 1225 | |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 1226 | return paths |
| 1227 | } |
| 1228 | |
Paul Duffin | 32cf58a | 2021-05-18 16:32:50 +0100 | [diff] [blame] | 1229 | // sdkKindToApiScope maps from android.SdkKind to apiScope. |
| 1230 | func sdkKindToApiScope(kind android.SdkKind) *apiScope { |
| 1231 | var apiScope *apiScope |
| 1232 | switch kind { |
| 1233 | case android.SdkSystem: |
| 1234 | apiScope = apiScopeSystem |
| 1235 | case android.SdkModule: |
| 1236 | apiScope = apiScopeModuleLib |
| 1237 | case android.SdkTest: |
| 1238 | apiScope = apiScopeTest |
| 1239 | case android.SdkSystemServer: |
| 1240 | apiScope = apiScopeSystemServer |
| 1241 | default: |
| 1242 | apiScope = apiScopePublic |
| 1243 | } |
| 1244 | return apiScope |
| 1245 | } |
| 1246 | |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 1247 | // to satisfy SdkLibraryDependency interface |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 1248 | func (c *commonToSdkLibraryAndImport) SdkApiStubDexJar(ctx android.BaseModuleContext, kind android.SdkKind) OptionalDexJarPath { |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 1249 | paths := c.selectScopePaths(ctx, kind) |
| 1250 | if paths == nil { |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 1251 | return makeUnsetDexJarPath() |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 1252 | } |
| 1253 | |
| 1254 | return paths.stubsDexJarPath |
Paul Duffin | b05d429 | 2020-05-20 12:19:10 +0100 | [diff] [blame] | 1255 | } |
| 1256 | |
Paul Duffin | 32cf58a | 2021-05-18 16:32:50 +0100 | [diff] [blame] | 1257 | // to satisfy SdkLibraryDependency interface |
Jihoon Kang | bd09345 | 2023-12-26 19:08:01 +0000 | [diff] [blame] | 1258 | func (c *commonToSdkLibraryAndImport) SdkApiExportableStubDexJar(ctx android.BaseModuleContext, kind android.SdkKind) OptionalDexJarPath { |
| 1259 | paths := c.selectScopePaths(ctx, kind) |
| 1260 | if paths == nil { |
| 1261 | return makeUnsetDexJarPath() |
| 1262 | } |
| 1263 | |
| 1264 | return paths.exportableStubsDexJarPath |
| 1265 | } |
| 1266 | |
| 1267 | // to satisfy SdkLibraryDependency interface |
Paul Duffin | 32cf58a | 2021-05-18 16:32:50 +0100 | [diff] [blame] | 1268 | func (c *commonToSdkLibraryAndImport) SdkRemovedTxtFile(ctx android.BaseModuleContext, kind android.SdkKind) android.OptionalPath { |
| 1269 | apiScope := sdkKindToApiScope(kind) |
| 1270 | paths := c.findScopePaths(apiScope) |
| 1271 | if paths == nil { |
| 1272 | return android.OptionalPath{} |
| 1273 | } |
| 1274 | |
| 1275 | return paths.removedApiFilePath |
| 1276 | } |
| 1277 | |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1278 | func (c *commonToSdkLibraryAndImport) sdkComponentPropertiesForChildLibrary() interface{} { |
| 1279 | componentProps := &struct { |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame] | 1280 | SdkLibraryName *string |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1281 | SdkLibraryToImplicitlyTrack *string |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1282 | }{} |
| 1283 | |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 1284 | namePtr := proptools.StringPtr(c.module.RootLibraryName()) |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame] | 1285 | componentProps.SdkLibraryName = namePtr |
| 1286 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1287 | if c.sharedLibrary() { |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1288 | // Mark the stubs library as being components of this java_sdk_library so that |
| 1289 | // any app that includes code which depends (directly or indirectly) on the stubs |
| 1290 | // library will have the appropriate <uses-library> invocation inserted into its |
| 1291 | // manifest if necessary. |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame] | 1292 | componentProps.SdkLibraryToImplicitlyTrack = namePtr |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1293 | } |
| 1294 | |
| 1295 | return componentProps |
| 1296 | } |
| 1297 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1298 | func (c *commonToSdkLibraryAndImport) sharedLibrary() bool { |
| 1299 | return proptools.BoolDefault(c.commonSdkLibraryProperties.Shared_library, true) |
| 1300 | } |
| 1301 | |
Paul Duffin | f4600f6 | 2021-05-13 22:34:45 +0100 | [diff] [blame] | 1302 | // Check if the stub libraries should be compiled for dex |
| 1303 | func (c *commonToSdkLibraryAndImport) stubLibrariesCompiledForDex() bool { |
| 1304 | // Always compile the dex file files for the stub libraries if they will be used on the |
| 1305 | // bootclasspath. |
| 1306 | return !c.sharedLibrary() |
| 1307 | } |
| 1308 | |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1309 | // Properties related to the use of a module as an component of a java_sdk_library. |
| 1310 | type SdkLibraryComponentProperties struct { |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame] | 1311 | // The name of the java_sdk_library/_import module. |
| 1312 | SdkLibraryName *string `blueprint:"mutated"` |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1313 | |
| 1314 | // The name of the java_sdk_library/_import to add to a <uses-library> entry |
| 1315 | // in the AndroidManifest.xml of any Android app that includes code that references |
| 1316 | // this module. If not set then no java_sdk_library/_import is tracked. |
| 1317 | SdkLibraryToImplicitlyTrack *string `blueprint:"mutated"` |
| 1318 | } |
| 1319 | |
| 1320 | // Structure to be embedded in a module struct that needs to support the |
| 1321 | // SdkLibraryComponentDependency interface. |
| 1322 | type EmbeddableSdkLibraryComponent struct { |
| 1323 | sdkLibraryComponentProperties SdkLibraryComponentProperties |
| 1324 | } |
| 1325 | |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 1326 | func (e *EmbeddableSdkLibraryComponent) initSdkLibraryComponent(module android.Module) { |
| 1327 | module.AddProperties(&e.sdkLibraryComponentProperties) |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1328 | } |
| 1329 | |
| 1330 | // to satisfy SdkLibraryComponentDependency |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame] | 1331 | func (e *EmbeddableSdkLibraryComponent) SdkLibraryName() *string { |
| 1332 | return e.sdkLibraryComponentProperties.SdkLibraryName |
| 1333 | } |
| 1334 | |
| 1335 | // to satisfy SdkLibraryComponentDependency |
Ulya Trafimovich | 39b437b | 2020-09-23 16:42:35 +0100 | [diff] [blame] | 1336 | func (e *EmbeddableSdkLibraryComponent) OptionalSdkLibraryImplementation() *string { |
Ulya Trafimovich | 78645fb | 2021-07-16 15:29:25 +0100 | [diff] [blame] | 1337 | // For shared libraries, this is the same as the SDK library name. If a Java library or app |
| 1338 | // depends on a component library (e.g. a stub library) it still needs to know the name of the |
| 1339 | // run-time library and the corresponding module that provides the implementation. This name is |
| 1340 | // passed to manifest_fixer (to be added to AndroidManifest.xml) and added to CLC (to be used |
| 1341 | // in dexpreopt). |
| 1342 | // |
| 1343 | // For non-shared SDK (component or not) libraries this returns `nil`, as they are not |
| 1344 | // <uses-library> and should not be added to the manifest or to CLC. |
Ulya Trafimovich | 39b437b | 2020-09-23 16:42:35 +0100 | [diff] [blame] | 1345 | return e.sdkLibraryComponentProperties.SdkLibraryToImplicitlyTrack |
| 1346 | } |
| 1347 | |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1348 | // Implemented by modules that are (or possibly could be) a component of a java_sdk_library |
| 1349 | // (including the java_sdk_library) itself. |
| 1350 | type SdkLibraryComponentDependency interface { |
Ulya Trafimovich | 31e444e | 2020-08-14 17:32:16 +0100 | [diff] [blame] | 1351 | UsesLibraryDependency |
| 1352 | |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame] | 1353 | // SdkLibraryName returns the name of the java_sdk_library/_import module. |
| 1354 | SdkLibraryName() *string |
| 1355 | |
Ulya Trafimovich | 39b437b | 2020-09-23 16:42:35 +0100 | [diff] [blame] | 1356 | // The name of the implementation library for the optional SDK library or nil, if there isn't one. |
| 1357 | OptionalSdkLibraryImplementation() *string |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1358 | } |
| 1359 | |
| 1360 | // Make sure that all the module types that are components of java_sdk_library/_import |
| 1361 | // and which can be referenced (directly or indirectly) from an android app implement |
| 1362 | // the SdkLibraryComponentDependency interface. |
| 1363 | var _ SdkLibraryComponentDependency = (*Library)(nil) |
| 1364 | var _ SdkLibraryComponentDependency = (*Import)(nil) |
| 1365 | var _ SdkLibraryComponentDependency = (*SdkLibrary)(nil) |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1366 | var _ SdkLibraryComponentDependency = (*SdkLibraryImport)(nil) |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1367 | |
Paul Duffin | 32cf58a | 2021-05-18 16:32:50 +0100 | [diff] [blame] | 1368 | // Provides access to sdk_version related files, e.g. header and implementation jars. |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1369 | type SdkLibraryDependency interface { |
| 1370 | SdkLibraryComponentDependency |
| 1371 | |
| 1372 | // Get the header jars appropriate for the supplied sdk_version. |
| 1373 | // |
| 1374 | // These are turbine generated jars so they only change if the externals of the |
| 1375 | // class changes but it does not contain and implementation or JavaDoc. |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1376 | SdkHeaderJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1377 | |
Jihoon Kang | bd09345 | 2023-12-26 19:08:01 +0000 | [diff] [blame] | 1378 | // SdkApiStubDexJar returns the dex jar for the stubs for the prebuilt |
| 1379 | // java_sdk_library_import module. It is needed by the hiddenapi processing tool which |
| 1380 | // processes dex files. |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 1381 | SdkApiStubDexJar(ctx android.BaseModuleContext, kind android.SdkKind) OptionalDexJarPath |
Paul Duffin | f4600f6 | 2021-05-13 22:34:45 +0100 | [diff] [blame] | 1382 | |
Jihoon Kang | bd09345 | 2023-12-26 19:08:01 +0000 | [diff] [blame] | 1383 | // SdkApiExportableStubDexJar returns the exportable dex jar for the stubs for |
| 1384 | // java_sdk_library module. It is needed by the hiddenapi processing tool which processes |
| 1385 | // dex files. |
| 1386 | SdkApiExportableStubDexJar(ctx android.BaseModuleContext, kind android.SdkKind) OptionalDexJarPath |
| 1387 | |
Paul Duffin | 32cf58a | 2021-05-18 16:32:50 +0100 | [diff] [blame] | 1388 | // SdkRemovedTxtFile returns the optional path to the removed.txt file for the specified sdk kind. |
| 1389 | SdkRemovedTxtFile(ctx android.BaseModuleContext, kind android.SdkKind) android.OptionalPath |
| 1390 | |
Paul Duffin | f4600f6 | 2021-05-13 22:34:45 +0100 | [diff] [blame] | 1391 | // sharedLibrary returns true if this can be used as a shared library. |
| 1392 | sharedLibrary() bool |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1393 | |
| 1394 | getImplLibraryModule() *Library |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1395 | } |
| 1396 | |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1397 | type SdkLibrary struct { |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1398 | Library |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1399 | |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1400 | sdkLibraryProperties sdkLibraryProperties |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1401 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1402 | // Map from api scope to the scope specific property structure. |
| 1403 | scopeToProperties map[*apiScope]*ApiScopeProperties |
| 1404 | |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 1405 | commonToSdkLibraryAndImport |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1406 | |
| 1407 | builtInstalledForApex []dexpreopterInstall |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1408 | } |
| 1409 | |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1410 | var _ SdkLibraryDependency = (*SdkLibrary)(nil) |
Colin Cross | 897d2ed | 2019-02-11 14:03:51 -0800 | [diff] [blame] | 1411 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1412 | func (module *SdkLibrary) generateTestAndSystemScopesByDefault() bool { |
| 1413 | return module.sdkLibraryProperties.Generate_system_and_test_apis |
| 1414 | } |
| 1415 | |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1416 | func (module *SdkLibrary) DexJarBuildPath(ctx android.ModuleErrorfContext) OptionalDexJarPath { |
| 1417 | if module.implLibraryModule != nil { |
| 1418 | return module.implLibraryModule.DexJarBuildPath(ctx) |
| 1419 | } |
| 1420 | return makeUnsetDexJarPath() |
| 1421 | } |
| 1422 | |
| 1423 | func (module *SdkLibrary) DexJarInstallPath() android.Path { |
| 1424 | if module.implLibraryModule != nil { |
| 1425 | return module.implLibraryModule.DexJarInstallPath() |
| 1426 | } |
| 1427 | return nil |
| 1428 | } |
| 1429 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1430 | func (module *SdkLibrary) getGeneratedApiScopes(ctx android.EarlyModuleContext) apiScopes { |
| 1431 | // Check to see if any scopes have been explicitly enabled. If any have then all |
| 1432 | // must be. |
| 1433 | anyScopesExplicitlyEnabled := false |
Jihoon Kang | 98aa8fa | 2024-06-07 11:06:57 +0000 | [diff] [blame] | 1434 | for _, scope := range AllApiScopes { |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1435 | scopeProperties := module.scopeToProperties[scope] |
| 1436 | if scopeProperties.Enabled != nil { |
| 1437 | anyScopesExplicitlyEnabled = true |
| 1438 | break |
| 1439 | } |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1440 | } |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1441 | |
| 1442 | var generatedScopes apiScopes |
| 1443 | enabledScopes := make(map[*apiScope]struct{}) |
Jihoon Kang | 98aa8fa | 2024-06-07 11:06:57 +0000 | [diff] [blame] | 1444 | for _, scope := range AllApiScopes { |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1445 | scopeProperties := module.scopeToProperties[scope] |
| 1446 | // If any scopes are explicitly enabled then ignore the legacy enabled status. |
| 1447 | // This is to ensure that any new usages of this module type do not rely on legacy |
| 1448 | // behaviour. |
| 1449 | defaultEnabledStatus := false |
| 1450 | if anyScopesExplicitlyEnabled { |
| 1451 | defaultEnabledStatus = scope.defaultEnabledStatus |
| 1452 | } else { |
| 1453 | defaultEnabledStatus = scope.legacyEnabledStatus(module) |
| 1454 | } |
| 1455 | enabled := proptools.BoolDefault(scopeProperties.Enabled, defaultEnabledStatus) |
| 1456 | if enabled { |
| 1457 | enabledScopes[scope] = struct{}{} |
| 1458 | generatedScopes = append(generatedScopes, scope) |
| 1459 | } |
| 1460 | } |
| 1461 | |
| 1462 | // Now check to make sure that any scope that is extended by an enabled scope is also |
| 1463 | // enabled. |
Jihoon Kang | 98aa8fa | 2024-06-07 11:06:57 +0000 | [diff] [blame] | 1464 | for _, scope := range AllApiScopes { |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1465 | if _, ok := enabledScopes[scope]; ok { |
| 1466 | extends := scope.extends |
| 1467 | if extends != nil { |
| 1468 | if _, ok := enabledScopes[extends]; !ok { |
| 1469 | ctx.ModuleErrorf("enabled api scope %q depends on disabled scope %q", scope, extends) |
| 1470 | } |
| 1471 | } |
| 1472 | } |
| 1473 | } |
| 1474 | |
| 1475 | return generatedScopes |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1476 | } |
| 1477 | |
satayev | 758968a | 2021-12-06 11:42:40 +0000 | [diff] [blame] | 1478 | var _ android.ModuleWithMinSdkVersionCheck = (*SdkLibrary)(nil) |
| 1479 | |
satayev | 8f088b0 | 2021-12-06 11:40:46 +0000 | [diff] [blame] | 1480 | func (module *SdkLibrary) CheckMinSdkVersion(ctx android.ModuleContext) { |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1481 | CheckMinSdkVersion(ctx, &module.Library) |
| 1482 | } |
| 1483 | |
| 1484 | func CheckMinSdkVersion(ctx android.ModuleContext, module *Library) { |
Spandan Das | 8c9ae7e | 2023-03-03 21:20:36 +0000 | [diff] [blame] | 1485 | android.CheckMinSdkVersion(ctx, module.MinSdkVersion(ctx), func(c android.ModuleContext, do android.PayloadDepsCallback) { |
satayev | 8f088b0 | 2021-12-06 11:40:46 +0000 | [diff] [blame] | 1486 | ctx.WalkDeps(func(child android.Module, parent android.Module) bool { |
| 1487 | isExternal := !module.depIsInSameApex(ctx, child) |
| 1488 | if am, ok := child.(android.ApexModule); ok { |
| 1489 | if !do(ctx, parent, am, isExternal) { |
| 1490 | return false |
| 1491 | } |
| 1492 | } |
| 1493 | return !isExternal |
| 1494 | }) |
| 1495 | }) |
| 1496 | } |
| 1497 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1498 | type sdkLibraryComponentTag struct { |
| 1499 | blueprint.BaseDependencyTag |
| 1500 | name string |
| 1501 | } |
| 1502 | |
| 1503 | // Mark this tag so dependencies that use it are excluded from visibility enforcement. |
| 1504 | func (t sdkLibraryComponentTag) ExcludeFromVisibilityEnforcement() {} |
| 1505 | |
| 1506 | var xmlPermissionsFileTag = sdkLibraryComponentTag{name: "xml-permissions-file"} |
Paul Duffin | e74ac73 | 2020-02-06 13:51:46 +0000 | [diff] [blame] | 1507 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 1508 | func IsXmlPermissionsFileDepTag(depTag blueprint.DependencyTag) bool { |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1509 | if dt, ok := depTag.(sdkLibraryComponentTag); ok { |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 1510 | return dt == xmlPermissionsFileTag |
| 1511 | } |
| 1512 | return false |
| 1513 | } |
| 1514 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1515 | var implLibraryTag = sdkLibraryComponentTag{name: "impl-library"} |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1516 | |
Jeongik Cha | aaa6dcd | 2024-05-22 00:41:28 +0900 | [diff] [blame] | 1517 | var _ android.InstallNeededDependencyTag = sdkLibraryComponentTag{} |
| 1518 | |
Jihoon Kang | 46d66de | 2024-05-22 22:42:39 +0000 | [diff] [blame] | 1519 | // To satisfy the CopyDirectlyInAnyApexTag interface. Implementation library of the sdk library |
| 1520 | // in an apex is considered to be directly in the apex, as if it was listed in java_libs. |
| 1521 | func (t sdkLibraryComponentTag) CopyDirectlyInAnyApex() {} |
| 1522 | |
| 1523 | var _ android.CopyDirectlyInAnyApexTag = implLibraryTag |
| 1524 | |
Jeongik Cha | aaa6dcd | 2024-05-22 00:41:28 +0900 | [diff] [blame] | 1525 | func (t sdkLibraryComponentTag) InstallDepNeeded() bool { |
| 1526 | return t.name == "xml-permissions-file" || t.name == "impl-library" |
| 1527 | } |
| 1528 | |
Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 1529 | // Add the dependencies on the child modules in the component deps mutator. |
| 1530 | func (module *SdkLibrary) ComponentDepsMutator(ctx android.BottomUpMutatorContext) { |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1531 | for _, apiScope := range module.getGeneratedApiScopes(ctx) { |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1532 | // Add dependencies to the stubs library |
Spandan Das | 877f39d | 2023-03-29 16:19:51 +0000 | [diff] [blame] | 1533 | stubModuleName := module.stubsLibraryModuleName(apiScope) |
Jihoon Kang | bd09345 | 2023-12-26 19:08:01 +0000 | [diff] [blame] | 1534 | ctx.AddVariationDependencies(nil, apiScope.everythingStubsTag, stubModuleName) |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 1535 | |
Jihoon Kang | bd09345 | 2023-12-26 19:08:01 +0000 | [diff] [blame] | 1536 | exportableStubModuleName := module.exportableStubsLibraryModuleName(apiScope) |
| 1537 | ctx.AddVariationDependencies(nil, apiScope.exportableStubsTag, exportableStubModuleName) |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1538 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1539 | // Add a dependency on the stubs source in order to access both stubs source and api information. |
| 1540 | ctx.AddVariationDependencies(nil, apiScope.stubsSourceAndApiTag, module.stubsSourceModuleName(apiScope)) |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 1541 | |
| 1542 | if module.compareAgainstLatestApi(apiScope) { |
| 1543 | // Add dependencies on the latest finalized version of the API .txt file. |
| 1544 | latestApiModuleName := module.latestApiModuleName(apiScope) |
| 1545 | ctx.AddDependency(module, apiScope.latestApiModuleTag, latestApiModuleName) |
| 1546 | |
| 1547 | // Add dependencies on the latest finalized version of the remove API .txt file. |
| 1548 | latestRemovedApiModuleName := module.latestRemovedApiModuleName(apiScope) |
| 1549 | ctx.AddDependency(module, apiScope.latestRemovedApiModuleTag, latestRemovedApiModuleName) |
| 1550 | } |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1551 | } |
| 1552 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1553 | if module.requiresRuntimeImplementationLibrary() { |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1554 | // Add dependency to the rule for generating the implementation library. |
| 1555 | ctx.AddDependency(module, implLibraryTag, module.implLibraryModuleName()) |
| 1556 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1557 | if module.sharedLibrary() { |
| 1558 | // Add dependency to the rule for generating the xml permissions file |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1559 | ctx.AddDependency(module, xmlPermissionsFileTag, module.xmlPermissionsModuleName()) |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1560 | } |
Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 1561 | } |
| 1562 | } |
Paul Duffin | e74ac73 | 2020-02-06 13:51:46 +0000 | [diff] [blame] | 1563 | |
Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 1564 | // Add other dependencies as normal. |
| 1565 | func (module *SdkLibrary) DepsMutator(ctx android.BottomUpMutatorContext) { |
Anton Hansson | e77fccc | 2021-01-20 16:52:41 +0000 | [diff] [blame] | 1566 | var missingApiModules []string |
| 1567 | for _, apiScope := range module.getGeneratedApiScopes(ctx) { |
| 1568 | if apiScope.unstable { |
| 1569 | continue |
| 1570 | } |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 1571 | if m := module.latestApiModuleName(apiScope); !ctx.OtherModuleExists(m) { |
Anton Hansson | e77fccc | 2021-01-20 16:52:41 +0000 | [diff] [blame] | 1572 | missingApiModules = append(missingApiModules, m) |
| 1573 | } |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 1574 | if m := module.latestRemovedApiModuleName(apiScope); !ctx.OtherModuleExists(m) { |
Anton Hansson | e77fccc | 2021-01-20 16:52:41 +0000 | [diff] [blame] | 1575 | missingApiModules = append(missingApiModules, m) |
| 1576 | } |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 1577 | if m := module.latestIncompatibilitiesModuleName(apiScope); !ctx.OtherModuleExists(m) { |
Jaewoong Jung | 1a97ee0 | 2021-03-09 13:25:02 -0800 | [diff] [blame] | 1578 | missingApiModules = append(missingApiModules, m) |
| 1579 | } |
Anton Hansson | e77fccc | 2021-01-20 16:52:41 +0000 | [diff] [blame] | 1580 | } |
| 1581 | if len(missingApiModules) != 0 && !module.sdkLibraryProperties.Unsafe_ignore_missing_latest_api { |
| 1582 | m := module.Name() + " is missing tracking files for previously released library versions.\n" |
| 1583 | m += "You need to do one of the following:\n" |
| 1584 | m += "- Add `unsafe_ignore_missing_latest_api: true` to your blueprint (to disable compat tracking)\n" |
| 1585 | m += "- Add a set of prebuilt txt files representing the last released version of this library for compat checking.\n" |
| 1586 | m += " (the current set of API files can be used as a seed for this compatibility tracking\n" |
| 1587 | m += "\n" |
| 1588 | m += "The following filegroup modules are missing:\n " |
| 1589 | m += strings.Join(missingApiModules, "\n ") + "\n" |
| 1590 | 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." |
| 1591 | ctx.ModuleErrorf(m) |
| 1592 | } |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1593 | } |
| 1594 | |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 1595 | func (module *SdkLibrary) OutputFiles(tag string) (android.Paths, error) { |
| 1596 | paths, err := module.commonOutputFiles(tag) |
Colin Cross | 4acaea9 | 2021-12-10 23:05:02 +0000 | [diff] [blame] | 1597 | if paths != nil || err != nil { |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 1598 | return paths, err |
| 1599 | } |
Colin Cross | 4acaea9 | 2021-12-10 23:05:02 +0000 | [diff] [blame] | 1600 | if module.requiresRuntimeImplementationLibrary() { |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1601 | return module.implLibraryModule.OutputFiles(tag) |
Colin Cross | 4acaea9 | 2021-12-10 23:05:02 +0000 | [diff] [blame] | 1602 | } |
| 1603 | if tag == "" { |
| 1604 | return nil, nil |
| 1605 | } |
| 1606 | return nil, fmt.Errorf("unsupported module reference tag %q", tag) |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 1607 | } |
| 1608 | |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1609 | func (module *SdkLibrary) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Spandan Das | 5ae65ee | 2024-04-16 22:03:26 +0000 | [diff] [blame] | 1610 | if disableSourceApexVariant(ctx) { |
| 1611 | // Prebuilts are active, do not create the installation rules for the source javalib. |
| 1612 | // Even though the source javalib is not used, we need to hide it to prevent duplicate installation rules. |
| 1613 | // TODO (b/331665856): Implement a principled solution for this. |
| 1614 | module.HideFromMake() |
| 1615 | } |
satayev | 8f088b0 | 2021-12-06 11:40:46 +0000 | [diff] [blame] | 1616 | |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 1617 | module.generateCommonBuildActions(ctx) |
| 1618 | |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1619 | module.stem = proptools.StringDefault(module.overridableProperties.Stem, ctx.ModuleName()) |
| 1620 | |
| 1621 | module.provideHiddenAPIPropertyInfo(ctx) |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1622 | |
Paul Duffin | b97b157 | 2021-04-29 21:50:40 +0100 | [diff] [blame] | 1623 | // Collate the components exported by this module. All scope specific modules are exported but |
| 1624 | // the impl and xml component modules are not. |
| 1625 | exportedComponents := map[string]struct{}{} |
| 1626 | |
Sundong Ahn | 57368eb | 2018-07-06 11:20:23 +0900 | [diff] [blame] | 1627 | // Record the paths to the header jars of the library (stubs and impl). |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1628 | // When this java_sdk_library is depended upon from others via "libs" property, |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1629 | // the recorded paths will be returned depending on the link type of the caller. |
| 1630 | ctx.VisitDirectDeps(func(to android.Module) { |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1631 | tag := ctx.OtherModuleDependencyTag(to) |
| 1632 | |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 1633 | // Extract information from any of the scope specific dependencies. |
| 1634 | if scopeTag, ok := tag.(scopeDependencyTag); ok { |
| 1635 | apiScope := scopeTag.apiScope |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 1636 | scopePaths := module.getScopePathsCreateIfNeeded(apiScope) |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 1637 | |
| 1638 | // Extract information from the dependency. The exact information extracted |
| 1639 | // is determined by the nature of the dependency which is determined by the tag. |
| 1640 | scopeTag.extractDepInfo(ctx, to, scopePaths) |
Paul Duffin | b97b157 | 2021-04-29 21:50:40 +0100 | [diff] [blame] | 1641 | |
| 1642 | exportedComponents[ctx.OtherModuleName(to)] = struct{}{} |
Sundong Ahn | 20e998b | 2018-07-24 11:19:26 +0900 | [diff] [blame] | 1643 | } |
Jihoon Kang | 8479dea | 2024-04-04 01:19:05 +0000 | [diff] [blame] | 1644 | |
| 1645 | if tag == implLibraryTag { |
| 1646 | if dep, ok := android.OtherModuleProvider(ctx, to, JavaInfoProvider); ok { |
| 1647 | module.implLibraryHeaderJars = append(module.implLibraryHeaderJars, dep.HeaderJars...) |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1648 | module.implLibraryModule = to.(*Library) |
| 1649 | android.SetProvider(ctx, JavaInfoProvider, dep) |
Jihoon Kang | 8479dea | 2024-04-04 01:19:05 +0000 | [diff] [blame] | 1650 | } |
| 1651 | } |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1652 | }) |
Paul Duffin | b97b157 | 2021-04-29 21:50:40 +0100 | [diff] [blame] | 1653 | |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1654 | apexInfo, _ := android.ModuleProvider(ctx, android.ApexInfoProvider) |
| 1655 | if !apexInfo.IsForPlatform() { |
| 1656 | module.hideApexVariantFromMake = true |
| 1657 | } |
| 1658 | |
| 1659 | if module.implLibraryModule != nil { |
| 1660 | if ctx.Device() { |
| 1661 | module.classesJarPaths = android.Paths{module.implLibraryModule.implementationJarFile} |
| 1662 | module.bootDexJarPath = module.implLibraryModule.bootDexJarPath |
| 1663 | module.uncompressDexState = module.implLibraryModule.uncompressDexState |
| 1664 | module.active = module.implLibraryModule.active |
| 1665 | } |
| 1666 | |
| 1667 | module.outputFile = module.implLibraryModule.outputFile |
| 1668 | module.dexJarFile = makeDexJarPathFromPath(module.implLibraryModule.dexJarFile.Path()) |
| 1669 | module.headerJarFile = module.implLibraryModule.headerJarFile |
| 1670 | module.implementationAndResourcesJar = module.implLibraryModule.implementationAndResourcesJar |
| 1671 | module.builtInstalledForApex = module.implLibraryModule.builtInstalledForApex |
| 1672 | module.dexpreopter.configPath = module.implLibraryModule.dexpreopter.configPath |
| 1673 | module.dexpreopter.outputProfilePathOnHost = module.implLibraryModule.dexpreopter.outputProfilePathOnHost |
| 1674 | |
Jihoon Kang | 34155e3 | 2024-05-20 19:08:49 +0000 | [diff] [blame] | 1675 | // Properties required for Library.AndroidMkEntries |
| 1676 | module.logtagsSrcs = module.implLibraryModule.logtagsSrcs |
| 1677 | module.dexpreopter.builtInstalled = module.implLibraryModule.dexpreopter.builtInstalled |
| 1678 | module.jacocoReportClassesFile = module.implLibraryModule.jacocoReportClassesFile |
| 1679 | module.dexer.proguardDictionary = module.implLibraryModule.dexer.proguardDictionary |
| 1680 | module.dexer.proguardUsageZip = module.implLibraryModule.dexer.proguardUsageZip |
| 1681 | module.linter.reports = module.implLibraryModule.linter.reports |
| 1682 | |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1683 | if !module.Host() { |
| 1684 | module.hostdexInstallFile = module.implLibraryModule.hostdexInstallFile |
| 1685 | } |
| 1686 | |
| 1687 | android.SetProvider(ctx, blueprint.SrcsFileProviderKey, blueprint.SrcsFileProviderData{SrcPaths: module.implLibraryModule.uniqueSrcFiles.Strings()}) |
| 1688 | } |
| 1689 | |
Paul Duffin | b97b157 | 2021-04-29 21:50:40 +0100 | [diff] [blame] | 1690 | // Make the set of components exported by this module available for use elsewhere. |
Cole Faust | 18994c7 | 2023-02-28 16:02:16 -0800 | [diff] [blame] | 1691 | exportedComponentInfo := android.ExportedComponentsInfo{Components: android.SortedKeys(exportedComponents)} |
Colin Cross | 4021302 | 2023-12-13 15:19:49 -0800 | [diff] [blame] | 1692 | android.SetProvider(ctx, android.ExportedComponentsInfoProvider, exportedComponentInfo) |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 1693 | |
| 1694 | // Provide additional information for inclusion in an sdk's generated .info file. |
| 1695 | additionalSdkInfo := map[string]interface{}{} |
| 1696 | additionalSdkInfo["dist_stem"] = module.distStem() |
Paul Duffin | e840995 | 2022-09-22 16:24:46 +0100 | [diff] [blame] | 1697 | baseModuleName := module.distStem() |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 1698 | scopes := map[string]interface{}{} |
| 1699 | additionalSdkInfo["scopes"] = scopes |
| 1700 | for scope, scopePaths := range module.scopePaths { |
| 1701 | scopeInfo := map[string]interface{}{} |
| 1702 | scopes[scope.name] = scopeInfo |
| 1703 | scopeInfo["current_api"] = scope.snapshotRelativeCurrentApiTxtPath(baseModuleName) |
| 1704 | scopeInfo["removed_api"] = scope.snapshotRelativeRemovedApiTxtPath(baseModuleName) |
Jihoon Kang | 5623e54 | 2024-01-31 23:27:26 +0000 | [diff] [blame] | 1705 | if p := scopePaths.latestApiPaths; len(p) > 0 { |
| 1706 | // The last path in the list is the one that applies to this scope, the |
| 1707 | // preceding ones, if any, are for the scope(s) that it extends. |
| 1708 | scopeInfo["latest_api"] = p[len(p)-1].String() |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 1709 | } |
Jihoon Kang | 5623e54 | 2024-01-31 23:27:26 +0000 | [diff] [blame] | 1710 | if p := scopePaths.latestRemovedApiPaths; len(p) > 0 { |
| 1711 | // The last path in the list is the one that applies to this scope, the |
| 1712 | // preceding ones, if any, are for the scope(s) that it extends. |
| 1713 | scopeInfo["latest_removed_api"] = p[len(p)-1].String() |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 1714 | } |
| 1715 | } |
Colin Cross | 4021302 | 2023-12-13 15:19:49 -0800 | [diff] [blame] | 1716 | android.SetProvider(ctx, android.AdditionalSdkInfoProvider, android.AdditionalSdkInfo{additionalSdkInfo}) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1717 | } |
| 1718 | |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1719 | func (module *SdkLibrary) BuiltInstalledForApex() []dexpreopterInstall { |
| 1720 | return module.builtInstalledForApex |
| 1721 | } |
| 1722 | |
Jiyong Park | 0b0e1b9 | 2019-12-03 13:24:29 +0900 | [diff] [blame] | 1723 | func (module *SdkLibrary) AndroidMkEntries() []android.AndroidMkEntries { |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1724 | if !module.requiresRuntimeImplementationLibrary() { |
Paul Duffin | 43db9be | 2019-12-30 17:35:49 +0000 | [diff] [blame] | 1725 | return nil |
| 1726 | } |
Jiyong Park | 0b0e1b9 | 2019-12-03 13:24:29 +0900 | [diff] [blame] | 1727 | entriesList := module.Library.AndroidMkEntries() |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1728 | entries := &entriesList[0] |
| 1729 | entries.Required = append(entries.Required, module.implLibraryModuleName()) |
Yo Chiang | 07d7507 | 2020-06-05 17:43:19 +0800 | [diff] [blame] | 1730 | if module.sharedLibrary() { |
Yo Chiang | 07d7507 | 2020-06-05 17:43:19 +0800 | [diff] [blame] | 1731 | entries.Required = append(entries.Required, module.xmlPermissionsModuleName()) |
| 1732 | } |
Jiyong Park | 0b0e1b9 | 2019-12-03 13:24:29 +0900 | [diff] [blame] | 1733 | return entriesList |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 1734 | } |
| 1735 | |
Anton Hansson | 5fd5d24 | 2020-03-27 19:43:19 +0000 | [diff] [blame] | 1736 | // The dist path of the stub artifacts |
| 1737 | func (module *SdkLibrary) apiDistPath(apiScope *apiScope) string { |
Colin Cross | f0eace9 | 2021-06-02 13:02:23 -0700 | [diff] [blame] | 1738 | return path.Join("apistubs", module.distGroup(), apiScope.name) |
Anton Hansson | 5fd5d24 | 2020-03-27 19:43:19 +0000 | [diff] [blame] | 1739 | } |
| 1740 | |
Paul Duffin | 12ceb46 | 2019-12-24 20:31:31 +0000 | [diff] [blame] | 1741 | // Get the sdk version for use when compiling the stubs library. |
Paul Duffin | 780c5f4 | 2020-05-12 15:52:55 +0100 | [diff] [blame] | 1742 | func (module *SdkLibrary) sdkVersionForStubsLibrary(mctx android.EarlyModuleContext, apiScope *apiScope) string { |
Paul Duffin | 87a05a3 | 2020-05-12 11:50:28 +0100 | [diff] [blame] | 1743 | scopeProperties := module.scopeToProperties[apiScope] |
| 1744 | if scopeProperties.Sdk_version != nil { |
| 1745 | return proptools.String(scopeProperties.Sdk_version) |
| 1746 | } |
| 1747 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1748 | sdkDep := decodeSdkDep(mctx, android.SdkContext(&module.Library)) |
Paul Duffin | 12ceb46 | 2019-12-24 20:31:31 +0000 | [diff] [blame] | 1749 | if sdkDep.hasStandardLibs() { |
| 1750 | // If building against a standard sdk then use the sdk version appropriate for the scope. |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1751 | return apiScope.sdkVersion |
Paul Duffin | 12ceb46 | 2019-12-24 20:31:31 +0000 | [diff] [blame] | 1752 | } else { |
| 1753 | // Otherwise, use no system module. |
| 1754 | return "none" |
| 1755 | } |
| 1756 | } |
| 1757 | |
Paul Duffin | 3131025 | 2020-11-20 21:26:20 +0000 | [diff] [blame] | 1758 | func (module *SdkLibrary) distStem() string { |
| 1759 | return proptools.StringDefault(module.sdkLibraryProperties.Dist_stem, module.BaseModuleName()) |
| 1760 | } |
| 1761 | |
Colin Cross | 986b69a | 2021-06-01 13:13:40 -0700 | [diff] [blame] | 1762 | // distGroup returns the subdirectory of the dist path of the stub artifacts. |
| 1763 | func (module *SdkLibrary) distGroup() string { |
Colin Cross | 59b92bf | 2021-06-01 14:07:56 -0700 | [diff] [blame] | 1764 | return proptools.StringDefault(module.sdkLibraryProperties.Dist_group, "unknown") |
Colin Cross | 986b69a | 2021-06-01 13:13:40 -0700 | [diff] [blame] | 1765 | } |
| 1766 | |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 1767 | func latestPrebuiltApiModuleName(name string, apiScope *apiScope) string { |
| 1768 | return PrebuiltApiModuleName(name, apiScope.name, "latest") |
| 1769 | } |
| 1770 | |
Jihoon Kang | 748a24d | 2024-03-20 21:29:39 +0000 | [diff] [blame] | 1771 | func latestPrebuiltApiCombinedModuleName(name string, apiScope *apiScope) string { |
| 1772 | return PrebuiltApiCombinedModuleName(name, apiScope.name, "latest") |
| 1773 | } |
| 1774 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1775 | func (module *SdkLibrary) latestApiFilegroupName(apiScope *apiScope) string { |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 1776 | return ":" + module.latestApiModuleName(apiScope) |
| 1777 | } |
| 1778 | |
| 1779 | func (module *SdkLibrary) latestApiModuleName(apiScope *apiScope) string { |
Jihoon Kang | 748a24d | 2024-03-20 21:29:39 +0000 | [diff] [blame] | 1780 | return latestPrebuiltApiCombinedModuleName(module.distStem(), apiScope) |
Jiyong Park | 58c518b | 2018-05-12 22:29:12 +0900 | [diff] [blame] | 1781 | } |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1782 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1783 | func (module *SdkLibrary) latestRemovedApiFilegroupName(apiScope *apiScope) string { |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 1784 | return ":" + module.latestRemovedApiModuleName(apiScope) |
| 1785 | } |
| 1786 | |
| 1787 | func (module *SdkLibrary) latestRemovedApiModuleName(apiScope *apiScope) string { |
Jihoon Kang | 748a24d | 2024-03-20 21:29:39 +0000 | [diff] [blame] | 1788 | return latestPrebuiltApiCombinedModuleName(module.distStem()+"-removed", apiScope) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1789 | } |
| 1790 | |
Jaewoong Jung | 1a97ee0 | 2021-03-09 13:25:02 -0800 | [diff] [blame] | 1791 | func (module *SdkLibrary) latestIncompatibilitiesFilegroupName(apiScope *apiScope) string { |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 1792 | return ":" + module.latestIncompatibilitiesModuleName(apiScope) |
| 1793 | } |
| 1794 | |
| 1795 | func (module *SdkLibrary) latestIncompatibilitiesModuleName(apiScope *apiScope) string { |
| 1796 | return latestPrebuiltApiModuleName(module.distStem()+"-incompatibilities", apiScope) |
Jaewoong Jung | 1a97ee0 | 2021-03-09 13:25:02 -0800 | [diff] [blame] | 1797 | } |
| 1798 | |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 1799 | func (module *SdkLibrary) contributesToApiSurface(c android.Config) bool { |
| 1800 | _, exists := c.GetApiLibraries()[module.Name()] |
| 1801 | return exists |
| 1802 | } |
| 1803 | |
Jihoon Kang | 0c705a4 | 2023-08-02 06:44:57 +0000 | [diff] [blame] | 1804 | // The listed modules are the special java_sdk_libraries where apiScope.kind do not match the |
| 1805 | // api surface that the module contribute to. For example, the public droidstubs and java_library |
| 1806 | // do not contribute to the public api surface, but contributes to the core platform api surface. |
| 1807 | // This method returns the full api surface stub lib that |
| 1808 | // the generated java_api_library should depend on. |
| 1809 | func (module *SdkLibrary) alternativeFullApiSurfaceStubLib() string { |
| 1810 | if val, ok := apiLibraryAdditionalProperties[module.Name()]; ok { |
| 1811 | return val.FullApiSurfaceStubLib |
| 1812 | } |
| 1813 | return "" |
| 1814 | } |
| 1815 | |
| 1816 | // The listed modules' stubs contents do not match the corresponding txt files, |
| 1817 | // but require additional api contributions to generate the full stubs. |
| 1818 | // This method returns the name of the additional api contribution module |
| 1819 | // for corresponding sdk_library modules. |
| 1820 | func (module *SdkLibrary) apiLibraryAdditionalApiContribution() string { |
| 1821 | if val, ok := apiLibraryAdditionalProperties[module.Name()]; ok { |
| 1822 | return val.AdditionalApiContribution |
| 1823 | } |
| 1824 | return "" |
| 1825 | } |
| 1826 | |
Anton Hansson | 944e77d | 2020-08-19 11:40:22 +0100 | [diff] [blame] | 1827 | func childModuleVisibility(childVisibility []string) []string { |
| 1828 | if childVisibility == nil { |
| 1829 | // No child visibility set. The child will use the visibility of the sdk_library. |
| 1830 | return nil |
| 1831 | } |
| 1832 | |
| 1833 | // Prepend an override to ignore the sdk_library's visibility, and rely on the child visibility. |
| 1834 | var visibility []string |
| 1835 | visibility = append(visibility, "//visibility:override") |
| 1836 | visibility = append(visibility, childVisibility...) |
| 1837 | return visibility |
| 1838 | } |
| 1839 | |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1840 | // Creates the implementation java library |
| 1841 | func (module *SdkLibrary) createImplLibrary(mctx android.DefaultableHookContext) { |
Anton Hansson | 944e77d | 2020-08-19 11:40:22 +0100 | [diff] [blame] | 1842 | visibility := childModuleVisibility(module.sdkLibraryProperties.Impl_library_visibility) |
| 1843 | |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1844 | props := struct { |
Paul Duffin | 77590a8 | 2022-04-28 14:13:30 +0000 | [diff] [blame] | 1845 | Name *string |
| 1846 | Visibility []string |
Paul Duffin | 77590a8 | 2022-04-28 14:13:30 +0000 | [diff] [blame] | 1847 | Libs []string |
| 1848 | Static_libs []string |
| 1849 | Apex_available []string |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1850 | Stem *string |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1851 | }{ |
| 1852 | Name: proptools.StringPtr(module.implLibraryModuleName()), |
Anton Hansson | 944e77d | 2020-08-19 11:40:22 +0100 | [diff] [blame] | 1853 | Visibility: visibility, |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1854 | |
| 1855 | Libs: append(module.properties.Libs, module.sdkLibraryProperties.Impl_only_libs...), |
| 1856 | |
| 1857 | Static_libs: append(module.properties.Static_libs, module.sdkLibraryProperties.Impl_only_static_libs...), |
Paul Duffin | 77590a8 | 2022-04-28 14:13:30 +0000 | [diff] [blame] | 1858 | // Pass the apex_available settings down so that the impl library can be statically |
| 1859 | // embedded within a library that is added to an APEX. Needed for updatable-media. |
| 1860 | Apex_available: module.ApexAvailable(), |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 1861 | |
| 1862 | Stem: proptools.StringPtr(module.Name()), |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1863 | } |
| 1864 | |
| 1865 | properties := []interface{}{ |
| 1866 | &module.properties, |
| 1867 | &module.protoProperties, |
| 1868 | &module.deviceProperties, |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 1869 | &module.dexProperties, |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1870 | &module.dexpreoptProperties, |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 1871 | &module.linter.properties, |
Spandan Das | b9c5835 | 2024-05-13 18:29:45 +0000 | [diff] [blame] | 1872 | &module.overridableProperties, |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1873 | &props, |
| 1874 | module.sdkComponentPropertiesForChildLibrary(), |
| 1875 | } |
| 1876 | mctx.CreateModule(LibraryFactory, properties...) |
| 1877 | } |
| 1878 | |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 1879 | type libraryProperties struct { |
| 1880 | Name *string |
| 1881 | Visibility []string |
| 1882 | Srcs []string |
| 1883 | Installable *bool |
| 1884 | Sdk_version *string |
| 1885 | System_modules *string |
| 1886 | Patch_module *string |
| 1887 | Libs []string |
| 1888 | Static_libs []string |
| 1889 | Compile_dex *bool |
| 1890 | Java_version *string |
| 1891 | Openjdk9 struct { |
| 1892 | Srcs []string |
| 1893 | Javacflags []string |
| 1894 | } |
| 1895 | Dist struct { |
| 1896 | Targets []string |
| 1897 | Dest *string |
| 1898 | Dir *string |
| 1899 | Tag *string |
| 1900 | } |
Jihoon Kang | fe914ed | 2024-02-12 22:49:21 +0000 | [diff] [blame] | 1901 | Is_stubs_module *bool |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 1902 | } |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1903 | |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 1904 | func (module *SdkLibrary) stubsLibraryProps(mctx android.DefaultableHookContext, apiScope *apiScope) libraryProperties { |
| 1905 | props := libraryProperties{} |
Jihoon Kang | 786df93 | 2023-09-07 01:18:31 +0000 | [diff] [blame] | 1906 | props.Visibility = []string{"//visibility:override", "//visibility:private"} |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1907 | // sources are generated from the droiddoc |
Paul Duffin | 12ceb46 | 2019-12-24 20:31:31 +0000 | [diff] [blame] | 1908 | sdkVersion := module.sdkVersionForStubsLibrary(mctx, apiScope) |
Paul Duffin | 52d398a | 2019-06-11 12:31:14 +0100 | [diff] [blame] | 1909 | props.Sdk_version = proptools.StringPtr(sdkVersion) |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 1910 | props.System_modules = module.deviceProperties.System_modules |
| 1911 | props.Patch_module = module.properties.Patch_module |
Paul Duffin | 367ab91 | 2019-12-23 19:40:36 +0000 | [diff] [blame] | 1912 | props.Installable = proptools.BoolPtr(false) |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1913 | props.Libs = module.sdkLibraryProperties.Stub_only_libs |
Mark White | 9421c4c | 2023-08-10 00:07:03 +0000 | [diff] [blame] | 1914 | props.Libs = append(props.Libs, module.scopeToProperties[apiScope].Libs...) |
Anton Hansson | dae54cd | 2021-04-21 16:30:10 +0100 | [diff] [blame] | 1915 | props.Static_libs = module.sdkLibraryProperties.Stub_only_static_libs |
Paul Duffin | e22c2ab | 2020-05-20 19:35:27 +0100 | [diff] [blame] | 1916 | // The stub-annotations library contains special versions of the annotations |
| 1917 | // with CLASS retention policy, so that they're kept. |
| 1918 | if proptools.Bool(module.sdkLibraryProperties.Annotations_enabled) { |
| 1919 | props.Libs = append(props.Libs, "stub-annotations") |
| 1920 | } |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 1921 | props.Openjdk9.Srcs = module.properties.Openjdk9.Srcs |
| 1922 | props.Openjdk9.Javacflags = module.properties.Openjdk9.Javacflags |
Anton Hansson | 83509b5 | 2020-05-21 09:21:57 +0100 | [diff] [blame] | 1923 | // We compile the stubs for 1.8 in line with the main android.jar stubs, and potential |
| 1924 | // interop with older developer tools that don't support 1.9. |
| 1925 | props.Java_version = proptools.StringPtr("1.8") |
Jihoon Kang | fe914ed | 2024-02-12 22:49:21 +0000 | [diff] [blame] | 1926 | props.Is_stubs_module = proptools.BoolPtr(true) |
Paul Duffin | f4600f6 | 2021-05-13 22:34:45 +0100 | [diff] [blame] | 1927 | |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 1928 | return props |
| 1929 | } |
| 1930 | |
| 1931 | // Creates a static java library that has API stubs |
| 1932 | func (module *SdkLibrary) createStubsLibrary(mctx android.DefaultableHookContext, apiScope *apiScope) { |
| 1933 | |
| 1934 | props := module.stubsLibraryProps(mctx, apiScope) |
| 1935 | props.Name = proptools.StringPtr(module.sourceStubsLibraryModuleName(apiScope)) |
| 1936 | props.Srcs = []string{":" + module.stubsSourceModuleName(apiScope)} |
| 1937 | |
| 1938 | mctx.CreateModule(LibraryFactory, &props, module.sdkComponentPropertiesForChildLibrary()) |
| 1939 | } |
| 1940 | |
| 1941 | // Create a static java library that compiles the "exportable" stubs |
| 1942 | func (module *SdkLibrary) createExportableStubsLibrary(mctx android.DefaultableHookContext, apiScope *apiScope) { |
| 1943 | props := module.stubsLibraryProps(mctx, apiScope) |
| 1944 | props.Name = proptools.StringPtr(module.exportableSourceStubsLibraryModuleName(apiScope)) |
| 1945 | props.Srcs = []string{":" + module.stubsSourceModuleName(apiScope) + "{.exportable}"} |
| 1946 | |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1947 | mctx.CreateModule(LibraryFactory, &props, module.sdkComponentPropertiesForChildLibrary()) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1948 | } |
| 1949 | |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 1950 | // Creates a droidstubs module that creates stubs source files from the given full source |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 1951 | // files and also updates and checks the API specification files. |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1952 | func (module *SdkLibrary) createStubsSourcesAndApi(mctx android.DefaultableHookContext, apiScope *apiScope, name string, scopeSpecificDroidstubsArgs []string) { |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1953 | props := struct { |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1954 | Name *string |
Paul Duffin | 4911a89 | 2020-04-29 23:35:13 +0100 | [diff] [blame] | 1955 | Visibility []string |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1956 | Srcs []string |
| 1957 | Installable *bool |
Paul Duffin | 52d398a | 2019-06-11 12:31:14 +0100 | [diff] [blame] | 1958 | Sdk_version *string |
Jihoon Kang | 3198f3c | 2023-01-26 08:08:52 +0000 | [diff] [blame] | 1959 | Api_surface *string |
Paul Duffin | 12ceb46 | 2019-12-24 20:31:31 +0000 | [diff] [blame] | 1960 | System_modules *string |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1961 | Libs []string |
Paul Duffin | 6877e6d | 2020-09-25 19:59:14 +0100 | [diff] [blame] | 1962 | Output_javadoc_comments *bool |
Paul Duffin | 1151247 | 2019-02-11 15:55:17 +0000 | [diff] [blame] | 1963 | Arg_files []string |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1964 | Args *string |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1965 | Java_version *string |
Paul Duffin | e22c2ab | 2020-05-20 19:35:27 +0100 | [diff] [blame] | 1966 | Annotations_enabled *bool |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1967 | Merge_annotations_dirs []string |
| 1968 | Merge_inclusion_annotations_dirs []string |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 1969 | Generate_stubs *bool |
Anton Hansson | e87b03d | 2020-12-21 15:29:34 +0000 | [diff] [blame] | 1970 | Previous_api *string |
Jihoon Kang | 6592e87 | 2023-12-19 01:13:16 +0000 | [diff] [blame] | 1971 | Aconfig_declarations []string |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1972 | Check_api struct { |
Anton Hansson | e605615 | 2020-12-31 10:37:27 +0000 | [diff] [blame] | 1973 | Current ApiToCheck |
| 1974 | Last_released ApiToCheck |
Paul Duffin | 160fe41 | 2020-05-10 19:32:20 +0100 | [diff] [blame] | 1975 | |
| 1976 | Api_lint struct { |
| 1977 | Enabled *bool |
| 1978 | New_since *string |
| 1979 | Baseline_file *string |
| 1980 | } |
Jiyong Park | 58c518b | 2018-05-12 22:29:12 +0900 | [diff] [blame] | 1981 | } |
Sundong Ahn | 1b92c82 | 2018-05-29 11:35:17 +0900 | [diff] [blame] | 1982 | Aidl struct { |
| 1983 | Include_dirs []string |
| 1984 | Local_include_dirs []string |
| 1985 | } |
Paul Duffin | 040e906 | 2020-11-23 17:41:36 +0000 | [diff] [blame] | 1986 | Dists []android.Dist |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1987 | }{} |
| 1988 | |
Paul Duffin | 7b78b4d | 2020-04-28 14:08:32 +0100 | [diff] [blame] | 1989 | // The stubs source processing uses the same compile time classpath when extracting the |
| 1990 | // API from the implementation library as it does when compiling it. i.e. the same |
| 1991 | // * sdk version |
| 1992 | // * system_modules |
| 1993 | // * libs (static_libs/libs) |
Paul Duffin | 250e619 | 2019-06-07 10:44:37 +0100 | [diff] [blame] | 1994 | |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 1995 | props.Name = proptools.StringPtr(name) |
Anton Hansson | 944e77d | 2020-08-19 11:40:22 +0100 | [diff] [blame] | 1996 | props.Visibility = childModuleVisibility(module.sdkLibraryProperties.Stubs_source_visibility) |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 1997 | props.Srcs = append(props.Srcs, module.properties.Srcs...) |
Anton Hansson | f8ea372 | 2021-09-16 14:24:13 +0100 | [diff] [blame] | 1998 | props.Srcs = append(props.Srcs, module.sdkLibraryProperties.Api_srcs...) |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 1999 | props.Sdk_version = module.deviceProperties.Sdk_version |
Jihoon Kang | 3198f3c | 2023-01-26 08:08:52 +0000 | [diff] [blame] | 2000 | props.Api_surface = &apiScope.name |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 2001 | props.System_modules = module.deviceProperties.System_modules |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 2002 | props.Installable = proptools.BoolPtr(false) |
Sundong Ahn | e6f0b05 | 2018-06-05 16:46:14 +0900 | [diff] [blame] | 2003 | // A droiddoc module has only one Libs property and doesn't distinguish between |
| 2004 | // shared libs and static libs. So we need to add both of these libs to Libs property. |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 2005 | props.Libs = module.properties.Libs |
| 2006 | props.Libs = append(props.Libs, module.properties.Static_libs...) |
Nikita Ioffe | d732da7 | 2022-11-21 12:38:25 +0000 | [diff] [blame] | 2007 | props.Libs = append(props.Libs, module.sdkLibraryProperties.Stub_only_libs...) |
Mark White | 9421c4c | 2023-08-10 00:07:03 +0000 | [diff] [blame] | 2008 | props.Libs = append(props.Libs, module.scopeToProperties[apiScope].Libs...) |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 2009 | props.Aidl.Include_dirs = module.deviceProperties.Aidl.Include_dirs |
| 2010 | props.Aidl.Local_include_dirs = module.deviceProperties.Aidl.Local_include_dirs |
| 2011 | props.Java_version = module.properties.Java_version |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 2012 | |
Paul Duffin | e22c2ab | 2020-05-20 19:35:27 +0100 | [diff] [blame] | 2013 | props.Annotations_enabled = module.sdkLibraryProperties.Annotations_enabled |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 2014 | props.Merge_annotations_dirs = module.sdkLibraryProperties.Merge_annotations_dirs |
| 2015 | props.Merge_inclusion_annotations_dirs = module.sdkLibraryProperties.Merge_inclusion_annotations_dirs |
Jihoon Kang | 6592e87 | 2023-12-19 01:13:16 +0000 | [diff] [blame] | 2016 | props.Aconfig_declarations = module.sdkLibraryProperties.Aconfig_declarations |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 2017 | |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 2018 | droidstubsArgs := []string{} |
Paul Duffin | 235ffff | 2019-12-24 10:41:30 +0000 | [diff] [blame] | 2019 | if len(module.sdkLibraryProperties.Api_packages) != 0 { |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 2020 | droidstubsArgs = append(droidstubsArgs, "--stub-packages "+strings.Join(module.sdkLibraryProperties.Api_packages, ":")) |
Paul Duffin | 235ffff | 2019-12-24 10:41:30 +0000 | [diff] [blame] | 2021 | } |
| 2022 | if len(module.sdkLibraryProperties.Hidden_api_packages) != 0 { |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 2023 | droidstubsArgs = append(droidstubsArgs, |
Paul Duffin | 235ffff | 2019-12-24 10:41:30 +0000 | [diff] [blame] | 2024 | android.JoinWithPrefix(module.sdkLibraryProperties.Hidden_api_packages, " --hide-package ")) |
| 2025 | } |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 2026 | droidstubsArgs = append(droidstubsArgs, module.sdkLibraryProperties.Droiddoc_options...) |
Anton Hansson | fd1c0d2 | 2023-11-02 15:18:09 +0000 | [diff] [blame] | 2027 | disabledWarnings := []string{"HiddenSuperclass"} |
| 2028 | if proptools.BoolDefault(module.sdkLibraryProperties.Api_lint.Legacy_errors_allowed, true) { |
| 2029 | disabledWarnings = append(disabledWarnings, |
| 2030 | "BroadcastBehavior", |
| 2031 | "DeprecationMismatch", |
| 2032 | "MissingPermission", |
| 2033 | "SdkConstant", |
| 2034 | "Todo", |
| 2035 | ) |
Paul Duffin | 235ffff | 2019-12-24 10:41:30 +0000 | [diff] [blame] | 2036 | } |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 2037 | droidstubsArgs = append(droidstubsArgs, android.JoinWithPrefix(disabledWarnings, "--hide ")) |
Sundong Ahn | fb2721f | 2018-09-17 13:23:09 +0900 | [diff] [blame] | 2038 | |
Paul Duffin | 6877e6d | 2020-09-25 19:59:14 +0100 | [diff] [blame] | 2039 | // Output Javadoc comments for public scope. |
| 2040 | if apiScope == apiScopePublic { |
| 2041 | props.Output_javadoc_comments = proptools.BoolPtr(true) |
| 2042 | } |
| 2043 | |
Paul Duffin | 1fb487d | 2020-04-07 18:50:10 +0100 | [diff] [blame] | 2044 | // Add in scope specific arguments. |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 2045 | droidstubsArgs = append(droidstubsArgs, scopeSpecificDroidstubsArgs...) |
Paul Duffin | 1151247 | 2019-02-11 15:55:17 +0000 | [diff] [blame] | 2046 | props.Arg_files = module.sdkLibraryProperties.Droiddoc_option_files |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 2047 | props.Args = proptools.StringPtr(strings.Join(droidstubsArgs, " ")) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 2048 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 2049 | // List of APIs identified from the provided source files are created. They are later |
| 2050 | // compared against to the not-yet-released (a.k.a current) list of APIs and to the |
| 2051 | // last-released (a.k.a numbered) list of API. |
| 2052 | currentApiFileName := apiScope.apiFilePrefix + "current.txt" |
| 2053 | removedApiFileName := apiScope.apiFilePrefix + "removed.txt" |
| 2054 | apiDir := module.getApiDir() |
| 2055 | currentApiFileName = path.Join(apiDir, currentApiFileName) |
| 2056 | removedApiFileName = path.Join(apiDir, removedApiFileName) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 2057 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 2058 | // check against the not-yet-release API |
| 2059 | props.Check_api.Current.Api_file = proptools.StringPtr(currentApiFileName) |
| 2060 | props.Check_api.Current.Removed_api_file = proptools.StringPtr(removedApiFileName) |
Jiyong Park | 58c518b | 2018-05-12 22:29:12 +0900 | [diff] [blame] | 2061 | |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 2062 | if module.compareAgainstLatestApi(apiScope) { |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 2063 | // check against the latest released API |
| 2064 | latestApiFilegroupName := proptools.StringPtr(module.latestApiFilegroupName(apiScope)) |
Anton Hansson | e87b03d | 2020-12-21 15:29:34 +0000 | [diff] [blame] | 2065 | props.Previous_api = latestApiFilegroupName |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 2066 | props.Check_api.Last_released.Api_file = latestApiFilegroupName |
| 2067 | props.Check_api.Last_released.Removed_api_file = proptools.StringPtr( |
| 2068 | module.latestRemovedApiFilegroupName(apiScope)) |
Jaewoong Jung | 1a97ee0 | 2021-03-09 13:25:02 -0800 | [diff] [blame] | 2069 | props.Check_api.Last_released.Baseline_file = proptools.StringPtr( |
| 2070 | module.latestIncompatibilitiesFilegroupName(apiScope)) |
Paul Duffin | 160fe41 | 2020-05-10 19:32:20 +0100 | [diff] [blame] | 2071 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 2072 | if proptools.Bool(module.sdkLibraryProperties.Api_lint.Enabled) { |
| 2073 | // Enable api lint. |
| 2074 | props.Check_api.Api_lint.Enabled = proptools.BoolPtr(true) |
| 2075 | props.Check_api.Api_lint.New_since = latestApiFilegroupName |
Paul Duffin | 160fe41 | 2020-05-10 19:32:20 +0100 | [diff] [blame] | 2076 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 2077 | // If it exists then pass a lint-baseline.txt through to droidstubs. |
| 2078 | baselinePath := path.Join(apiDir, apiScope.apiFilePrefix+"lint-baseline.txt") |
| 2079 | baselinePathRelativeToRoot := path.Join(mctx.ModuleDir(), baselinePath) |
| 2080 | paths, err := mctx.GlobWithDeps(baselinePathRelativeToRoot, nil) |
| 2081 | if err != nil { |
| 2082 | mctx.ModuleErrorf("error checking for presence of %s: %s", baselinePathRelativeToRoot, err) |
| 2083 | } |
| 2084 | if len(paths) == 1 { |
| 2085 | props.Check_api.Api_lint.Baseline_file = proptools.StringPtr(baselinePath) |
| 2086 | } else if len(paths) != 0 { |
| 2087 | mctx.ModuleErrorf("error checking for presence of %s: expected one path, found: %v", baselinePathRelativeToRoot, paths) |
Paul Duffin | 160fe41 | 2020-05-10 19:32:20 +0100 | [diff] [blame] | 2088 | } |
| 2089 | } |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 2090 | } |
Jiyong Park | 58c518b | 2018-05-12 22:29:12 +0900 | [diff] [blame] | 2091 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 2092 | if !Bool(module.sdkLibraryProperties.No_dist) { |
Paul Duffin | 040e906 | 2020-11-23 17:41:36 +0000 | [diff] [blame] | 2093 | // Dist the api txt and removed api txt artifacts for sdk builds. |
| 2094 | distDir := proptools.StringPtr(path.Join(module.apiDistPath(apiScope), "api")) |
Jihoon Kang | 0216805 | 2024-03-20 00:44:54 +0000 | [diff] [blame] | 2095 | stubsTypeTagPrefix := "" |
| 2096 | if mctx.Config().ReleaseHiddenApiExportableStubs() { |
| 2097 | stubsTypeTagPrefix = ".exportable" |
| 2098 | } |
Paul Duffin | 040e906 | 2020-11-23 17:41:36 +0000 | [diff] [blame] | 2099 | for _, p := range []struct { |
| 2100 | tag string |
| 2101 | pattern string |
| 2102 | }{ |
Jihoon Kang | d1799f6 | 2024-02-20 23:01:38 +0000 | [diff] [blame] | 2103 | // "exportable" api files are copied to the dist directory instead of the |
Jihoon Kang | 0216805 | 2024-03-20 00:44:54 +0000 | [diff] [blame] | 2104 | // "everything" api files when "RELEASE_HIDDEN_API_EXPORTABLE_STUBS" build flag |
| 2105 | // is set. Otherwise, the "everything" api files are copied to the dist directory. |
| 2106 | {tag: "%s.api.txt", pattern: "%s.txt"}, |
| 2107 | {tag: "%s.removed-api.txt", pattern: "%s-removed.txt"}, |
Paul Duffin | 040e906 | 2020-11-23 17:41:36 +0000 | [diff] [blame] | 2108 | } { |
| 2109 | props.Dists = append(props.Dists, android.Dist{ |
| 2110 | Targets: []string{"sdk", "win_sdk"}, |
| 2111 | Dir: distDir, |
| 2112 | Dest: proptools.StringPtr(fmt.Sprintf(p.pattern, module.distStem())), |
Jihoon Kang | 0216805 | 2024-03-20 00:44:54 +0000 | [diff] [blame] | 2113 | Tag: proptools.StringPtr(fmt.Sprintf(p.tag, stubsTypeTagPrefix)), |
Paul Duffin | 040e906 | 2020-11-23 17:41:36 +0000 | [diff] [blame] | 2114 | }) |
| 2115 | } |
Anton Hansson | 5fd5d24 | 2020-03-27 19:43:19 +0000 | [diff] [blame] | 2116 | } |
| 2117 | |
Spandan Das | 2cc80ba | 2023-10-27 17:21:52 +0000 | [diff] [blame] | 2118 | mctx.CreateModule(DroidstubsFactory, &props, module.sdkComponentPropertiesForChildLibrary()).(*Droidstubs).CallHookIfAvailable(mctx) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 2119 | } |
| 2120 | |
Jihoon Kang | 0c705a4 | 2023-08-02 06:44:57 +0000 | [diff] [blame] | 2121 | func (module *SdkLibrary) createApiLibrary(mctx android.DefaultableHookContext, apiScope *apiScope, alternativeFullApiSurfaceStub string) { |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 2122 | props := struct { |
Jihoon Kang | ca198c2 | 2023-06-22 23:13:51 +0000 | [diff] [blame] | 2123 | Name *string |
| 2124 | Visibility []string |
| 2125 | Api_contributions []string |
| 2126 | Libs []string |
| 2127 | Static_libs []string |
| 2128 | Full_api_surface_stub *string |
Jihoon Kang | 4ec2487 | 2023-10-05 17:26:09 +0000 | [diff] [blame] | 2129 | System_modules *string |
Jihoon Kang | 063ec00 | 2023-06-28 01:16:23 +0000 | [diff] [blame] | 2130 | Enable_validation *bool |
Jihoon Kang | 5d70127 | 2024-02-15 21:53:49 +0000 | [diff] [blame] | 2131 | Stubs_type *string |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 2132 | }{} |
| 2133 | |
| 2134 | props.Name = proptools.StringPtr(module.apiLibraryModuleName(apiScope)) |
Jihoon Kang | 786df93 | 2023-09-07 01:18:31 +0000 | [diff] [blame] | 2135 | props.Visibility = []string{"//visibility:override", "//visibility:private"} |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 2136 | |
| 2137 | apiContributions := []string{} |
| 2138 | |
| 2139 | // Api surfaces are not independent of each other, but have subset relationships, |
| 2140 | // and so does the api files. To generate from-text stubs for api surfaces other than public, |
| 2141 | // all subset api domains' api_contriubtions must be added as well. |
| 2142 | scope := apiScope |
| 2143 | for scope != nil { |
| 2144 | apiContributions = append(apiContributions, module.stubsSourceModuleName(scope)+".api.contribution") |
| 2145 | scope = scope.extends |
| 2146 | } |
Jihoon Kang | 0c705a4 | 2023-08-02 06:44:57 +0000 | [diff] [blame] | 2147 | if apiScope == apiScopePublic { |
| 2148 | additionalApiContribution := module.apiLibraryAdditionalApiContribution() |
| 2149 | if additionalApiContribution != "" { |
| 2150 | apiContributions = append(apiContributions, additionalApiContribution) |
| 2151 | } |
| 2152 | } |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 2153 | |
| 2154 | props.Api_contributions = apiContributions |
| 2155 | props.Libs = module.properties.Libs |
| 2156 | props.Libs = append(props.Libs, module.sdkLibraryProperties.Stub_only_libs...) |
Mark White | 9421c4c | 2023-08-10 00:07:03 +0000 | [diff] [blame] | 2157 | props.Libs = append(props.Libs, module.scopeToProperties[apiScope].Libs...) |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 2158 | props.Libs = append(props.Libs, "stub-annotations") |
| 2159 | props.Static_libs = module.sdkLibraryProperties.Stub_only_static_libs |
Jihoon Kang | e7ee256 | 2023-07-25 05:51:46 +0000 | [diff] [blame] | 2160 | props.Full_api_surface_stub = proptools.StringPtr(apiScope.kind.DefaultJavaLibraryName()) |
Jihoon Kang | 0c705a4 | 2023-08-02 06:44:57 +0000 | [diff] [blame] | 2161 | if alternativeFullApiSurfaceStub != "" { |
| 2162 | props.Full_api_surface_stub = proptools.StringPtr(alternativeFullApiSurfaceStub) |
| 2163 | } |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 2164 | |
| 2165 | // android_module_lib_stubs_current.from-text only comprises api contributions from art, conscrypt and i18n. |
| 2166 | // Thus, replace with android_module_lib_stubs_current_full.from-text, which comprises every api domains. |
| 2167 | if apiScope.kind == android.SdkModule { |
Jihoon Kang | ca198c2 | 2023-06-22 23:13:51 +0000 | [diff] [blame] | 2168 | props.Full_api_surface_stub = proptools.StringPtr(apiScope.kind.DefaultJavaLibraryName() + "_full.from-text") |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 2169 | } |
| 2170 | |
Jihoon Kang | d30ac8a | 2023-10-09 18:00:17 +0000 | [diff] [blame] | 2171 | // java_sdk_library modules that set sdk_version as none does not depend on other api |
| 2172 | // domains. Therefore, java_api_library created from such modules should not depend on |
| 2173 | // full_api_surface_stubs but create and compile stubs by the java_api_library module |
| 2174 | // itself. |
| 2175 | if module.SdkVersion(mctx).Kind == android.SdkNone { |
| 2176 | props.Full_api_surface_stub = nil |
| 2177 | } |
| 2178 | |
Jihoon Kang | 4ec2487 | 2023-10-05 17:26:09 +0000 | [diff] [blame] | 2179 | props.System_modules = module.deviceProperties.System_modules |
Jihoon Kang | 063ec00 | 2023-06-28 01:16:23 +0000 | [diff] [blame] | 2180 | props.Enable_validation = proptools.BoolPtr(true) |
Jihoon Kang | 5d70127 | 2024-02-15 21:53:49 +0000 | [diff] [blame] | 2181 | props.Stubs_type = proptools.StringPtr("everything") |
Jihoon Kang | 4ec2487 | 2023-10-05 17:26:09 +0000 | [diff] [blame] | 2182 | |
Spandan Das | 2cc80ba | 2023-10-27 17:21:52 +0000 | [diff] [blame] | 2183 | mctx.CreateModule(ApiLibraryFactory, &props, module.sdkComponentPropertiesForChildLibrary()) |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 2184 | } |
| 2185 | |
Jihoon Kang | 0216805 | 2024-03-20 00:44:54 +0000 | [diff] [blame] | 2186 | func (module *SdkLibrary) topLevelStubsLibraryProps(mctx android.DefaultableHookContext, apiScope *apiScope, doDist bool) libraryProperties { |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2187 | props := libraryProperties{} |
| 2188 | |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 2189 | props.Visibility = childModuleVisibility(module.sdkLibraryProperties.Stubs_library_visibility) |
| 2190 | sdkVersion := module.sdkVersionForStubsLibrary(mctx, apiScope) |
| 2191 | props.Sdk_version = proptools.StringPtr(sdkVersion) |
| 2192 | |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 2193 | props.System_modules = module.deviceProperties.System_modules |
| 2194 | |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 2195 | // The imports need to be compiled to dex if the java_sdk_library requests it. |
| 2196 | compileDex := module.dexProperties.Compile_dex |
| 2197 | if module.stubLibrariesCompiledForDex() { |
| 2198 | compileDex = proptools.BoolPtr(true) |
| 2199 | } |
| 2200 | props.Compile_dex = compileDex |
| 2201 | |
Jihoon Kang | 0216805 | 2024-03-20 00:44:54 +0000 | [diff] [blame] | 2202 | if !Bool(module.sdkLibraryProperties.No_dist) && doDist { |
| 2203 | props.Dist.Targets = []string{"sdk", "win_sdk"} |
| 2204 | props.Dist.Dest = proptools.StringPtr(fmt.Sprintf("%v.jar", module.distStem())) |
| 2205 | props.Dist.Dir = proptools.StringPtr(module.apiDistPath(apiScope)) |
| 2206 | props.Dist.Tag = proptools.StringPtr(".jar") |
| 2207 | } |
| 2208 | |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2209 | return props |
| 2210 | } |
| 2211 | |
| 2212 | func (module *SdkLibrary) createTopLevelStubsLibrary( |
| 2213 | mctx android.DefaultableHookContext, apiScope *apiScope, contributesToApiSurface bool) { |
| 2214 | |
Jihoon Kang | 0216805 | 2024-03-20 00:44:54 +0000 | [diff] [blame] | 2215 | // Dist the "everything" stubs when the RELEASE_HIDDEN_API_EXPORTABLE_STUBS build flag is false |
| 2216 | doDist := !mctx.Config().ReleaseHiddenApiExportableStubs() |
| 2217 | props := module.topLevelStubsLibraryProps(mctx, apiScope, doDist) |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2218 | props.Name = proptools.StringPtr(module.stubsLibraryModuleName(apiScope)) |
| 2219 | |
| 2220 | // Add the stub compiling java_library/java_api_library as static lib based on build config |
| 2221 | staticLib := module.sourceStubsLibraryModuleName(apiScope) |
| 2222 | if mctx.Config().BuildFromTextStub() && contributesToApiSurface { |
| 2223 | staticLib = module.apiLibraryModuleName(apiScope) |
| 2224 | } |
| 2225 | props.Static_libs = append(props.Static_libs, staticLib) |
| 2226 | |
| 2227 | mctx.CreateModule(LibraryFactory, &props, module.sdkComponentPropertiesForChildLibrary()) |
| 2228 | } |
| 2229 | |
| 2230 | func (module *SdkLibrary) createTopLevelExportableStubsLibrary( |
| 2231 | mctx android.DefaultableHookContext, apiScope *apiScope) { |
| 2232 | |
Jihoon Kang | 0216805 | 2024-03-20 00:44:54 +0000 | [diff] [blame] | 2233 | // Dist the "exportable" stubs when the RELEASE_HIDDEN_API_EXPORTABLE_STUBS build flag is true |
| 2234 | doDist := mctx.Config().ReleaseHiddenApiExportableStubs() |
| 2235 | props := module.topLevelStubsLibraryProps(mctx, apiScope, doDist) |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2236 | props.Name = proptools.StringPtr(module.exportableStubsLibraryModuleName(apiScope)) |
| 2237 | |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2238 | staticLib := module.exportableSourceStubsLibraryModuleName(apiScope) |
| 2239 | props.Static_libs = append(props.Static_libs, staticLib) |
| 2240 | |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 2241 | mctx.CreateModule(LibraryFactory, &props, module.sdkComponentPropertiesForChildLibrary()) |
| 2242 | } |
| 2243 | |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 2244 | func (module *SdkLibrary) compareAgainstLatestApi(apiScope *apiScope) bool { |
| 2245 | return !(apiScope.unstable || module.sdkLibraryProperties.Unsafe_ignore_missing_latest_api) |
| 2246 | } |
| 2247 | |
Paul Duffin | ea8f808 | 2021-06-24 13:25:57 +0100 | [diff] [blame] | 2248 | // Implements android.ApexModule |
Jooyung Han | 5e9013b | 2020-03-10 06:23:13 +0900 | [diff] [blame] | 2249 | func (module *SdkLibrary) DepIsInSameApex(mctx android.BaseModuleContext, dep android.Module) bool { |
| 2250 | depTag := mctx.OtherModuleDependencyTag(dep) |
| 2251 | if depTag == xmlPermissionsFileTag { |
| 2252 | return true |
| 2253 | } |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 2254 | if dep.Name() == module.implLibraryModuleName() { |
| 2255 | return true |
| 2256 | } |
Jooyung Han | 5e9013b | 2020-03-10 06:23:13 +0900 | [diff] [blame] | 2257 | return module.Library.DepIsInSameApex(mctx, dep) |
| 2258 | } |
| 2259 | |
Paul Duffin | ea8f808 | 2021-06-24 13:25:57 +0100 | [diff] [blame] | 2260 | // Implements android.ApexModule |
| 2261 | func (module *SdkLibrary) UniqueApexVariations() bool { |
| 2262 | return module.uniqueApexVariations() |
| 2263 | } |
| 2264 | |
Jihoon Kang | 80456fd | 2023-11-15 19:22:14 +0000 | [diff] [blame] | 2265 | func (module *SdkLibrary) ContributeToApi() bool { |
| 2266 | return proptools.BoolDefault(module.sdkLibraryProperties.Contribute_to_android_api, false) |
| 2267 | } |
| 2268 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 2269 | // Creates the xml file that publicizes the runtime library |
Paul Duffin | f022920 | 2020-04-29 16:47:28 +0100 | [diff] [blame] | 2270 | func (module *SdkLibrary) createXmlFile(mctx android.DefaultableHookContext) { |
Spandan Das | 8c9ae7e | 2023-03-03 21:20:36 +0000 | [diff] [blame] | 2271 | moduleMinApiLevel := module.Library.MinSdkVersion(mctx) |
Pedro Loureiro | c362142 | 2021-09-28 15:40:23 +0000 | [diff] [blame] | 2272 | var moduleMinApiLevelStr = moduleMinApiLevel.String() |
| 2273 | if moduleMinApiLevel == android.NoneApiLevel { |
| 2274 | moduleMinApiLevelStr = "current" |
| 2275 | } |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2276 | props := struct { |
Pedro Loureiro | c362142 | 2021-09-28 15:40:23 +0000 | [diff] [blame] | 2277 | Name *string |
| 2278 | Lib_name *string |
| 2279 | Apex_available []string |
| 2280 | On_bootclasspath_since *string |
| 2281 | On_bootclasspath_before *string |
| 2282 | Min_device_sdk *string |
| 2283 | Max_device_sdk *string |
| 2284 | Sdk_library_min_api_level *string |
Jamie Garside | e570ace | 2023-11-27 12:07:36 +0000 | [diff] [blame] | 2285 | Uses_libs_dependencies []string |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2286 | }{ |
Pedro Loureiro | c362142 | 2021-09-28 15:40:23 +0000 | [diff] [blame] | 2287 | Name: proptools.StringPtr(module.xmlPermissionsModuleName()), |
| 2288 | Lib_name: proptools.StringPtr(module.BaseModuleName()), |
| 2289 | Apex_available: module.ApexProperties.Apex_available, |
| 2290 | On_bootclasspath_since: module.commonSdkLibraryProperties.On_bootclasspath_since, |
| 2291 | On_bootclasspath_before: module.commonSdkLibraryProperties.On_bootclasspath_before, |
| 2292 | Min_device_sdk: module.commonSdkLibraryProperties.Min_device_sdk, |
| 2293 | Max_device_sdk: module.commonSdkLibraryProperties.Max_device_sdk, |
| 2294 | Sdk_library_min_api_level: &moduleMinApiLevelStr, |
Jamie Garside | e570ace | 2023-11-27 12:07:36 +0000 | [diff] [blame] | 2295 | Uses_libs_dependencies: module.usesLibraryProperties.Uses_libs, |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 2296 | } |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2297 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2298 | mctx.CreateModule(sdkLibraryXmlFactory, &props) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 2299 | } |
| 2300 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2301 | func PrebuiltJars(ctx android.BaseModuleContext, baseName string, s android.SdkSpec) android.Paths { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame] | 2302 | var ver android.ApiLevel |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2303 | var kind android.SdkKind |
| 2304 | if s.UsePrebuilt(ctx) { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame] | 2305 | ver = s.ApiLevel |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2306 | kind = s.Kind |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 2307 | } else { |
Jiyong Park | 6a927c4 | 2020-01-21 02:03:43 +0900 | [diff] [blame] | 2308 | // We don't have prebuilt SDK for the specific sdkVersion. |
| 2309 | // Instead of breaking the build, fallback to use "system_current" |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame] | 2310 | ver = android.FutureApiLevel |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2311 | kind = android.SdkSystem |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 2312 | } |
Jiyong Park | 6a927c4 | 2020-01-21 02:03:43 +0900 | [diff] [blame] | 2313 | |
| 2314 | dir := filepath.Join("prebuilts", "sdk", ver.String(), kind.String()) |
Paul Duffin | 5006151 | 2020-01-21 16:31:05 +0000 | [diff] [blame] | 2315 | jar := filepath.Join(dir, baseName+".jar") |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 2316 | jarPath := android.ExistentPathForSource(ctx, jar) |
Sundong Ahn | ae418ac | 2019-02-28 15:01:28 +0900 | [diff] [blame] | 2317 | if !jarPath.Valid() { |
Colin Cross | 07c8856 | 2020-01-07 09:34:44 -0800 | [diff] [blame] | 2318 | if ctx.Config().AllowMissingDependencies() { |
| 2319 | return android.Paths{android.PathForSource(ctx, jar)} |
| 2320 | } else { |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2321 | ctx.PropertyErrorf("sdk_library", "invalid sdk version %q, %q does not exist", s.Raw, jar) |
Colin Cross | 07c8856 | 2020-01-07 09:34:44 -0800 | [diff] [blame] | 2322 | } |
Sundong Ahn | ae418ac | 2019-02-28 15:01:28 +0900 | [diff] [blame] | 2323 | return nil |
| 2324 | } |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 2325 | return android.Paths{jarPath.Path()} |
| 2326 | } |
| 2327 | |
Colin Cross | aede88c | 2020-08-11 12:17:01 -0700 | [diff] [blame] | 2328 | // Check to see if the other module is within the same set of named APEXes as this module. |
Paul Duffin | 9b87959 | 2020-05-26 13:21:35 +0100 | [diff] [blame] | 2329 | // |
| 2330 | // If either this or the other module are on the platform then this will return |
| 2331 | // false. |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2332 | func withinSameApexesAs(ctx android.BaseModuleContext, other android.Module) bool { |
Colin Cross | ff694a8 | 2023-12-13 15:54:49 -0800 | [diff] [blame] | 2333 | apexInfo, _ := android.ModuleProvider(ctx, android.ApexInfoProvider) |
Colin Cross | 313aa54 | 2023-12-13 13:47:44 -0800 | [diff] [blame] | 2334 | otherApexInfo, _ := android.OtherModuleProvider(ctx, other, android.ApexInfoProvider) |
Jiyong Park | ab50b07 | 2021-05-12 17:13:56 +0900 | [diff] [blame] | 2335 | return len(otherApexInfo.InApexVariants) > 0 && reflect.DeepEqual(apexInfo.InApexVariants, otherApexInfo.InApexVariants) |
Paul Duffin | 9b87959 | 2020-05-26 13:21:35 +0100 | [diff] [blame] | 2336 | } |
| 2337 | |
Jihoon Kang | 8479dea | 2024-04-04 01:19:05 +0000 | [diff] [blame] | 2338 | func (module *SdkLibrary) sdkJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths { |
Jiyong Park | 932cdfe | 2020-05-28 00:19:53 +0900 | [diff] [blame] | 2339 | // If the client doesn't set sdk_version, but if this library prefers stubs over |
| 2340 | // the impl library, let's provide the widest API surface possible. To do so, |
| 2341 | // force override sdk_version to module_current so that the closest possible API |
| 2342 | // surface could be found in selectHeaderJarsForSdkVersion |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2343 | if module.defaultsToStubs() && !sdkVersion.Specified() { |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 2344 | sdkVersion = android.SdkSpecFrom(ctx, "module_current") |
Jiyong Park | 932cdfe | 2020-05-28 00:19:53 +0900 | [diff] [blame] | 2345 | } |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 2346 | |
Paul Duffin | daaa332 | 2020-05-26 18:13:57 +0100 | [diff] [blame] | 2347 | // Only provide access to the implementation library if it is actually built. |
| 2348 | if module.requiresRuntimeImplementationLibrary() { |
| 2349 | // Check any special cases for java_sdk_library. |
| 2350 | // |
| 2351 | // Only allow access to the implementation library in the following condition: |
| 2352 | // * No sdk_version specified on the referencing module. |
Paul Duffin | 9b87959 | 2020-05-26 13:21:35 +0100 | [diff] [blame] | 2353 | // * The referencing module is in the same apex as this. |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2354 | if sdkVersion.Kind == android.SdkPrivate || withinSameApexesAs(ctx, module) { |
Jihoon Kang | 8479dea | 2024-04-04 01:19:05 +0000 | [diff] [blame] | 2355 | return module.implLibraryHeaderJars |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 2356 | } |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 2357 | } |
Paul Duffin | b05d429 | 2020-05-20 12:19:10 +0100 | [diff] [blame] | 2358 | |
Paul Duffin | 23970f4 | 2020-05-20 14:20:02 +0100 | [diff] [blame] | 2359 | return module.selectHeaderJarsForSdkVersion(ctx, sdkVersion) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 2360 | } |
| 2361 | |
Sundong Ahn | 241cd37 | 2018-07-13 16:16:44 +0900 | [diff] [blame] | 2362 | // to satisfy SdkLibraryDependency interface |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2363 | func (module *SdkLibrary) SdkHeaderJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths { |
Jihoon Kang | 8479dea | 2024-04-04 01:19:05 +0000 | [diff] [blame] | 2364 | return module.sdkJars(ctx, sdkVersion) |
Sundong Ahn | 241cd37 | 2018-07-13 16:16:44 +0900 | [diff] [blame] | 2365 | } |
| 2366 | |
Colin Cross | 571cccf | 2019-02-04 11:22:08 -0800 | [diff] [blame] | 2367 | var javaSdkLibrariesKey = android.NewOnceKey("javaSdkLibraries") |
| 2368 | |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 2369 | func javaSdkLibraries(config android.Config) *[]string { |
Colin Cross | 571cccf | 2019-02-04 11:22:08 -0800 | [diff] [blame] | 2370 | return config.Once(javaSdkLibrariesKey, func() interface{} { |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 2371 | return &[]string{} |
| 2372 | }).(*[]string) |
| 2373 | } |
| 2374 | |
Paul Duffin | 749f98f | 2019-12-30 17:23:46 +0000 | [diff] [blame] | 2375 | func (module *SdkLibrary) getApiDir() string { |
| 2376 | return proptools.StringDefault(module.sdkLibraryProperties.Api_dir, "api") |
| 2377 | } |
| 2378 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 2379 | // For a java_sdk_library module, create internal modules for stubs, docs, |
| 2380 | // runtime libs and xml file. If requested, the stubs and docs are created twice |
| 2381 | // once for public API level and once for system API level |
Paul Duffin | f022920 | 2020-04-29 16:47:28 +0100 | [diff] [blame] | 2382 | func (module *SdkLibrary) CreateInternalModules(mctx android.DefaultableHookContext) { |
| 2383 | // If the module has been disabled then don't create any child modules. |
Cole Faust | a963b94 | 2024-04-11 17:43:00 -0700 | [diff] [blame] | 2384 | if !module.Enabled(mctx) { |
Paul Duffin | f022920 | 2020-04-29 16:47:28 +0100 | [diff] [blame] | 2385 | return |
| 2386 | } |
| 2387 | |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 2388 | if len(module.properties.Srcs) == 0 { |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 2389 | mctx.PropertyErrorf("srcs", "java_sdk_library must specify srcs") |
Jooyung Han | 58f26ab | 2019-12-18 15:34:32 +0900 | [diff] [blame] | 2390 | return |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 2391 | } |
| 2392 | |
Paul Duffin | 37e0b77 | 2019-12-30 17:20:10 +0000 | [diff] [blame] | 2393 | // If this builds against standard libraries (i.e. is not part of the core libraries) |
Paul Duffin | 4f5c1ef | 2020-11-19 14:53:43 +0000 | [diff] [blame] | 2394 | // then assume it provides both system and test apis. |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2395 | sdkDep := decodeSdkDep(mctx, android.SdkContext(&module.Library)) |
Paul Duffin | 37e0b77 | 2019-12-30 17:20:10 +0000 | [diff] [blame] | 2396 | hasSystemAndTestApis := sdkDep.hasStandardLibs() |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 2397 | module.sdkLibraryProperties.Generate_system_and_test_apis = hasSystemAndTestApis |
Paul Duffin | 4f5c1ef | 2020-11-19 14:53:43 +0000 | [diff] [blame] | 2398 | |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 2399 | missingCurrentApi := false |
Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 2400 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 2401 | generatedScopes := module.getGeneratedApiScopes(mctx) |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 2402 | |
Paul Duffin | 749f98f | 2019-12-30 17:23:46 +0000 | [diff] [blame] | 2403 | apiDir := module.getApiDir() |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 2404 | for _, scope := range generatedScopes { |
Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 2405 | for _, api := range []string{"current.txt", "removed.txt"} { |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 2406 | path := path.Join(mctx.ModuleDir(), apiDir, scope.apiFilePrefix+api) |
Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 2407 | p := android.ExistentPathForSource(mctx, path) |
| 2408 | if !p.Valid() { |
Colin Cross | 18f840c | 2021-05-20 17:56:54 -0700 | [diff] [blame] | 2409 | if mctx.Config().AllowMissingDependencies() { |
| 2410 | mctx.AddMissingDependencies([]string{path}) |
| 2411 | } else { |
| 2412 | mctx.ModuleErrorf("Current api file %#v doesn't exist", path) |
| 2413 | missingCurrentApi = true |
| 2414 | } |
Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 2415 | } |
| 2416 | } |
| 2417 | } |
| 2418 | |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 2419 | if missingCurrentApi { |
Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 2420 | script := "build/soong/scripts/gen-java-current-api-files.sh" |
| 2421 | p := android.ExistentPathForSource(mctx, script) |
| 2422 | |
| 2423 | if !p.Valid() { |
| 2424 | panic(fmt.Sprintf("script file %s doesn't exist", script)) |
| 2425 | } |
| 2426 | |
| 2427 | mctx.ModuleErrorf("One or more current api files are missing. "+ |
| 2428 | "You can update them by:\n"+ |
Paul Duffin | 37e0b77 | 2019-12-30 17:20:10 +0000 | [diff] [blame] | 2429 | "%s %q %s && m update-api", |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 2430 | script, filepath.Join(mctx.ModuleDir(), apiDir), |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 2431 | strings.Join(generatedScopes.Strings(func(s *apiScope) string { return s.apiFilePrefix }), " ")) |
Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 2432 | return |
| 2433 | } |
| 2434 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 2435 | for _, scope := range generatedScopes { |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 2436 | // Use the stubs source name for legacy reasons. |
| 2437 | module.createStubsSourcesAndApi(mctx, scope, module.stubsSourceModuleName(scope), scope.droidstubsArgs) |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 2438 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 2439 | module.createStubsLibrary(mctx, scope) |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2440 | module.createExportableStubsLibrary(mctx, scope) |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 2441 | |
Jihoon Kang | 0c705a4 | 2023-08-02 06:44:57 +0000 | [diff] [blame] | 2442 | alternativeFullApiSurfaceStubLib := "" |
| 2443 | if scope == apiScopePublic { |
| 2444 | alternativeFullApiSurfaceStubLib = module.alternativeFullApiSurfaceStubLib() |
| 2445 | } |
| 2446 | contributesToApiSurface := module.contributesToApiSurface(mctx.Config()) || alternativeFullApiSurfaceStubLib != "" |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 2447 | if contributesToApiSurface { |
Jihoon Kang | 0c705a4 | 2023-08-02 06:44:57 +0000 | [diff] [blame] | 2448 | module.createApiLibrary(mctx, scope, alternativeFullApiSurfaceStubLib) |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 2449 | } |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 2450 | |
| 2451 | module.createTopLevelStubsLibrary(mctx, scope, contributesToApiSurface) |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2452 | module.createTopLevelExportableStubsLibrary(mctx, scope) |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 2453 | } |
| 2454 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 2455 | if module.requiresRuntimeImplementationLibrary() { |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 2456 | // Create child module to create an implementation library. |
| 2457 | // |
| 2458 | // This temporarily creates a second implementation library that can be explicitly |
| 2459 | // referenced. |
| 2460 | // |
| 2461 | // TODO(b/156618935) - update comment once only one implementation library is created. |
| 2462 | module.createImplLibrary(mctx) |
| 2463 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 2464 | // Only create an XML permissions file that declares the library as being usable |
| 2465 | // as a shared library if required. |
| 2466 | if module.sharedLibrary() { |
| 2467 | module.createXmlFile(mctx) |
| 2468 | } |
Paul Duffin | 43db9be | 2019-12-30 17:35:49 +0000 | [diff] [blame] | 2469 | |
| 2470 | // record java_sdk_library modules so that they are exported to make |
| 2471 | javaSdkLibraries := javaSdkLibraries(mctx.Config()) |
| 2472 | javaSdkLibrariesLock.Lock() |
| 2473 | defer javaSdkLibrariesLock.Unlock() |
| 2474 | *javaSdkLibraries = append(*javaSdkLibraries, module.BaseModuleName()) |
| 2475 | } |
Anton Hansson | 7f66efa | 2020-10-08 14:47:23 +0100 | [diff] [blame] | 2476 | |
Paul Duffin | 77590a8 | 2022-04-28 14:13:30 +0000 | [diff] [blame] | 2477 | // Add the impl_only_libs and impl_only_static_libs *after* we're done using them in submodules. |
Anton Hansson | 7f66efa | 2020-10-08 14:47:23 +0100 | [diff] [blame] | 2478 | module.properties.Libs = append(module.properties.Libs, module.sdkLibraryProperties.Impl_only_libs...) |
Paul Duffin | 77590a8 | 2022-04-28 14:13:30 +0000 | [diff] [blame] | 2479 | module.properties.Static_libs = append(module.properties.Static_libs, module.sdkLibraryProperties.Impl_only_static_libs...) |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 2480 | } |
| 2481 | |
| 2482 | func (module *SdkLibrary) InitSdkLibraryProperties() { |
Colin Cross | ce6734e | 2020-06-15 16:09:53 -0700 | [diff] [blame] | 2483 | module.addHostAndDeviceProperties() |
| 2484 | module.AddProperties(&module.sdkLibraryProperties) |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 2485 | |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 2486 | module.initSdkLibraryComponent(module) |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 2487 | |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 2488 | module.properties.Installable = proptools.BoolPtr(true) |
| 2489 | module.deviceProperties.IsSDKLibrary = true |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 2490 | } |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 2491 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 2492 | func (module *SdkLibrary) requiresRuntimeImplementationLibrary() bool { |
| 2493 | return !proptools.Bool(module.sdkLibraryProperties.Api_only) |
| 2494 | } |
| 2495 | |
Jiyong Park | 932cdfe | 2020-05-28 00:19:53 +0900 | [diff] [blame] | 2496 | func (module *SdkLibrary) defaultsToStubs() bool { |
| 2497 | return proptools.Bool(module.sdkLibraryProperties.Default_to_stubs) |
| 2498 | } |
| 2499 | |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 2500 | // Defines how to name the individual component modules the sdk library creates. |
| 2501 | type sdkLibraryComponentNamingScheme interface { |
| 2502 | stubsLibraryModuleName(scope *apiScope, baseName string) string |
| 2503 | |
| 2504 | stubsSourceModuleName(scope *apiScope, baseName string) string |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 2505 | |
| 2506 | apiLibraryModuleName(scope *apiScope, baseName string) string |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 2507 | |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2508 | sourceStubsLibraryModuleName(scope *apiScope, baseName string) string |
| 2509 | |
| 2510 | exportableStubsLibraryModuleName(scope *apiScope, baseName string) string |
| 2511 | |
| 2512 | exportableSourceStubsLibraryModuleName(scope *apiScope, baseName string) string |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 2513 | } |
| 2514 | |
| 2515 | type defaultNamingScheme struct { |
| 2516 | } |
| 2517 | |
| 2518 | func (s *defaultNamingScheme) stubsLibraryModuleName(scope *apiScope, baseName string) string { |
| 2519 | return scope.stubsLibraryModuleName(baseName) |
| 2520 | } |
| 2521 | |
| 2522 | func (s *defaultNamingScheme) stubsSourceModuleName(scope *apiScope, baseName string) string { |
| 2523 | return scope.stubsSourceModuleName(baseName) |
| 2524 | } |
| 2525 | |
Jihoon Kang | 1c92c3e | 2023-03-23 17:44:51 +0000 | [diff] [blame] | 2526 | func (s *defaultNamingScheme) apiLibraryModuleName(scope *apiScope, baseName string) string { |
| 2527 | return scope.apiLibraryModuleName(baseName) |
| 2528 | } |
| 2529 | |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2530 | func (s *defaultNamingScheme) sourceStubsLibraryModuleName(scope *apiScope, baseName string) string { |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 2531 | return scope.sourceStubLibraryModuleName(baseName) |
| 2532 | } |
| 2533 | |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2534 | func (s *defaultNamingScheme) exportableStubsLibraryModuleName(scope *apiScope, baseName string) string { |
| 2535 | return scope.exportableStubsLibraryModuleName(baseName) |
| 2536 | } |
| 2537 | |
| 2538 | func (s *defaultNamingScheme) exportableSourceStubsLibraryModuleName(scope *apiScope, baseName string) string { |
| 2539 | return scope.exportableSourceStubsLibraryModuleName(baseName) |
| 2540 | } |
| 2541 | |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 2542 | var _ sdkLibraryComponentNamingScheme = (*defaultNamingScheme)(nil) |
| 2543 | |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2544 | func hasStubsLibrarySuffix(name string, apiScope *apiScope) bool { |
| 2545 | return strings.HasSuffix(name, apiScope.stubsLibraryModuleNameSuffix()) || |
| 2546 | strings.HasSuffix(name, apiScope.exportableStubsLibraryModuleNameSuffix()) |
| 2547 | } |
| 2548 | |
Jaewoong Jung | bc15e3a | 2021-03-10 17:02:43 -0800 | [diff] [blame] | 2549 | func moduleStubLinkType(name string) (stub bool, ret sdkLinkType) { |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 2550 | name = strings.TrimSuffix(name, ".from-source") |
| 2551 | |
Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 2552 | // This suffix-based approach is fragile and could potentially mis-trigger. |
| 2553 | // TODO(b/155164730): Clean this up when modules no longer reference sdk_lib stubs directly. |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2554 | if hasStubsLibrarySuffix(name, apiScopePublic) { |
Anton Hansson | 08f476b | 2021-04-07 15:32:19 +0100 | [diff] [blame] | 2555 | if name == "hwbinder.stubs" || name == "libcore_private.stubs" { |
| 2556 | // Due to a previous bug, these modules were not considered stubs, so we retain that. |
| 2557 | return false, javaPlatform |
| 2558 | } |
Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 2559 | return true, javaSdk |
| 2560 | } |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2561 | if hasStubsLibrarySuffix(name, apiScopeSystem) { |
Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 2562 | return true, javaSystem |
| 2563 | } |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2564 | if hasStubsLibrarySuffix(name, apiScopeModuleLib) { |
Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 2565 | return true, javaModule |
| 2566 | } |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2567 | if hasStubsLibrarySuffix(name, apiScopeTest) { |
Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 2568 | return true, javaSystem |
| 2569 | } |
Jihoon Kang | fa4a90d | 2023-12-20 02:53:38 +0000 | [diff] [blame] | 2570 | if hasStubsLibrarySuffix(name, apiScopeSystemServer) { |
Jihoon Kang | 1147b31 | 2023-06-08 23:25:57 +0000 | [diff] [blame] | 2571 | return true, javaSystemServer |
| 2572 | } |
Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 2573 | return false, javaPlatform |
| 2574 | } |
| 2575 | |
Jaewoong Jung | 4f158ee | 2019-07-11 10:05:35 -0700 | [diff] [blame] | 2576 | // java_sdk_library is a special Java library that provides optional platform APIs to apps. |
| 2577 | // In practice, it can be viewed as a combination of several modules: 1) stubs library that clients |
| 2578 | // are linked against to, 2) droiddoc module that internally generates API stubs source files, |
| 2579 | // 3) the real runtime shared library that implements the APIs, and 4) XML file for adding |
| 2580 | // the runtime lib to the classpath at runtime if requested via <uses-library>. |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 2581 | func SdkLibraryFactory() android.Module { |
| 2582 | module := &SdkLibrary{} |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 2583 | |
| 2584 | // Initialize information common between source and prebuilt. |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 2585 | module.initCommon(module) |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 2586 | |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 2587 | module.InitSdkLibraryProperties() |
Jooyung Han | 58f26ab | 2019-12-18 15:34:32 +0900 | [diff] [blame] | 2588 | android.InitApexModule(module) |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 2589 | InitJavaModule(module, android.HostAndDeviceSupported) |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 2590 | |
| 2591 | // Initialize the map from scope to scope specific properties. |
| 2592 | scopeToProperties := make(map[*apiScope]*ApiScopeProperties) |
Jihoon Kang | 98aa8fa | 2024-06-07 11:06:57 +0000 | [diff] [blame] | 2593 | for _, scope := range AllApiScopes { |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 2594 | scopeToProperties[scope] = scope.scopeSpecificProperties(module) |
| 2595 | } |
| 2596 | module.scopeToProperties = scopeToProperties |
| 2597 | |
Paul Duffin | 4911a89 | 2020-04-29 23:35:13 +0100 | [diff] [blame] | 2598 | // Add the properties containing visibility rules so that they are checked. |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 2599 | android.AddVisibilityProperty(module, "impl_library_visibility", &module.sdkLibraryProperties.Impl_library_visibility) |
Paul Duffin | 4911a89 | 2020-04-29 23:35:13 +0100 | [diff] [blame] | 2600 | android.AddVisibilityProperty(module, "stubs_library_visibility", &module.sdkLibraryProperties.Stubs_library_visibility) |
| 2601 | android.AddVisibilityProperty(module, "stubs_source_visibility", &module.sdkLibraryProperties.Stubs_source_visibility) |
| 2602 | |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 2603 | module.SetDefaultableHook(func(ctx android.DefaultableHookContext) { |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 2604 | // If no implementation is required then it cannot be used as a shared library |
| 2605 | // either. |
| 2606 | if !module.requiresRuntimeImplementationLibrary() { |
| 2607 | // If shared_library has been explicitly set to true then it is incompatible |
| 2608 | // with api_only: true. |
| 2609 | if proptools.Bool(module.commonSdkLibraryProperties.Shared_library) { |
| 2610 | ctx.PropertyErrorf("api_only/shared_library", "inconsistent settings, shared_library and api_only cannot both be true") |
| 2611 | } |
| 2612 | // Set shared_library: false. |
| 2613 | module.commonSdkLibraryProperties.Shared_library = proptools.BoolPtr(false) |
| 2614 | } |
| 2615 | |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 2616 | if module.initCommonAfterDefaultsApplied(ctx) { |
| 2617 | module.CreateInternalModules(ctx) |
| 2618 | } |
| 2619 | }) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 2620 | return module |
| 2621 | } |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2622 | |
| 2623 | // |
| 2624 | // SDK library prebuilts |
| 2625 | // |
| 2626 | |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2627 | // Properties associated with each api scope. |
| 2628 | type sdkLibraryScopeProperties struct { |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2629 | Jars []string `android:"path"` |
| 2630 | |
| 2631 | Sdk_version *string |
| 2632 | |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2633 | // List of shared java libs that this module has dependencies to |
| 2634 | Libs []string |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2635 | |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 2636 | // The stubs source. |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2637 | Stub_srcs []string `android:"path"` |
Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 2638 | |
| 2639 | // The current.txt |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2640 | Current_api *string `android:"path"` |
Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 2641 | |
| 2642 | // The removed.txt |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2643 | Removed_api *string `android:"path"` |
Anton Hansson | d78eb76 | 2021-09-21 15:25:12 +0100 | [diff] [blame] | 2644 | |
| 2645 | // Annotation zip |
| 2646 | Annotations *string `android:"path"` |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2647 | } |
| 2648 | |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2649 | type sdkLibraryImportProperties struct { |
Paul Duffin | fcfd791 | 2020-01-31 17:54:30 +0000 | [diff] [blame] | 2650 | // List of shared java libs, common to all scopes, that this module has |
| 2651 | // dependencies to |
| 2652 | Libs []string |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2653 | |
| 2654 | // If set to true, compile dex files for the stubs. Defaults to false. |
| 2655 | Compile_dex *bool |
Paul Duffin | 869de14 | 2021-07-15 14:14:41 +0100 | [diff] [blame] | 2656 | |
| 2657 | // If not empty, classes are restricted to the specified packages and their sub-packages. |
Paul Duffin | 869de14 | 2021-07-15 14:14:41 +0100 | [diff] [blame] | 2658 | Permitted_packages []string |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 2659 | |
| 2660 | // Name of the source soong module that gets shadowed by this prebuilt |
| 2661 | // If unspecified, follows the naming convention that the source module of |
| 2662 | // the prebuilt is Name() without "prebuilt_" prefix |
| 2663 | Source_module_name *string |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2664 | } |
| 2665 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2666 | type SdkLibraryImport struct { |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2667 | android.ModuleBase |
| 2668 | android.DefaultableModuleBase |
| 2669 | prebuilt android.Prebuilt |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2670 | android.ApexModuleBase |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2671 | |
Paul Duffin | 3785673 | 2021-02-26 14:24:15 +0000 | [diff] [blame] | 2672 | hiddenAPI |
Jiakai Zhang | 204356f | 2021-09-09 08:12:46 +0000 | [diff] [blame] | 2673 | dexpreopter |
Paul Duffin | 3785673 | 2021-02-26 14:24:15 +0000 | [diff] [blame] | 2674 | |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2675 | properties sdkLibraryImportProperties |
| 2676 | |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 2677 | // Map from api scope to the scope specific property structure. |
| 2678 | scopeProperties map[*apiScope]*sdkLibraryScopeProperties |
| 2679 | |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2680 | commonToSdkLibraryAndImport |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2681 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2682 | // The reference to the xml permissions module created by the source module. |
| 2683 | // Is nil if the source module does not exist. |
| 2684 | xmlPermissionsFileModule *sdkLibraryXml |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2685 | |
Jeongik Cha | d5fe878 | 2021-07-08 01:13:11 +0900 | [diff] [blame] | 2686 | // Build path to the dex implementation jar obtained from the prebuilt_apex, if any. |
Spandan Das | fae468e | 2023-12-12 23:23:53 +0000 | [diff] [blame] | 2687 | dexJarFile OptionalDexJarPath |
| 2688 | dexJarFileErr error |
Jeongik Cha | d5fe878 | 2021-07-08 01:13:11 +0900 | [diff] [blame] | 2689 | |
| 2690 | // Expected install file path of the source module(sdk_library) |
| 2691 | // or dex implementation jar obtained from the prebuilt_apex, if any. |
| 2692 | installFile android.Path |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2693 | } |
| 2694 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2695 | var _ SdkLibraryDependency = (*SdkLibraryImport)(nil) |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2696 | |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 2697 | // The type of a structure that contains a field of type sdkLibraryScopeProperties |
| 2698 | // for each apiscope in allApiScopes, e.g. something like: |
Colin Cross | d079e0b | 2022-08-16 10:27:33 -0700 | [diff] [blame] | 2699 | // |
| 2700 | // struct { |
| 2701 | // Public sdkLibraryScopeProperties |
| 2702 | // System sdkLibraryScopeProperties |
| 2703 | // ... |
| 2704 | // } |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 2705 | var allScopeStructType = createAllScopePropertiesStructType() |
| 2706 | |
| 2707 | // Dynamically create a structure type for each apiscope in allApiScopes. |
| 2708 | func createAllScopePropertiesStructType() reflect.Type { |
| 2709 | var fields []reflect.StructField |
Jihoon Kang | 98aa8fa | 2024-06-07 11:06:57 +0000 | [diff] [blame] | 2710 | for _, apiScope := range AllApiScopes { |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 2711 | field := reflect.StructField{ |
| 2712 | Name: apiScope.fieldName, |
| 2713 | Type: reflect.TypeOf(sdkLibraryScopeProperties{}), |
| 2714 | } |
| 2715 | fields = append(fields, field) |
| 2716 | } |
| 2717 | |
| 2718 | return reflect.StructOf(fields) |
| 2719 | } |
| 2720 | |
| 2721 | // Create an instance of the scope specific structure type and return a map |
| 2722 | // from apiscope to a pointer to each scope specific field. |
| 2723 | func createPropertiesInstance() (interface{}, map[*apiScope]*sdkLibraryScopeProperties) { |
| 2724 | allScopePropertiesPtr := reflect.New(allScopeStructType) |
| 2725 | allScopePropertiesStruct := allScopePropertiesPtr.Elem() |
| 2726 | scopeProperties := make(map[*apiScope]*sdkLibraryScopeProperties) |
| 2727 | |
Jihoon Kang | 98aa8fa | 2024-06-07 11:06:57 +0000 | [diff] [blame] | 2728 | for _, apiScope := range AllApiScopes { |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 2729 | field := allScopePropertiesStruct.FieldByName(apiScope.fieldName) |
| 2730 | scopeProperties[apiScope] = field.Addr().Interface().(*sdkLibraryScopeProperties) |
| 2731 | } |
| 2732 | |
| 2733 | return allScopePropertiesPtr.Interface(), scopeProperties |
| 2734 | } |
| 2735 | |
Jaewoong Jung | 4f158ee | 2019-07-11 10:05:35 -0700 | [diff] [blame] | 2736 | // java_sdk_library_import imports a prebuilt java_sdk_library. |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2737 | func sdkLibraryImportFactory() android.Module { |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2738 | module := &SdkLibraryImport{} |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2739 | |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 2740 | allScopeProperties, scopeToProperties := createPropertiesInstance() |
| 2741 | module.scopeProperties = scopeToProperties |
Jiakai Zhang | 9c4dc19 | 2023-02-09 00:09:24 +0800 | [diff] [blame] | 2742 | module.AddProperties(&module.properties, allScopeProperties, &module.importDexpreoptProperties) |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2743 | |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 2744 | // Initialize information common between source and prebuilt. |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 2745 | module.initCommon(module) |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 2746 | |
Paul Duffin | 0bdcb27 | 2020-02-06 15:24:57 +0000 | [diff] [blame] | 2747 | android.InitPrebuiltModule(module, &[]string{""}) |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2748 | android.InitApexModule(module) |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2749 | InitJavaModule(module, android.HostAndDeviceSupported) |
| 2750 | |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 2751 | module.SetDefaultableHook(func(mctx android.DefaultableHookContext) { |
| 2752 | if module.initCommonAfterDefaultsApplied(mctx) { |
| 2753 | module.createInternalModules(mctx) |
| 2754 | } |
| 2755 | }) |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2756 | return module |
| 2757 | } |
| 2758 | |
Paul Duffin | 630b11e | 2021-07-15 13:35:26 +0100 | [diff] [blame] | 2759 | var _ PermittedPackagesForUpdatableBootJars = (*SdkLibraryImport)(nil) |
| 2760 | |
| 2761 | func (module *SdkLibraryImport) PermittedPackagesForUpdatableBootJars() []string { |
| 2762 | return module.properties.Permitted_packages |
| 2763 | } |
| 2764 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2765 | func (module *SdkLibraryImport) Prebuilt() *android.Prebuilt { |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2766 | return &module.prebuilt |
| 2767 | } |
| 2768 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2769 | func (module *SdkLibraryImport) Name() string { |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2770 | return module.prebuilt.Name(module.ModuleBase.Name()) |
| 2771 | } |
| 2772 | |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 2773 | func (module *SdkLibraryImport) BaseModuleName() string { |
| 2774 | return proptools.StringDefault(module.properties.Source_module_name, module.ModuleBase.Name()) |
| 2775 | } |
| 2776 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2777 | func (module *SdkLibraryImport) createInternalModules(mctx android.DefaultableHookContext) { |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2778 | |
Paul Duffin | 5006151 | 2020-01-21 16:31:05 +0000 | [diff] [blame] | 2779 | // If the build is configured to use prebuilts then force this to be preferred. |
Jeongik Cha | 816a23a | 2020-07-08 01:09:23 +0900 | [diff] [blame] | 2780 | if mctx.Config().AlwaysUsePrebuiltSdks() { |
Paul Duffin | 5006151 | 2020-01-21 16:31:05 +0000 | [diff] [blame] | 2781 | module.prebuilt.ForcePrefer() |
| 2782 | } |
| 2783 | |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 2784 | for apiScope, scopeProperties := range module.scopeProperties { |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2785 | if len(scopeProperties.Jars) == 0 { |
| 2786 | continue |
| 2787 | } |
| 2788 | |
Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2789 | module.createJavaImportForStubs(mctx, apiScope, scopeProperties) |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2790 | |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2791 | if len(scopeProperties.Stub_srcs) > 0 { |
| 2792 | module.createPrebuiltStubsSources(mctx, apiScope, scopeProperties) |
| 2793 | } |
Jihoon Kang | 71c8683 | 2023-09-13 01:01:53 +0000 | [diff] [blame] | 2794 | |
| 2795 | if scopeProperties.Current_api != nil { |
| 2796 | module.createPrebuiltApiContribution(mctx, apiScope, scopeProperties) |
| 2797 | } |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2798 | } |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2799 | |
| 2800 | javaSdkLibraries := javaSdkLibraries(mctx.Config()) |
| 2801 | javaSdkLibrariesLock.Lock() |
| 2802 | defer javaSdkLibrariesLock.Unlock() |
| 2803 | *javaSdkLibraries = append(*javaSdkLibraries, module.BaseModuleName()) |
| 2804 | } |
| 2805 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2806 | func (module *SdkLibraryImport) createJavaImportForStubs(mctx android.DefaultableHookContext, apiScope *apiScope, scopeProperties *sdkLibraryScopeProperties) { |
Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2807 | // Creates a java import for the jar with ".stubs" suffix |
| 2808 | props := struct { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 2809 | Name *string |
| 2810 | Source_module_name *string |
| 2811 | Created_by_java_sdk_library_name *string |
| 2812 | Sdk_version *string |
| 2813 | Libs []string |
| 2814 | Jars []string |
| 2815 | Compile_dex *bool |
Jihoon Kang | fe914ed | 2024-02-12 22:49:21 +0000 | [diff] [blame] | 2816 | Is_stubs_module *bool |
Paul Duffin | bf4de04 | 2022-09-27 12:41:52 +0100 | [diff] [blame] | 2817 | |
| 2818 | android.UserSuppliedPrebuiltProperties |
Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2819 | }{} |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 2820 | props.Name = proptools.StringPtr(module.stubsLibraryModuleName(apiScope)) |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 2821 | props.Source_module_name = proptools.StringPtr(apiScope.stubsLibraryModuleName(module.BaseModuleName())) |
| 2822 | props.Created_by_java_sdk_library_name = proptools.StringPtr(module.RootLibraryName()) |
Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2823 | props.Sdk_version = scopeProperties.Sdk_version |
| 2824 | // Prepend any of the libs from the legacy public properties to the libs for each of the |
| 2825 | // scopes to avoid having to duplicate them in each scope. |
| 2826 | props.Libs = append(module.properties.Libs, scopeProperties.Libs...) |
| 2827 | props.Jars = scopeProperties.Jars |
Paul Duffin | 1dbe3ca | 2020-05-16 09:57:59 +0100 | [diff] [blame] | 2828 | |
Paul Duffin | 38b5785 | 2020-05-13 16:08:09 +0100 | [diff] [blame] | 2829 | // The imports are preferred if the java_sdk_library_import is preferred. |
Paul Duffin | bf4de04 | 2022-09-27 12:41:52 +0100 | [diff] [blame] | 2830 | props.CopyUserSuppliedPropertiesFromPrebuilt(&module.prebuilt) |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 2831 | |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2832 | // The imports need to be compiled to dex if the java_sdk_library_import requests it. |
Paul Duffin | f4600f6 | 2021-05-13 22:34:45 +0100 | [diff] [blame] | 2833 | compileDex := module.properties.Compile_dex |
| 2834 | if module.stubLibrariesCompiledForDex() { |
| 2835 | compileDex = proptools.BoolPtr(true) |
| 2836 | } |
| 2837 | props.Compile_dex = compileDex |
Jihoon Kang | fe914ed | 2024-02-12 22:49:21 +0000 | [diff] [blame] | 2838 | props.Is_stubs_module = proptools.BoolPtr(true) |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2839 | |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 2840 | mctx.CreateModule(ImportFactory, &props, module.sdkComponentPropertiesForChildLibrary()) |
Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2841 | } |
| 2842 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2843 | func (module *SdkLibraryImport) createPrebuiltStubsSources(mctx android.DefaultableHookContext, apiScope *apiScope, scopeProperties *sdkLibraryScopeProperties) { |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2844 | props := struct { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 2845 | Name *string |
| 2846 | Source_module_name *string |
| 2847 | Created_by_java_sdk_library_name *string |
| 2848 | Srcs []string |
Paul Duffin | bf4de04 | 2022-09-27 12:41:52 +0100 | [diff] [blame] | 2849 | |
| 2850 | android.UserSuppliedPrebuiltProperties |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2851 | }{} |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 2852 | props.Name = proptools.StringPtr(module.stubsSourceModuleName(apiScope)) |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 2853 | props.Source_module_name = proptools.StringPtr(apiScope.stubsSourceModuleName(module.BaseModuleName())) |
| 2854 | props.Created_by_java_sdk_library_name = proptools.StringPtr(module.RootLibraryName()) |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2855 | props.Srcs = scopeProperties.Stub_srcs |
Paul Duffin | 38b5785 | 2020-05-13 16:08:09 +0100 | [diff] [blame] | 2856 | |
| 2857 | // The stubs source is preferred if the java_sdk_library_import is preferred. |
Paul Duffin | bf4de04 | 2022-09-27 12:41:52 +0100 | [diff] [blame] | 2858 | props.CopyUserSuppliedPropertiesFromPrebuilt(&module.prebuilt) |
| 2859 | |
Spandan Das | 2cc80ba | 2023-10-27 17:21:52 +0000 | [diff] [blame] | 2860 | mctx.CreateModule(PrebuiltStubsSourcesFactory, &props, module.sdkComponentPropertiesForChildLibrary()) |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2861 | } |
| 2862 | |
Jihoon Kang | 71c8683 | 2023-09-13 01:01:53 +0000 | [diff] [blame] | 2863 | func (module *SdkLibraryImport) createPrebuiltApiContribution(mctx android.DefaultableHookContext, apiScope *apiScope, scopeProperties *sdkLibraryScopeProperties) { |
| 2864 | api_file := scopeProperties.Current_api |
| 2865 | api_surface := &apiScope.name |
| 2866 | |
| 2867 | props := struct { |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 2868 | Name *string |
| 2869 | Source_module_name *string |
| 2870 | Created_by_java_sdk_library_name *string |
| 2871 | Api_surface *string |
| 2872 | Api_file *string |
| 2873 | Visibility []string |
Jihoon Kang | 71c8683 | 2023-09-13 01:01:53 +0000 | [diff] [blame] | 2874 | }{} |
| 2875 | |
| 2876 | props.Name = proptools.StringPtr(module.stubsSourceModuleName(apiScope) + ".api.contribution") |
Spandan Das | 23956d1 | 2024-01-19 00:22:22 +0000 | [diff] [blame] | 2877 | props.Source_module_name = proptools.StringPtr(apiScope.stubsSourceModuleName(module.BaseModuleName()) + ".api.contribution") |
| 2878 | props.Created_by_java_sdk_library_name = proptools.StringPtr(module.RootLibraryName()) |
Jihoon Kang | 71c8683 | 2023-09-13 01:01:53 +0000 | [diff] [blame] | 2879 | props.Api_surface = api_surface |
| 2880 | props.Api_file = api_file |
| 2881 | props.Visibility = []string{"//visibility:override", "//visibility:public"} |
| 2882 | |
Spandan Das | 2cc80ba | 2023-10-27 17:21:52 +0000 | [diff] [blame] | 2883 | mctx.CreateModule(ApiContributionImportFactory, &props, module.sdkComponentPropertiesForChildLibrary()) |
Jihoon Kang | 71c8683 | 2023-09-13 01:01:53 +0000 | [diff] [blame] | 2884 | } |
| 2885 | |
Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 2886 | // Add the dependencies on the child module in the component deps mutator so that it |
| 2887 | // creates references to the prebuilt and not the source modules. |
| 2888 | func (module *SdkLibraryImport) ComponentDepsMutator(ctx android.BottomUpMutatorContext) { |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 2889 | for apiScope, scopeProperties := range module.scopeProperties { |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2890 | if len(scopeProperties.Jars) == 0 { |
| 2891 | continue |
| 2892 | } |
| 2893 | |
| 2894 | // Add dependencies to the prebuilt stubs library |
Jihoon Kang | b743155 | 2024-01-22 19:40:08 +0000 | [diff] [blame] | 2895 | ctx.AddVariationDependencies(nil, apiScope.prebuiltStubsTag, android.PrebuiltNameFromSource(module.stubsLibraryModuleName(apiScope))) |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2896 | |
| 2897 | if len(scopeProperties.Stub_srcs) > 0 { |
| 2898 | // Add dependencies to the prebuilt stubs source library |
Paul Duffin | 864116c | 2021-04-02 10:24:13 +0100 | [diff] [blame] | 2899 | ctx.AddVariationDependencies(nil, apiScope.stubsSourceTag, android.PrebuiltNameFromSource(module.stubsSourceModuleName(apiScope))) |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2900 | } |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2901 | } |
Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 2902 | } |
| 2903 | |
| 2904 | // Add other dependencies as normal. |
| 2905 | func (module *SdkLibraryImport) DepsMutator(ctx android.BottomUpMutatorContext) { |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2906 | |
| 2907 | implName := module.implLibraryModuleName() |
| 2908 | if ctx.OtherModuleExists(implName) { |
| 2909 | ctx.AddVariationDependencies(nil, implLibraryTag, implName) |
| 2910 | |
| 2911 | xmlPermissionsModuleName := module.xmlPermissionsModuleName() |
| 2912 | if module.sharedLibrary() && ctx.OtherModuleExists(xmlPermissionsModuleName) { |
| 2913 | // Add dependency to the rule for generating the xml permissions file |
| 2914 | ctx.AddDependency(module, xmlPermissionsFileTag, xmlPermissionsModuleName) |
| 2915 | } |
| 2916 | } |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2917 | } |
| 2918 | |
Jiyong Park | 45bf82e | 2020-12-15 22:29:02 +0900 | [diff] [blame] | 2919 | var _ android.ApexModule = (*SdkLibraryImport)(nil) |
| 2920 | |
| 2921 | // Implements android.ApexModule |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2922 | func (module *SdkLibraryImport) DepIsInSameApex(mctx android.BaseModuleContext, dep android.Module) bool { |
| 2923 | depTag := mctx.OtherModuleDependencyTag(dep) |
| 2924 | if depTag == xmlPermissionsFileTag { |
| 2925 | return true |
| 2926 | } |
| 2927 | |
| 2928 | // None of the other dependencies of the java_sdk_library_import are in the same apex |
| 2929 | // as the one that references this module. |
| 2930 | return false |
| 2931 | } |
| 2932 | |
Jiyong Park | 45bf82e | 2020-12-15 22:29:02 +0900 | [diff] [blame] | 2933 | // Implements android.ApexModule |
Dan Albert | c806053 | 2020-07-22 22:32:17 -0700 | [diff] [blame] | 2934 | func (module *SdkLibraryImport) ShouldSupportSdkVersion(ctx android.BaseModuleContext, |
| 2935 | sdkVersion android.ApiLevel) error { |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 2936 | // we don't check prebuilt modules for sdk_version |
| 2937 | return nil |
| 2938 | } |
| 2939 | |
Paul Duffin | ea8f808 | 2021-06-24 13:25:57 +0100 | [diff] [blame] | 2940 | // Implements android.ApexModule |
| 2941 | func (module *SdkLibraryImport) UniqueApexVariations() bool { |
| 2942 | return module.uniqueApexVariations() |
| 2943 | } |
| 2944 | |
Paul Duffin | 09817d6 | 2022-04-28 17:45:11 +0100 | [diff] [blame] | 2945 | // MinSdkVersion - Implements hiddenAPIModule |
Spandan Das | 8c9ae7e | 2023-03-03 21:20:36 +0000 | [diff] [blame] | 2946 | func (module *SdkLibraryImport) MinSdkVersion(ctx android.EarlyModuleContext) android.ApiLevel { |
| 2947 | return android.NoneApiLevel |
Paul Duffin | 09817d6 | 2022-04-28 17:45:11 +0100 | [diff] [blame] | 2948 | } |
| 2949 | |
| 2950 | var _ hiddenAPIModule = (*SdkLibraryImport)(nil) |
| 2951 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2952 | func (module *SdkLibraryImport) OutputFiles(tag string) (android.Paths, error) { |
Paul Duffin | 1e940d5 | 2022-04-29 14:21:25 +0100 | [diff] [blame] | 2953 | paths, err := module.commonOutputFiles(tag) |
| 2954 | if paths != nil || err != nil { |
| 2955 | return paths, err |
| 2956 | } |
| 2957 | if module.implLibraryModule != nil { |
| 2958 | return module.implLibraryModule.OutputFiles(tag) |
| 2959 | } else { |
| 2960 | return nil, nil |
| 2961 | } |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 2962 | } |
| 2963 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2964 | func (module *SdkLibraryImport) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 2965 | module.generateCommonBuildActions(ctx) |
| 2966 | |
Jeongik Cha | d5fe878 | 2021-07-08 01:13:11 +0900 | [diff] [blame] | 2967 | // Assume that source module(sdk_library) is installed in /<sdk_library partition>/framework |
| 2968 | module.installFile = android.PathForModuleInstall(ctx, "framework", module.Stem()+".jar") |
| 2969 | |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2970 | // Record the paths to the prebuilt stubs library and stubs source. |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2971 | ctx.VisitDirectDeps(func(to android.Module) { |
| 2972 | tag := ctx.OtherModuleDependencyTag(to) |
| 2973 | |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2974 | // Extract information from any of the scope specific dependencies. |
| 2975 | if scopeTag, ok := tag.(scopeDependencyTag); ok { |
| 2976 | apiScope := scopeTag.apiScope |
| 2977 | scopePaths := module.getScopePathsCreateIfNeeded(apiScope) |
| 2978 | |
| 2979 | // Extract information from the dependency. The exact information extracted |
| 2980 | // is determined by the nature of the dependency which is determined by the tag. |
| 2981 | scopeTag.extractDepInfo(ctx, to, scopePaths) |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2982 | } else if tag == implLibraryTag { |
| 2983 | if implLibrary, ok := to.(*Library); ok { |
| 2984 | module.implLibraryModule = implLibrary |
| 2985 | } else { |
| 2986 | ctx.ModuleErrorf("implementation library must be of type *java.Library but was %T", to) |
| 2987 | } |
| 2988 | } else if tag == xmlPermissionsFileTag { |
| 2989 | if xmlPermissionsFileModule, ok := to.(*sdkLibraryXml); ok { |
| 2990 | module.xmlPermissionsFileModule = xmlPermissionsFileModule |
| 2991 | } else { |
| 2992 | ctx.ModuleErrorf("xml permissions file module must be of type *sdkLibraryXml but was %T", to) |
| 2993 | } |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2994 | } |
| 2995 | }) |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2996 | |
| 2997 | // Populate the scope paths with information from the properties. |
| 2998 | for apiScope, scopeProperties := range module.scopeProperties { |
| 2999 | if len(scopeProperties.Jars) == 0 { |
| 3000 | continue |
| 3001 | } |
| 3002 | |
| 3003 | paths := module.getScopePathsCreateIfNeeded(apiScope) |
Anton Hansson | d78eb76 | 2021-09-21 15:25:12 +0100 | [diff] [blame] | 3004 | paths.annotationsZip = android.OptionalPathForModuleSrc(ctx, scopeProperties.Annotations) |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 3005 | paths.currentApiFilePath = android.OptionalPathForModuleSrc(ctx, scopeProperties.Current_api) |
| 3006 | paths.removedApiFilePath = android.OptionalPathForModuleSrc(ctx, scopeProperties.Removed_api) |
| 3007 | } |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 3008 | |
| 3009 | if ctx.Device() { |
| 3010 | // If this is a variant created for a prebuilt_apex then use the dex implementation jar |
| 3011 | // obtained from the associated deapexer module. |
Colin Cross | ff694a8 | 2023-12-13 15:54:49 -0800 | [diff] [blame] | 3012 | ai, _ := android.ModuleProvider(ctx, android.ApexInfoProvider) |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 3013 | if ai.ForPrebuiltApex { |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 3014 | // Get the path of the dex implementation jar from the `deapexer` module. |
Spandan Das | fae468e | 2023-12-12 23:23:53 +0000 | [diff] [blame] | 3015 | di, err := android.FindDeapexerProviderForModule(ctx) |
| 3016 | if err != nil { |
| 3017 | // An error was found, possibly due to multiple apexes in the tree that export this library |
| 3018 | // Defer the error till a client tries to call DexJarBuildPath |
| 3019 | module.dexJarFileErr = err |
Spandan Das | 3a39201 | 2024-01-17 18:26:27 +0000 | [diff] [blame] | 3020 | module.initHiddenAPIError(err) |
Spandan Das | fae468e | 2023-12-12 23:23:53 +0000 | [diff] [blame] | 3021 | return |
Martin Stjernholm | 4482560 | 2021-09-17 01:44:12 +0100 | [diff] [blame] | 3022 | } |
Spandan Das | 5be6333 | 2023-12-13 00:06:32 +0000 | [diff] [blame] | 3023 | dexJarFileApexRootRelative := ApexRootRelativePathToJavaLib(module.BaseModuleName()) |
Jiakai Zhang | 81e4681 | 2023-02-08 21:56:07 +0800 | [diff] [blame] | 3024 | if dexOutputPath := di.PrebuiltExportPath(dexJarFileApexRootRelative); dexOutputPath != nil { |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 3025 | dexJarFile := makeDexJarPathFromPath(dexOutputPath) |
| 3026 | module.dexJarFile = dexJarFile |
Jiakai Zhang | 204356f | 2021-09-09 08:12:46 +0000 | [diff] [blame] | 3027 | installPath := android.PathForModuleInPartitionInstall( |
Jiakai Zhang | 81e4681 | 2023-02-08 21:56:07 +0800 | [diff] [blame] | 3028 | ctx, "apex", ai.ApexVariationName, dexJarFileApexRootRelative) |
Jiakai Zhang | 204356f | 2021-09-09 08:12:46 +0000 | [diff] [blame] | 3029 | module.installFile = installPath |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 3030 | module.initHiddenAPI(ctx, dexJarFile, module.findScopePaths(apiScopePublic).stubsImplPath[0], nil) |
Jiakai Zhang | 204356f | 2021-09-09 08:12:46 +0000 | [diff] [blame] | 3031 | |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 3032 | module.dexpreopter.installPath = module.dexpreopter.getInstallPath(ctx, android.RemoveOptionalPrebuiltPrefix(ctx.ModuleName()), installPath) |
Jiakai Zhang | 204356f | 2021-09-09 08:12:46 +0000 | [diff] [blame] | 3033 | module.dexpreopter.isSDKLibrary = true |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 3034 | module.dexpreopter.uncompressedDex = shouldUncompressDex(ctx, android.RemoveOptionalPrebuiltPrefix(ctx.ModuleName()), &module.dexpreopter) |
Jiakai Zhang | 81e4681 | 2023-02-08 21:56:07 +0800 | [diff] [blame] | 3035 | |
| 3036 | if profilePath := di.PrebuiltExportPath(dexJarFileApexRootRelative + ".prof"); profilePath != nil { |
| 3037 | module.dexpreopter.inputProfilePathOnHost = profilePath |
| 3038 | } |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 3039 | } else { |
| 3040 | // This should never happen as a variant for a prebuilt_apex is only created if the |
| 3041 | // prebuilt_apex has been configured to export the java library dex file. |
Martin Stjernholm | 4482560 | 2021-09-17 01:44:12 +0100 | [diff] [blame] | 3042 | ctx.ModuleErrorf("internal error: no dex implementation jar available from prebuilt APEX %s", di.ApexModuleName()) |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 3043 | } |
| 3044 | } |
| 3045 | } |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 3046 | } |
| 3047 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 3048 | func (module *SdkLibraryImport) sdkJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec, headerJars bool) android.Paths { |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 3049 | |
| 3050 | // For consistency with SdkLibrary make the implementation jar available to libraries that |
| 3051 | // are within the same APEX. |
| 3052 | implLibraryModule := module.implLibraryModule |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 3053 | if implLibraryModule != nil && withinSameApexesAs(ctx, module) { |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 3054 | if headerJars { |
| 3055 | return implLibraryModule.HeaderJars() |
| 3056 | } else { |
| 3057 | return implLibraryModule.ImplementationJars() |
| 3058 | } |
| 3059 | } |
| 3060 | |
Paul Duffin | 23970f4 | 2020-05-20 14:20:02 +0100 | [diff] [blame] | 3061 | return module.selectHeaderJarsForSdkVersion(ctx, sdkVersion) |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 3062 | } |
| 3063 | |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 3064 | // to satisfy SdkLibraryDependency interface |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 3065 | func (module *SdkLibraryImport) SdkHeaderJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths { |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 3066 | // This module is just a wrapper for the prebuilt stubs. |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 3067 | return module.sdkJars(ctx, sdkVersion, true) |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 3068 | } |
| 3069 | |
Ulya Trafimovich | dbf3166 | 2020-12-17 12:07:54 +0000 | [diff] [blame] | 3070 | // to satisfy UsesLibraryDependency interface |
Spandan Das | 59a4a2b | 2024-01-09 21:35:56 +0000 | [diff] [blame] | 3071 | func (module *SdkLibraryImport) DexJarBuildPath(ctx android.ModuleErrorfContext) OptionalDexJarPath { |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 3072 | // The dex implementation jar extracted from the .apex file should be used in preference to the |
| 3073 | // source. |
Spandan Das | fae468e | 2023-12-12 23:23:53 +0000 | [diff] [blame] | 3074 | if module.dexJarFileErr != nil { |
Spandan Das | 59a4a2b | 2024-01-09 21:35:56 +0000 | [diff] [blame] | 3075 | ctx.ModuleErrorf(module.dexJarFileErr.Error()) |
Spandan Das | fae468e | 2023-12-12 23:23:53 +0000 | [diff] [blame] | 3076 | } |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 3077 | if module.dexJarFile.IsSet() { |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 3078 | return module.dexJarFile |
| 3079 | } |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 3080 | if module.implLibraryModule == nil { |
Martin Stjernholm | 8be1e6d | 2021-09-15 03:34:04 +0100 | [diff] [blame] | 3081 | return makeUnsetDexJarPath() |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 3082 | } else { |
Spandan Das | 59a4a2b | 2024-01-09 21:35:56 +0000 | [diff] [blame] | 3083 | return module.implLibraryModule.DexJarBuildPath(ctx) |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 3084 | } |
| 3085 | } |
| 3086 | |
Ulya Trafimovich | dbf3166 | 2020-12-17 12:07:54 +0000 | [diff] [blame] | 3087 | // to satisfy UsesLibraryDependency interface |
Ulya Trafimovich | 31e444e | 2020-08-14 17:32:16 +0100 | [diff] [blame] | 3088 | func (module *SdkLibraryImport) DexJarInstallPath() android.Path { |
Jeongik Cha | d5fe878 | 2021-07-08 01:13:11 +0900 | [diff] [blame] | 3089 | return module.installFile |
Ulya Trafimovich | 31e444e | 2020-08-14 17:32:16 +0100 | [diff] [blame] | 3090 | } |
| 3091 | |
Ulya Trafimovich | dbf3166 | 2020-12-17 12:07:54 +0000 | [diff] [blame] | 3092 | // to satisfy UsesLibraryDependency interface |
| 3093 | func (module *SdkLibraryImport) ClassLoaderContexts() dexpreopt.ClassLoaderContextMap { |
| 3094 | return nil |
| 3095 | } |
| 3096 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 3097 | // to satisfy apex.javaDependency interface |
| 3098 | func (module *SdkLibraryImport) JacocoReportClassesFile() android.Path { |
| 3099 | if module.implLibraryModule == nil { |
| 3100 | return nil |
| 3101 | } else { |
| 3102 | return module.implLibraryModule.JacocoReportClassesFile() |
| 3103 | } |
| 3104 | } |
| 3105 | |
| 3106 | // to satisfy apex.javaDependency interface |
Colin Cross | 08dca38 | 2020-07-21 20:31:17 -0700 | [diff] [blame] | 3107 | func (module *SdkLibraryImport) LintDepSets() LintDepSets { |
| 3108 | if module.implLibraryModule == nil { |
| 3109 | return LintDepSets{} |
| 3110 | } else { |
| 3111 | return module.implLibraryModule.LintDepSets() |
| 3112 | } |
| 3113 | } |
| 3114 | |
Spandan Das | 17854f5 | 2022-01-14 21:19:14 +0000 | [diff] [blame] | 3115 | func (module *SdkLibraryImport) GetStrictUpdatabilityLinting() bool { |
Jaewoong Jung | 476b9d6 | 2021-05-10 15:30:00 -0700 | [diff] [blame] | 3116 | if module.implLibraryModule == nil { |
| 3117 | return false |
| 3118 | } else { |
Spandan Das | 17854f5 | 2022-01-14 21:19:14 +0000 | [diff] [blame] | 3119 | return module.implLibraryModule.GetStrictUpdatabilityLinting() |
Jaewoong Jung | 476b9d6 | 2021-05-10 15:30:00 -0700 | [diff] [blame] | 3120 | } |
| 3121 | } |
| 3122 | |
Spandan Das | 17854f5 | 2022-01-14 21:19:14 +0000 | [diff] [blame] | 3123 | func (module *SdkLibraryImport) SetStrictUpdatabilityLinting(strictLinting bool) { |
Jaewoong Jung | 476b9d6 | 2021-05-10 15:30:00 -0700 | [diff] [blame] | 3124 | if module.implLibraryModule != nil { |
Spandan Das | 17854f5 | 2022-01-14 21:19:14 +0000 | [diff] [blame] | 3125 | module.implLibraryModule.SetStrictUpdatabilityLinting(strictLinting) |
Jaewoong Jung | 476b9d6 | 2021-05-10 15:30:00 -0700 | [diff] [blame] | 3126 | } |
| 3127 | } |
| 3128 | |
Colin Cross | 08dca38 | 2020-07-21 20:31:17 -0700 | [diff] [blame] | 3129 | // to satisfy apex.javaDependency interface |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 3130 | func (module *SdkLibraryImport) Stem() string { |
| 3131 | return module.BaseModuleName() |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 3132 | } |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3133 | |
Paul Duffin | 44b481b | 2020-06-17 16:59:43 +0100 | [diff] [blame] | 3134 | var _ ApexDependency = (*SdkLibraryImport)(nil) |
| 3135 | |
| 3136 | // to satisfy java.ApexDependency interface |
| 3137 | func (module *SdkLibraryImport) HeaderJars() android.Paths { |
| 3138 | if module.implLibraryModule == nil { |
| 3139 | return nil |
| 3140 | } else { |
| 3141 | return module.implLibraryModule.HeaderJars() |
| 3142 | } |
| 3143 | } |
| 3144 | |
| 3145 | // to satisfy java.ApexDependency interface |
| 3146 | func (module *SdkLibraryImport) ImplementationAndResourcesJars() android.Paths { |
| 3147 | if module.implLibraryModule == nil { |
| 3148 | return nil |
| 3149 | } else { |
| 3150 | return module.implLibraryModule.ImplementationAndResourcesJars() |
| 3151 | } |
| 3152 | } |
| 3153 | |
Jiakai Zhang | 204356f | 2021-09-09 08:12:46 +0000 | [diff] [blame] | 3154 | // to satisfy java.DexpreopterInterface interface |
| 3155 | func (module *SdkLibraryImport) IsInstallable() bool { |
| 3156 | return true |
| 3157 | } |
| 3158 | |
Paul Duffin | fef5500 | 2021-06-17 14:56:05 +0100 | [diff] [blame] | 3159 | var _ android.RequiredFilesFromPrebuiltApex = (*SdkLibraryImport)(nil) |
| 3160 | |
Paul Duffin | b4bbf2c | 2021-06-17 15:59:07 +0100 | [diff] [blame] | 3161 | func (module *SdkLibraryImport) RequiredFilesFromPrebuiltApex(ctx android.BaseModuleContext) []string { |
Paul Duffin | fef5500 | 2021-06-17 14:56:05 +0100 | [diff] [blame] | 3162 | name := module.BaseModuleName() |
Jiakai Zhang | 81e4681 | 2023-02-08 21:56:07 +0800 | [diff] [blame] | 3163 | return requiredFilesFromPrebuiltApexForImport(name, &module.dexpreopter) |
Paul Duffin | fef5500 | 2021-06-17 14:56:05 +0100 | [diff] [blame] | 3164 | } |
| 3165 | |
Spandan Das | 2ea84dd | 2024-01-25 22:12:50 +0000 | [diff] [blame] | 3166 | func (j *SdkLibraryImport) UseProfileGuidedDexpreopt() bool { |
| 3167 | return proptools.Bool(j.importDexpreoptProperties.Dex_preopt.Profile_guided) |
| 3168 | } |
| 3169 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3170 | // java_sdk_library_xml |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3171 | type sdkLibraryXml struct { |
| 3172 | android.ModuleBase |
| 3173 | android.DefaultableModuleBase |
| 3174 | android.ApexModuleBase |
| 3175 | |
| 3176 | properties sdkLibraryXmlProperties |
| 3177 | |
| 3178 | outputFilePath android.OutputPath |
| 3179 | installDirPath android.InstallPath |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 3180 | |
| 3181 | hideApexVariantFromMake bool |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3182 | } |
| 3183 | |
| 3184 | type sdkLibraryXmlProperties struct { |
| 3185 | // canonical name of the lib |
| 3186 | Lib_name *string |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 3187 | |
| 3188 | // Signals that this shared library is part of the bootclasspath starting |
| 3189 | // on the version indicated in this attribute. |
| 3190 | // |
| 3191 | // This will make platforms at this level and above to ignore |
| 3192 | // <uses-library> tags with this library name because the library is already |
| 3193 | // available |
| 3194 | On_bootclasspath_since *string |
| 3195 | |
| 3196 | // Signals that this shared library was part of the bootclasspath before |
| 3197 | // (but not including) the version indicated in this attribute. |
| 3198 | // |
| 3199 | // The system will automatically add a <uses-library> tag with this library to |
| 3200 | // apps that target any SDK less than the version indicated in this attribute. |
| 3201 | On_bootclasspath_before *string |
| 3202 | |
| 3203 | // Indicates that PackageManager should ignore this shared library if the |
| 3204 | // platform is below the version indicated in this attribute. |
| 3205 | // |
| 3206 | // This means that the device won't recognise this library as installed. |
| 3207 | Min_device_sdk *string |
| 3208 | |
| 3209 | // Indicates that PackageManager should ignore this shared library if the |
| 3210 | // platform is above the version indicated in this attribute. |
| 3211 | // |
| 3212 | // This means that the device won't recognise this library as installed. |
| 3213 | Max_device_sdk *string |
Pedro Loureiro | c362142 | 2021-09-28 15:40:23 +0000 | [diff] [blame] | 3214 | |
| 3215 | // The SdkLibrary's min api level as a string |
| 3216 | // |
| 3217 | // This value comes from the ApiLevel of the MinSdkVersion property. |
| 3218 | Sdk_library_min_api_level *string |
Jamie Garside | e570ace | 2023-11-27 12:07:36 +0000 | [diff] [blame] | 3219 | |
| 3220 | // Uses-libs dependencies that the shared library requires to work correctly. |
| 3221 | // |
| 3222 | // This will add dependency="foo:bar" to the <library> section. |
| 3223 | Uses_libs_dependencies []string |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3224 | } |
| 3225 | |
| 3226 | // java_sdk_library_xml builds the permission xml file for a java_sdk_library. |
| 3227 | // Not to be used directly by users. java_sdk_library internally uses this. |
| 3228 | func sdkLibraryXmlFactory() android.Module { |
| 3229 | module := &sdkLibraryXml{} |
| 3230 | |
| 3231 | module.AddProperties(&module.properties) |
| 3232 | |
| 3233 | android.InitApexModule(module) |
| 3234 | android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 3235 | |
| 3236 | return module |
| 3237 | } |
| 3238 | |
Colin Cross | aede88c | 2020-08-11 12:17:01 -0700 | [diff] [blame] | 3239 | func (module *sdkLibraryXml) UniqueApexVariations() bool { |
| 3240 | // sdkLibraryXml needs a unique variation per APEX because the generated XML file contains the path to the |
| 3241 | // mounted APEX, which contains the name of the APEX. |
| 3242 | return true |
| 3243 | } |
| 3244 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3245 | // from android.PrebuiltEtcModule |
Jooyung Han | 0703fd8 | 2020-08-26 22:11:53 +0900 | [diff] [blame] | 3246 | func (module *sdkLibraryXml) BaseDir() string { |
| 3247 | return "etc" |
| 3248 | } |
| 3249 | |
| 3250 | // from android.PrebuiltEtcModule |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3251 | func (module *sdkLibraryXml) SubDir() string { |
| 3252 | return "permissions" |
| 3253 | } |
| 3254 | |
ThiƩbaud Weksteen | 00e8b31 | 2024-03-18 14:06:00 +1100 | [diff] [blame] | 3255 | var _ etc.PrebuiltEtcModule = (*sdkLibraryXml)(nil) |
| 3256 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3257 | // from android.ApexModule |
| 3258 | func (module *sdkLibraryXml) AvailableFor(what string) bool { |
| 3259 | return true |
| 3260 | } |
| 3261 | |
| 3262 | func (module *sdkLibraryXml) DepsMutator(ctx android.BottomUpMutatorContext) { |
| 3263 | // do nothing |
| 3264 | } |
| 3265 | |
Jiyong Park | 45bf82e | 2020-12-15 22:29:02 +0900 | [diff] [blame] | 3266 | var _ android.ApexModule = (*sdkLibraryXml)(nil) |
| 3267 | |
| 3268 | // Implements android.ApexModule |
Dan Albert | c806053 | 2020-07-22 22:32:17 -0700 | [diff] [blame] | 3269 | func (module *sdkLibraryXml) ShouldSupportSdkVersion(ctx android.BaseModuleContext, |
| 3270 | sdkVersion android.ApiLevel) error { |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 3271 | // sdkLibraryXml doesn't need to be checked separately because java_sdk_library is checked |
| 3272 | return nil |
| 3273 | } |
| 3274 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3275 | // File path to the runtime implementation library |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 3276 | func (module *sdkLibraryXml) implPath(ctx android.ModuleContext) string { |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3277 | implName := proptools.String(module.properties.Lib_name) |
Colin Cross | ff694a8 | 2023-12-13 15:54:49 -0800 | [diff] [blame] | 3278 | if apexInfo, _ := android.ModuleProvider(ctx, android.ApexInfoProvider); !apexInfo.IsForPlatform() { |
Colin Cross | e07f231 | 2020-08-13 11:24:56 -0700 | [diff] [blame] | 3279 | // TODO(b/146468504): ApexVariationName() is only a soong module name, not apex name. |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3280 | // In most cases, this works fine. But when apex_name is set or override_apex is used |
| 3281 | // this can be wrong. |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 3282 | return fmt.Sprintf("/apex/%s/javalib/%s.jar", apexInfo.ApexVariationName, implName) |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3283 | } |
| 3284 | partition := "system" |
| 3285 | if module.SocSpecific() { |
| 3286 | partition = "vendor" |
| 3287 | } else if module.DeviceSpecific() { |
| 3288 | partition = "odm" |
| 3289 | } else if module.ProductSpecific() { |
| 3290 | partition = "product" |
| 3291 | } else if module.SystemExtSpecific() { |
| 3292 | partition = "system_ext" |
| 3293 | } |
| 3294 | return "/" + partition + "/framework/" + implName + ".jar" |
| 3295 | } |
| 3296 | |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 3297 | func formattedOptionalSdkLevelAttribute(ctx android.ModuleContext, attrName string, value *string) string { |
| 3298 | if value == nil { |
| 3299 | return "" |
| 3300 | } |
| 3301 | apiLevel, err := android.ApiLevelFromUser(ctx, *value) |
| 3302 | if err != nil { |
Pedro Loureiro | ba6682f | 2021-10-29 09:32:32 +0000 | [diff] [blame] | 3303 | // attributes in bp files have underscores but in the xml have dashes. |
| 3304 | ctx.PropertyErrorf(strings.ReplaceAll(attrName, "-", "_"), err.Error()) |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 3305 | return "" |
| 3306 | } |
Pedro Loureiro | b638c62 | 2021-12-22 15:28:05 +0000 | [diff] [blame] | 3307 | if apiLevel.IsCurrent() { |
| 3308 | // passing "current" would always mean a future release, never the current (or the current in |
| 3309 | // progress) which means some conditions would never be triggered. |
| 3310 | ctx.PropertyErrorf(strings.ReplaceAll(attrName, "-", "_"), |
| 3311 | `"current" is not an allowed value for this attribute`) |
| 3312 | return "" |
| 3313 | } |
Pedro Loureiro | 4899122 | 2022-06-17 20:01:21 +0000 | [diff] [blame] | 3314 | // "safeValue" is safe because it translates finalized codenames to a string |
| 3315 | // with their SDK int. |
| 3316 | safeValue := apiLevel.String() |
| 3317 | return formattedOptionalAttribute(attrName, &safeValue) |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 3318 | } |
| 3319 | |
| 3320 | // formats an attribute for the xml permissions file if the value is not null |
| 3321 | // returns empty string otherwise |
| 3322 | func formattedOptionalAttribute(attrName string, value *string) string { |
| 3323 | if value == nil { |
| 3324 | return "" |
| 3325 | } |
Paul Duffin | 1816cde | 2024-04-10 10:58:21 +0100 | [diff] [blame] | 3326 | return fmt.Sprintf(" %s=\"%s\"\n", attrName, *value) |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 3327 | } |
| 3328 | |
Jamie Garside | e570ace | 2023-11-27 12:07:36 +0000 | [diff] [blame] | 3329 | func formattedDependenciesAttribute(dependencies []string) string { |
| 3330 | if dependencies == nil { |
| 3331 | return "" |
| 3332 | } |
Paul Duffin | 1816cde | 2024-04-10 10:58:21 +0100 | [diff] [blame] | 3333 | return fmt.Sprintf(" dependency=\"%s\"\n", strings.Join(dependencies, ":")) |
Jamie Garside | e570ace | 2023-11-27 12:07:36 +0000 | [diff] [blame] | 3334 | } |
| 3335 | |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 3336 | func (module *sdkLibraryXml) permissionsContents(ctx android.ModuleContext) string { |
| 3337 | libName := proptools.String(module.properties.Lib_name) |
| 3338 | libNameAttr := formattedOptionalAttribute("name", &libName) |
| 3339 | filePath := module.implPath(ctx) |
| 3340 | filePathAttr := formattedOptionalAttribute("file", &filePath) |
Pedro Loureiro | ba6682f | 2021-10-29 09:32:32 +0000 | [diff] [blame] | 3341 | implicitFromAttr := formattedOptionalSdkLevelAttribute(ctx, "on-bootclasspath-since", module.properties.On_bootclasspath_since) |
| 3342 | implicitUntilAttr := formattedOptionalSdkLevelAttribute(ctx, "on-bootclasspath-before", module.properties.On_bootclasspath_before) |
| 3343 | minSdkAttr := formattedOptionalSdkLevelAttribute(ctx, "min-device-sdk", module.properties.Min_device_sdk) |
| 3344 | maxSdkAttr := formattedOptionalSdkLevelAttribute(ctx, "max-device-sdk", module.properties.Max_device_sdk) |
Jamie Garside | e570ace | 2023-11-27 12:07:36 +0000 | [diff] [blame] | 3345 | dependenciesAttr := formattedDependenciesAttribute(module.properties.Uses_libs_dependencies) |
Pedro Loureiro | 196d3e6 | 2021-12-22 19:53:01 +0000 | [diff] [blame] | 3346 | // <library> is understood in all android versions whereas <apex-library> is only understood from API T (and ignored before that). |
| 3347 | // similarly, min_device_sdk is only understood from T. So if a library is using that, we need to use the apex-library to make sure this library is not loaded before T |
Pedro Loureiro | c362142 | 2021-09-28 15:40:23 +0000 | [diff] [blame] | 3348 | var libraryTag string |
| 3349 | if module.properties.Min_device_sdk != nil { |
Paul Duffin | 1816cde | 2024-04-10 10:58:21 +0100 | [diff] [blame] | 3350 | libraryTag = " <apex-library\n" |
Pedro Loureiro | c362142 | 2021-09-28 15:40:23 +0000 | [diff] [blame] | 3351 | } else { |
Paul Duffin | 1816cde | 2024-04-10 10:58:21 +0100 | [diff] [blame] | 3352 | libraryTag = " <library\n" |
Pedro Loureiro | c362142 | 2021-09-28 15:40:23 +0000 | [diff] [blame] | 3353 | } |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 3354 | |
| 3355 | return strings.Join([]string{ |
Paul Duffin | 1816cde | 2024-04-10 10:58:21 +0100 | [diff] [blame] | 3356 | "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n", |
| 3357 | "<!-- Copyright (C) 2018 The Android Open Source Project\n", |
| 3358 | "\n", |
| 3359 | " Licensed under the Apache License, Version 2.0 (the \"License\");\n", |
| 3360 | " you may not use this file except in compliance with the License.\n", |
| 3361 | " You may obtain a copy of the License at\n", |
| 3362 | "\n", |
| 3363 | " http://www.apache.org/licenses/LICENSE-2.0\n", |
| 3364 | "\n", |
| 3365 | " Unless required by applicable law or agreed to in writing, software\n", |
| 3366 | " distributed under the License is distributed on an \"AS IS\" BASIS,\n", |
| 3367 | " WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n", |
| 3368 | " See the License for the specific language governing permissions and\n", |
| 3369 | " limitations under the License.\n", |
| 3370 | "-->\n", |
| 3371 | "<permissions>\n", |
Pedro Loureiro | c362142 | 2021-09-28 15:40:23 +0000 | [diff] [blame] | 3372 | libraryTag, |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 3373 | libNameAttr, |
| 3374 | filePathAttr, |
| 3375 | implicitFromAttr, |
| 3376 | implicitUntilAttr, |
| 3377 | minSdkAttr, |
| 3378 | maxSdkAttr, |
Jamie Garside | e570ace | 2023-11-27 12:07:36 +0000 | [diff] [blame] | 3379 | dependenciesAttr, |
Paul Duffin | 1816cde | 2024-04-10 10:58:21 +0100 | [diff] [blame] | 3380 | " />\n", |
| 3381 | "</permissions>\n", |
| 3382 | }, "") |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 3383 | } |
| 3384 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3385 | func (module *sdkLibraryXml) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Colin Cross | ff694a8 | 2023-12-13 15:54:49 -0800 | [diff] [blame] | 3386 | apexInfo, _ := android.ModuleProvider(ctx, android.ApexInfoProvider) |
| 3387 | module.hideApexVariantFromMake = !apexInfo.IsForPlatform() |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 3388 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3389 | libName := proptools.String(module.properties.Lib_name) |
Pedro Loureiro | c362142 | 2021-09-28 15:40:23 +0000 | [diff] [blame] | 3390 | module.selfValidate(ctx) |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 3391 | xmlContent := module.permissionsContents(ctx) |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3392 | |
| 3393 | module.outputFilePath = android.PathForModuleOut(ctx, libName+".xml").OutputPath |
Paul Duffin | 1816cde | 2024-04-10 10:58:21 +0100 | [diff] [blame] | 3394 | android.WriteFileRuleVerbatim(ctx, module.outputFilePath, xmlContent) |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3395 | |
| 3396 | module.installDirPath = android.PathForModuleInstall(ctx, "etc", module.SubDir()) |
Jeongik Cha | 00e0991 | 2024-04-23 05:07:13 +0900 | [diff] [blame] | 3397 | ctx.PackageFile(module.installDirPath, libName+".xml", module.outputFilePath) |
mrziwang | e2346b8 | 2024-06-10 15:09:45 -0700 | [diff] [blame] | 3398 | |
| 3399 | ctx.SetOutputFiles(android.OutputPaths{module.outputFilePath}.Paths(), "") |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3400 | } |
| 3401 | |
| 3402 | func (module *sdkLibraryXml) AndroidMkEntries() []android.AndroidMkEntries { |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 3403 | if module.hideApexVariantFromMake { |
satayev | 8f088b0 | 2021-12-06 11:40:46 +0000 | [diff] [blame] | 3404 | return []android.AndroidMkEntries{{ |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3405 | Disabled: true, |
| 3406 | }} |
| 3407 | } |
| 3408 | |
satayev | 8f088b0 | 2021-12-06 11:40:46 +0000 | [diff] [blame] | 3409 | return []android.AndroidMkEntries{{ |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3410 | Class: "ETC", |
| 3411 | OutputFile: android.OptionalPathForPath(module.outputFilePath), |
| 3412 | ExtraEntries: []android.AndroidMkExtraEntriesFunc{ |
Colin Cross | aa25553 | 2020-07-03 13:18:24 -0700 | [diff] [blame] | 3413 | func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) { |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3414 | entries.SetString("LOCAL_MODULE_TAGS", "optional") |
Colin Cross | c68db4b | 2021-11-11 18:59:15 -0800 | [diff] [blame] | 3415 | entries.SetString("LOCAL_MODULE_PATH", module.installDirPath.String()) |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 3416 | entries.SetString("LOCAL_INSTALLED_MODULE_STEM", module.outputFilePath.Base()) |
| 3417 | }, |
| 3418 | }, |
| 3419 | }} |
| 3420 | } |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3421 | |
Pedro Loureiro | c362142 | 2021-09-28 15:40:23 +0000 | [diff] [blame] | 3422 | func (module *sdkLibraryXml) selfValidate(ctx android.ModuleContext) { |
| 3423 | module.validateAtLeastTAttributes(ctx) |
| 3424 | module.validateMinAndMaxDeviceSdk(ctx) |
| 3425 | module.validateMinMaxDeviceSdkAndModuleMinSdk(ctx) |
| 3426 | module.validateOnBootclasspathBeforeRequirements(ctx) |
| 3427 | } |
| 3428 | |
| 3429 | func (module *sdkLibraryXml) validateAtLeastTAttributes(ctx android.ModuleContext) { |
| 3430 | t := android.ApiLevelOrPanic(ctx, "Tiramisu") |
| 3431 | module.attrAtLeastT(ctx, t, module.properties.Min_device_sdk, "min_device_sdk") |
| 3432 | module.attrAtLeastT(ctx, t, module.properties.Max_device_sdk, "max_device_sdk") |
| 3433 | module.attrAtLeastT(ctx, t, module.properties.On_bootclasspath_before, "on_bootclasspath_before") |
| 3434 | module.attrAtLeastT(ctx, t, module.properties.On_bootclasspath_since, "on_bootclasspath_since") |
| 3435 | } |
| 3436 | |
| 3437 | func (module *sdkLibraryXml) attrAtLeastT(ctx android.ModuleContext, t android.ApiLevel, attr *string, attrName string) { |
| 3438 | if attr != nil { |
| 3439 | if level, err := android.ApiLevelFromUser(ctx, *attr); err == nil { |
| 3440 | // we will inform the user of invalid inputs when we try to write the |
| 3441 | // permissions xml file so we don't need to do it here |
| 3442 | if t.GreaterThan(level) { |
| 3443 | ctx.PropertyErrorf(attrName, "Attribute value needs to be at least T") |
| 3444 | } |
| 3445 | } |
| 3446 | } |
| 3447 | } |
| 3448 | |
| 3449 | func (module *sdkLibraryXml) validateMinAndMaxDeviceSdk(ctx android.ModuleContext) { |
| 3450 | if module.properties.Min_device_sdk != nil && module.properties.Max_device_sdk != nil { |
| 3451 | min, minErr := android.ApiLevelFromUser(ctx, *module.properties.Min_device_sdk) |
| 3452 | max, maxErr := android.ApiLevelFromUser(ctx, *module.properties.Max_device_sdk) |
| 3453 | if minErr == nil && maxErr == nil { |
| 3454 | // we will inform the user of invalid inputs when we try to write the |
| 3455 | // permissions xml file so we don't need to do it here |
| 3456 | if min.GreaterThan(max) { |
| 3457 | ctx.ModuleErrorf("min_device_sdk can't be greater than max_device_sdk") |
| 3458 | } |
| 3459 | } |
| 3460 | } |
| 3461 | } |
| 3462 | |
| 3463 | func (module *sdkLibraryXml) validateMinMaxDeviceSdkAndModuleMinSdk(ctx android.ModuleContext) { |
| 3464 | moduleMinApi := android.ApiLevelOrPanic(ctx, *module.properties.Sdk_library_min_api_level) |
| 3465 | if module.properties.Min_device_sdk != nil { |
| 3466 | api, err := android.ApiLevelFromUser(ctx, *module.properties.Min_device_sdk) |
| 3467 | if err == nil { |
| 3468 | if moduleMinApi.GreaterThan(api) { |
| 3469 | ctx.PropertyErrorf("min_device_sdk", "Can't be less than module's min sdk (%s)", moduleMinApi) |
| 3470 | } |
| 3471 | } |
| 3472 | } |
| 3473 | if module.properties.Max_device_sdk != nil { |
| 3474 | api, err := android.ApiLevelFromUser(ctx, *module.properties.Max_device_sdk) |
| 3475 | if err == nil { |
| 3476 | if moduleMinApi.GreaterThan(api) { |
| 3477 | ctx.PropertyErrorf("max_device_sdk", "Can't be less than module's min sdk (%s)", moduleMinApi) |
| 3478 | } |
| 3479 | } |
| 3480 | } |
| 3481 | } |
| 3482 | |
| 3483 | func (module *sdkLibraryXml) validateOnBootclasspathBeforeRequirements(ctx android.ModuleContext) { |
| 3484 | moduleMinApi := android.ApiLevelOrPanic(ctx, *module.properties.Sdk_library_min_api_level) |
| 3485 | if module.properties.On_bootclasspath_before != nil { |
| 3486 | t := android.ApiLevelOrPanic(ctx, "Tiramisu") |
| 3487 | // if we use the attribute, then we need to do this validation |
| 3488 | if moduleMinApi.LessThan(t) { |
| 3489 | // if minAPi is < T, then we need to have min_device_sdk (which only accepts T+) |
| 3490 | if module.properties.Min_device_sdk == nil { |
| 3491 | 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") |
| 3492 | } |
| 3493 | } |
| 3494 | } |
| 3495 | } |
| 3496 | |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3497 | type sdkLibrarySdkMemberType struct { |
| 3498 | android.SdkMemberTypeBase |
| 3499 | } |
| 3500 | |
Paul Duffin | 296701e | 2021-07-14 10:29:36 +0100 | [diff] [blame] | 3501 | func (s *sdkLibrarySdkMemberType) AddDependencies(ctx android.SdkDependencyContext, dependencyTag blueprint.DependencyTag, names []string) { |
| 3502 | ctx.AddVariationDependencies(nil, dependencyTag, names...) |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3503 | } |
| 3504 | |
| 3505 | func (s *sdkLibrarySdkMemberType) IsInstance(module android.Module) bool { |
| 3506 | _, ok := module.(*SdkLibrary) |
| 3507 | return ok |
| 3508 | } |
| 3509 | |
| 3510 | func (s *sdkLibrarySdkMemberType) AddPrebuiltModule(ctx android.SdkMemberContext, member android.SdkMember) android.BpModule { |
| 3511 | return ctx.SnapshotBuilder().AddPrebuiltModule(member, "java_sdk_library_import") |
| 3512 | } |
| 3513 | |
| 3514 | func (s *sdkLibrarySdkMemberType) CreateVariantPropertiesStruct() android.SdkMemberProperties { |
| 3515 | return &sdkLibrarySdkMemberProperties{} |
| 3516 | } |
| 3517 | |
Paul Duffin | 976b0e5 | 2021-04-27 23:20:26 +0100 | [diff] [blame] | 3518 | var javaSdkLibrarySdkMemberType = &sdkLibrarySdkMemberType{ |
| 3519 | android.SdkMemberTypeBase{ |
| 3520 | PropertyName: "java_sdk_libs", |
| 3521 | SupportsSdk: true, |
| 3522 | }, |
| 3523 | } |
| 3524 | |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3525 | type sdkLibrarySdkMemberProperties struct { |
| 3526 | android.SdkMemberPropertiesBase |
| 3527 | |
Paul Duffin | e840995 | 2022-09-22 16:24:46 +0100 | [diff] [blame] | 3528 | // Stem name for files in the sdk snapshot. |
| 3529 | // |
| 3530 | // This is used to construct the path names of various sdk library files in the sdk snapshot to |
| 3531 | // make sure that they match the finalized versions of those files in prebuilts/sdk. |
| 3532 | // |
| 3533 | // This property is marked as keep so that it will be kept in all instances of this struct, will |
| 3534 | // not be cleared but will be copied to common structs. That is needed because this field is used |
| 3535 | // to construct many file names for other parts of this struct and so it needs to be present in |
| 3536 | // all structs. If it was not marked as keep then it would be cleared in some structs and so would |
| 3537 | // be unavailable for generating file names if there were other properties that were still set. |
| 3538 | Stem string `sdk:"keep"` |
| 3539 | |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3540 | // Scope to per scope properties. |
Paul Duffin | 106a3a4 | 2022-01-27 16:39:06 +0000 | [diff] [blame] | 3541 | Scopes map[*apiScope]*scopeProperties |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3542 | |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 3543 | // The Java stubs source files. |
| 3544 | Stub_srcs []string |
Paul Duffin | f7a6433 | 2020-05-13 16:54:55 +0100 | [diff] [blame] | 3545 | |
| 3546 | // The naming scheme. |
| 3547 | Naming_scheme *string |
Paul Duffin | d7eb1c2 | 2020-05-26 20:57:10 +0100 | [diff] [blame] | 3548 | |
| 3549 | // True if the java_sdk_library_import is for a shared library, false |
| 3550 | // otherwise. |
| 3551 | Shared_library *bool |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 3552 | |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 3553 | // True if the stub imports should produce dex jars. |
| 3554 | Compile_dex *bool |
| 3555 | |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 3556 | // The paths to the doctag files to add to the prebuilt. |
| 3557 | Doctag_paths android.Paths |
Paul Duffin | 869de14 | 2021-07-15 14:14:41 +0100 | [diff] [blame] | 3558 | |
| 3559 | Permitted_packages []string |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 3560 | |
| 3561 | // Signals that this shared library is part of the bootclasspath starting |
| 3562 | // on the version indicated in this attribute. |
| 3563 | // |
| 3564 | // This will make platforms at this level and above to ignore |
| 3565 | // <uses-library> tags with this library name because the library is already |
| 3566 | // available |
| 3567 | On_bootclasspath_since *string |
| 3568 | |
| 3569 | // Signals that this shared library was part of the bootclasspath before |
| 3570 | // (but not including) the version indicated in this attribute. |
| 3571 | // |
| 3572 | // The system will automatically add a <uses-library> tag with this library to |
| 3573 | // apps that target any SDK less than the version indicated in this attribute. |
| 3574 | On_bootclasspath_before *string |
| 3575 | |
| 3576 | // Indicates that PackageManager should ignore this shared library if the |
| 3577 | // platform is below the version indicated in this attribute. |
| 3578 | // |
| 3579 | // This means that the device won't recognise this library as installed. |
| 3580 | Min_device_sdk *string |
| 3581 | |
| 3582 | // Indicates that PackageManager should ignore this shared library if the |
| 3583 | // platform is above the version indicated in this attribute. |
| 3584 | // |
| 3585 | // This means that the device won't recognise this library as installed. |
| 3586 | Max_device_sdk *string |
Jiakai Zhang | 9c4dc19 | 2023-02-09 00:09:24 +0800 | [diff] [blame] | 3587 | |
| 3588 | DexPreoptProfileGuided *bool `supported_build_releases:"UpsideDownCake+"` |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3589 | } |
| 3590 | |
| 3591 | type scopeProperties struct { |
Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 3592 | Jars android.Paths |
| 3593 | StubsSrcJar android.Path |
| 3594 | CurrentApiFile android.Path |
| 3595 | RemovedApiFile android.Path |
Paul Duffin | e7babdb | 2022-02-10 13:06:54 +0000 | [diff] [blame] | 3596 | AnnotationsZip android.Path `supported_build_releases:"Tiramisu+"` |
Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 3597 | SdkVersion string |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3598 | } |
| 3599 | |
| 3600 | func (s *sdkLibrarySdkMemberProperties) PopulateFromVariant(ctx android.SdkMemberContext, variant android.Module) { |
| 3601 | sdk := variant.(*SdkLibrary) |
| 3602 | |
Paul Duffin | e840995 | 2022-09-22 16:24:46 +0100 | [diff] [blame] | 3603 | // Copy the stem name for files in the sdk snapshot. |
| 3604 | s.Stem = sdk.distStem() |
| 3605 | |
Paul Duffin | 106a3a4 | 2022-01-27 16:39:06 +0000 | [diff] [blame] | 3606 | s.Scopes = make(map[*apiScope]*scopeProperties) |
Jihoon Kang | 98aa8fa | 2024-06-07 11:06:57 +0000 | [diff] [blame] | 3607 | for _, apiScope := range AllApiScopes { |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 3608 | paths := sdk.findScopePaths(apiScope) |
| 3609 | if paths == nil { |
| 3610 | continue |
| 3611 | } |
| 3612 | |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3613 | jars := paths.stubsImplPath |
| 3614 | if len(jars) > 0 { |
| 3615 | properties := scopeProperties{} |
| 3616 | properties.Jars = jars |
Paul Duffin | 780c5f4 | 2020-05-12 15:52:55 +0100 | [diff] [blame] | 3617 | properties.SdkVersion = sdk.sdkVersionForStubsLibrary(ctx.SdkModuleContext(), apiScope) |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 3618 | properties.StubsSrcJar = paths.stubsSrcJar.Path() |
Paul Duffin | 10269f1 | 2020-06-19 18:39:55 +0100 | [diff] [blame] | 3619 | if paths.currentApiFilePath.Valid() { |
| 3620 | properties.CurrentApiFile = paths.currentApiFilePath.Path() |
| 3621 | } |
| 3622 | if paths.removedApiFilePath.Valid() { |
| 3623 | properties.RemovedApiFile = paths.removedApiFilePath.Path() |
| 3624 | } |
Anton Hansson | d78eb76 | 2021-09-21 15:25:12 +0100 | [diff] [blame] | 3625 | // The annotations zip is only available for modules that set annotations_enabled: true. |
| 3626 | if paths.annotationsZip.Valid() { |
| 3627 | properties.AnnotationsZip = paths.annotationsZip.Path() |
| 3628 | } |
Paul Duffin | 106a3a4 | 2022-01-27 16:39:06 +0000 | [diff] [blame] | 3629 | s.Scopes[apiScope] = &properties |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3630 | } |
| 3631 | } |
| 3632 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 3633 | s.Naming_scheme = sdk.commonSdkLibraryProperties.Naming_scheme |
Paul Duffin | d7eb1c2 | 2020-05-26 20:57:10 +0100 | [diff] [blame] | 3634 | s.Shared_library = proptools.BoolPtr(sdk.sharedLibrary()) |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 3635 | s.Compile_dex = sdk.dexProperties.Compile_dex |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 3636 | s.Doctag_paths = sdk.doctagPaths |
Paul Duffin | 869de14 | 2021-07-15 14:14:41 +0100 | [diff] [blame] | 3637 | s.Permitted_packages = sdk.PermittedPackagesForUpdatableBootJars() |
Pedro Loureiro | 9956e5e | 2021-09-07 17:21:59 +0000 | [diff] [blame] | 3638 | s.On_bootclasspath_since = sdk.commonSdkLibraryProperties.On_bootclasspath_since |
| 3639 | s.On_bootclasspath_before = sdk.commonSdkLibraryProperties.On_bootclasspath_before |
| 3640 | s.Min_device_sdk = sdk.commonSdkLibraryProperties.Min_device_sdk |
| 3641 | s.Max_device_sdk = sdk.commonSdkLibraryProperties.Max_device_sdk |
Jiakai Zhang | 9c4dc19 | 2023-02-09 00:09:24 +0800 | [diff] [blame] | 3642 | |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 3643 | implLibrary := sdk.getImplLibraryModule() |
| 3644 | if implLibrary != nil && implLibrary.dexpreopter.dexpreoptProperties.Dex_preopt_result.Profile_guided { |
Jiakai Zhang | 9c4dc19 | 2023-02-09 00:09:24 +0800 | [diff] [blame] | 3645 | s.DexPreoptProfileGuided = proptools.BoolPtr(true) |
| 3646 | } |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3647 | } |
| 3648 | |
| 3649 | func (s *sdkLibrarySdkMemberProperties) AddToPropertySet(ctx android.SdkMemberContext, propertySet android.BpPropertySet) { |
Paul Duffin | f7a6433 | 2020-05-13 16:54:55 +0100 | [diff] [blame] | 3650 | if s.Naming_scheme != nil { |
| 3651 | propertySet.AddProperty("naming_scheme", proptools.String(s.Naming_scheme)) |
| 3652 | } |
Paul Duffin | d7eb1c2 | 2020-05-26 20:57:10 +0100 | [diff] [blame] | 3653 | if s.Shared_library != nil { |
| 3654 | propertySet.AddProperty("shared_library", *s.Shared_library) |
| 3655 | } |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 3656 | if s.Compile_dex != nil { |
| 3657 | propertySet.AddProperty("compile_dex", *s.Compile_dex) |
| 3658 | } |
Paul Duffin | 869de14 | 2021-07-15 14:14:41 +0100 | [diff] [blame] | 3659 | if len(s.Permitted_packages) > 0 { |
| 3660 | propertySet.AddProperty("permitted_packages", s.Permitted_packages) |
| 3661 | } |
Jiakai Zhang | 9c4dc19 | 2023-02-09 00:09:24 +0800 | [diff] [blame] | 3662 | dexPreoptSet := propertySet.AddPropertySet("dex_preopt") |
| 3663 | if s.DexPreoptProfileGuided != nil { |
| 3664 | dexPreoptSet.AddProperty("profile_guided", proptools.Bool(s.DexPreoptProfileGuided)) |
| 3665 | } |
Paul Duffin | f7a6433 | 2020-05-13 16:54:55 +0100 | [diff] [blame] | 3666 | |
Paul Duffin | e840995 | 2022-09-22 16:24:46 +0100 | [diff] [blame] | 3667 | stem := s.Stem |
| 3668 | |
Jihoon Kang | 98aa8fa | 2024-06-07 11:06:57 +0000 | [diff] [blame] | 3669 | for _, apiScope := range AllApiScopes { |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3670 | if properties, ok := s.Scopes[apiScope]; ok { |
Paul Duffin | 6b836ba | 2020-05-13 19:19:49 +0100 | [diff] [blame] | 3671 | scopeSet := propertySet.AddPropertySet(apiScope.propertyName) |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3672 | |
Paul Duffin | 958806b | 2022-05-16 13:10:47 +0000 | [diff] [blame] | 3673 | scopeDir := apiScope.snapshotRelativeDir() |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 3674 | |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3675 | var jars []string |
| 3676 | for _, p := range properties.Jars { |
Paul Duffin | e840995 | 2022-09-22 16:24:46 +0100 | [diff] [blame] | 3677 | dest := filepath.Join(scopeDir, stem+"-stubs.jar") |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3678 | ctx.SnapshotBuilder().CopyToSnapshot(p, dest) |
| 3679 | jars = append(jars, dest) |
| 3680 | } |
| 3681 | scopeSet.AddProperty("jars", jars) |
| 3682 | |
Paul Duffin | 22628d5 | 2021-05-12 23:13:22 +0100 | [diff] [blame] | 3683 | if ctx.SdkModuleContext().Config().IsEnvTrue("SOONG_SDK_SNAPSHOT_USE_SRCJAR") { |
| 3684 | // Copy the stubs source jar into the snapshot zip as is. |
Paul Duffin | e840995 | 2022-09-22 16:24:46 +0100 | [diff] [blame] | 3685 | srcJarSnapshotPath := filepath.Join(scopeDir, stem+".srcjar") |
Paul Duffin | 22628d5 | 2021-05-12 23:13:22 +0100 | [diff] [blame] | 3686 | ctx.SnapshotBuilder().CopyToSnapshot(properties.StubsSrcJar, srcJarSnapshotPath) |
| 3687 | scopeSet.AddProperty("stub_srcs", []string{srcJarSnapshotPath}) |
| 3688 | } else { |
| 3689 | // Merge the stubs source jar into the snapshot zip so that when it is unpacked |
| 3690 | // the source files are also unpacked. |
Paul Duffin | e840995 | 2022-09-22 16:24:46 +0100 | [diff] [blame] | 3691 | snapshotRelativeDir := filepath.Join(scopeDir, stem+"_stub_sources") |
Paul Duffin | 22628d5 | 2021-05-12 23:13:22 +0100 | [diff] [blame] | 3692 | ctx.SnapshotBuilder().UnzipToSnapshot(properties.StubsSrcJar, snapshotRelativeDir) |
| 3693 | scopeSet.AddProperty("stub_srcs", []string{snapshotRelativeDir}) |
| 3694 | } |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 3695 | |
Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 3696 | if properties.CurrentApiFile != nil { |
Paul Duffin | e840995 | 2022-09-22 16:24:46 +0100 | [diff] [blame] | 3697 | currentApiSnapshotPath := apiScope.snapshotRelativeCurrentApiTxtPath(stem) |
Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 3698 | ctx.SnapshotBuilder().CopyToSnapshot(properties.CurrentApiFile, currentApiSnapshotPath) |
| 3699 | scopeSet.AddProperty("current_api", currentApiSnapshotPath) |
| 3700 | } |
| 3701 | |
| 3702 | if properties.RemovedApiFile != nil { |
Paul Duffin | e840995 | 2022-09-22 16:24:46 +0100 | [diff] [blame] | 3703 | removedApiSnapshotPath := apiScope.snapshotRelativeRemovedApiTxtPath(stem) |
Paul Duffin | 3dbf9fd | 2020-06-02 13:00:02 +0100 | [diff] [blame] | 3704 | ctx.SnapshotBuilder().CopyToSnapshot(properties.RemovedApiFile, removedApiSnapshotPath) |
Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 3705 | scopeSet.AddProperty("removed_api", removedApiSnapshotPath) |
| 3706 | } |
| 3707 | |
Anton Hansson | d78eb76 | 2021-09-21 15:25:12 +0100 | [diff] [blame] | 3708 | if properties.AnnotationsZip != nil { |
Paul Duffin | e840995 | 2022-09-22 16:24:46 +0100 | [diff] [blame] | 3709 | annotationsSnapshotPath := filepath.Join(scopeDir, stem+"_annotations.zip") |
Anton Hansson | d78eb76 | 2021-09-21 15:25:12 +0100 | [diff] [blame] | 3710 | ctx.SnapshotBuilder().CopyToSnapshot(properties.AnnotationsZip, annotationsSnapshotPath) |
| 3711 | scopeSet.AddProperty("annotations", annotationsSnapshotPath) |
| 3712 | } |
| 3713 | |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3714 | if properties.SdkVersion != "" { |
| 3715 | scopeSet.AddProperty("sdk_version", properties.SdkVersion) |
| 3716 | } |
| 3717 | } |
| 3718 | } |
| 3719 | |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 3720 | if len(s.Doctag_paths) > 0 { |
| 3721 | dests := []string{} |
| 3722 | for _, p := range s.Doctag_paths { |
| 3723 | dest := filepath.Join("doctags", p.Rel()) |
| 3724 | ctx.SnapshotBuilder().CopyToSnapshot(p, dest) |
| 3725 | dests = append(dests, dest) |
| 3726 | } |
| 3727 | propertySet.AddProperty("doctag_files", dests) |
| 3728 | } |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 3729 | } |