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 ( |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 18 | "fmt" |
| 19 | "path" |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 20 | "path/filepath" |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 21 | "reflect" |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 22 | "regexp" |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 23 | "sort" |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 24 | "strings" |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 25 | "sync" |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 26 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 27 | "github.com/google/blueprint" |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 28 | "github.com/google/blueprint/proptools" |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 29 | |
| 30 | "android/soong/android" |
Ulya Trafimovich | dbf3166 | 2020-12-17 12:07:54 +0000 | [diff] [blame] | 31 | "android/soong/dexpreopt" |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 32 | ) |
| 33 | |
Jooyung Han | 58f26ab | 2019-12-18 15:34:32 +0900 | [diff] [blame] | 34 | const ( |
Paul Duffin | dd9d074 | 2020-05-08 15:52:37 +0100 | [diff] [blame] | 35 | sdkXmlFileSuffix = ".xml" |
| 36 | permissionsTemplate = `<?xml version=\"1.0\" encoding=\"utf-8\"?>\n` + |
Jooyung Han | 624058e | 2019-12-24 18:38:06 +0900 | [diff] [blame] | 37 | `<!-- Copyright (C) 2018 The Android Open Source Project\n` + |
| 38 | `\n` + |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 39 | ` Licensed under the Apache License, Version 2.0 (the \"License\");\n` + |
Jooyung Han | 624058e | 2019-12-24 18:38:06 +0900 | [diff] [blame] | 40 | ` you may not use this file except in compliance with the License.\n` + |
| 41 | ` You may obtain a copy of the License at\n` + |
| 42 | `\n` + |
| 43 | ` http://www.apache.org/licenses/LICENSE-2.0\n` + |
| 44 | `\n` + |
| 45 | ` Unless required by applicable law or agreed to in writing, software\n` + |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 46 | ` distributed under the License is distributed on an \"AS IS\" BASIS,\n` + |
Jooyung Han | 624058e | 2019-12-24 18:38:06 +0900 | [diff] [blame] | 47 | ` WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n` + |
| 48 | ` See the License for the specific language governing permissions and\n` + |
| 49 | ` limitations under the License.\n` + |
| 50 | `-->\n` + |
| 51 | `<permissions>\n` + |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 52 | ` <library name=\"%s\" file=\"%s\"/>\n` + |
Jooyung Han | 624058e | 2019-12-24 18:38:06 +0900 | [diff] [blame] | 53 | `</permissions>\n` |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 54 | ) |
| 55 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 56 | // A tag to associated a dependency with a specific api scope. |
| 57 | type scopeDependencyTag struct { |
| 58 | blueprint.BaseDependencyTag |
| 59 | name string |
| 60 | apiScope *apiScope |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 61 | |
| 62 | // Function for extracting appropriate path information from the dependency. |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 63 | depInfoExtractor func(paths *scopePaths, ctx android.ModuleContext, dep android.Module) error |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | // Extract tag specific information from the dependency. |
| 67 | func (tag scopeDependencyTag) extractDepInfo(ctx android.ModuleContext, dep android.Module, paths *scopePaths) { |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 68 | err := tag.depInfoExtractor(paths, ctx, dep) |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 69 | if err != nil { |
| 70 | ctx.ModuleErrorf("has an invalid {scopeDependencyTag: %s} dependency on module %s: %s", tag.name, ctx.OtherModuleName(dep), err.Error()) |
| 71 | } |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 72 | } |
| 73 | |
Paul Duffin | 80342d7 | 2020-06-26 22:08:43 +0100 | [diff] [blame] | 74 | var _ android.ReplaceSourceWithPrebuilt = (*scopeDependencyTag)(nil) |
| 75 | |
| 76 | func (tag scopeDependencyTag) ReplaceSourceWithPrebuilt() bool { |
| 77 | return false |
| 78 | } |
| 79 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 80 | // Provides information about an api scope, e.g. public, system, test. |
| 81 | type apiScope struct { |
| 82 | // The name of the api scope, e.g. public, system, test |
| 83 | name string |
| 84 | |
Paul Duffin | 97b53b8 | 2020-05-05 14:40:52 +0100 | [diff] [blame] | 85 | // The api scope that this scope extends. |
| 86 | extends *apiScope |
| 87 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 88 | // The legacy enabled status for a specific scope can be dependent on other |
| 89 | // properties that have been specified on the library so it is provided by |
| 90 | // a function that can determine the status by examining those properties. |
| 91 | legacyEnabledStatus func(module *SdkLibrary) bool |
| 92 | |
| 93 | // The default enabled status for non-legacy behavior, which is triggered by |
| 94 | // explicitly enabling at least one api scope. |
| 95 | defaultEnabledStatus bool |
| 96 | |
| 97 | // Gets a pointer to the scope specific properties. |
| 98 | scopeSpecificProperties func(module *SdkLibrary) *ApiScopeProperties |
| 99 | |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 100 | // The name of the field in the dynamically created structure. |
| 101 | fieldName string |
| 102 | |
Paul Duffin | 6b836ba | 2020-05-13 19:19:49 +0100 | [diff] [blame] | 103 | // The name of the property in the java_sdk_library_import |
| 104 | propertyName string |
| 105 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 106 | // The tag to use to depend on the stubs library module. |
| 107 | stubsTag scopeDependencyTag |
| 108 | |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 109 | // The tag to use to depend on the stubs source module (if separate from the API module). |
| 110 | stubsSourceTag scopeDependencyTag |
| 111 | |
| 112 | // The tag to use to depend on the API file generating module (if separate from the stubs source module). |
| 113 | apiFileTag scopeDependencyTag |
| 114 | |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 115 | // The tag to use to depend on the stubs source and API module. |
| 116 | stubsSourceAndApiTag scopeDependencyTag |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 117 | |
| 118 | // The scope specific prefix to add to the api file base of "current.txt" or "removed.txt". |
| 119 | apiFilePrefix string |
| 120 | |
| 121 | // The scope specific prefix to add to the sdk library module name to construct a scope specific |
| 122 | // module name. |
| 123 | moduleSuffix string |
| 124 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 125 | // SDK version that the stubs library is built against. Note that this is always |
| 126 | // *current. Older stubs library built with a numbered SDK version is created from |
| 127 | // the prebuilt jar. |
| 128 | sdkVersion string |
Paul Duffin | 1fb487d | 2020-04-07 18:50:10 +0100 | [diff] [blame] | 129 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 130 | // The annotation that identifies this API level, empty for the public API scope. |
| 131 | annotation string |
| 132 | |
Paul Duffin | 1fb487d | 2020-04-07 18:50:10 +0100 | [diff] [blame] | 133 | // Extra arguments to pass to droidstubs for this scope. |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 134 | // |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 135 | // This is not used directly but is used to construct the droidstubsArgs. |
| 136 | extraArgs []string |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 137 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 138 | // The args that must be passed to droidstubs to generate the API and stubs source |
| 139 | // for this scope, constructed dynamically by initApiScope(). |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 140 | // |
| 141 | // The API only includes the additional members that this scope adds over the scope |
| 142 | // that it extends. |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 143 | // |
| 144 | // The stubs source must include the definitions of everything that is in this |
| 145 | // api scope and all the scopes that this one extends. |
| 146 | droidstubsArgs []string |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 147 | |
Anton Hansson | 6478ac1 | 2020-05-02 11:19:36 +0100 | [diff] [blame] | 148 | // Whether the api scope can be treated as unstable, and should skip compat checks. |
| 149 | unstable bool |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | // Initialize a scope, creating and adding appropriate dependency tags |
| 153 | func initApiScope(scope *apiScope) *apiScope { |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 154 | name := scope.name |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 155 | scopeByName[name] = scope |
| 156 | allScopeNames = append(allScopeNames, name) |
Paul Duffin | 6b836ba | 2020-05-13 19:19:49 +0100 | [diff] [blame] | 157 | scope.propertyName = strings.ReplaceAll(name, "-", "_") |
| 158 | scope.fieldName = proptools.FieldNameForProperty(scope.propertyName) |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 159 | scope.stubsTag = scopeDependencyTag{ |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 160 | name: name + "-stubs", |
| 161 | apiScope: scope, |
| 162 | depInfoExtractor: (*scopePaths).extractStubsLibraryInfoFromDependency, |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 163 | } |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 164 | scope.stubsSourceTag = scopeDependencyTag{ |
| 165 | name: name + "-stubs-source", |
| 166 | apiScope: scope, |
| 167 | depInfoExtractor: (*scopePaths).extractStubsSourceInfoFromDep, |
| 168 | } |
| 169 | scope.apiFileTag = scopeDependencyTag{ |
| 170 | name: name + "-api", |
| 171 | apiScope: scope, |
| 172 | depInfoExtractor: (*scopePaths).extractApiInfoFromDep, |
| 173 | } |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 174 | scope.stubsSourceAndApiTag = scopeDependencyTag{ |
| 175 | name: name + "-stubs-source-and-api", |
| 176 | apiScope: scope, |
| 177 | depInfoExtractor: (*scopePaths).extractStubsSourceAndApiInfoFromApiStubsProvider, |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 178 | } |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 179 | |
| 180 | // To get the args needed to generate the stubs source append all the args from |
| 181 | // this scope and all the scopes it extends as each set of args adds additional |
| 182 | // members to the stubs. |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 183 | var scopeSpecificArgs []string |
| 184 | if scope.annotation != "" { |
| 185 | scopeSpecificArgs = []string{"--show-annotation", scope.annotation} |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 186 | } |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 187 | for s := scope; s != nil; s = s.extends { |
| 188 | scopeSpecificArgs = append(scopeSpecificArgs, s.extraArgs...) |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 189 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 190 | // Ensure that the generated stubs includes all the API elements from the API scope |
| 191 | // that this scope extends. |
| 192 | if s != scope && s.annotation != "" { |
| 193 | scopeSpecificArgs = append(scopeSpecificArgs, "--show-for-stub-purposes-annotation", s.annotation) |
| 194 | } |
| 195 | } |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 196 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 197 | // Escape any special characters in the arguments. This is needed because droidstubs |
| 198 | // passes these directly to the shell command. |
| 199 | scope.droidstubsArgs = proptools.ShellEscapeList(scopeSpecificArgs) |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 200 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 201 | return scope |
| 202 | } |
| 203 | |
Anton Hansson | 08f476b | 2021-04-07 15:32:19 +0100 | [diff] [blame] | 204 | func (scope *apiScope) stubsLibraryModuleNameSuffix() string { |
| 205 | return ".stubs" + scope.moduleSuffix |
| 206 | } |
| 207 | |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 208 | func (scope *apiScope) stubsLibraryModuleName(baseName string) string { |
Anton Hansson | 08f476b | 2021-04-07 15:32:19 +0100 | [diff] [blame] | 209 | return baseName + scope.stubsLibraryModuleNameSuffix() |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 210 | } |
| 211 | |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 212 | func (scope *apiScope) stubsSourceModuleName(baseName string) string { |
Paul Duffin | dd9d074 | 2020-05-08 15:52:37 +0100 | [diff] [blame] | 213 | return baseName + ".stubs.source" + scope.moduleSuffix |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 214 | } |
| 215 | |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 216 | func (scope *apiScope) apiModuleName(baseName string) string { |
Paul Duffin | dd9d074 | 2020-05-08 15:52:37 +0100 | [diff] [blame] | 217 | return baseName + ".api" + scope.moduleSuffix |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 218 | } |
| 219 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 220 | func (scope *apiScope) String() string { |
| 221 | return scope.name |
| 222 | } |
| 223 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 224 | type apiScopes []*apiScope |
| 225 | |
| 226 | func (scopes apiScopes) Strings(accessor func(*apiScope) string) []string { |
| 227 | var list []string |
| 228 | for _, scope := range scopes { |
| 229 | list = append(list, accessor(scope)) |
| 230 | } |
| 231 | return list |
| 232 | } |
| 233 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 234 | var ( |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 235 | scopeByName = make(map[string]*apiScope) |
| 236 | allScopeNames []string |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 237 | apiScopePublic = initApiScope(&apiScope{ |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 238 | name: "public", |
| 239 | |
| 240 | // Public scope is enabled by default for both legacy and non-legacy modes. |
| 241 | legacyEnabledStatus: func(module *SdkLibrary) bool { |
| 242 | return true |
| 243 | }, |
| 244 | defaultEnabledStatus: true, |
| 245 | |
| 246 | scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties { |
| 247 | return &module.sdkLibraryProperties.Public |
| 248 | }, |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 249 | sdkVersion: "current", |
| 250 | }) |
| 251 | apiScopeSystem = initApiScope(&apiScope{ |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 252 | name: "system", |
| 253 | extends: apiScopePublic, |
| 254 | legacyEnabledStatus: (*SdkLibrary).generateTestAndSystemScopesByDefault, |
| 255 | scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties { |
| 256 | return &module.sdkLibraryProperties.System |
| 257 | }, |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 258 | apiFilePrefix: "system-", |
| 259 | moduleSuffix: ".system", |
| 260 | sdkVersion: "system_current", |
| 261 | annotation: "android.annotation.SystemApi(client=android.annotation.SystemApi.Client.PRIVILEGED_APPS)", |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 262 | }) |
| 263 | apiScopeTest = initApiScope(&apiScope{ |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 264 | name: "test", |
Anton Hansson | 4fe970f | 2020-10-09 10:16:49 +0100 | [diff] [blame] | 265 | extends: apiScopeSystem, |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 266 | legacyEnabledStatus: (*SdkLibrary).generateTestAndSystemScopesByDefault, |
| 267 | scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties { |
| 268 | return &module.sdkLibraryProperties.Test |
| 269 | }, |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 270 | apiFilePrefix: "test-", |
| 271 | moduleSuffix: ".test", |
| 272 | sdkVersion: "test_current", |
| 273 | annotation: "android.annotation.TestApi", |
| 274 | unstable: true, |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 275 | }) |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 276 | apiScopeModuleLib = initApiScope(&apiScope{ |
Paul Duffin | 6b836ba | 2020-05-13 19:19:49 +0100 | [diff] [blame] | 277 | name: "module-lib", |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 278 | extends: apiScopeSystem, |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 279 | // The module-lib scope is disabled by default in legacy mode. |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 280 | // |
| 281 | // Enabling this would break existing usages. |
| 282 | legacyEnabledStatus: func(module *SdkLibrary) bool { |
| 283 | return false |
| 284 | }, |
| 285 | scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties { |
| 286 | return &module.sdkLibraryProperties.Module_lib |
| 287 | }, |
| 288 | apiFilePrefix: "module-lib-", |
| 289 | moduleSuffix: ".module_lib", |
| 290 | sdkVersion: "module_current", |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 291 | annotation: "android.annotation.SystemApi(client=android.annotation.SystemApi.Client.MODULE_LIBRARIES)", |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 292 | }) |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 293 | apiScopeSystemServer = initApiScope(&apiScope{ |
| 294 | name: "system-server", |
| 295 | extends: apiScopePublic, |
| 296 | // The system-server scope is disabled by default in legacy mode. |
| 297 | // |
| 298 | // Enabling this would break existing usages. |
| 299 | legacyEnabledStatus: func(module *SdkLibrary) bool { |
| 300 | return false |
| 301 | }, |
| 302 | scopeSpecificProperties: func(module *SdkLibrary) *ApiScopeProperties { |
| 303 | return &module.sdkLibraryProperties.System_server |
| 304 | }, |
| 305 | apiFilePrefix: "system-server-", |
| 306 | moduleSuffix: ".system_server", |
| 307 | sdkVersion: "system_server_current", |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 308 | annotation: "android.annotation.SystemApi(client=android.annotation.SystemApi.Client.SYSTEM_SERVER)", |
| 309 | extraArgs: []string{ |
| 310 | "--hide-annotation", "android.annotation.Hide", |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 311 | // com.android.* classes are okay in this interface" |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 312 | "--hide", "InternalClasses", |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 313 | }, |
| 314 | }) |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 315 | allApiScopes = apiScopes{ |
| 316 | apiScopePublic, |
| 317 | apiScopeSystem, |
| 318 | apiScopeTest, |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 319 | apiScopeModuleLib, |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 320 | apiScopeSystemServer, |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 321 | } |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 322 | ) |
| 323 | |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 324 | var ( |
| 325 | javaSdkLibrariesLock sync.Mutex |
| 326 | ) |
| 327 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 328 | // TODO: these are big features that are currently missing |
Jiyong Park | 1be9691 | 2018-05-28 18:02:19 +0900 | [diff] [blame] | 329 | // 1) disallowing linking to the runtime shared lib |
| 330 | // 2) HTML generation |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 331 | |
| 332 | func init() { |
Paul Duffin | 43dc1cc | 2019-12-19 11:18:54 +0000 | [diff] [blame] | 333 | RegisterSdkLibraryBuildComponents(android.InitRegistrationContext) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 334 | |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 335 | android.RegisterMakeVarsProvider(pctx, func(ctx android.MakeVarsContext) { |
| 336 | javaSdkLibraries := javaSdkLibraries(ctx.Config()) |
| 337 | sort.Strings(*javaSdkLibraries) |
| 338 | ctx.Strict("JAVA_SDK_LIBRARIES", strings.Join(*javaSdkLibraries, " ")) |
| 339 | }) |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 340 | |
| 341 | // Register sdk member types. |
Paul Duffin | 976b0e5 | 2021-04-27 23:20:26 +0100 | [diff] [blame] | 342 | android.RegisterSdkMemberType(javaSdkLibrarySdkMemberType) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 343 | } |
| 344 | |
Paul Duffin | 43dc1cc | 2019-12-19 11:18:54 +0000 | [diff] [blame] | 345 | func RegisterSdkLibraryBuildComponents(ctx android.RegistrationContext) { |
| 346 | ctx.RegisterModuleType("java_sdk_library", SdkLibraryFactory) |
| 347 | ctx.RegisterModuleType("java_sdk_library_import", sdkLibraryImportFactory) |
| 348 | } |
| 349 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 350 | // Properties associated with each api scope. |
| 351 | type ApiScopeProperties struct { |
| 352 | // Indicates whether the api surface is generated. |
| 353 | // |
| 354 | // If this is set for any scope then all scopes must explicitly specify if they |
| 355 | // are enabled. This is to prevent new usages from depending on legacy behavior. |
| 356 | // |
| 357 | // Otherwise, if this is not set for any scope then the default behavior is |
| 358 | // scope specific so please refer to the scope specific property documentation. |
| 359 | Enabled *bool |
Paul Duffin | 87a05a3 | 2020-05-12 11:50:28 +0100 | [diff] [blame] | 360 | |
| 361 | // The sdk_version to use for building the stubs. |
| 362 | // |
| 363 | // If not specified then it will use an sdk_version determined as follows: |
| 364 | // 1) If the sdk_version specified on the java_sdk_library is none then this |
| 365 | // will be none. This is used for java_sdk_library instances that are used |
| 366 | // to create stubs that contribute to the core_current sdk version. |
| 367 | // 2) Otherwise, it is assumed that this library extends but does not contribute |
| 368 | // directly to a specific sdk_version and so this uses the sdk_version appropriate |
| 369 | // for the api scope. e.g. public will use sdk_version: current, system will use |
| 370 | // sdk_version: system_current, etc. |
| 371 | // |
| 372 | // This does not affect the sdk_version used for either generating the stubs source |
| 373 | // or the API file. They both have to use the same sdk_version as is used for |
| 374 | // compiling the implementation library. |
| 375 | Sdk_version *string |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 376 | } |
| 377 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 378 | type sdkLibraryProperties struct { |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 379 | // Visibility for impl library module. If not specified then defaults to the |
| 380 | // visibility property. |
| 381 | Impl_library_visibility []string |
| 382 | |
Paul Duffin | 4911a89 | 2020-04-29 23:35:13 +0100 | [diff] [blame] | 383 | // Visibility for stubs library modules. If not specified then defaults to the |
| 384 | // visibility property. |
| 385 | Stubs_library_visibility []string |
| 386 | |
| 387 | // Visibility for stubs source modules. If not specified then defaults to the |
| 388 | // visibility property. |
| 389 | Stubs_source_visibility []string |
| 390 | |
Anton Hansson | 7f66efa | 2020-10-08 14:47:23 +0100 | [diff] [blame] | 391 | // List of Java libraries that will be in the classpath when building the implementation lib |
| 392 | Impl_only_libs []string `android:"arch_variant"` |
| 393 | |
Sundong Ahn | f043cf6 | 2018-06-25 16:04:37 +0900 | [diff] [blame] | 394 | // List of Java libraries that will be in the classpath when building stubs |
| 395 | Stub_only_libs []string `android:"arch_variant"` |
| 396 | |
Anton Hansson | dae54cd | 2021-04-21 16:30:10 +0100 | [diff] [blame] | 397 | // List of Java libraries that will included in stub libraries |
| 398 | Stub_only_static_libs []string `android:"arch_variant"` |
| 399 | |
Paul Duffin | 7a586d3 | 2019-12-30 17:09:34 +0000 | [diff] [blame] | 400 | // list of package names that will be documented and publicized as API. |
| 401 | // This allows the API to be restricted to a subset of the source files provided. |
| 402 | // If this is unspecified then all the source files will be treated as being part |
| 403 | // of the API. |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 404 | Api_packages []string |
| 405 | |
Jiyong Park | 5a2c9d7 | 2018-05-01 22:25:41 +0900 | [diff] [blame] | 406 | // list of package names that must be hidden from the API |
| 407 | Hidden_api_packages []string |
| 408 | |
Paul Duffin | 749f98f | 2019-12-30 17:23:46 +0000 | [diff] [blame] | 409 | // the relative path to the directory containing the api specification files. |
| 410 | // Defaults to "api". |
| 411 | Api_dir *string |
| 412 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 413 | // Determines whether a runtime implementation library is built; defaults to false. |
| 414 | // |
| 415 | // If true then it also prevents the module from being used as a shared module, i.e. |
| 416 | // it is as is shared_library: false, was set. |
Paul Duffin | 43db9be | 2019-12-30 17:35:49 +0000 | [diff] [blame] | 417 | Api_only *bool |
| 418 | |
Paul Duffin | 1151247 | 2019-02-11 15:55:17 +0000 | [diff] [blame] | 419 | // local files that are used within user customized droiddoc options. |
| 420 | Droiddoc_option_files []string |
| 421 | |
| 422 | // additional droiddoc options |
| 423 | // Available variables for substitution: |
| 424 | // |
| 425 | // $(location <label>): the path to the droiddoc_option_files with name <label> |
Sundong Ahn | dd567f9 | 2018-07-31 17:19:11 +0900 | [diff] [blame] | 426 | Droiddoc_options []string |
| 427 | |
Paul Duffin | e22c2ab | 2020-05-20 19:35:27 +0100 | [diff] [blame] | 428 | // is set to true, Metalava will allow framework SDK to contain annotations. |
| 429 | Annotations_enabled *bool |
| 430 | |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 431 | // a list of top-level directories containing files to merge qualifier annotations |
| 432 | // (i.e. those intended to be included in the stubs written) from. |
| 433 | Merge_annotations_dirs []string |
| 434 | |
| 435 | // a list of top-level directories containing Java stub files to merge show/hide annotations from. |
| 436 | Merge_inclusion_annotations_dirs []string |
| 437 | |
Paul Duffin | 4f5c1ef | 2020-11-19 14:53:43 +0000 | [diff] [blame] | 438 | // If set to true then don't create dist rules. |
| 439 | No_dist *bool |
Sundong Ahn | 80a87b3 | 2019-05-13 15:02:50 +0900 | [diff] [blame] | 440 | |
Paul Duffin | 3131025 | 2020-11-20 21:26:20 +0000 | [diff] [blame] | 441 | // The stem for the artifacts that are copied to the dist, if not specified |
| 442 | // then defaults to the base module name. |
| 443 | // |
| 444 | // For each scope the following artifacts are copied to the apistubs/<scope> |
| 445 | // directory in the dist. |
| 446 | // * stubs impl jar -> <dist-stem>.jar |
| 447 | // * API specification file -> api/<dist-stem>.txt |
| 448 | // * Removed API specification file -> api/<dist-stem>-removed.txt |
| 449 | // |
| 450 | // Also used to construct the name of the filegroup (created by prebuilt_apis) |
| 451 | // that references the latest released API and remove API specification files. |
| 452 | // * API specification filegroup -> <dist-stem>.api.<scope>.latest |
| 453 | // * Removed API specification filegroup -> <dist-stem>-removed.api.<scope>.latest |
Jaewoong Jung | 1a97ee0 | 2021-03-09 13:25:02 -0800 | [diff] [blame] | 454 | // * API incompatibilities baseline filegroup -> <dist-stem>-incompatibilities.api.<scope>.latest |
Paul Duffin | 3131025 | 2020-11-20 21:26:20 +0000 | [diff] [blame] | 455 | Dist_stem *string |
| 456 | |
Colin Cross | 986b69a | 2021-06-01 13:13:40 -0700 | [diff] [blame] | 457 | // 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] | 458 | // 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] | 459 | // in the public Android SDK. |
| 460 | Dist_group *string |
| 461 | |
Anton Hansson | dff2c78 | 2020-12-21 17:10:01 +0000 | [diff] [blame] | 462 | // A compatibility mode that allows historical API-tracking files to not exist. |
| 463 | // Do not use. |
| 464 | Unsafe_ignore_missing_latest_api bool |
| 465 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 466 | // indicates whether system and test apis should be generated. |
| 467 | Generate_system_and_test_apis bool `blueprint:"mutated"` |
| 468 | |
| 469 | // The properties specific to the public api scope |
| 470 | // |
| 471 | // Unless explicitly specified by using public.enabled the public api scope is |
| 472 | // enabled by default in both legacy and non-legacy mode. |
| 473 | Public ApiScopeProperties |
| 474 | |
| 475 | // The properties specific to the system api scope |
| 476 | // |
| 477 | // In legacy mode the system api scope is enabled by default when sdk_version |
| 478 | // is set to something other than "none". |
| 479 | // |
| 480 | // In non-legacy mode the system api scope is disabled by default. |
| 481 | System ApiScopeProperties |
| 482 | |
| 483 | // The properties specific to the test api scope |
| 484 | // |
| 485 | // In legacy mode the test api scope is enabled by default when sdk_version |
| 486 | // is set to something other than "none". |
| 487 | // |
| 488 | // In non-legacy mode the test api scope is disabled by default. |
| 489 | Test ApiScopeProperties |
Paul Duffin | 37e0b77 | 2019-12-30 17:20:10 +0000 | [diff] [blame] | 490 | |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 491 | // The properties specific to the module-lib api scope |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 492 | // |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 493 | // Unless explicitly specified by using test.enabled the module-lib api scope is |
Paul Duffin | 8f265b9 | 2020-04-28 14:13:56 +0100 | [diff] [blame] | 494 | // disabled by default. |
| 495 | Module_lib ApiScopeProperties |
| 496 | |
Paul Duffin | 0c5bae5 | 2020-06-02 13:00:08 +0100 | [diff] [blame] | 497 | // The properties specific to the system-server api scope |
| 498 | // |
| 499 | // Unless explicitly specified by using test.enabled the module-lib api scope is |
| 500 | // disabled by default. |
| 501 | System_server ApiScopeProperties |
| 502 | |
Jiyong Park | 932cdfe | 2020-05-28 00:19:53 +0900 | [diff] [blame] | 503 | // Determines if the stubs are preferred over the implementation library |
| 504 | // for linking, even when the client doesn't specify sdk_version. When this |
| 505 | // is set to true, such clients are provided with the widest API surface that |
| 506 | // this lib provides. Note however that this option doesn't affect the clients |
| 507 | // that are in the same APEX as this library. In that case, the clients are |
| 508 | // always linked with the implementation library. Default is false. |
| 509 | Default_to_stubs *bool |
| 510 | |
Paul Duffin | 160fe41 | 2020-05-10 19:32:20 +0100 | [diff] [blame] | 511 | // Properties related to api linting. |
| 512 | Api_lint struct { |
| 513 | // Enable api linting. |
| 514 | Enabled *bool |
| 515 | } |
| 516 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 517 | // TODO: determines whether to create HTML doc or not |
| 518 | //Html_doc *bool |
| 519 | } |
| 520 | |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 521 | // Paths to outputs from java_sdk_library and java_sdk_library_import. |
| 522 | // |
| 523 | // Fields that are android.Paths are always set (during GenerateAndroidBuildActions). |
| 524 | // OptionalPaths are always set by java_sdk_library but may not be set by |
| 525 | // java_sdk_library_import as not all instances provide that information. |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 526 | type scopePaths struct { |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 527 | // The path (represented as Paths for convenience when returning) to the stubs header jar. |
| 528 | // |
| 529 | // That is the jar that is created by turbine. |
| 530 | stubsHeaderPath android.Paths |
| 531 | |
| 532 | // The path (represented as Paths for convenience when returning) to the stubs implementation jar. |
| 533 | // |
| 534 | // This is not the implementation jar, it still only contains stubs. |
| 535 | stubsImplPath android.Paths |
| 536 | |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 537 | // The dex jar for the stubs. |
| 538 | // |
| 539 | // This is not the implementation jar, it still only contains stubs. |
| 540 | stubsDexJarPath android.Path |
| 541 | |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 542 | // The API specification file, e.g. system_current.txt. |
| 543 | currentApiFilePath android.OptionalPath |
| 544 | |
| 545 | // The specification of API elements removed since the last release. |
| 546 | removedApiFilePath android.OptionalPath |
| 547 | |
| 548 | // The stubs source jar. |
| 549 | stubsSrcJar android.OptionalPath |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 550 | } |
| 551 | |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 552 | func (paths *scopePaths) extractStubsLibraryInfoFromDependency(ctx android.ModuleContext, dep android.Module) error { |
| 553 | if ctx.OtherModuleHasProvider(dep, JavaInfoProvider) { |
| 554 | lib := ctx.OtherModuleProvider(dep, JavaInfoProvider).(JavaInfo) |
| 555 | paths.stubsHeaderPath = lib.HeaderJars |
| 556 | paths.stubsImplPath = lib.ImplementationJars |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 557 | |
| 558 | libDep := dep.(UsesLibraryDependency) |
| 559 | paths.stubsDexJarPath = libDep.DexJarBuildPath() |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 560 | return nil |
| 561 | } else { |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 562 | return fmt.Errorf("expected module that has JavaInfoProvider, e.g. java_library") |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 563 | } |
| 564 | } |
| 565 | |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 566 | func (paths *scopePaths) treatDepAsApiStubsProvider(dep android.Module, action func(provider ApiStubsProvider)) error { |
| 567 | if apiStubsProvider, ok := dep.(ApiStubsProvider); ok { |
| 568 | action(apiStubsProvider) |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 569 | return nil |
| 570 | } else { |
| 571 | return fmt.Errorf("expected module that implements ApiStubsProvider, e.g. droidstubs") |
| 572 | } |
| 573 | } |
| 574 | |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 575 | func (paths *scopePaths) treatDepAsApiStubsSrcProvider(dep android.Module, action func(provider ApiStubsSrcProvider)) error { |
| 576 | if apiStubsProvider, ok := dep.(ApiStubsSrcProvider); ok { |
| 577 | action(apiStubsProvider) |
| 578 | return nil |
| 579 | } else { |
| 580 | return fmt.Errorf("expected module that implements ApiStubsSrcProvider, e.g. droidstubs") |
| 581 | } |
| 582 | } |
| 583 | |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 584 | func (paths *scopePaths) extractApiInfoFromApiStubsProvider(provider ApiStubsProvider) { |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 585 | paths.currentApiFilePath = android.OptionalPathForPath(provider.ApiFilePath()) |
| 586 | paths.removedApiFilePath = android.OptionalPathForPath(provider.RemovedApiFilePath()) |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 587 | } |
| 588 | |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 589 | func (paths *scopePaths) extractApiInfoFromDep(ctx android.ModuleContext, dep android.Module) error { |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 590 | return paths.treatDepAsApiStubsProvider(dep, func(provider ApiStubsProvider) { |
| 591 | paths.extractApiInfoFromApiStubsProvider(provider) |
| 592 | }) |
| 593 | } |
| 594 | |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 595 | func (paths *scopePaths) extractStubsSourceInfoFromApiStubsProviders(provider ApiStubsSrcProvider) { |
| 596 | paths.stubsSrcJar = android.OptionalPathForPath(provider.StubsSrcJar()) |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 597 | } |
| 598 | |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 599 | func (paths *scopePaths) extractStubsSourceInfoFromDep(ctx android.ModuleContext, dep android.Module) error { |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 600 | return paths.treatDepAsApiStubsSrcProvider(dep, func(provider ApiStubsSrcProvider) { |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 601 | paths.extractStubsSourceInfoFromApiStubsProviders(provider) |
| 602 | }) |
| 603 | } |
| 604 | |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 605 | func (paths *scopePaths) extractStubsSourceAndApiInfoFromApiStubsProvider(ctx android.ModuleContext, dep android.Module) error { |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 606 | return paths.treatDepAsApiStubsProvider(dep, func(provider ApiStubsProvider) { |
| 607 | paths.extractApiInfoFromApiStubsProvider(provider) |
| 608 | paths.extractStubsSourceInfoFromApiStubsProviders(provider) |
| 609 | }) |
| 610 | } |
| 611 | |
| 612 | type commonToSdkLibraryAndImportProperties struct { |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 613 | // The naming scheme to use for the components that this module creates. |
| 614 | // |
Paul Duffin | ee9ad5d | 2020-09-11 13:04:05 +0100 | [diff] [blame] | 615 | // If not specified then it defaults to "default". |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 616 | // |
| 617 | // This is a temporary mechanism to simplify conversion from separate modules for each |
| 618 | // component that follow a different naming pattern to the default one. |
| 619 | // |
| 620 | // TODO(b/155480189) - Remove once naming inconsistencies have been resolved. |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 621 | Naming_scheme *string |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 622 | |
| 623 | // Specifies whether this module can be used as an Android shared library; defaults |
| 624 | // to true. |
| 625 | // |
| 626 | // An Android shared library is one that can be referenced in a <uses-library> element |
| 627 | // in an AndroidManifest.xml. |
| 628 | Shared_library *bool |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 629 | |
| 630 | // Files containing information about supported java doc tags. |
| 631 | Doctag_files []string `android:"path"` |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 632 | } |
| 633 | |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 634 | // commonSdkLibraryAndImportModule defines the interface that must be provided by a module that |
| 635 | // embeds the commonToSdkLibraryAndImport struct. |
| 636 | type commonSdkLibraryAndImportModule interface { |
Paul Duffin | b97b157 | 2021-04-29 21:50:40 +0100 | [diff] [blame] | 637 | android.SdkAware |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 638 | |
| 639 | BaseModuleName() string |
| 640 | } |
| 641 | |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 642 | // Common code between sdk library and sdk library import |
| 643 | type commonToSdkLibraryAndImport struct { |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 644 | module commonSdkLibraryAndImportModule |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 645 | |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 646 | scopePaths map[*apiScope]*scopePaths |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 647 | |
| 648 | namingScheme sdkLibraryComponentNamingScheme |
| 649 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 650 | commonSdkLibraryProperties commonToSdkLibraryAndImportProperties |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 651 | |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 652 | // Paths to commonSdkLibraryProperties.Doctag_files |
| 653 | doctagPaths android.Paths |
| 654 | |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 655 | // Functionality related to this being used as a component of a java_sdk_library. |
| 656 | EmbeddableSdkLibraryComponent |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 657 | } |
| 658 | |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 659 | func (c *commonToSdkLibraryAndImport) initCommon(module commonSdkLibraryAndImportModule) { |
| 660 | c.module = module |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 661 | |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 662 | module.AddProperties(&c.commonSdkLibraryProperties) |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 663 | |
| 664 | // Initialize this as an sdk library component. |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 665 | c.initSdkLibraryComponent(module) |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 666 | } |
| 667 | |
| 668 | func (c *commonToSdkLibraryAndImport) initCommonAfterDefaultsApplied(ctx android.DefaultableHookContext) bool { |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 669 | schemeProperty := proptools.StringDefault(c.commonSdkLibraryProperties.Naming_scheme, "default") |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 670 | switch schemeProperty { |
| 671 | case "default": |
| 672 | c.namingScheme = &defaultNamingScheme{} |
| 673 | default: |
| 674 | ctx.PropertyErrorf("naming_scheme", "expected 'default' but was %q", schemeProperty) |
| 675 | return false |
| 676 | } |
| 677 | |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame^] | 678 | namePtr := proptools.StringPtr(c.module.BaseModuleName()) |
| 679 | c.sdkLibraryComponentProperties.SdkLibraryName = namePtr |
| 680 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 681 | // Only track this sdk library if this can be used as a shared library. |
| 682 | if c.sharedLibrary() { |
| 683 | // Use the name specified in the module definition as the owner. |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame^] | 684 | c.sdkLibraryComponentProperties.SdkLibraryToImplicitlyTrack = namePtr |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 685 | } |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 686 | |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 687 | return true |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 688 | } |
| 689 | |
Paul Duffin | ea8f808 | 2021-06-24 13:25:57 +0100 | [diff] [blame] | 690 | // uniqueApexVariations provides common implementation of the ApexModule.UniqueApexVariations |
| 691 | // method. |
| 692 | func (c *commonToSdkLibraryAndImport) uniqueApexVariations() bool { |
| 693 | // A java_sdk_library that is a shared library produces an XML file that makes the shared library |
| 694 | // usable from an AndroidManifest.xml's <uses-library> entry. That XML file contains the name of |
| 695 | // the APEX and so it needs a unique variation per APEX. |
| 696 | return c.sharedLibrary() |
| 697 | } |
| 698 | |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 699 | func (c *commonToSdkLibraryAndImport) generateCommonBuildActions(ctx android.ModuleContext) { |
| 700 | c.doctagPaths = android.PathsForModuleSrc(ctx, c.commonSdkLibraryProperties.Doctag_files) |
| 701 | } |
| 702 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 703 | // Module name of the runtime implementation library |
| 704 | func (c *commonToSdkLibraryAndImport) implLibraryModuleName() string { |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 705 | return c.module.BaseModuleName() + ".impl" |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 706 | } |
| 707 | |
| 708 | // Module name of the XML file for the lib |
| 709 | func (c *commonToSdkLibraryAndImport) xmlPermissionsModuleName() string { |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 710 | return c.module.BaseModuleName() + sdkXmlFileSuffix |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 711 | } |
| 712 | |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 713 | // Name of the java_library module that compiles the stubs source. |
| 714 | func (c *commonToSdkLibraryAndImport) stubsLibraryModuleName(apiScope *apiScope) string { |
Paul Duffin | b97b157 | 2021-04-29 21:50:40 +0100 | [diff] [blame] | 715 | baseName := c.module.BaseModuleName() |
| 716 | return c.module.SdkMemberComponentName(baseName, func(name string) string { |
| 717 | return c.namingScheme.stubsLibraryModuleName(apiScope, name) |
| 718 | }) |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 719 | } |
| 720 | |
| 721 | // Name of the droidstubs module that generates the stubs source and may also |
| 722 | // generate/check the API. |
| 723 | func (c *commonToSdkLibraryAndImport) stubsSourceModuleName(apiScope *apiScope) string { |
Paul Duffin | b97b157 | 2021-04-29 21:50:40 +0100 | [diff] [blame] | 724 | baseName := c.module.BaseModuleName() |
| 725 | return c.module.SdkMemberComponentName(baseName, func(name string) string { |
| 726 | return c.namingScheme.stubsSourceModuleName(apiScope, name) |
| 727 | }) |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 728 | } |
| 729 | |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 730 | // The component names for different outputs of the java_sdk_library. |
| 731 | // |
| 732 | // They are similar to the names used for the child modules it creates |
| 733 | const ( |
| 734 | stubsSourceComponentName = "stubs.source" |
| 735 | |
| 736 | apiTxtComponentName = "api.txt" |
| 737 | |
| 738 | removedApiTxtComponentName = "removed-api.txt" |
| 739 | ) |
| 740 | |
| 741 | // A regular expression to match tags that reference a specific stubs component. |
| 742 | // |
| 743 | // It will only match if given a valid scope and a valid component. It is verfy strict |
| 744 | // to ensure it does not accidentally match a similar looking tag that should be processed |
| 745 | // by the embedded Library. |
| 746 | var tagSplitter = func() *regexp.Regexp { |
| 747 | // Given a list of literal string items returns a regular expression that will |
| 748 | // match any one of the items. |
| 749 | choice := func(items ...string) string { |
| 750 | return `\Q` + strings.Join(items, `\E|\Q`) + `\E` |
| 751 | } |
| 752 | |
| 753 | // Regular expression to match one of the scopes. |
| 754 | scopesRegexp := choice(allScopeNames...) |
| 755 | |
| 756 | // Regular expression to match one of the components. |
| 757 | componentsRegexp := choice(stubsSourceComponentName, apiTxtComponentName, removedApiTxtComponentName) |
| 758 | |
| 759 | // Regular expression to match any combination of one scope and one component. |
| 760 | return regexp.MustCompile(fmt.Sprintf(`^\.(%s)\.(%s)$`, scopesRegexp, componentsRegexp)) |
| 761 | }() |
| 762 | |
| 763 | // For OutputFileProducer interface |
| 764 | // |
| 765 | // .<scope>.stubs.source |
| 766 | // .<scope>.api.txt |
| 767 | // .<scope>.removed-api.txt |
| 768 | func (c *commonToSdkLibraryAndImport) commonOutputFiles(tag string) (android.Paths, error) { |
| 769 | if groups := tagSplitter.FindStringSubmatch(tag); groups != nil { |
| 770 | scopeName := groups[1] |
| 771 | component := groups[2] |
| 772 | |
| 773 | if scope, ok := scopeByName[scopeName]; ok { |
| 774 | paths := c.findScopePaths(scope) |
| 775 | if paths == nil { |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 776 | return nil, fmt.Errorf("%q does not provide api scope %s", c.module.BaseModuleName(), scopeName) |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 777 | } |
| 778 | |
| 779 | switch component { |
| 780 | case stubsSourceComponentName: |
| 781 | if paths.stubsSrcJar.Valid() { |
| 782 | return android.Paths{paths.stubsSrcJar.Path()}, nil |
| 783 | } |
| 784 | |
| 785 | case apiTxtComponentName: |
| 786 | if paths.currentApiFilePath.Valid() { |
| 787 | return android.Paths{paths.currentApiFilePath.Path()}, nil |
| 788 | } |
| 789 | |
| 790 | case removedApiTxtComponentName: |
| 791 | if paths.removedApiFilePath.Valid() { |
| 792 | return android.Paths{paths.removedApiFilePath.Path()}, nil |
| 793 | } |
| 794 | } |
| 795 | |
| 796 | return nil, fmt.Errorf("%s not available for api scope %s", component, scopeName) |
| 797 | } else { |
| 798 | return nil, fmt.Errorf("unknown scope %s in %s", scope, tag) |
| 799 | } |
| 800 | |
| 801 | } else { |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 802 | switch tag { |
| 803 | case ".doctags": |
| 804 | if c.doctagPaths != nil { |
| 805 | return c.doctagPaths, nil |
| 806 | } else { |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 807 | return nil, fmt.Errorf("no doctag_files specified on %s", c.module.BaseModuleName()) |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 808 | } |
| 809 | } |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 810 | return nil, nil |
| 811 | } |
| 812 | } |
| 813 | |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 814 | func (c *commonToSdkLibraryAndImport) getScopePathsCreateIfNeeded(scope *apiScope) *scopePaths { |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 815 | if c.scopePaths == nil { |
| 816 | c.scopePaths = make(map[*apiScope]*scopePaths) |
| 817 | } |
| 818 | paths := c.scopePaths[scope] |
| 819 | if paths == nil { |
| 820 | paths = &scopePaths{} |
| 821 | c.scopePaths[scope] = paths |
| 822 | } |
| 823 | |
| 824 | return paths |
| 825 | } |
| 826 | |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 827 | func (c *commonToSdkLibraryAndImport) findScopePaths(scope *apiScope) *scopePaths { |
| 828 | if c.scopePaths == nil { |
| 829 | return nil |
| 830 | } |
| 831 | |
| 832 | return c.scopePaths[scope] |
| 833 | } |
| 834 | |
| 835 | // If this does not support the requested api scope then find the closest available |
| 836 | // scope it does support. Returns nil if no such scope is available. |
| 837 | func (c *commonToSdkLibraryAndImport) findClosestScopePath(scope *apiScope) *scopePaths { |
| 838 | for s := scope; s != nil; s = s.extends { |
| 839 | if paths := c.findScopePaths(s); paths != nil { |
| 840 | return paths |
| 841 | } |
| 842 | } |
| 843 | |
| 844 | // This should never happen outside tests as public should be the base scope for every |
| 845 | // scope and is enabled by default. |
| 846 | return nil |
| 847 | } |
| 848 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 849 | func (c *commonToSdkLibraryAndImport) selectHeaderJarsForSdkVersion(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths { |
Paul Duffin | b05d429 | 2020-05-20 12:19:10 +0100 | [diff] [blame] | 850 | |
| 851 | // 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] | 852 | if !sdkVersion.ApiLevel.IsPreview() { |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 853 | return PrebuiltJars(ctx, c.module.BaseModuleName(), sdkVersion) |
Paul Duffin | b05d429 | 2020-05-20 12:19:10 +0100 | [diff] [blame] | 854 | } |
| 855 | |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 856 | paths := c.selectScopePaths(ctx, sdkVersion.Kind) |
| 857 | if paths == nil { |
| 858 | return nil |
| 859 | } |
| 860 | |
| 861 | return paths.stubsHeaderPath |
| 862 | } |
| 863 | |
| 864 | // selectScopePaths returns the *scopePaths appropriate for the specific kind. |
| 865 | // |
| 866 | // If the module does not support the specific kind then it will return the *scopePaths for the |
| 867 | // closest kind which is a subset of the requested kind. e.g. if requesting android.SdkModule then |
| 868 | // it will return *scopePaths for android.SdkSystem if available or android.SdkPublic of not. |
| 869 | func (c *commonToSdkLibraryAndImport) selectScopePaths(ctx android.BaseModuleContext, kind android.SdkKind) *scopePaths { |
Paul Duffin | 32cf58a | 2021-05-18 16:32:50 +0100 | [diff] [blame] | 870 | apiScope := sdkKindToApiScope(kind) |
Paul Duffin | b05d429 | 2020-05-20 12:19:10 +0100 | [diff] [blame] | 871 | |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 872 | paths := c.findClosestScopePath(apiScope) |
| 873 | if paths == nil { |
| 874 | var scopes []string |
| 875 | for _, s := range allApiScopes { |
| 876 | if c.findScopePaths(s) != nil { |
| 877 | scopes = append(scopes, s.name) |
| 878 | } |
| 879 | } |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 880 | ctx.ModuleErrorf("requires api scope %s from %s but it only has %q available", apiScope.name, c.module.BaseModuleName(), scopes) |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 881 | return nil |
| 882 | } |
| 883 | |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 884 | return paths |
| 885 | } |
| 886 | |
Paul Duffin | 32cf58a | 2021-05-18 16:32:50 +0100 | [diff] [blame] | 887 | // sdkKindToApiScope maps from android.SdkKind to apiScope. |
| 888 | func sdkKindToApiScope(kind android.SdkKind) *apiScope { |
| 889 | var apiScope *apiScope |
| 890 | switch kind { |
| 891 | case android.SdkSystem: |
| 892 | apiScope = apiScopeSystem |
| 893 | case android.SdkModule: |
| 894 | apiScope = apiScopeModuleLib |
| 895 | case android.SdkTest: |
| 896 | apiScope = apiScopeTest |
| 897 | case android.SdkSystemServer: |
| 898 | apiScope = apiScopeSystemServer |
| 899 | default: |
| 900 | apiScope = apiScopePublic |
| 901 | } |
| 902 | return apiScope |
| 903 | } |
| 904 | |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 905 | // to satisfy SdkLibraryDependency interface |
| 906 | func (c *commonToSdkLibraryAndImport) SdkApiStubDexJar(ctx android.BaseModuleContext, kind android.SdkKind) android.Path { |
| 907 | paths := c.selectScopePaths(ctx, kind) |
| 908 | if paths == nil { |
| 909 | return nil |
| 910 | } |
| 911 | |
| 912 | return paths.stubsDexJarPath |
Paul Duffin | b05d429 | 2020-05-20 12:19:10 +0100 | [diff] [blame] | 913 | } |
| 914 | |
Paul Duffin | 32cf58a | 2021-05-18 16:32:50 +0100 | [diff] [blame] | 915 | // to satisfy SdkLibraryDependency interface |
| 916 | func (c *commonToSdkLibraryAndImport) SdkRemovedTxtFile(ctx android.BaseModuleContext, kind android.SdkKind) android.OptionalPath { |
| 917 | apiScope := sdkKindToApiScope(kind) |
| 918 | paths := c.findScopePaths(apiScope) |
| 919 | if paths == nil { |
| 920 | return android.OptionalPath{} |
| 921 | } |
| 922 | |
| 923 | return paths.removedApiFilePath |
| 924 | } |
| 925 | |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 926 | func (c *commonToSdkLibraryAndImport) sdkComponentPropertiesForChildLibrary() interface{} { |
| 927 | componentProps := &struct { |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame^] | 928 | SdkLibraryName *string |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 929 | SdkLibraryToImplicitlyTrack *string |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 930 | }{} |
| 931 | |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame^] | 932 | namePtr := proptools.StringPtr(c.module.BaseModuleName()) |
| 933 | componentProps.SdkLibraryName = namePtr |
| 934 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 935 | if c.sharedLibrary() { |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 936 | // Mark the stubs library as being components of this java_sdk_library so that |
| 937 | // any app that includes code which depends (directly or indirectly) on the stubs |
| 938 | // library will have the appropriate <uses-library> invocation inserted into its |
| 939 | // manifest if necessary. |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame^] | 940 | componentProps.SdkLibraryToImplicitlyTrack = namePtr |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 941 | } |
| 942 | |
| 943 | return componentProps |
| 944 | } |
| 945 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 946 | func (c *commonToSdkLibraryAndImport) sharedLibrary() bool { |
| 947 | return proptools.BoolDefault(c.commonSdkLibraryProperties.Shared_library, true) |
| 948 | } |
| 949 | |
Paul Duffin | f4600f6 | 2021-05-13 22:34:45 +0100 | [diff] [blame] | 950 | // Check if the stub libraries should be compiled for dex |
| 951 | func (c *commonToSdkLibraryAndImport) stubLibrariesCompiledForDex() bool { |
| 952 | // Always compile the dex file files for the stub libraries if they will be used on the |
| 953 | // bootclasspath. |
| 954 | return !c.sharedLibrary() |
| 955 | } |
| 956 | |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 957 | // Properties related to the use of a module as an component of a java_sdk_library. |
| 958 | type SdkLibraryComponentProperties struct { |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame^] | 959 | // The name of the java_sdk_library/_import module. |
| 960 | SdkLibraryName *string `blueprint:"mutated"` |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 961 | |
| 962 | // The name of the java_sdk_library/_import to add to a <uses-library> entry |
| 963 | // in the AndroidManifest.xml of any Android app that includes code that references |
| 964 | // this module. If not set then no java_sdk_library/_import is tracked. |
| 965 | SdkLibraryToImplicitlyTrack *string `blueprint:"mutated"` |
| 966 | } |
| 967 | |
| 968 | // Structure to be embedded in a module struct that needs to support the |
| 969 | // SdkLibraryComponentDependency interface. |
| 970 | type EmbeddableSdkLibraryComponent struct { |
| 971 | sdkLibraryComponentProperties SdkLibraryComponentProperties |
| 972 | } |
| 973 | |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 974 | func (e *EmbeddableSdkLibraryComponent) initSdkLibraryComponent(module android.Module) { |
| 975 | module.AddProperties(&e.sdkLibraryComponentProperties) |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 976 | } |
| 977 | |
| 978 | // to satisfy SdkLibraryComponentDependency |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame^] | 979 | func (e *EmbeddableSdkLibraryComponent) SdkLibraryName() *string { |
| 980 | return e.sdkLibraryComponentProperties.SdkLibraryName |
| 981 | } |
| 982 | |
| 983 | // to satisfy SdkLibraryComponentDependency |
Ulya Trafimovich | 31e444e | 2020-08-14 17:32:16 +0100 | [diff] [blame] | 984 | func (e *EmbeddableSdkLibraryComponent) OptionalImplicitSdkLibrary() *string { |
| 985 | return e.sdkLibraryComponentProperties.SdkLibraryToImplicitlyTrack |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 986 | } |
| 987 | |
Ulya Trafimovich | 39b437b | 2020-09-23 16:42:35 +0100 | [diff] [blame] | 988 | // to satisfy SdkLibraryComponentDependency |
| 989 | func (e *EmbeddableSdkLibraryComponent) OptionalSdkLibraryImplementation() *string { |
| 990 | // Currently implementation library name is the same as the SDK library name. |
| 991 | return e.sdkLibraryComponentProperties.SdkLibraryToImplicitlyTrack |
| 992 | } |
| 993 | |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 994 | // Implemented by modules that are (or possibly could be) a component of a java_sdk_library |
| 995 | // (including the java_sdk_library) itself. |
| 996 | type SdkLibraryComponentDependency interface { |
Ulya Trafimovich | 31e444e | 2020-08-14 17:32:16 +0100 | [diff] [blame] | 997 | UsesLibraryDependency |
| 998 | |
Paul Duffin | 3f0290e | 2021-06-30 18:25:36 +0100 | [diff] [blame^] | 999 | // SdkLibraryName returns the name of the java_sdk_library/_import module. |
| 1000 | SdkLibraryName() *string |
| 1001 | |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1002 | // The optional name of the sdk library that should be implicitly added to the |
| 1003 | // AndroidManifest of an app that contains code which references the sdk library. |
| 1004 | // |
Ulya Trafimovich | 31e444e | 2020-08-14 17:32:16 +0100 | [diff] [blame] | 1005 | // Returns the name of the optional implicit SDK library or nil, if there isn't one. |
| 1006 | OptionalImplicitSdkLibrary() *string |
Ulya Trafimovich | 39b437b | 2020-09-23 16:42:35 +0100 | [diff] [blame] | 1007 | |
| 1008 | // The name of the implementation library for the optional SDK library or nil, if there isn't one. |
| 1009 | OptionalSdkLibraryImplementation() *string |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1010 | } |
| 1011 | |
| 1012 | // Make sure that all the module types that are components of java_sdk_library/_import |
| 1013 | // and which can be referenced (directly or indirectly) from an android app implement |
| 1014 | // the SdkLibraryComponentDependency interface. |
| 1015 | var _ SdkLibraryComponentDependency = (*Library)(nil) |
| 1016 | var _ SdkLibraryComponentDependency = (*Import)(nil) |
| 1017 | var _ SdkLibraryComponentDependency = (*SdkLibrary)(nil) |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1018 | var _ SdkLibraryComponentDependency = (*SdkLibraryImport)(nil) |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1019 | |
Paul Duffin | 32cf58a | 2021-05-18 16:32:50 +0100 | [diff] [blame] | 1020 | // 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] | 1021 | type SdkLibraryDependency interface { |
| 1022 | SdkLibraryComponentDependency |
| 1023 | |
| 1024 | // Get the header jars appropriate for the supplied sdk_version. |
| 1025 | // |
| 1026 | // These are turbine generated jars so they only change if the externals of the |
| 1027 | // class changes but it does not contain and implementation or JavaDoc. |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1028 | SdkHeaderJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1029 | |
| 1030 | // Get the implementation jars appropriate for the supplied sdk version. |
| 1031 | // |
| 1032 | // These are either the implementation jar for the whole sdk library or the implementation |
| 1033 | // jars for the stubs. The latter should only be needed when generating JavaDoc as otherwise |
| 1034 | // they are identical to the corresponding header jars. |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1035 | SdkImplementationJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 1036 | |
| 1037 | // SdkApiStubDexJar returns the dex jar for the stubs. It is needed by the hiddenapi processing |
| 1038 | // tool which processes dex files. |
| 1039 | SdkApiStubDexJar(ctx android.BaseModuleContext, kind android.SdkKind) android.Path |
Paul Duffin | f4600f6 | 2021-05-13 22:34:45 +0100 | [diff] [blame] | 1040 | |
Paul Duffin | 32cf58a | 2021-05-18 16:32:50 +0100 | [diff] [blame] | 1041 | // SdkRemovedTxtFile returns the optional path to the removed.txt file for the specified sdk kind. |
| 1042 | SdkRemovedTxtFile(ctx android.BaseModuleContext, kind android.SdkKind) android.OptionalPath |
| 1043 | |
Paul Duffin | f4600f6 | 2021-05-13 22:34:45 +0100 | [diff] [blame] | 1044 | // sharedLibrary returns true if this can be used as a shared library. |
| 1045 | sharedLibrary() bool |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1046 | } |
| 1047 | |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1048 | type SdkLibrary struct { |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1049 | Library |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1050 | |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1051 | sdkLibraryProperties sdkLibraryProperties |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1052 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1053 | // Map from api scope to the scope specific property structure. |
| 1054 | scopeToProperties map[*apiScope]*ApiScopeProperties |
| 1055 | |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 1056 | commonToSdkLibraryAndImport |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1057 | } |
| 1058 | |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1059 | var _ SdkLibraryDependency = (*SdkLibrary)(nil) |
Colin Cross | 897d2ed | 2019-02-11 14:03:51 -0800 | [diff] [blame] | 1060 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1061 | func (module *SdkLibrary) generateTestAndSystemScopesByDefault() bool { |
| 1062 | return module.sdkLibraryProperties.Generate_system_and_test_apis |
| 1063 | } |
| 1064 | |
| 1065 | func (module *SdkLibrary) getGeneratedApiScopes(ctx android.EarlyModuleContext) apiScopes { |
| 1066 | // Check to see if any scopes have been explicitly enabled. If any have then all |
| 1067 | // must be. |
| 1068 | anyScopesExplicitlyEnabled := false |
| 1069 | for _, scope := range allApiScopes { |
| 1070 | scopeProperties := module.scopeToProperties[scope] |
| 1071 | if scopeProperties.Enabled != nil { |
| 1072 | anyScopesExplicitlyEnabled = true |
| 1073 | break |
| 1074 | } |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1075 | } |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1076 | |
| 1077 | var generatedScopes apiScopes |
| 1078 | enabledScopes := make(map[*apiScope]struct{}) |
| 1079 | for _, scope := range allApiScopes { |
| 1080 | scopeProperties := module.scopeToProperties[scope] |
| 1081 | // If any scopes are explicitly enabled then ignore the legacy enabled status. |
| 1082 | // This is to ensure that any new usages of this module type do not rely on legacy |
| 1083 | // behaviour. |
| 1084 | defaultEnabledStatus := false |
| 1085 | if anyScopesExplicitlyEnabled { |
| 1086 | defaultEnabledStatus = scope.defaultEnabledStatus |
| 1087 | } else { |
| 1088 | defaultEnabledStatus = scope.legacyEnabledStatus(module) |
| 1089 | } |
| 1090 | enabled := proptools.BoolDefault(scopeProperties.Enabled, defaultEnabledStatus) |
| 1091 | if enabled { |
| 1092 | enabledScopes[scope] = struct{}{} |
| 1093 | generatedScopes = append(generatedScopes, scope) |
| 1094 | } |
| 1095 | } |
| 1096 | |
| 1097 | // Now check to make sure that any scope that is extended by an enabled scope is also |
| 1098 | // enabled. |
| 1099 | for _, scope := range allApiScopes { |
| 1100 | if _, ok := enabledScopes[scope]; ok { |
| 1101 | extends := scope.extends |
| 1102 | if extends != nil { |
| 1103 | if _, ok := enabledScopes[extends]; !ok { |
| 1104 | ctx.ModuleErrorf("enabled api scope %q depends on disabled scope %q", scope, extends) |
| 1105 | } |
| 1106 | } |
| 1107 | } |
| 1108 | } |
| 1109 | |
| 1110 | return generatedScopes |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1111 | } |
| 1112 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1113 | type sdkLibraryComponentTag struct { |
| 1114 | blueprint.BaseDependencyTag |
| 1115 | name string |
| 1116 | } |
| 1117 | |
| 1118 | // Mark this tag so dependencies that use it are excluded from visibility enforcement. |
| 1119 | func (t sdkLibraryComponentTag) ExcludeFromVisibilityEnforcement() {} |
| 1120 | |
| 1121 | var xmlPermissionsFileTag = sdkLibraryComponentTag{name: "xml-permissions-file"} |
Paul Duffin | e74ac73 | 2020-02-06 13:51:46 +0000 | [diff] [blame] | 1122 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 1123 | func IsXmlPermissionsFileDepTag(depTag blueprint.DependencyTag) bool { |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1124 | if dt, ok := depTag.(sdkLibraryComponentTag); ok { |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 1125 | return dt == xmlPermissionsFileTag |
| 1126 | } |
| 1127 | return false |
| 1128 | } |
| 1129 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1130 | var implLibraryTag = sdkLibraryComponentTag{name: "impl-library"} |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1131 | |
Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 1132 | // Add the dependencies on the child modules in the component deps mutator. |
| 1133 | func (module *SdkLibrary) ComponentDepsMutator(ctx android.BottomUpMutatorContext) { |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1134 | for _, apiScope := range module.getGeneratedApiScopes(ctx) { |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1135 | // Add dependencies to the stubs library |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 1136 | ctx.AddVariationDependencies(nil, apiScope.stubsTag, module.stubsLibraryModuleName(apiScope)) |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1137 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1138 | // Add a dependency on the stubs source in order to access both stubs source and api information. |
| 1139 | ctx.AddVariationDependencies(nil, apiScope.stubsSourceAndApiTag, module.stubsSourceModuleName(apiScope)) |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1140 | } |
| 1141 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1142 | if module.requiresRuntimeImplementationLibrary() { |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1143 | // Add dependency to the rule for generating the implementation library. |
| 1144 | ctx.AddDependency(module, implLibraryTag, module.implLibraryModuleName()) |
| 1145 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1146 | if module.sharedLibrary() { |
| 1147 | // Add dependency to the rule for generating the xml permissions file |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1148 | ctx.AddDependency(module, xmlPermissionsFileTag, module.xmlPermissionsModuleName()) |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1149 | } |
Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 1150 | } |
| 1151 | } |
Paul Duffin | e74ac73 | 2020-02-06 13:51:46 +0000 | [diff] [blame] | 1152 | |
Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 1153 | // Add other dependencies as normal. |
| 1154 | func (module *SdkLibrary) DepsMutator(ctx android.BottomUpMutatorContext) { |
Anton Hansson | e77fccc | 2021-01-20 16:52:41 +0000 | [diff] [blame] | 1155 | var missingApiModules []string |
| 1156 | for _, apiScope := range module.getGeneratedApiScopes(ctx) { |
| 1157 | if apiScope.unstable { |
| 1158 | continue |
| 1159 | } |
| 1160 | if m := android.SrcIsModule(module.latestApiFilegroupName(apiScope)); !ctx.OtherModuleExists(m) { |
| 1161 | missingApiModules = append(missingApiModules, m) |
| 1162 | } |
| 1163 | if m := android.SrcIsModule(module.latestRemovedApiFilegroupName(apiScope)); !ctx.OtherModuleExists(m) { |
| 1164 | missingApiModules = append(missingApiModules, m) |
| 1165 | } |
Jaewoong Jung | 1a97ee0 | 2021-03-09 13:25:02 -0800 | [diff] [blame] | 1166 | if m := android.SrcIsModule(module.latestIncompatibilitiesFilegroupName(apiScope)); !ctx.OtherModuleExists(m) { |
| 1167 | missingApiModules = append(missingApiModules, m) |
| 1168 | } |
Anton Hansson | e77fccc | 2021-01-20 16:52:41 +0000 | [diff] [blame] | 1169 | } |
| 1170 | if len(missingApiModules) != 0 && !module.sdkLibraryProperties.Unsafe_ignore_missing_latest_api { |
| 1171 | m := module.Name() + " is missing tracking files for previously released library versions.\n" |
| 1172 | m += "You need to do one of the following:\n" |
| 1173 | m += "- Add `unsafe_ignore_missing_latest_api: true` to your blueprint (to disable compat tracking)\n" |
| 1174 | m += "- Add a set of prebuilt txt files representing the last released version of this library for compat checking.\n" |
| 1175 | m += " (the current set of API files can be used as a seed for this compatibility tracking\n" |
| 1176 | m += "\n" |
| 1177 | m += "The following filegroup modules are missing:\n " |
| 1178 | m += strings.Join(missingApiModules, "\n ") + "\n" |
| 1179 | 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." |
| 1180 | ctx.ModuleErrorf(m) |
| 1181 | } |
Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 1182 | if module.requiresRuntimeImplementationLibrary() { |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1183 | // Only add the deps for the library if it is actually going to be built. |
| 1184 | module.Library.deps(ctx) |
| 1185 | } |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1186 | } |
| 1187 | |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 1188 | func (module *SdkLibrary) OutputFiles(tag string) (android.Paths, error) { |
| 1189 | paths, err := module.commonOutputFiles(tag) |
| 1190 | if paths == nil && err == nil { |
| 1191 | return module.Library.OutputFiles(tag) |
| 1192 | } else { |
| 1193 | return paths, err |
| 1194 | } |
| 1195 | } |
| 1196 | |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1197 | func (module *SdkLibrary) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 1198 | module.generateCommonBuildActions(ctx) |
| 1199 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1200 | // Only build an implementation library if required. |
| 1201 | if module.requiresRuntimeImplementationLibrary() { |
Paul Duffin | 43db9be | 2019-12-30 17:35:49 +0000 | [diff] [blame] | 1202 | module.Library.GenerateAndroidBuildActions(ctx) |
| 1203 | } |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1204 | |
Paul Duffin | b97b157 | 2021-04-29 21:50:40 +0100 | [diff] [blame] | 1205 | // Collate the components exported by this module. All scope specific modules are exported but |
| 1206 | // the impl and xml component modules are not. |
| 1207 | exportedComponents := map[string]struct{}{} |
| 1208 | |
Sundong Ahn | 57368eb | 2018-07-06 11:20:23 +0900 | [diff] [blame] | 1209 | // 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] | 1210 | // 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] | 1211 | // the recorded paths will be returned depending on the link type of the caller. |
| 1212 | ctx.VisitDirectDeps(func(to android.Module) { |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1213 | tag := ctx.OtherModuleDependencyTag(to) |
| 1214 | |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 1215 | // Extract information from any of the scope specific dependencies. |
| 1216 | if scopeTag, ok := tag.(scopeDependencyTag); ok { |
| 1217 | apiScope := scopeTag.apiScope |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 1218 | scopePaths := module.getScopePathsCreateIfNeeded(apiScope) |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 1219 | |
| 1220 | // Extract information from the dependency. The exact information extracted |
| 1221 | // is determined by the nature of the dependency which is determined by the tag. |
| 1222 | scopeTag.extractDepInfo(ctx, to, scopePaths) |
Paul Duffin | b97b157 | 2021-04-29 21:50:40 +0100 | [diff] [blame] | 1223 | |
| 1224 | exportedComponents[ctx.OtherModuleName(to)] = struct{}{} |
Sundong Ahn | 20e998b | 2018-07-24 11:19:26 +0900 | [diff] [blame] | 1225 | } |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1226 | }) |
Paul Duffin | b97b157 | 2021-04-29 21:50:40 +0100 | [diff] [blame] | 1227 | |
| 1228 | // Make the set of components exported by this module available for use elsewhere. |
| 1229 | exportedComponentInfo := android.ExportedComponentsInfo{Components: android.SortedStringKeys(exportedComponents)} |
| 1230 | ctx.SetProvider(android.ExportedComponentsInfoProvider, exportedComponentInfo) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1231 | } |
| 1232 | |
Jiyong Park | 0b0e1b9 | 2019-12-03 13:24:29 +0900 | [diff] [blame] | 1233 | func (module *SdkLibrary) AndroidMkEntries() []android.AndroidMkEntries { |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1234 | if !module.requiresRuntimeImplementationLibrary() { |
Paul Duffin | 43db9be | 2019-12-30 17:35:49 +0000 | [diff] [blame] | 1235 | return nil |
| 1236 | } |
Jiyong Park | 0b0e1b9 | 2019-12-03 13:24:29 +0900 | [diff] [blame] | 1237 | entriesList := module.Library.AndroidMkEntries() |
Yo Chiang | 07d7507 | 2020-06-05 17:43:19 +0800 | [diff] [blame] | 1238 | if module.sharedLibrary() { |
| 1239 | entries := &entriesList[0] |
| 1240 | entries.Required = append(entries.Required, module.xmlPermissionsModuleName()) |
| 1241 | } |
Jiyong Park | 0b0e1b9 | 2019-12-03 13:24:29 +0900 | [diff] [blame] | 1242 | return entriesList |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 1243 | } |
| 1244 | |
Anton Hansson | 5fd5d24 | 2020-03-27 19:43:19 +0000 | [diff] [blame] | 1245 | // The dist path of the stub artifacts |
| 1246 | func (module *SdkLibrary) apiDistPath(apiScope *apiScope) string { |
Colin Cross | f0eace9 | 2021-06-02 13:02:23 -0700 | [diff] [blame] | 1247 | return path.Join("apistubs", module.distGroup(), apiScope.name) |
Anton Hansson | 5fd5d24 | 2020-03-27 19:43:19 +0000 | [diff] [blame] | 1248 | } |
| 1249 | |
Paul Duffin | 12ceb46 | 2019-12-24 20:31:31 +0000 | [diff] [blame] | 1250 | // Get the sdk version for use when compiling the stubs library. |
Paul Duffin | 780c5f4 | 2020-05-12 15:52:55 +0100 | [diff] [blame] | 1251 | func (module *SdkLibrary) sdkVersionForStubsLibrary(mctx android.EarlyModuleContext, apiScope *apiScope) string { |
Paul Duffin | 87a05a3 | 2020-05-12 11:50:28 +0100 | [diff] [blame] | 1252 | scopeProperties := module.scopeToProperties[apiScope] |
| 1253 | if scopeProperties.Sdk_version != nil { |
| 1254 | return proptools.String(scopeProperties.Sdk_version) |
| 1255 | } |
| 1256 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1257 | sdkDep := decodeSdkDep(mctx, android.SdkContext(&module.Library)) |
Paul Duffin | 12ceb46 | 2019-12-24 20:31:31 +0000 | [diff] [blame] | 1258 | if sdkDep.hasStandardLibs() { |
| 1259 | // 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] | 1260 | return apiScope.sdkVersion |
Paul Duffin | 12ceb46 | 2019-12-24 20:31:31 +0000 | [diff] [blame] | 1261 | } else { |
| 1262 | // Otherwise, use no system module. |
| 1263 | return "none" |
| 1264 | } |
| 1265 | } |
| 1266 | |
Paul Duffin | 3131025 | 2020-11-20 21:26:20 +0000 | [diff] [blame] | 1267 | func (module *SdkLibrary) distStem() string { |
| 1268 | return proptools.StringDefault(module.sdkLibraryProperties.Dist_stem, module.BaseModuleName()) |
| 1269 | } |
| 1270 | |
Colin Cross | 986b69a | 2021-06-01 13:13:40 -0700 | [diff] [blame] | 1271 | // distGroup returns the subdirectory of the dist path of the stub artifacts. |
| 1272 | func (module *SdkLibrary) distGroup() string { |
Colin Cross | 59b92bf | 2021-06-01 14:07:56 -0700 | [diff] [blame] | 1273 | return proptools.StringDefault(module.sdkLibraryProperties.Dist_group, "unknown") |
Colin Cross | 986b69a | 2021-06-01 13:13:40 -0700 | [diff] [blame] | 1274 | } |
| 1275 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1276 | func (module *SdkLibrary) latestApiFilegroupName(apiScope *apiScope) string { |
Paul Duffin | 3131025 | 2020-11-20 21:26:20 +0000 | [diff] [blame] | 1277 | return ":" + module.distStem() + ".api." + apiScope.name + ".latest" |
Jiyong Park | 58c518b | 2018-05-12 22:29:12 +0900 | [diff] [blame] | 1278 | } |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1279 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1280 | func (module *SdkLibrary) latestRemovedApiFilegroupName(apiScope *apiScope) string { |
Paul Duffin | 3131025 | 2020-11-20 21:26:20 +0000 | [diff] [blame] | 1281 | return ":" + module.distStem() + "-removed.api." + apiScope.name + ".latest" |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1282 | } |
| 1283 | |
Jaewoong Jung | 1a97ee0 | 2021-03-09 13:25:02 -0800 | [diff] [blame] | 1284 | func (module *SdkLibrary) latestIncompatibilitiesFilegroupName(apiScope *apiScope) string { |
| 1285 | return ":" + module.distStem() + "-incompatibilities.api." + apiScope.name + ".latest" |
| 1286 | } |
| 1287 | |
Anton Hansson | 944e77d | 2020-08-19 11:40:22 +0100 | [diff] [blame] | 1288 | func childModuleVisibility(childVisibility []string) []string { |
| 1289 | if childVisibility == nil { |
| 1290 | // No child visibility set. The child will use the visibility of the sdk_library. |
| 1291 | return nil |
| 1292 | } |
| 1293 | |
| 1294 | // Prepend an override to ignore the sdk_library's visibility, and rely on the child visibility. |
| 1295 | var visibility []string |
| 1296 | visibility = append(visibility, "//visibility:override") |
| 1297 | visibility = append(visibility, childVisibility...) |
| 1298 | return visibility |
| 1299 | } |
| 1300 | |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1301 | // Creates the implementation java library |
| 1302 | func (module *SdkLibrary) createImplLibrary(mctx android.DefaultableHookContext) { |
Anton Hansson | 944e77d | 2020-08-19 11:40:22 +0100 | [diff] [blame] | 1303 | visibility := childModuleVisibility(module.sdkLibraryProperties.Impl_library_visibility) |
| 1304 | |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1305 | props := struct { |
Paul Duffin | 66cdbf0 | 2021-05-14 16:35:06 +0100 | [diff] [blame] | 1306 | Name *string |
| 1307 | Visibility []string |
| 1308 | Instrument bool |
| 1309 | Libs []string |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1310 | }{ |
| 1311 | Name: proptools.StringPtr(module.implLibraryModuleName()), |
Anton Hansson | 944e77d | 2020-08-19 11:40:22 +0100 | [diff] [blame] | 1312 | Visibility: visibility, |
Paul Duffin | 296cf33 | 2020-06-18 21:09:55 +0100 | [diff] [blame] | 1313 | // Set the instrument property to ensure it is instrumented when instrumentation is required. |
| 1314 | Instrument: true, |
Anton Hansson | 7f66efa | 2020-10-08 14:47:23 +0100 | [diff] [blame] | 1315 | // Set the impl_only libs. Note that the module's "Libs" get appended as well, via the |
| 1316 | // addition of &module.properties below. |
| 1317 | Libs: module.sdkLibraryProperties.Impl_only_libs, |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1318 | } |
| 1319 | |
| 1320 | properties := []interface{}{ |
| 1321 | &module.properties, |
| 1322 | &module.protoProperties, |
| 1323 | &module.deviceProperties, |
Liz Kammer | a7a64f3 | 2020-07-09 15:16:41 -0700 | [diff] [blame] | 1324 | &module.dexProperties, |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1325 | &module.dexpreoptProperties, |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 1326 | &module.linter.properties, |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1327 | &props, |
| 1328 | module.sdkComponentPropertiesForChildLibrary(), |
| 1329 | } |
| 1330 | mctx.CreateModule(LibraryFactory, properties...) |
| 1331 | } |
| 1332 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1333 | // Creates a static java library that has API stubs |
Paul Duffin | f022920 | 2020-04-29 16:47:28 +0100 | [diff] [blame] | 1334 | func (module *SdkLibrary) createStubsLibrary(mctx android.DefaultableHookContext, apiScope *apiScope) { |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1335 | props := struct { |
Dan Willemsen | 9f43597 | 2020-05-28 15:28:00 -0700 | [diff] [blame] | 1336 | Name *string |
| 1337 | Visibility []string |
| 1338 | Srcs []string |
| 1339 | Installable *bool |
| 1340 | Sdk_version *string |
| 1341 | System_modules *string |
| 1342 | Patch_module *string |
| 1343 | Libs []string |
Anton Hansson | dae54cd | 2021-04-21 16:30:10 +0100 | [diff] [blame] | 1344 | Static_libs []string |
Dan Willemsen | 9f43597 | 2020-05-28 15:28:00 -0700 | [diff] [blame] | 1345 | Compile_dex *bool |
| 1346 | Java_version *string |
| 1347 | Openjdk9 struct { |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1348 | Srcs []string |
| 1349 | Javacflags []string |
| 1350 | } |
Anton Hansson | 5fd5d24 | 2020-03-27 19:43:19 +0000 | [diff] [blame] | 1351 | Dist struct { |
| 1352 | Targets []string |
| 1353 | Dest *string |
| 1354 | Dir *string |
| 1355 | Tag *string |
| 1356 | } |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1357 | }{} |
| 1358 | |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 1359 | props.Name = proptools.StringPtr(module.stubsLibraryModuleName(apiScope)) |
Anton Hansson | 944e77d | 2020-08-19 11:40:22 +0100 | [diff] [blame] | 1360 | props.Visibility = childModuleVisibility(module.sdkLibraryProperties.Stubs_library_visibility) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1361 | // sources are generated from the droiddoc |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 1362 | props.Srcs = []string{":" + module.stubsSourceModuleName(apiScope)} |
Paul Duffin | 12ceb46 | 2019-12-24 20:31:31 +0000 | [diff] [blame] | 1363 | sdkVersion := module.sdkVersionForStubsLibrary(mctx, apiScope) |
Paul Duffin | 52d398a | 2019-06-11 12:31:14 +0100 | [diff] [blame] | 1364 | props.Sdk_version = proptools.StringPtr(sdkVersion) |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 1365 | props.System_modules = module.deviceProperties.System_modules |
| 1366 | props.Patch_module = module.properties.Patch_module |
Paul Duffin | 367ab91 | 2019-12-23 19:40:36 +0000 | [diff] [blame] | 1367 | props.Installable = proptools.BoolPtr(false) |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1368 | props.Libs = module.sdkLibraryProperties.Stub_only_libs |
Anton Hansson | dae54cd | 2021-04-21 16:30:10 +0100 | [diff] [blame] | 1369 | props.Static_libs = module.sdkLibraryProperties.Stub_only_static_libs |
Paul Duffin | e22c2ab | 2020-05-20 19:35:27 +0100 | [diff] [blame] | 1370 | // The stub-annotations library contains special versions of the annotations |
| 1371 | // with CLASS retention policy, so that they're kept. |
| 1372 | if proptools.Bool(module.sdkLibraryProperties.Annotations_enabled) { |
| 1373 | props.Libs = append(props.Libs, "stub-annotations") |
| 1374 | } |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 1375 | props.Openjdk9.Srcs = module.properties.Openjdk9.Srcs |
| 1376 | props.Openjdk9.Javacflags = module.properties.Openjdk9.Javacflags |
Anton Hansson | 83509b5 | 2020-05-21 09:21:57 +0100 | [diff] [blame] | 1377 | // We compile the stubs for 1.8 in line with the main android.jar stubs, and potential |
| 1378 | // interop with older developer tools that don't support 1.9. |
| 1379 | props.Java_version = proptools.StringPtr("1.8") |
Paul Duffin | f4600f6 | 2021-05-13 22:34:45 +0100 | [diff] [blame] | 1380 | |
| 1381 | // The imports need to be compiled to dex if the java_sdk_library requests it. |
| 1382 | compileDex := module.dexProperties.Compile_dex |
| 1383 | if module.stubLibrariesCompiledForDex() { |
| 1384 | compileDex = proptools.BoolPtr(true) |
Sundong Ahn | dd567f9 | 2018-07-31 17:19:11 +0900 | [diff] [blame] | 1385 | } |
Paul Duffin | f4600f6 | 2021-05-13 22:34:45 +0100 | [diff] [blame] | 1386 | props.Compile_dex = compileDex |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1387 | |
Anton Hansson | 5fd5d24 | 2020-03-27 19:43:19 +0000 | [diff] [blame] | 1388 | // Dist the class jar artifact for sdk builds. |
| 1389 | if !Bool(module.sdkLibraryProperties.No_dist) { |
| 1390 | props.Dist.Targets = []string{"sdk", "win_sdk"} |
Paul Duffin | 3131025 | 2020-11-20 21:26:20 +0000 | [diff] [blame] | 1391 | props.Dist.Dest = proptools.StringPtr(fmt.Sprintf("%v.jar", module.distStem())) |
Anton Hansson | 5fd5d24 | 2020-03-27 19:43:19 +0000 | [diff] [blame] | 1392 | props.Dist.Dir = proptools.StringPtr(module.apiDistPath(apiScope)) |
| 1393 | props.Dist.Tag = proptools.StringPtr(".jar") |
| 1394 | } |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1395 | |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1396 | mctx.CreateModule(LibraryFactory, &props, module.sdkComponentPropertiesForChildLibrary()) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1397 | } |
| 1398 | |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 1399 | // 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] | 1400 | // files and also updates and checks the API specification files. |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1401 | 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] | 1402 | props := struct { |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1403 | Name *string |
Paul Duffin | 4911a89 | 2020-04-29 23:35:13 +0100 | [diff] [blame] | 1404 | Visibility []string |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1405 | Srcs []string |
| 1406 | Installable *bool |
Paul Duffin | 52d398a | 2019-06-11 12:31:14 +0100 | [diff] [blame] | 1407 | Sdk_version *string |
Paul Duffin | 12ceb46 | 2019-12-24 20:31:31 +0000 | [diff] [blame] | 1408 | System_modules *string |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1409 | Libs []string |
Paul Duffin | 6877e6d | 2020-09-25 19:59:14 +0100 | [diff] [blame] | 1410 | Output_javadoc_comments *bool |
Paul Duffin | 1151247 | 2019-02-11 15:55:17 +0000 | [diff] [blame] | 1411 | Arg_files []string |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1412 | Args *string |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1413 | Java_version *string |
Paul Duffin | e22c2ab | 2020-05-20 19:35:27 +0100 | [diff] [blame] | 1414 | Annotations_enabled *bool |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1415 | Merge_annotations_dirs []string |
| 1416 | Merge_inclusion_annotations_dirs []string |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 1417 | Generate_stubs *bool |
Anton Hansson | e87b03d | 2020-12-21 15:29:34 +0000 | [diff] [blame] | 1418 | Previous_api *string |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1419 | Check_api struct { |
Anton Hansson | e605615 | 2020-12-31 10:37:27 +0000 | [diff] [blame] | 1420 | Current ApiToCheck |
| 1421 | Last_released ApiToCheck |
Paul Duffin | 160fe41 | 2020-05-10 19:32:20 +0100 | [diff] [blame] | 1422 | |
| 1423 | Api_lint struct { |
| 1424 | Enabled *bool |
| 1425 | New_since *string |
| 1426 | Baseline_file *string |
| 1427 | } |
Jiyong Park | 58c518b | 2018-05-12 22:29:12 +0900 | [diff] [blame] | 1428 | } |
Sundong Ahn | 1b92c82 | 2018-05-29 11:35:17 +0900 | [diff] [blame] | 1429 | Aidl struct { |
| 1430 | Include_dirs []string |
| 1431 | Local_include_dirs []string |
| 1432 | } |
Paul Duffin | 040e906 | 2020-11-23 17:41:36 +0000 | [diff] [blame] | 1433 | Dists []android.Dist |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1434 | }{} |
| 1435 | |
Paul Duffin | 7b78b4d | 2020-04-28 14:08:32 +0100 | [diff] [blame] | 1436 | // The stubs source processing uses the same compile time classpath when extracting the |
| 1437 | // API from the implementation library as it does when compiling it. i.e. the same |
| 1438 | // * sdk version |
| 1439 | // * system_modules |
| 1440 | // * libs (static_libs/libs) |
Paul Duffin | 250e619 | 2019-06-07 10:44:37 +0100 | [diff] [blame] | 1441 | |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 1442 | props.Name = proptools.StringPtr(name) |
Anton Hansson | 944e77d | 2020-08-19 11:40:22 +0100 | [diff] [blame] | 1443 | props.Visibility = childModuleVisibility(module.sdkLibraryProperties.Stubs_source_visibility) |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 1444 | props.Srcs = append(props.Srcs, module.properties.Srcs...) |
| 1445 | props.Sdk_version = module.deviceProperties.Sdk_version |
| 1446 | props.System_modules = module.deviceProperties.System_modules |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1447 | props.Installable = proptools.BoolPtr(false) |
Sundong Ahn | e6f0b05 | 2018-06-05 16:46:14 +0900 | [diff] [blame] | 1448 | // A droiddoc module has only one Libs property and doesn't distinguish between |
| 1449 | // 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] | 1450 | props.Libs = module.properties.Libs |
| 1451 | props.Libs = append(props.Libs, module.properties.Static_libs...) |
| 1452 | props.Aidl.Include_dirs = module.deviceProperties.Aidl.Include_dirs |
| 1453 | props.Aidl.Local_include_dirs = module.deviceProperties.Aidl.Local_include_dirs |
| 1454 | props.Java_version = module.properties.Java_version |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1455 | |
Paul Duffin | e22c2ab | 2020-05-20 19:35:27 +0100 | [diff] [blame] | 1456 | props.Annotations_enabled = module.sdkLibraryProperties.Annotations_enabled |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1457 | props.Merge_annotations_dirs = module.sdkLibraryProperties.Merge_annotations_dirs |
| 1458 | props.Merge_inclusion_annotations_dirs = module.sdkLibraryProperties.Merge_inclusion_annotations_dirs |
| 1459 | |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 1460 | droidstubsArgs := []string{} |
Paul Duffin | 235ffff | 2019-12-24 10:41:30 +0000 | [diff] [blame] | 1461 | if len(module.sdkLibraryProperties.Api_packages) != 0 { |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 1462 | droidstubsArgs = append(droidstubsArgs, "--stub-packages "+strings.Join(module.sdkLibraryProperties.Api_packages, ":")) |
Paul Duffin | 235ffff | 2019-12-24 10:41:30 +0000 | [diff] [blame] | 1463 | } |
| 1464 | if len(module.sdkLibraryProperties.Hidden_api_packages) != 0 { |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 1465 | droidstubsArgs = append(droidstubsArgs, |
Paul Duffin | 235ffff | 2019-12-24 10:41:30 +0000 | [diff] [blame] | 1466 | android.JoinWithPrefix(module.sdkLibraryProperties.Hidden_api_packages, " --hide-package ")) |
| 1467 | } |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 1468 | droidstubsArgs = append(droidstubsArgs, module.sdkLibraryProperties.Droiddoc_options...) |
Paul Duffin | 235ffff | 2019-12-24 10:41:30 +0000 | [diff] [blame] | 1469 | disabledWarnings := []string{ |
| 1470 | "MissingPermission", |
| 1471 | "BroadcastBehavior", |
| 1472 | "HiddenSuperclass", |
| 1473 | "DeprecationMismatch", |
| 1474 | "UnavailableSymbol", |
| 1475 | "SdkConstant", |
| 1476 | "HiddenTypeParameter", |
| 1477 | "Todo", |
| 1478 | "Typo", |
| 1479 | } |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 1480 | droidstubsArgs = append(droidstubsArgs, android.JoinWithPrefix(disabledWarnings, "--hide ")) |
Sundong Ahn | fb2721f | 2018-09-17 13:23:09 +0900 | [diff] [blame] | 1481 | |
Paul Duffin | 6877e6d | 2020-09-25 19:59:14 +0100 | [diff] [blame] | 1482 | // Output Javadoc comments for public scope. |
| 1483 | if apiScope == apiScopePublic { |
| 1484 | props.Output_javadoc_comments = proptools.BoolPtr(true) |
| 1485 | } |
| 1486 | |
Paul Duffin | 1fb487d | 2020-04-07 18:50:10 +0100 | [diff] [blame] | 1487 | // Add in scope specific arguments. |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 1488 | droidstubsArgs = append(droidstubsArgs, scopeSpecificDroidstubsArgs...) |
Paul Duffin | 1151247 | 2019-02-11 15:55:17 +0000 | [diff] [blame] | 1489 | props.Arg_files = module.sdkLibraryProperties.Droiddoc_option_files |
Paul Duffin | 6d0886e | 2020-04-07 18:49:53 +0100 | [diff] [blame] | 1490 | props.Args = proptools.StringPtr(strings.Join(droidstubsArgs, " ")) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1491 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1492 | // List of APIs identified from the provided source files are created. They are later |
| 1493 | // compared against to the not-yet-released (a.k.a current) list of APIs and to the |
| 1494 | // last-released (a.k.a numbered) list of API. |
| 1495 | currentApiFileName := apiScope.apiFilePrefix + "current.txt" |
| 1496 | removedApiFileName := apiScope.apiFilePrefix + "removed.txt" |
| 1497 | apiDir := module.getApiDir() |
| 1498 | currentApiFileName = path.Join(apiDir, currentApiFileName) |
| 1499 | removedApiFileName = path.Join(apiDir, removedApiFileName) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1500 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1501 | // check against the not-yet-release API |
| 1502 | props.Check_api.Current.Api_file = proptools.StringPtr(currentApiFileName) |
| 1503 | props.Check_api.Current.Removed_api_file = proptools.StringPtr(removedApiFileName) |
Jiyong Park | 58c518b | 2018-05-12 22:29:12 +0900 | [diff] [blame] | 1504 | |
Anton Hansson | e605615 | 2020-12-31 10:37:27 +0000 | [diff] [blame] | 1505 | if !(apiScope.unstable || module.sdkLibraryProperties.Unsafe_ignore_missing_latest_api) { |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1506 | // check against the latest released API |
| 1507 | latestApiFilegroupName := proptools.StringPtr(module.latestApiFilegroupName(apiScope)) |
Anton Hansson | e87b03d | 2020-12-21 15:29:34 +0000 | [diff] [blame] | 1508 | props.Previous_api = latestApiFilegroupName |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1509 | props.Check_api.Last_released.Api_file = latestApiFilegroupName |
| 1510 | props.Check_api.Last_released.Removed_api_file = proptools.StringPtr( |
| 1511 | module.latestRemovedApiFilegroupName(apiScope)) |
Jaewoong Jung | 1a97ee0 | 2021-03-09 13:25:02 -0800 | [diff] [blame] | 1512 | props.Check_api.Last_released.Baseline_file = proptools.StringPtr( |
| 1513 | module.latestIncompatibilitiesFilegroupName(apiScope)) |
Paul Duffin | 160fe41 | 2020-05-10 19:32:20 +0100 | [diff] [blame] | 1514 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1515 | if proptools.Bool(module.sdkLibraryProperties.Api_lint.Enabled) { |
| 1516 | // Enable api lint. |
| 1517 | props.Check_api.Api_lint.Enabled = proptools.BoolPtr(true) |
| 1518 | props.Check_api.Api_lint.New_since = latestApiFilegroupName |
Paul Duffin | 160fe41 | 2020-05-10 19:32:20 +0100 | [diff] [blame] | 1519 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1520 | // If it exists then pass a lint-baseline.txt through to droidstubs. |
| 1521 | baselinePath := path.Join(apiDir, apiScope.apiFilePrefix+"lint-baseline.txt") |
| 1522 | baselinePathRelativeToRoot := path.Join(mctx.ModuleDir(), baselinePath) |
| 1523 | paths, err := mctx.GlobWithDeps(baselinePathRelativeToRoot, nil) |
| 1524 | if err != nil { |
| 1525 | mctx.ModuleErrorf("error checking for presence of %s: %s", baselinePathRelativeToRoot, err) |
| 1526 | } |
| 1527 | if len(paths) == 1 { |
| 1528 | props.Check_api.Api_lint.Baseline_file = proptools.StringPtr(baselinePath) |
| 1529 | } else if len(paths) != 0 { |
| 1530 | 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] | 1531 | } |
| 1532 | } |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1533 | } |
Jiyong Park | 58c518b | 2018-05-12 22:29:12 +0900 | [diff] [blame] | 1534 | |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1535 | if !Bool(module.sdkLibraryProperties.No_dist) { |
Paul Duffin | 040e906 | 2020-11-23 17:41:36 +0000 | [diff] [blame] | 1536 | // Dist the api txt and removed api txt artifacts for sdk builds. |
| 1537 | distDir := proptools.StringPtr(path.Join(module.apiDistPath(apiScope), "api")) |
| 1538 | for _, p := range []struct { |
| 1539 | tag string |
| 1540 | pattern string |
| 1541 | }{ |
| 1542 | {tag: ".api.txt", pattern: "%s.txt"}, |
| 1543 | {tag: ".removed-api.txt", pattern: "%s-removed.txt"}, |
| 1544 | } { |
| 1545 | props.Dists = append(props.Dists, android.Dist{ |
| 1546 | Targets: []string{"sdk", "win_sdk"}, |
| 1547 | Dir: distDir, |
| 1548 | Dest: proptools.StringPtr(fmt.Sprintf(p.pattern, module.distStem())), |
| 1549 | Tag: proptools.StringPtr(p.tag), |
| 1550 | }) |
| 1551 | } |
Anton Hansson | 5fd5d24 | 2020-03-27 19:43:19 +0000 | [diff] [blame] | 1552 | } |
| 1553 | |
Colin Cross | 84dfc3d | 2019-09-25 11:33:01 -0700 | [diff] [blame] | 1554 | mctx.CreateModule(DroidstubsFactory, &props) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1555 | } |
| 1556 | |
Paul Duffin | ea8f808 | 2021-06-24 13:25:57 +0100 | [diff] [blame] | 1557 | // Implements android.ApexModule |
Jooyung Han | 5e9013b | 2020-03-10 06:23:13 +0900 | [diff] [blame] | 1558 | func (module *SdkLibrary) DepIsInSameApex(mctx android.BaseModuleContext, dep android.Module) bool { |
| 1559 | depTag := mctx.OtherModuleDependencyTag(dep) |
| 1560 | if depTag == xmlPermissionsFileTag { |
| 1561 | return true |
| 1562 | } |
| 1563 | return module.Library.DepIsInSameApex(mctx, dep) |
| 1564 | } |
| 1565 | |
Paul Duffin | ea8f808 | 2021-06-24 13:25:57 +0100 | [diff] [blame] | 1566 | // Implements android.ApexModule |
| 1567 | func (module *SdkLibrary) UniqueApexVariations() bool { |
| 1568 | return module.uniqueApexVariations() |
| 1569 | } |
| 1570 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1571 | // Creates the xml file that publicizes the runtime library |
Paul Duffin | f022920 | 2020-04-29 16:47:28 +0100 | [diff] [blame] | 1572 | func (module *SdkLibrary) createXmlFile(mctx android.DefaultableHookContext) { |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 1573 | props := struct { |
Paul Duffin | 1dbe3ca | 2020-05-16 09:57:59 +0100 | [diff] [blame] | 1574 | Name *string |
| 1575 | Lib_name *string |
| 1576 | Apex_available []string |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 1577 | }{ |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1578 | Name: proptools.StringPtr(module.xmlPermissionsModuleName()), |
Jooyung Han | 5e9013b | 2020-03-10 06:23:13 +0900 | [diff] [blame] | 1579 | Lib_name: proptools.StringPtr(module.BaseModuleName()), |
| 1580 | Apex_available: module.ApexProperties.Apex_available, |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1581 | } |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 1582 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 1583 | mctx.CreateModule(sdkLibraryXmlFactory, &props) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1584 | } |
| 1585 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1586 | func PrebuiltJars(ctx android.BaseModuleContext, baseName string, s android.SdkSpec) android.Paths { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame] | 1587 | var ver android.ApiLevel |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1588 | var kind android.SdkKind |
| 1589 | if s.UsePrebuilt(ctx) { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame] | 1590 | ver = s.ApiLevel |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1591 | kind = s.Kind |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1592 | } else { |
Jiyong Park | 6a927c4 | 2020-01-21 02:03:43 +0900 | [diff] [blame] | 1593 | // We don't have prebuilt SDK for the specific sdkVersion. |
| 1594 | // Instead of breaking the build, fallback to use "system_current" |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame] | 1595 | ver = android.FutureApiLevel |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1596 | kind = android.SdkSystem |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1597 | } |
Jiyong Park | 6a927c4 | 2020-01-21 02:03:43 +0900 | [diff] [blame] | 1598 | |
| 1599 | dir := filepath.Join("prebuilts", "sdk", ver.String(), kind.String()) |
Paul Duffin | 5006151 | 2020-01-21 16:31:05 +0000 | [diff] [blame] | 1600 | jar := filepath.Join(dir, baseName+".jar") |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1601 | jarPath := android.ExistentPathForSource(ctx, jar) |
Sundong Ahn | ae418ac | 2019-02-28 15:01:28 +0900 | [diff] [blame] | 1602 | if !jarPath.Valid() { |
Colin Cross | 07c8856 | 2020-01-07 09:34:44 -0800 | [diff] [blame] | 1603 | if ctx.Config().AllowMissingDependencies() { |
| 1604 | return android.Paths{android.PathForSource(ctx, jar)} |
| 1605 | } else { |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1606 | 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] | 1607 | } |
Sundong Ahn | ae418ac | 2019-02-28 15:01:28 +0900 | [diff] [blame] | 1608 | return nil |
| 1609 | } |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1610 | return android.Paths{jarPath.Path()} |
| 1611 | } |
| 1612 | |
Colin Cross | aede88c | 2020-08-11 12:17:01 -0700 | [diff] [blame] | 1613 | // 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] | 1614 | // |
| 1615 | // If either this or the other module are on the platform then this will return |
| 1616 | // false. |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 1617 | func withinSameApexesAs(ctx android.BaseModuleContext, other android.Module) bool { |
| 1618 | apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo) |
| 1619 | otherApexInfo := ctx.OtherModuleProvider(other, android.ApexInfoProvider).(android.ApexInfo) |
Jiyong Park | ab50b07 | 2021-05-12 17:13:56 +0900 | [diff] [blame] | 1620 | return len(otherApexInfo.InApexVariants) > 0 && reflect.DeepEqual(apexInfo.InApexVariants, otherApexInfo.InApexVariants) |
Paul Duffin | 9b87959 | 2020-05-26 13:21:35 +0100 | [diff] [blame] | 1621 | } |
| 1622 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1623 | func (module *SdkLibrary) sdkJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec, headerJars bool) android.Paths { |
Jiyong Park | 932cdfe | 2020-05-28 00:19:53 +0900 | [diff] [blame] | 1624 | // If the client doesn't set sdk_version, but if this library prefers stubs over |
| 1625 | // the impl library, let's provide the widest API surface possible. To do so, |
| 1626 | // force override sdk_version to module_current so that the closest possible API |
| 1627 | // surface could be found in selectHeaderJarsForSdkVersion |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1628 | if module.defaultsToStubs() && !sdkVersion.Specified() { |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 1629 | sdkVersion = android.SdkSpecFrom(ctx, "module_current") |
Jiyong Park | 932cdfe | 2020-05-28 00:19:53 +0900 | [diff] [blame] | 1630 | } |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1631 | |
Paul Duffin | daaa332 | 2020-05-26 18:13:57 +0100 | [diff] [blame] | 1632 | // Only provide access to the implementation library if it is actually built. |
| 1633 | if module.requiresRuntimeImplementationLibrary() { |
| 1634 | // Check any special cases for java_sdk_library. |
| 1635 | // |
| 1636 | // Only allow access to the implementation library in the following condition: |
| 1637 | // * No sdk_version specified on the referencing module. |
Paul Duffin | 9b87959 | 2020-05-26 13:21:35 +0100 | [diff] [blame] | 1638 | // * The referencing module is in the same apex as this. |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1639 | if sdkVersion.Kind == android.SdkPrivate || withinSameApexesAs(ctx, module) { |
Paul Duffin | daaa332 | 2020-05-26 18:13:57 +0100 | [diff] [blame] | 1640 | if headerJars { |
| 1641 | return module.HeaderJars() |
| 1642 | } else { |
| 1643 | return module.ImplementationJars() |
| 1644 | } |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1645 | } |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1646 | } |
Paul Duffin | b05d429 | 2020-05-20 12:19:10 +0100 | [diff] [blame] | 1647 | |
Paul Duffin | 23970f4 | 2020-05-20 14:20:02 +0100 | [diff] [blame] | 1648 | return module.selectHeaderJarsForSdkVersion(ctx, sdkVersion) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1649 | } |
| 1650 | |
Sundong Ahn | 241cd37 | 2018-07-13 16:16:44 +0900 | [diff] [blame] | 1651 | // to satisfy SdkLibraryDependency interface |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1652 | func (module *SdkLibrary) SdkHeaderJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths { |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1653 | return module.sdkJars(ctx, sdkVersion, true /*headerJars*/) |
| 1654 | } |
| 1655 | |
| 1656 | // to satisfy SdkLibraryDependency interface |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1657 | func (module *SdkLibrary) SdkImplementationJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths { |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1658 | return module.sdkJars(ctx, sdkVersion, false /*headerJars*/) |
Sundong Ahn | 241cd37 | 2018-07-13 16:16:44 +0900 | [diff] [blame] | 1659 | } |
| 1660 | |
Colin Cross | 571cccf | 2019-02-04 11:22:08 -0800 | [diff] [blame] | 1661 | var javaSdkLibrariesKey = android.NewOnceKey("javaSdkLibraries") |
| 1662 | |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 1663 | func javaSdkLibraries(config android.Config) *[]string { |
Colin Cross | 571cccf | 2019-02-04 11:22:08 -0800 | [diff] [blame] | 1664 | return config.Once(javaSdkLibrariesKey, func() interface{} { |
Jiyong Park | 82484c0 | 2018-04-23 21:41:26 +0900 | [diff] [blame] | 1665 | return &[]string{} |
| 1666 | }).(*[]string) |
| 1667 | } |
| 1668 | |
Paul Duffin | 749f98f | 2019-12-30 17:23:46 +0000 | [diff] [blame] | 1669 | func (module *SdkLibrary) getApiDir() string { |
| 1670 | return proptools.StringDefault(module.sdkLibraryProperties.Api_dir, "api") |
| 1671 | } |
| 1672 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1673 | // For a java_sdk_library module, create internal modules for stubs, docs, |
| 1674 | // runtime libs and xml file. If requested, the stubs and docs are created twice |
| 1675 | // once for public API level and once for system API level |
Paul Duffin | f022920 | 2020-04-29 16:47:28 +0100 | [diff] [blame] | 1676 | func (module *SdkLibrary) CreateInternalModules(mctx android.DefaultableHookContext) { |
| 1677 | // If the module has been disabled then don't create any child modules. |
| 1678 | if !module.Enabled() { |
| 1679 | return |
| 1680 | } |
| 1681 | |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 1682 | if len(module.properties.Srcs) == 0 { |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1683 | mctx.PropertyErrorf("srcs", "java_sdk_library must specify srcs") |
Jooyung Han | 58f26ab | 2019-12-18 15:34:32 +0900 | [diff] [blame] | 1684 | return |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1685 | } |
| 1686 | |
Paul Duffin | 37e0b77 | 2019-12-30 17:20:10 +0000 | [diff] [blame] | 1687 | // 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] | 1688 | // then assume it provides both system and test apis. |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1689 | sdkDep := decodeSdkDep(mctx, android.SdkContext(&module.Library)) |
Paul Duffin | 37e0b77 | 2019-12-30 17:20:10 +0000 | [diff] [blame] | 1690 | hasSystemAndTestApis := sdkDep.hasStandardLibs() |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1691 | module.sdkLibraryProperties.Generate_system_and_test_apis = hasSystemAndTestApis |
Paul Duffin | 4f5c1ef | 2020-11-19 14:53:43 +0000 | [diff] [blame] | 1692 | |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 1693 | missingCurrentApi := false |
Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 1694 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1695 | generatedScopes := module.getGeneratedApiScopes(mctx) |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1696 | |
Paul Duffin | 749f98f | 2019-12-30 17:23:46 +0000 | [diff] [blame] | 1697 | apiDir := module.getApiDir() |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1698 | for _, scope := range generatedScopes { |
Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 1699 | for _, api := range []string{"current.txt", "removed.txt"} { |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1700 | path := path.Join(mctx.ModuleDir(), apiDir, scope.apiFilePrefix+api) |
Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 1701 | p := android.ExistentPathForSource(mctx, path) |
| 1702 | if !p.Valid() { |
Colin Cross | 18f840c | 2021-05-20 17:56:54 -0700 | [diff] [blame] | 1703 | if mctx.Config().AllowMissingDependencies() { |
| 1704 | mctx.AddMissingDependencies([]string{path}) |
| 1705 | } else { |
| 1706 | mctx.ModuleErrorf("Current api file %#v doesn't exist", path) |
| 1707 | missingCurrentApi = true |
| 1708 | } |
Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 1709 | } |
| 1710 | } |
| 1711 | } |
| 1712 | |
Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 1713 | if missingCurrentApi { |
Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 1714 | script := "build/soong/scripts/gen-java-current-api-files.sh" |
| 1715 | p := android.ExistentPathForSource(mctx, script) |
| 1716 | |
| 1717 | if !p.Valid() { |
| 1718 | panic(fmt.Sprintf("script file %s doesn't exist", script)) |
| 1719 | } |
| 1720 | |
| 1721 | mctx.ModuleErrorf("One or more current api files are missing. "+ |
| 1722 | "You can update them by:\n"+ |
Paul Duffin | 37e0b77 | 2019-12-30 17:20:10 +0000 | [diff] [blame] | 1723 | "%s %q %s && m update-api", |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1724 | script, filepath.Join(mctx.ModuleDir(), apiDir), |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1725 | strings.Join(generatedScopes.Strings(func(s *apiScope) string { return s.apiFilePrefix }), " ")) |
Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 1726 | return |
| 1727 | } |
| 1728 | |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1729 | for _, scope := range generatedScopes { |
Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1730 | // Use the stubs source name for legacy reasons. |
| 1731 | module.createStubsSourcesAndApi(mctx, scope, module.stubsSourceModuleName(scope), scope.droidstubsArgs) |
Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 1732 | |
Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1733 | module.createStubsLibrary(mctx, scope) |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1734 | } |
| 1735 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1736 | if module.requiresRuntimeImplementationLibrary() { |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1737 | // Create child module to create an implementation library. |
| 1738 | // |
| 1739 | // This temporarily creates a second implementation library that can be explicitly |
| 1740 | // referenced. |
| 1741 | // |
| 1742 | // TODO(b/156618935) - update comment once only one implementation library is created. |
| 1743 | module.createImplLibrary(mctx) |
| 1744 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1745 | // Only create an XML permissions file that declares the library as being usable |
| 1746 | // as a shared library if required. |
| 1747 | if module.sharedLibrary() { |
| 1748 | module.createXmlFile(mctx) |
| 1749 | } |
Paul Duffin | 43db9be | 2019-12-30 17:35:49 +0000 | [diff] [blame] | 1750 | |
| 1751 | // record java_sdk_library modules so that they are exported to make |
| 1752 | javaSdkLibraries := javaSdkLibraries(mctx.Config()) |
| 1753 | javaSdkLibrariesLock.Lock() |
| 1754 | defer javaSdkLibrariesLock.Unlock() |
| 1755 | *javaSdkLibraries = append(*javaSdkLibraries, module.BaseModuleName()) |
| 1756 | } |
Anton Hansson | 7f66efa | 2020-10-08 14:47:23 +0100 | [diff] [blame] | 1757 | |
| 1758 | // Add the impl_only_libs *after* we're done using the Libs prop in submodules. |
| 1759 | module.properties.Libs = append(module.properties.Libs, module.sdkLibraryProperties.Impl_only_libs...) |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1760 | } |
| 1761 | |
| 1762 | func (module *SdkLibrary) InitSdkLibraryProperties() { |
Colin Cross | ce6734e | 2020-06-15 16:09:53 -0700 | [diff] [blame] | 1763 | module.addHostAndDeviceProperties() |
| 1764 | module.AddProperties(&module.sdkLibraryProperties) |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1765 | |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 1766 | module.initSdkLibraryComponent(module) |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1767 | |
Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 1768 | module.properties.Installable = proptools.BoolPtr(true) |
| 1769 | module.deviceProperties.IsSDKLibrary = true |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1770 | } |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1771 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1772 | func (module *SdkLibrary) requiresRuntimeImplementationLibrary() bool { |
| 1773 | return !proptools.Bool(module.sdkLibraryProperties.Api_only) |
| 1774 | } |
| 1775 | |
Jiyong Park | 932cdfe | 2020-05-28 00:19:53 +0900 | [diff] [blame] | 1776 | func (module *SdkLibrary) defaultsToStubs() bool { |
| 1777 | return proptools.Bool(module.sdkLibraryProperties.Default_to_stubs) |
| 1778 | } |
| 1779 | |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 1780 | // Defines how to name the individual component modules the sdk library creates. |
| 1781 | type sdkLibraryComponentNamingScheme interface { |
| 1782 | stubsLibraryModuleName(scope *apiScope, baseName string) string |
| 1783 | |
| 1784 | stubsSourceModuleName(scope *apiScope, baseName string) string |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 1785 | } |
| 1786 | |
| 1787 | type defaultNamingScheme struct { |
| 1788 | } |
| 1789 | |
| 1790 | func (s *defaultNamingScheme) stubsLibraryModuleName(scope *apiScope, baseName string) string { |
| 1791 | return scope.stubsLibraryModuleName(baseName) |
| 1792 | } |
| 1793 | |
| 1794 | func (s *defaultNamingScheme) stubsSourceModuleName(scope *apiScope, baseName string) string { |
| 1795 | return scope.stubsSourceModuleName(baseName) |
| 1796 | } |
| 1797 | |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 1798 | var _ sdkLibraryComponentNamingScheme = (*defaultNamingScheme)(nil) |
| 1799 | |
Jaewoong Jung | bc15e3a | 2021-03-10 17:02:43 -0800 | [diff] [blame] | 1800 | func moduleStubLinkType(name string) (stub bool, ret sdkLinkType) { |
Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 1801 | // This suffix-based approach is fragile and could potentially mis-trigger. |
| 1802 | // TODO(b/155164730): Clean this up when modules no longer reference sdk_lib stubs directly. |
Anton Hansson | 08f476b | 2021-04-07 15:32:19 +0100 | [diff] [blame] | 1803 | if strings.HasSuffix(name, apiScopePublic.stubsLibraryModuleNameSuffix()) { |
| 1804 | if name == "hwbinder.stubs" || name == "libcore_private.stubs" { |
| 1805 | // Due to a previous bug, these modules were not considered stubs, so we retain that. |
| 1806 | return false, javaPlatform |
| 1807 | } |
Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 1808 | return true, javaSdk |
| 1809 | } |
Anton Hansson | 08f476b | 2021-04-07 15:32:19 +0100 | [diff] [blame] | 1810 | if strings.HasSuffix(name, apiScopeSystem.stubsLibraryModuleNameSuffix()) { |
Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 1811 | return true, javaSystem |
| 1812 | } |
Anton Hansson | 08f476b | 2021-04-07 15:32:19 +0100 | [diff] [blame] | 1813 | if strings.HasSuffix(name, apiScopeModuleLib.stubsLibraryModuleNameSuffix()) { |
Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 1814 | return true, javaModule |
| 1815 | } |
Anton Hansson | 08f476b | 2021-04-07 15:32:19 +0100 | [diff] [blame] | 1816 | if strings.HasSuffix(name, apiScopeTest.stubsLibraryModuleNameSuffix()) { |
Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 1817 | return true, javaSystem |
| 1818 | } |
| 1819 | return false, javaPlatform |
| 1820 | } |
| 1821 | |
Jaewoong Jung | 4f158ee | 2019-07-11 10:05:35 -0700 | [diff] [blame] | 1822 | // java_sdk_library is a special Java library that provides optional platform APIs to apps. |
| 1823 | // In practice, it can be viewed as a combination of several modules: 1) stubs library that clients |
| 1824 | // are linked against to, 2) droiddoc module that internally generates API stubs source files, |
| 1825 | // 3) the real runtime shared library that implements the APIs, and 4) XML file for adding |
| 1826 | // 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] | 1827 | func SdkLibraryFactory() android.Module { |
| 1828 | module := &SdkLibrary{} |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 1829 | |
| 1830 | // Initialize information common between source and prebuilt. |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 1831 | module.initCommon(module) |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 1832 | |
Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1833 | module.InitSdkLibraryProperties() |
Jooyung Han | 58f26ab | 2019-12-18 15:34:32 +0900 | [diff] [blame] | 1834 | android.InitApexModule(module) |
Paul Duffin | b6b89a4 | 2021-05-06 16:33:43 +0100 | [diff] [blame] | 1835 | android.InitSdkAwareModule(module) |
Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1836 | InitJavaModule(module, android.HostAndDeviceSupported) |
Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1837 | |
| 1838 | // Initialize the map from scope to scope specific properties. |
| 1839 | scopeToProperties := make(map[*apiScope]*ApiScopeProperties) |
| 1840 | for _, scope := range allApiScopes { |
| 1841 | scopeToProperties[scope] = scope.scopeSpecificProperties(module) |
| 1842 | } |
| 1843 | module.scopeToProperties = scopeToProperties |
| 1844 | |
Paul Duffin | 4911a89 | 2020-04-29 23:35:13 +0100 | [diff] [blame] | 1845 | // Add the properties containing visibility rules so that they are checked. |
Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1846 | android.AddVisibilityProperty(module, "impl_library_visibility", &module.sdkLibraryProperties.Impl_library_visibility) |
Paul Duffin | 4911a89 | 2020-04-29 23:35:13 +0100 | [diff] [blame] | 1847 | android.AddVisibilityProperty(module, "stubs_library_visibility", &module.sdkLibraryProperties.Stubs_library_visibility) |
| 1848 | android.AddVisibilityProperty(module, "stubs_source_visibility", &module.sdkLibraryProperties.Stubs_source_visibility) |
| 1849 | |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 1850 | module.SetDefaultableHook(func(ctx android.DefaultableHookContext) { |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1851 | // If no implementation is required then it cannot be used as a shared library |
| 1852 | // either. |
| 1853 | if !module.requiresRuntimeImplementationLibrary() { |
| 1854 | // If shared_library has been explicitly set to true then it is incompatible |
| 1855 | // with api_only: true. |
| 1856 | if proptools.Bool(module.commonSdkLibraryProperties.Shared_library) { |
| 1857 | ctx.PropertyErrorf("api_only/shared_library", "inconsistent settings, shared_library and api_only cannot both be true") |
| 1858 | } |
| 1859 | // Set shared_library: false. |
| 1860 | module.commonSdkLibraryProperties.Shared_library = proptools.BoolPtr(false) |
| 1861 | } |
| 1862 | |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 1863 | if module.initCommonAfterDefaultsApplied(ctx) { |
| 1864 | module.CreateInternalModules(ctx) |
| 1865 | } |
| 1866 | }) |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1867 | return module |
| 1868 | } |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1869 | |
| 1870 | // |
| 1871 | // SDK library prebuilts |
| 1872 | // |
| 1873 | |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 1874 | // Properties associated with each api scope. |
| 1875 | type sdkLibraryScopeProperties struct { |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1876 | Jars []string `android:"path"` |
| 1877 | |
| 1878 | Sdk_version *string |
| 1879 | |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1880 | // List of shared java libs that this module has dependencies to |
| 1881 | Libs []string |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 1882 | |
Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 1883 | // The stubs source. |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 1884 | Stub_srcs []string `android:"path"` |
Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 1885 | |
| 1886 | // The current.txt |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 1887 | Current_api *string `android:"path"` |
Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 1888 | |
| 1889 | // The removed.txt |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 1890 | Removed_api *string `android:"path"` |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1891 | } |
| 1892 | |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 1893 | type sdkLibraryImportProperties struct { |
Paul Duffin | fcfd791 | 2020-01-31 17:54:30 +0000 | [diff] [blame] | 1894 | // List of shared java libs, common to all scopes, that this module has |
| 1895 | // dependencies to |
| 1896 | Libs []string |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 1897 | |
| 1898 | // If set to true, compile dex files for the stubs. Defaults to false. |
| 1899 | Compile_dex *bool |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 1900 | } |
| 1901 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1902 | type SdkLibraryImport struct { |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1903 | android.ModuleBase |
| 1904 | android.DefaultableModuleBase |
| 1905 | prebuilt android.Prebuilt |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 1906 | android.ApexModuleBase |
| 1907 | android.SdkBase |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1908 | |
Paul Duffin | 3785673 | 2021-02-26 14:24:15 +0000 | [diff] [blame] | 1909 | hiddenAPI |
| 1910 | |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1911 | properties sdkLibraryImportProperties |
| 1912 | |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 1913 | // Map from api scope to the scope specific property structure. |
| 1914 | scopeProperties map[*apiScope]*sdkLibraryScopeProperties |
| 1915 | |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 1916 | commonToSdkLibraryAndImport |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1917 | |
| 1918 | // The reference to the implementation library created by the source module. |
| 1919 | // Is nil if the source module does not exist. |
| 1920 | implLibraryModule *Library |
| 1921 | |
| 1922 | // The reference to the xml permissions module created by the source module. |
| 1923 | // Is nil if the source module does not exist. |
| 1924 | xmlPermissionsFileModule *sdkLibraryXml |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 1925 | |
| 1926 | // Path to the dex implementation jar obtained from the prebuilt_apex, if any. |
| 1927 | dexJarFile android.Path |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1928 | } |
| 1929 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1930 | var _ SdkLibraryDependency = (*SdkLibraryImport)(nil) |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1931 | |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 1932 | // The type of a structure that contains a field of type sdkLibraryScopeProperties |
| 1933 | // for each apiscope in allApiScopes, e.g. something like: |
| 1934 | // struct { |
| 1935 | // Public sdkLibraryScopeProperties |
| 1936 | // System sdkLibraryScopeProperties |
| 1937 | // ... |
| 1938 | // } |
| 1939 | var allScopeStructType = createAllScopePropertiesStructType() |
| 1940 | |
| 1941 | // Dynamically create a structure type for each apiscope in allApiScopes. |
| 1942 | func createAllScopePropertiesStructType() reflect.Type { |
| 1943 | var fields []reflect.StructField |
| 1944 | for _, apiScope := range allApiScopes { |
| 1945 | field := reflect.StructField{ |
| 1946 | Name: apiScope.fieldName, |
| 1947 | Type: reflect.TypeOf(sdkLibraryScopeProperties{}), |
| 1948 | } |
| 1949 | fields = append(fields, field) |
| 1950 | } |
| 1951 | |
| 1952 | return reflect.StructOf(fields) |
| 1953 | } |
| 1954 | |
| 1955 | // Create an instance of the scope specific structure type and return a map |
| 1956 | // from apiscope to a pointer to each scope specific field. |
| 1957 | func createPropertiesInstance() (interface{}, map[*apiScope]*sdkLibraryScopeProperties) { |
| 1958 | allScopePropertiesPtr := reflect.New(allScopeStructType) |
| 1959 | allScopePropertiesStruct := allScopePropertiesPtr.Elem() |
| 1960 | scopeProperties := make(map[*apiScope]*sdkLibraryScopeProperties) |
| 1961 | |
| 1962 | for _, apiScope := range allApiScopes { |
| 1963 | field := allScopePropertiesStruct.FieldByName(apiScope.fieldName) |
| 1964 | scopeProperties[apiScope] = field.Addr().Interface().(*sdkLibraryScopeProperties) |
| 1965 | } |
| 1966 | |
| 1967 | return allScopePropertiesPtr.Interface(), scopeProperties |
| 1968 | } |
| 1969 | |
Jaewoong Jung | 4f158ee | 2019-07-11 10:05:35 -0700 | [diff] [blame] | 1970 | // java_sdk_library_import imports a prebuilt java_sdk_library. |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1971 | func sdkLibraryImportFactory() android.Module { |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1972 | module := &SdkLibraryImport{} |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1973 | |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 1974 | allScopeProperties, scopeToProperties := createPropertiesInstance() |
| 1975 | module.scopeProperties = scopeToProperties |
| 1976 | module.AddProperties(&module.properties, allScopeProperties) |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1977 | |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 1978 | // Initialize information common between source and prebuilt. |
Paul Duffin | 71b33cc | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 1979 | module.initCommon(module) |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 1980 | |
Paul Duffin | 0bdcb27 | 2020-02-06 15:24:57 +0000 | [diff] [blame] | 1981 | android.InitPrebuiltModule(module, &[]string{""}) |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 1982 | android.InitApexModule(module) |
| 1983 | android.InitSdkAwareModule(module) |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1984 | InitJavaModule(module, android.HostAndDeviceSupported) |
| 1985 | |
Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 1986 | module.SetDefaultableHook(func(mctx android.DefaultableHookContext) { |
| 1987 | if module.initCommonAfterDefaultsApplied(mctx) { |
| 1988 | module.createInternalModules(mctx) |
| 1989 | } |
| 1990 | }) |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1991 | return module |
| 1992 | } |
| 1993 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1994 | func (module *SdkLibraryImport) Prebuilt() *android.Prebuilt { |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1995 | return &module.prebuilt |
| 1996 | } |
| 1997 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 1998 | func (module *SdkLibraryImport) Name() string { |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1999 | return module.prebuilt.Name(module.ModuleBase.Name()) |
| 2000 | } |
| 2001 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2002 | func (module *SdkLibraryImport) createInternalModules(mctx android.DefaultableHookContext) { |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2003 | |
Paul Duffin | 5006151 | 2020-01-21 16:31:05 +0000 | [diff] [blame] | 2004 | // 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] | 2005 | if mctx.Config().AlwaysUsePrebuiltSdks() { |
Paul Duffin | 5006151 | 2020-01-21 16:31:05 +0000 | [diff] [blame] | 2006 | module.prebuilt.ForcePrefer() |
| 2007 | } |
| 2008 | |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 2009 | for apiScope, scopeProperties := range module.scopeProperties { |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2010 | if len(scopeProperties.Jars) == 0 { |
| 2011 | continue |
| 2012 | } |
| 2013 | |
Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2014 | module.createJavaImportForStubs(mctx, apiScope, scopeProperties) |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2015 | |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2016 | if len(scopeProperties.Stub_srcs) > 0 { |
| 2017 | module.createPrebuiltStubsSources(mctx, apiScope, scopeProperties) |
| 2018 | } |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2019 | } |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2020 | |
| 2021 | javaSdkLibraries := javaSdkLibraries(mctx.Config()) |
| 2022 | javaSdkLibrariesLock.Lock() |
| 2023 | defer javaSdkLibrariesLock.Unlock() |
| 2024 | *javaSdkLibraries = append(*javaSdkLibraries, module.BaseModuleName()) |
| 2025 | } |
| 2026 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2027 | func (module *SdkLibraryImport) createJavaImportForStubs(mctx android.DefaultableHookContext, apiScope *apiScope, scopeProperties *sdkLibraryScopeProperties) { |
Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2028 | // Creates a java import for the jar with ".stubs" suffix |
| 2029 | props := struct { |
Paul Duffin | 1dbe3ca | 2020-05-16 09:57:59 +0100 | [diff] [blame] | 2030 | Name *string |
| 2031 | Sdk_version *string |
| 2032 | Libs []string |
| 2033 | Jars []string |
| 2034 | Prefer *bool |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2035 | Compile_dex *bool |
Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2036 | }{} |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 2037 | props.Name = proptools.StringPtr(module.stubsLibraryModuleName(apiScope)) |
Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2038 | props.Sdk_version = scopeProperties.Sdk_version |
| 2039 | // Prepend any of the libs from the legacy public properties to the libs for each of the |
| 2040 | // scopes to avoid having to duplicate them in each scope. |
| 2041 | props.Libs = append(module.properties.Libs, scopeProperties.Libs...) |
| 2042 | props.Jars = scopeProperties.Jars |
Paul Duffin | 1dbe3ca | 2020-05-16 09:57:59 +0100 | [diff] [blame] | 2043 | |
Paul Duffin | 38b5785 | 2020-05-13 16:08:09 +0100 | [diff] [blame] | 2044 | // The imports are preferred if the java_sdk_library_import is preferred. |
| 2045 | props.Prefer = proptools.BoolPtr(module.prebuilt.Prefer()) |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 2046 | |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2047 | // 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] | 2048 | compileDex := module.properties.Compile_dex |
| 2049 | if module.stubLibrariesCompiledForDex() { |
| 2050 | compileDex = proptools.BoolPtr(true) |
| 2051 | } |
| 2052 | props.Compile_dex = compileDex |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2053 | |
Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 2054 | mctx.CreateModule(ImportFactory, &props, module.sdkComponentPropertiesForChildLibrary()) |
Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2055 | } |
| 2056 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2057 | func (module *SdkLibraryImport) createPrebuiltStubsSources(mctx android.DefaultableHookContext, apiScope *apiScope, scopeProperties *sdkLibraryScopeProperties) { |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2058 | props := struct { |
Paul Duffin | 38b5785 | 2020-05-13 16:08:09 +0100 | [diff] [blame] | 2059 | Name *string |
| 2060 | Srcs []string |
| 2061 | Prefer *bool |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2062 | }{} |
Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 2063 | props.Name = proptools.StringPtr(module.stubsSourceModuleName(apiScope)) |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2064 | props.Srcs = scopeProperties.Stub_srcs |
| 2065 | mctx.CreateModule(PrebuiltStubsSourcesFactory, &props) |
Paul Duffin | 38b5785 | 2020-05-13 16:08:09 +0100 | [diff] [blame] | 2066 | |
| 2067 | // The stubs source is preferred if the java_sdk_library_import is preferred. |
| 2068 | props.Prefer = proptools.BoolPtr(module.prebuilt.Prefer()) |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2069 | } |
| 2070 | |
Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 2071 | // Add the dependencies on the child module in the component deps mutator so that it |
| 2072 | // creates references to the prebuilt and not the source modules. |
| 2073 | func (module *SdkLibraryImport) ComponentDepsMutator(ctx android.BottomUpMutatorContext) { |
Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 2074 | for apiScope, scopeProperties := range module.scopeProperties { |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2075 | if len(scopeProperties.Jars) == 0 { |
| 2076 | continue |
| 2077 | } |
| 2078 | |
| 2079 | // Add dependencies to the prebuilt stubs library |
Paul Duffin | 864116c | 2021-04-02 10:24:13 +0100 | [diff] [blame] | 2080 | ctx.AddVariationDependencies(nil, apiScope.stubsTag, android.PrebuiltNameFromSource(module.stubsLibraryModuleName(apiScope))) |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2081 | |
| 2082 | if len(scopeProperties.Stub_srcs) > 0 { |
| 2083 | // Add dependencies to the prebuilt stubs source library |
Paul Duffin | 864116c | 2021-04-02 10:24:13 +0100 | [diff] [blame] | 2084 | ctx.AddVariationDependencies(nil, apiScope.stubsSourceTag, android.PrebuiltNameFromSource(module.stubsSourceModuleName(apiScope))) |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2085 | } |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2086 | } |
Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 2087 | } |
| 2088 | |
| 2089 | // Add other dependencies as normal. |
| 2090 | func (module *SdkLibraryImport) DepsMutator(ctx android.BottomUpMutatorContext) { |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2091 | |
| 2092 | implName := module.implLibraryModuleName() |
| 2093 | if ctx.OtherModuleExists(implName) { |
| 2094 | ctx.AddVariationDependencies(nil, implLibraryTag, implName) |
| 2095 | |
| 2096 | xmlPermissionsModuleName := module.xmlPermissionsModuleName() |
| 2097 | if module.sharedLibrary() && ctx.OtherModuleExists(xmlPermissionsModuleName) { |
| 2098 | // Add dependency to the rule for generating the xml permissions file |
| 2099 | ctx.AddDependency(module, xmlPermissionsFileTag, xmlPermissionsModuleName) |
| 2100 | } |
| 2101 | } |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2102 | } |
| 2103 | |
Jiyong Park | 45bf82e | 2020-12-15 22:29:02 +0900 | [diff] [blame] | 2104 | var _ android.ApexModule = (*SdkLibraryImport)(nil) |
| 2105 | |
| 2106 | // Implements android.ApexModule |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2107 | func (module *SdkLibraryImport) DepIsInSameApex(mctx android.BaseModuleContext, dep android.Module) bool { |
| 2108 | depTag := mctx.OtherModuleDependencyTag(dep) |
| 2109 | if depTag == xmlPermissionsFileTag { |
| 2110 | return true |
| 2111 | } |
| 2112 | |
| 2113 | // None of the other dependencies of the java_sdk_library_import are in the same apex |
| 2114 | // as the one that references this module. |
| 2115 | return false |
| 2116 | } |
| 2117 | |
Jiyong Park | 45bf82e | 2020-12-15 22:29:02 +0900 | [diff] [blame] | 2118 | // Implements android.ApexModule |
Dan Albert | c806053 | 2020-07-22 22:32:17 -0700 | [diff] [blame] | 2119 | func (module *SdkLibraryImport) ShouldSupportSdkVersion(ctx android.BaseModuleContext, |
| 2120 | sdkVersion android.ApiLevel) error { |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 2121 | // we don't check prebuilt modules for sdk_version |
| 2122 | return nil |
| 2123 | } |
| 2124 | |
Paul Duffin | ea8f808 | 2021-06-24 13:25:57 +0100 | [diff] [blame] | 2125 | // Implements android.ApexModule |
| 2126 | func (module *SdkLibraryImport) UniqueApexVariations() bool { |
| 2127 | return module.uniqueApexVariations() |
| 2128 | } |
| 2129 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2130 | func (module *SdkLibraryImport) OutputFiles(tag string) (android.Paths, error) { |
Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 2131 | return module.commonOutputFiles(tag) |
| 2132 | } |
| 2133 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2134 | func (module *SdkLibraryImport) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 2135 | module.generateCommonBuildActions(ctx) |
| 2136 | |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2137 | var deapexerModule android.Module |
| 2138 | |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2139 | // Record the paths to the prebuilt stubs library and stubs source. |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2140 | ctx.VisitDirectDeps(func(to android.Module) { |
| 2141 | tag := ctx.OtherModuleDependencyTag(to) |
| 2142 | |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2143 | // Extract information from any of the scope specific dependencies. |
| 2144 | if scopeTag, ok := tag.(scopeDependencyTag); ok { |
| 2145 | apiScope := scopeTag.apiScope |
| 2146 | scopePaths := module.getScopePathsCreateIfNeeded(apiScope) |
| 2147 | |
| 2148 | // Extract information from the dependency. The exact information extracted |
| 2149 | // is determined by the nature of the dependency which is determined by the tag. |
| 2150 | scopeTag.extractDepInfo(ctx, to, scopePaths) |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2151 | } else if tag == implLibraryTag { |
| 2152 | if implLibrary, ok := to.(*Library); ok { |
| 2153 | module.implLibraryModule = implLibrary |
| 2154 | } else { |
| 2155 | ctx.ModuleErrorf("implementation library must be of type *java.Library but was %T", to) |
| 2156 | } |
| 2157 | } else if tag == xmlPermissionsFileTag { |
| 2158 | if xmlPermissionsFileModule, ok := to.(*sdkLibraryXml); ok { |
| 2159 | module.xmlPermissionsFileModule = xmlPermissionsFileModule |
| 2160 | } else { |
| 2161 | ctx.ModuleErrorf("xml permissions file module must be of type *sdkLibraryXml but was %T", to) |
| 2162 | } |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2163 | } |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2164 | |
| 2165 | // Save away the `deapexer` module on which this depends, if any. |
| 2166 | if tag == android.DeapexerTag { |
| 2167 | deapexerModule = to |
| 2168 | } |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2169 | }) |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2170 | |
| 2171 | // Populate the scope paths with information from the properties. |
| 2172 | for apiScope, scopeProperties := range module.scopeProperties { |
| 2173 | if len(scopeProperties.Jars) == 0 { |
| 2174 | continue |
| 2175 | } |
| 2176 | |
| 2177 | paths := module.getScopePathsCreateIfNeeded(apiScope) |
| 2178 | paths.currentApiFilePath = android.OptionalPathForModuleSrc(ctx, scopeProperties.Current_api) |
| 2179 | paths.removedApiFilePath = android.OptionalPathForModuleSrc(ctx, scopeProperties.Removed_api) |
| 2180 | } |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2181 | |
| 2182 | if ctx.Device() { |
| 2183 | // If this is a variant created for a prebuilt_apex then use the dex implementation jar |
| 2184 | // obtained from the associated deapexer module. |
| 2185 | ai := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo) |
| 2186 | if ai.ForPrebuiltApex { |
| 2187 | if deapexerModule == nil { |
| 2188 | // This should never happen as a variant for a prebuilt_apex is only created if the |
| 2189 | // deapxer module has been configured to export the dex implementation jar for this module. |
| 2190 | ctx.ModuleErrorf("internal error: module %q does not depend on a `deapexer` module for prebuilt_apex %q", |
| 2191 | module.Name(), ai.ApexVariationName) |
| 2192 | } |
| 2193 | |
| 2194 | // Get the path of the dex implementation jar from the `deapexer` module. |
| 2195 | di := ctx.OtherModuleProvider(deapexerModule, android.DeapexerProvider).(android.DeapexerInfo) |
Paul Duffin | b4bbf2c | 2021-06-17 15:59:07 +0100 | [diff] [blame] | 2196 | if dexOutputPath := di.PrebuiltExportPath(apexRootRelativePathToJavaLib(module.BaseModuleName())); dexOutputPath != nil { |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2197 | module.dexJarFile = dexOutputPath |
Paul Duffin | 1bbd062 | 2021-05-14 15:52:25 +0100 | [diff] [blame] | 2198 | module.initHiddenAPI(ctx, dexOutputPath, module.findScopePaths(apiScopePublic).stubsImplPath[0], nil) |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2199 | } else { |
| 2200 | // This should never happen as a variant for a prebuilt_apex is only created if the |
| 2201 | // prebuilt_apex has been configured to export the java library dex file. |
| 2202 | ctx.ModuleErrorf("internal error: no dex implementation jar available from prebuilt_apex %q", deapexerModule.Name()) |
| 2203 | } |
| 2204 | } |
| 2205 | } |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2206 | } |
| 2207 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2208 | 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] | 2209 | |
| 2210 | // For consistency with SdkLibrary make the implementation jar available to libraries that |
| 2211 | // are within the same APEX. |
| 2212 | implLibraryModule := module.implLibraryModule |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2213 | if implLibraryModule != nil && withinSameApexesAs(ctx, module) { |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2214 | if headerJars { |
| 2215 | return implLibraryModule.HeaderJars() |
| 2216 | } else { |
| 2217 | return implLibraryModule.ImplementationJars() |
| 2218 | } |
| 2219 | } |
| 2220 | |
Paul Duffin | 23970f4 | 2020-05-20 14:20:02 +0100 | [diff] [blame] | 2221 | return module.selectHeaderJarsForSdkVersion(ctx, sdkVersion) |
Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2222 | } |
| 2223 | |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2224 | // to satisfy SdkLibraryDependency interface |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2225 | func (module *SdkLibraryImport) SdkHeaderJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths { |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2226 | // This module is just a wrapper for the prebuilt stubs. |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2227 | return module.sdkJars(ctx, sdkVersion, true) |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2228 | } |
| 2229 | |
| 2230 | // to satisfy SdkLibraryDependency interface |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2231 | func (module *SdkLibraryImport) SdkImplementationJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths { |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2232 | // This module is just a wrapper for the stubs. |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2233 | return module.sdkJars(ctx, sdkVersion, false) |
| 2234 | } |
| 2235 | |
Ulya Trafimovich | dbf3166 | 2020-12-17 12:07:54 +0000 | [diff] [blame] | 2236 | // to satisfy UsesLibraryDependency interface |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2237 | func (module *SdkLibraryImport) DexJarBuildPath() android.Path { |
Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2238 | // The dex implementation jar extracted from the .apex file should be used in preference to the |
| 2239 | // source. |
| 2240 | if module.dexJarFile != nil { |
| 2241 | return module.dexJarFile |
| 2242 | } |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2243 | if module.implLibraryModule == nil { |
| 2244 | return nil |
| 2245 | } else { |
| 2246 | return module.implLibraryModule.DexJarBuildPath() |
| 2247 | } |
| 2248 | } |
| 2249 | |
Ulya Trafimovich | dbf3166 | 2020-12-17 12:07:54 +0000 | [diff] [blame] | 2250 | // to satisfy UsesLibraryDependency interface |
Ulya Trafimovich | 31e444e | 2020-08-14 17:32:16 +0100 | [diff] [blame] | 2251 | func (module *SdkLibraryImport) DexJarInstallPath() android.Path { |
| 2252 | if module.implLibraryModule == nil { |
| 2253 | return nil |
| 2254 | } else { |
| 2255 | return module.implLibraryModule.DexJarInstallPath() |
| 2256 | } |
| 2257 | } |
| 2258 | |
Ulya Trafimovich | dbf3166 | 2020-12-17 12:07:54 +0000 | [diff] [blame] | 2259 | // to satisfy UsesLibraryDependency interface |
| 2260 | func (module *SdkLibraryImport) ClassLoaderContexts() dexpreopt.ClassLoaderContextMap { |
| 2261 | return nil |
| 2262 | } |
| 2263 | |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2264 | // to satisfy apex.javaDependency interface |
| 2265 | func (module *SdkLibraryImport) JacocoReportClassesFile() android.Path { |
| 2266 | if module.implLibraryModule == nil { |
| 2267 | return nil |
| 2268 | } else { |
| 2269 | return module.implLibraryModule.JacocoReportClassesFile() |
| 2270 | } |
| 2271 | } |
| 2272 | |
| 2273 | // to satisfy apex.javaDependency interface |
Colin Cross | 08dca38 | 2020-07-21 20:31:17 -0700 | [diff] [blame] | 2274 | func (module *SdkLibraryImport) LintDepSets() LintDepSets { |
| 2275 | if module.implLibraryModule == nil { |
| 2276 | return LintDepSets{} |
| 2277 | } else { |
| 2278 | return module.implLibraryModule.LintDepSets() |
| 2279 | } |
| 2280 | } |
| 2281 | |
Jaewoong Jung | 476b9d6 | 2021-05-10 15:30:00 -0700 | [diff] [blame] | 2282 | func (module *SdkLibraryImport) getStrictUpdatabilityLinting() bool { |
| 2283 | if module.implLibraryModule == nil { |
| 2284 | return false |
| 2285 | } else { |
| 2286 | return module.implLibraryModule.getStrictUpdatabilityLinting() |
| 2287 | } |
| 2288 | } |
| 2289 | |
| 2290 | func (module *SdkLibraryImport) setStrictUpdatabilityLinting(strictLinting bool) { |
| 2291 | if module.implLibraryModule != nil { |
| 2292 | module.implLibraryModule.setStrictUpdatabilityLinting(strictLinting) |
| 2293 | } |
| 2294 | } |
| 2295 | |
Colin Cross | 08dca38 | 2020-07-21 20:31:17 -0700 | [diff] [blame] | 2296 | // to satisfy apex.javaDependency interface |
Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2297 | func (module *SdkLibraryImport) Stem() string { |
| 2298 | return module.BaseModuleName() |
Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2299 | } |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2300 | |
Paul Duffin | 44b481b | 2020-06-17 16:59:43 +0100 | [diff] [blame] | 2301 | var _ ApexDependency = (*SdkLibraryImport)(nil) |
| 2302 | |
| 2303 | // to satisfy java.ApexDependency interface |
| 2304 | func (module *SdkLibraryImport) HeaderJars() android.Paths { |
| 2305 | if module.implLibraryModule == nil { |
| 2306 | return nil |
| 2307 | } else { |
| 2308 | return module.implLibraryModule.HeaderJars() |
| 2309 | } |
| 2310 | } |
| 2311 | |
| 2312 | // to satisfy java.ApexDependency interface |
| 2313 | func (module *SdkLibraryImport) ImplementationAndResourcesJars() android.Paths { |
| 2314 | if module.implLibraryModule == nil { |
| 2315 | return nil |
| 2316 | } else { |
| 2317 | return module.implLibraryModule.ImplementationAndResourcesJars() |
| 2318 | } |
| 2319 | } |
| 2320 | |
Paul Duffin | fef5500 | 2021-06-17 14:56:05 +0100 | [diff] [blame] | 2321 | var _ android.RequiredFilesFromPrebuiltApex = (*SdkLibraryImport)(nil) |
| 2322 | |
Paul Duffin | b4bbf2c | 2021-06-17 15:59:07 +0100 | [diff] [blame] | 2323 | func (module *SdkLibraryImport) RequiredFilesFromPrebuiltApex(ctx android.BaseModuleContext) []string { |
Paul Duffin | fef5500 | 2021-06-17 14:56:05 +0100 | [diff] [blame] | 2324 | name := module.BaseModuleName() |
| 2325 | return requiredFilesFromPrebuiltApexForImport(name) |
| 2326 | } |
| 2327 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2328 | // |
| 2329 | // java_sdk_library_xml |
| 2330 | // |
| 2331 | type sdkLibraryXml struct { |
| 2332 | android.ModuleBase |
| 2333 | android.DefaultableModuleBase |
| 2334 | android.ApexModuleBase |
| 2335 | |
| 2336 | properties sdkLibraryXmlProperties |
| 2337 | |
| 2338 | outputFilePath android.OutputPath |
| 2339 | installDirPath android.InstallPath |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2340 | |
| 2341 | hideApexVariantFromMake bool |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2342 | } |
| 2343 | |
| 2344 | type sdkLibraryXmlProperties struct { |
| 2345 | // canonical name of the lib |
| 2346 | Lib_name *string |
| 2347 | } |
| 2348 | |
| 2349 | // java_sdk_library_xml builds the permission xml file for a java_sdk_library. |
| 2350 | // Not to be used directly by users. java_sdk_library internally uses this. |
| 2351 | func sdkLibraryXmlFactory() android.Module { |
| 2352 | module := &sdkLibraryXml{} |
| 2353 | |
| 2354 | module.AddProperties(&module.properties) |
| 2355 | |
| 2356 | android.InitApexModule(module) |
| 2357 | android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon) |
| 2358 | |
| 2359 | return module |
| 2360 | } |
| 2361 | |
Colin Cross | aede88c | 2020-08-11 12:17:01 -0700 | [diff] [blame] | 2362 | func (module *sdkLibraryXml) UniqueApexVariations() bool { |
| 2363 | // sdkLibraryXml needs a unique variation per APEX because the generated XML file contains the path to the |
| 2364 | // mounted APEX, which contains the name of the APEX. |
| 2365 | return true |
| 2366 | } |
| 2367 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2368 | // from android.PrebuiltEtcModule |
Jooyung Han | 0703fd8 | 2020-08-26 22:11:53 +0900 | [diff] [blame] | 2369 | func (module *sdkLibraryXml) BaseDir() string { |
| 2370 | return "etc" |
| 2371 | } |
| 2372 | |
| 2373 | // from android.PrebuiltEtcModule |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2374 | func (module *sdkLibraryXml) SubDir() string { |
| 2375 | return "permissions" |
| 2376 | } |
| 2377 | |
| 2378 | // from android.PrebuiltEtcModule |
| 2379 | func (module *sdkLibraryXml) OutputFile() android.OutputPath { |
| 2380 | return module.outputFilePath |
| 2381 | } |
| 2382 | |
| 2383 | // from android.ApexModule |
| 2384 | func (module *sdkLibraryXml) AvailableFor(what string) bool { |
| 2385 | return true |
| 2386 | } |
| 2387 | |
| 2388 | func (module *sdkLibraryXml) DepsMutator(ctx android.BottomUpMutatorContext) { |
| 2389 | // do nothing |
| 2390 | } |
| 2391 | |
Jiyong Park | 45bf82e | 2020-12-15 22:29:02 +0900 | [diff] [blame] | 2392 | var _ android.ApexModule = (*sdkLibraryXml)(nil) |
| 2393 | |
| 2394 | // Implements android.ApexModule |
Dan Albert | c806053 | 2020-07-22 22:32:17 -0700 | [diff] [blame] | 2395 | func (module *sdkLibraryXml) ShouldSupportSdkVersion(ctx android.BaseModuleContext, |
| 2396 | sdkVersion android.ApiLevel) error { |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 2397 | // sdkLibraryXml doesn't need to be checked separately because java_sdk_library is checked |
| 2398 | return nil |
| 2399 | } |
| 2400 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2401 | // File path to the runtime implementation library |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2402 | func (module *sdkLibraryXml) implPath(ctx android.ModuleContext) string { |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2403 | implName := proptools.String(module.properties.Lib_name) |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2404 | if apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo); !apexInfo.IsForPlatform() { |
Colin Cross | e07f231 | 2020-08-13 11:24:56 -0700 | [diff] [blame] | 2405 | // 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] | 2406 | // In most cases, this works fine. But when apex_name is set or override_apex is used |
| 2407 | // this can be wrong. |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2408 | return fmt.Sprintf("/apex/%s/javalib/%s.jar", apexInfo.ApexVariationName, implName) |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2409 | } |
| 2410 | partition := "system" |
| 2411 | if module.SocSpecific() { |
| 2412 | partition = "vendor" |
| 2413 | } else if module.DeviceSpecific() { |
| 2414 | partition = "odm" |
| 2415 | } else if module.ProductSpecific() { |
| 2416 | partition = "product" |
| 2417 | } else if module.SystemExtSpecific() { |
| 2418 | partition = "system_ext" |
| 2419 | } |
| 2420 | return "/" + partition + "/framework/" + implName + ".jar" |
| 2421 | } |
| 2422 | |
| 2423 | func (module *sdkLibraryXml) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2424 | module.hideApexVariantFromMake = !ctx.Provider(android.ApexInfoProvider).(android.ApexInfo).IsForPlatform() |
| 2425 | |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2426 | libName := proptools.String(module.properties.Lib_name) |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2427 | xmlContent := fmt.Sprintf(permissionsTemplate, libName, module.implPath(ctx)) |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2428 | |
| 2429 | module.outputFilePath = android.PathForModuleOut(ctx, libName+".xml").OutputPath |
Colin Cross | f1a035e | 2020-11-16 17:32:30 -0800 | [diff] [blame] | 2430 | rule := android.NewRuleBuilder(pctx, ctx) |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2431 | rule.Command(). |
| 2432 | Text("/bin/bash -c \"echo -e '" + xmlContent + "'\" > "). |
| 2433 | Output(module.outputFilePath) |
| 2434 | |
Colin Cross | f1a035e | 2020-11-16 17:32:30 -0800 | [diff] [blame] | 2435 | rule.Build("java_sdk_xml", "Permission XML") |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2436 | |
| 2437 | module.installDirPath = android.PathForModuleInstall(ctx, "etc", module.SubDir()) |
| 2438 | } |
| 2439 | |
| 2440 | func (module *sdkLibraryXml) AndroidMkEntries() []android.AndroidMkEntries { |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2441 | if module.hideApexVariantFromMake { |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2442 | return []android.AndroidMkEntries{android.AndroidMkEntries{ |
| 2443 | Disabled: true, |
| 2444 | }} |
| 2445 | } |
| 2446 | |
| 2447 | return []android.AndroidMkEntries{android.AndroidMkEntries{ |
| 2448 | Class: "ETC", |
| 2449 | OutputFile: android.OptionalPathForPath(module.outputFilePath), |
| 2450 | ExtraEntries: []android.AndroidMkExtraEntriesFunc{ |
Colin Cross | aa25553 | 2020-07-03 13:18:24 -0700 | [diff] [blame] | 2451 | func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) { |
Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2452 | entries.SetString("LOCAL_MODULE_TAGS", "optional") |
| 2453 | entries.SetString("LOCAL_MODULE_PATH", module.installDirPath.ToMakePath().String()) |
| 2454 | entries.SetString("LOCAL_INSTALLED_MODULE_STEM", module.outputFilePath.Base()) |
| 2455 | }, |
| 2456 | }, |
| 2457 | }} |
| 2458 | } |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2459 | |
| 2460 | type sdkLibrarySdkMemberType struct { |
| 2461 | android.SdkMemberTypeBase |
| 2462 | } |
| 2463 | |
| 2464 | func (s *sdkLibrarySdkMemberType) AddDependencies(mctx android.BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string) { |
| 2465 | mctx.AddVariationDependencies(nil, dependencyTag, names...) |
| 2466 | } |
| 2467 | |
| 2468 | func (s *sdkLibrarySdkMemberType) IsInstance(module android.Module) bool { |
| 2469 | _, ok := module.(*SdkLibrary) |
| 2470 | return ok |
| 2471 | } |
| 2472 | |
| 2473 | func (s *sdkLibrarySdkMemberType) AddPrebuiltModule(ctx android.SdkMemberContext, member android.SdkMember) android.BpModule { |
| 2474 | return ctx.SnapshotBuilder().AddPrebuiltModule(member, "java_sdk_library_import") |
| 2475 | } |
| 2476 | |
| 2477 | func (s *sdkLibrarySdkMemberType) CreateVariantPropertiesStruct() android.SdkMemberProperties { |
| 2478 | return &sdkLibrarySdkMemberProperties{} |
| 2479 | } |
| 2480 | |
Paul Duffin | 976b0e5 | 2021-04-27 23:20:26 +0100 | [diff] [blame] | 2481 | var javaSdkLibrarySdkMemberType = &sdkLibrarySdkMemberType{ |
| 2482 | android.SdkMemberTypeBase{ |
| 2483 | PropertyName: "java_sdk_libs", |
| 2484 | SupportsSdk: true, |
| 2485 | }, |
| 2486 | } |
| 2487 | |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2488 | type sdkLibrarySdkMemberProperties struct { |
| 2489 | android.SdkMemberPropertiesBase |
| 2490 | |
| 2491 | // Scope to per scope properties. |
| 2492 | Scopes map[*apiScope]scopeProperties |
| 2493 | |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2494 | // The Java stubs source files. |
| 2495 | Stub_srcs []string |
Paul Duffin | f7a6433 | 2020-05-13 16:54:55 +0100 | [diff] [blame] | 2496 | |
| 2497 | // The naming scheme. |
| 2498 | Naming_scheme *string |
Paul Duffin | d7eb1c2 | 2020-05-26 20:57:10 +0100 | [diff] [blame] | 2499 | |
| 2500 | // True if the java_sdk_library_import is for a shared library, false |
| 2501 | // otherwise. |
| 2502 | Shared_library *bool |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 2503 | |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2504 | // True if the stub imports should produce dex jars. |
| 2505 | Compile_dex *bool |
| 2506 | |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 2507 | // The paths to the doctag files to add to the prebuilt. |
| 2508 | Doctag_paths android.Paths |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2509 | } |
| 2510 | |
| 2511 | type scopeProperties struct { |
Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 2512 | Jars android.Paths |
| 2513 | StubsSrcJar android.Path |
| 2514 | CurrentApiFile android.Path |
| 2515 | RemovedApiFile android.Path |
| 2516 | SdkVersion string |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2517 | } |
| 2518 | |
| 2519 | func (s *sdkLibrarySdkMemberProperties) PopulateFromVariant(ctx android.SdkMemberContext, variant android.Module) { |
| 2520 | sdk := variant.(*SdkLibrary) |
| 2521 | |
| 2522 | s.Scopes = make(map[*apiScope]scopeProperties) |
| 2523 | for _, apiScope := range allApiScopes { |
Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 2524 | paths := sdk.findScopePaths(apiScope) |
| 2525 | if paths == nil { |
| 2526 | continue |
| 2527 | } |
| 2528 | |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2529 | jars := paths.stubsImplPath |
| 2530 | if len(jars) > 0 { |
| 2531 | properties := scopeProperties{} |
| 2532 | properties.Jars = jars |
Paul Duffin | 780c5f4 | 2020-05-12 15:52:55 +0100 | [diff] [blame] | 2533 | properties.SdkVersion = sdk.sdkVersionForStubsLibrary(ctx.SdkModuleContext(), apiScope) |
Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2534 | properties.StubsSrcJar = paths.stubsSrcJar.Path() |
Paul Duffin | 10269f1 | 2020-06-19 18:39:55 +0100 | [diff] [blame] | 2535 | if paths.currentApiFilePath.Valid() { |
| 2536 | properties.CurrentApiFile = paths.currentApiFilePath.Path() |
| 2537 | } |
| 2538 | if paths.removedApiFilePath.Valid() { |
| 2539 | properties.RemovedApiFile = paths.removedApiFilePath.Path() |
| 2540 | } |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2541 | s.Scopes[apiScope] = properties |
| 2542 | } |
| 2543 | } |
| 2544 | |
Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 2545 | s.Naming_scheme = sdk.commonSdkLibraryProperties.Naming_scheme |
Paul Duffin | d7eb1c2 | 2020-05-26 20:57:10 +0100 | [diff] [blame] | 2546 | s.Shared_library = proptools.BoolPtr(sdk.sharedLibrary()) |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2547 | s.Compile_dex = sdk.dexProperties.Compile_dex |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 2548 | s.Doctag_paths = sdk.doctagPaths |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2549 | } |
| 2550 | |
| 2551 | func (s *sdkLibrarySdkMemberProperties) AddToPropertySet(ctx android.SdkMemberContext, propertySet android.BpPropertySet) { |
Paul Duffin | f7a6433 | 2020-05-13 16:54:55 +0100 | [diff] [blame] | 2552 | if s.Naming_scheme != nil { |
| 2553 | propertySet.AddProperty("naming_scheme", proptools.String(s.Naming_scheme)) |
| 2554 | } |
Paul Duffin | d7eb1c2 | 2020-05-26 20:57:10 +0100 | [diff] [blame] | 2555 | if s.Shared_library != nil { |
| 2556 | propertySet.AddProperty("shared_library", *s.Shared_library) |
| 2557 | } |
Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2558 | if s.Compile_dex != nil { |
| 2559 | propertySet.AddProperty("compile_dex", *s.Compile_dex) |
| 2560 | } |
Paul Duffin | f7a6433 | 2020-05-13 16:54:55 +0100 | [diff] [blame] | 2561 | |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2562 | for _, apiScope := range allApiScopes { |
| 2563 | if properties, ok := s.Scopes[apiScope]; ok { |
Paul Duffin | 6b836ba | 2020-05-13 19:19:49 +0100 | [diff] [blame] | 2564 | scopeSet := propertySet.AddPropertySet(apiScope.propertyName) |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2565 | |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2566 | scopeDir := filepath.Join("sdk_library", s.OsPrefix(), apiScope.name) |
| 2567 | |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2568 | var jars []string |
| 2569 | for _, p := range properties.Jars { |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2570 | dest := filepath.Join(scopeDir, ctx.Name()+"-stubs.jar") |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2571 | ctx.SnapshotBuilder().CopyToSnapshot(p, dest) |
| 2572 | jars = append(jars, dest) |
| 2573 | } |
| 2574 | scopeSet.AddProperty("jars", jars) |
| 2575 | |
Paul Duffin | 22628d5 | 2021-05-12 23:13:22 +0100 | [diff] [blame] | 2576 | if ctx.SdkModuleContext().Config().IsEnvTrue("SOONG_SDK_SNAPSHOT_USE_SRCJAR") { |
| 2577 | // Copy the stubs source jar into the snapshot zip as is. |
| 2578 | srcJarSnapshotPath := filepath.Join(scopeDir, ctx.Name()+".srcjar") |
| 2579 | ctx.SnapshotBuilder().CopyToSnapshot(properties.StubsSrcJar, srcJarSnapshotPath) |
| 2580 | scopeSet.AddProperty("stub_srcs", []string{srcJarSnapshotPath}) |
| 2581 | } else { |
| 2582 | // Merge the stubs source jar into the snapshot zip so that when it is unpacked |
| 2583 | // the source files are also unpacked. |
| 2584 | snapshotRelativeDir := filepath.Join(scopeDir, ctx.Name()+"_stub_sources") |
| 2585 | ctx.SnapshotBuilder().UnzipToSnapshot(properties.StubsSrcJar, snapshotRelativeDir) |
| 2586 | scopeSet.AddProperty("stub_srcs", []string{snapshotRelativeDir}) |
| 2587 | } |
Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2588 | |
Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 2589 | if properties.CurrentApiFile != nil { |
| 2590 | currentApiSnapshotPath := filepath.Join(scopeDir, ctx.Name()+".txt") |
| 2591 | ctx.SnapshotBuilder().CopyToSnapshot(properties.CurrentApiFile, currentApiSnapshotPath) |
| 2592 | scopeSet.AddProperty("current_api", currentApiSnapshotPath) |
| 2593 | } |
| 2594 | |
| 2595 | if properties.RemovedApiFile != nil { |
| 2596 | removedApiSnapshotPath := filepath.Join(scopeDir, ctx.Name()+"-removed.txt") |
Paul Duffin | 3dbf9fd | 2020-06-02 13:00:02 +0100 | [diff] [blame] | 2597 | ctx.SnapshotBuilder().CopyToSnapshot(properties.RemovedApiFile, removedApiSnapshotPath) |
Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 2598 | scopeSet.AddProperty("removed_api", removedApiSnapshotPath) |
| 2599 | } |
| 2600 | |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2601 | if properties.SdkVersion != "" { |
| 2602 | scopeSet.AddProperty("sdk_version", properties.SdkVersion) |
| 2603 | } |
| 2604 | } |
| 2605 | } |
| 2606 | |
Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 2607 | if len(s.Doctag_paths) > 0 { |
| 2608 | dests := []string{} |
| 2609 | for _, p := range s.Doctag_paths { |
| 2610 | dest := filepath.Join("doctags", p.Rel()) |
| 2611 | ctx.SnapshotBuilder().CopyToSnapshot(p, dest) |
| 2612 | dests = append(dests, dest) |
| 2613 | } |
| 2614 | propertySet.AddProperty("doctag_files", dests) |
| 2615 | } |
Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2616 | } |