| 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 | 0d3dd06 | 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 | 0f9eeb7 | 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 | 0d3dd06 | 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 | 3accbb5 | 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 | a1aa738 | 2021-04-29 21:50:40 +0100 | [diff] [blame] | 637 | android.SdkAware | 
| Paul Duffin | 3accbb5 | 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 | 3accbb5 | 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 | 3accbb5 | 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 | 3accbb5 | 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 | 3accbb5 | 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 | 5842387 | 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 | 5842387 | 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 | 2f7ccd5 | 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 | 3accbb5 | 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 | 3accbb5 | 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 | a1aa738 | 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 | a1aa738 | 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 | 3accbb5 | 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 | 3accbb5 | 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 | 3accbb5 | 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 | 54c1f08 | 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 | 3accbb5 | 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 | 54c1f08 | 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 | 54c1f08 | 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 | 5842387 | 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 | 5842387 | 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 | 5842387 | 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 | 5842387 | 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 | 3accbb5 | 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 | 5842387 | 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 | 5842387 | 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 | 54c1f08 | 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 | 54c1f08 | 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 | a1aa738 | 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 | a1aa738 | 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 | a1aa738 | 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 | ea0e698 | 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 | 0d3dd06 | 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 | 1072a71 | 2021-06-01 14:07:56 -0700 | [diff] [blame] | 1273 | return proptools.StringDefault(module.sdkLibraryProperties.Dist_group, "unknown") | 
| Colin Cross | 0d3dd06 | 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 | 5919060 | 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 | 2f7ccd5 | 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 | 2f7ccd5 | 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 | 712e8b5 | 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() { | 
|  | 1703 | mctx.ModuleErrorf("Current api file %#v doesn't exist", path) | 
| Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 1704 | missingCurrentApi = true | 
| Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 1705 | } | 
|  | 1706 | } | 
|  | 1707 | } | 
|  | 1708 |  | 
| Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 1709 | if missingCurrentApi { | 
| Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 1710 | script := "build/soong/scripts/gen-java-current-api-files.sh" | 
|  | 1711 | p := android.ExistentPathForSource(mctx, script) | 
|  | 1712 |  | 
|  | 1713 | if !p.Valid() { | 
|  | 1714 | panic(fmt.Sprintf("script file %s doesn't exist", script)) | 
|  | 1715 | } | 
|  | 1716 |  | 
|  | 1717 | mctx.ModuleErrorf("One or more current api files are missing. "+ | 
|  | 1718 | "You can update them by:\n"+ | 
| Paul Duffin | 37e0b77 | 2019-12-30 17:20:10 +0000 | [diff] [blame] | 1719 | "%s %q %s && m update-api", | 
| Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1720 | script, filepath.Join(mctx.ModuleDir(), apiDir), | 
| Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1721 | strings.Join(generatedScopes.Strings(func(s *apiScope) string { return s.apiFilePrefix }), " ")) | 
| Inseob Kim | 8098faa | 2019-03-18 10:19:51 +0900 | [diff] [blame] | 1722 | return | 
|  | 1723 | } | 
|  | 1724 |  | 
| Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1725 | for _, scope := range generatedScopes { | 
| Paul Duffin | 15f34ef | 2020-07-20 18:04:44 +0100 | [diff] [blame] | 1726 | // Use the stubs source name for legacy reasons. | 
|  | 1727 | module.createStubsSourcesAndApi(mctx, scope, module.stubsSourceModuleName(scope), scope.droidstubsArgs) | 
| Paul Duffin | 0ff08bd | 2020-04-29 13:30:54 +0100 | [diff] [blame] | 1728 |  | 
| Paul Duffin | d1b3a92 | 2020-01-22 11:57:20 +0000 | [diff] [blame] | 1729 | module.createStubsLibrary(mctx, scope) | 
| Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1730 | } | 
|  | 1731 |  | 
| Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1732 | if module.requiresRuntimeImplementationLibrary() { | 
| Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1733 | // Create child module to create an implementation library. | 
|  | 1734 | // | 
|  | 1735 | // This temporarily creates a second implementation library that can be explicitly | 
|  | 1736 | // referenced. | 
|  | 1737 | // | 
|  | 1738 | // TODO(b/156618935) - update comment once only one implementation library is created. | 
|  | 1739 | module.createImplLibrary(mctx) | 
|  | 1740 |  | 
| Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1741 | // Only create an XML permissions file that declares the library as being usable | 
|  | 1742 | // as a shared library if required. | 
|  | 1743 | if module.sharedLibrary() { | 
|  | 1744 | module.createXmlFile(mctx) | 
|  | 1745 | } | 
| Paul Duffin | 43db9be | 2019-12-30 17:35:49 +0000 | [diff] [blame] | 1746 |  | 
|  | 1747 | // record java_sdk_library modules so that they are exported to make | 
|  | 1748 | javaSdkLibraries := javaSdkLibraries(mctx.Config()) | 
|  | 1749 | javaSdkLibrariesLock.Lock() | 
|  | 1750 | defer javaSdkLibrariesLock.Unlock() | 
|  | 1751 | *javaSdkLibraries = append(*javaSdkLibraries, module.BaseModuleName()) | 
|  | 1752 | } | 
| Anton Hansson | 7f66efa | 2020-10-08 14:47:23 +0100 | [diff] [blame] | 1753 |  | 
|  | 1754 | // Add the impl_only_libs *after* we're done using the Libs prop in submodules. | 
|  | 1755 | module.properties.Libs = append(module.properties.Libs, module.sdkLibraryProperties.Impl_only_libs...) | 
| Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1756 | } | 
|  | 1757 |  | 
|  | 1758 | func (module *SdkLibrary) InitSdkLibraryProperties() { | 
| Colin Cross | ce6734e | 2020-06-15 16:09:53 -0700 | [diff] [blame] | 1759 | module.addHostAndDeviceProperties() | 
|  | 1760 | module.AddProperties(&module.sdkLibraryProperties) | 
| Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1761 |  | 
| Paul Duffin | 3accbb5 | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 1762 | module.initSdkLibraryComponent(module) | 
| Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 1763 |  | 
| Paul Duffin | a18abc2 | 2020-05-16 18:54:24 +0100 | [diff] [blame] | 1764 | module.properties.Installable = proptools.BoolPtr(true) | 
|  | 1765 | module.deviceProperties.IsSDKLibrary = true | 
| Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1766 | } | 
| Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1767 |  | 
| Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1768 | func (module *SdkLibrary) requiresRuntimeImplementationLibrary() bool { | 
|  | 1769 | return !proptools.Bool(module.sdkLibraryProperties.Api_only) | 
|  | 1770 | } | 
|  | 1771 |  | 
| Jiyong Park | 932cdfe | 2020-05-28 00:19:53 +0900 | [diff] [blame] | 1772 | func (module *SdkLibrary) defaultsToStubs() bool { | 
|  | 1773 | return proptools.Bool(module.sdkLibraryProperties.Default_to_stubs) | 
|  | 1774 | } | 
|  | 1775 |  | 
| Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 1776 | // Defines how to name the individual component modules the sdk library creates. | 
|  | 1777 | type sdkLibraryComponentNamingScheme interface { | 
|  | 1778 | stubsLibraryModuleName(scope *apiScope, baseName string) string | 
|  | 1779 |  | 
|  | 1780 | stubsSourceModuleName(scope *apiScope, baseName string) string | 
| Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 1781 | } | 
|  | 1782 |  | 
|  | 1783 | type defaultNamingScheme struct { | 
|  | 1784 | } | 
|  | 1785 |  | 
|  | 1786 | func (s *defaultNamingScheme) stubsLibraryModuleName(scope *apiScope, baseName string) string { | 
|  | 1787 | return scope.stubsLibraryModuleName(baseName) | 
|  | 1788 | } | 
|  | 1789 |  | 
|  | 1790 | func (s *defaultNamingScheme) stubsSourceModuleName(scope *apiScope, baseName string) string { | 
|  | 1791 | return scope.stubsSourceModuleName(baseName) | 
|  | 1792 | } | 
|  | 1793 |  | 
| Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 1794 | var _ sdkLibraryComponentNamingScheme = (*defaultNamingScheme)(nil) | 
|  | 1795 |  | 
| Jaewoong Jung | bc15e3a | 2021-03-10 17:02:43 -0800 | [diff] [blame] | 1796 | func moduleStubLinkType(name string) (stub bool, ret sdkLinkType) { | 
| Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 1797 | // This suffix-based approach is fragile and could potentially mis-trigger. | 
|  | 1798 | // 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] | 1799 | if strings.HasSuffix(name, apiScopePublic.stubsLibraryModuleNameSuffix()) { | 
|  | 1800 | if name == "hwbinder.stubs" || name == "libcore_private.stubs" { | 
|  | 1801 | // Due to a previous bug, these modules were not considered stubs, so we retain that. | 
|  | 1802 | return false, javaPlatform | 
|  | 1803 | } | 
| Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 1804 | return true, javaSdk | 
|  | 1805 | } | 
| Anton Hansson | 08f476b | 2021-04-07 15:32:19 +0100 | [diff] [blame] | 1806 | if strings.HasSuffix(name, apiScopeSystem.stubsLibraryModuleNameSuffix()) { | 
| Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 1807 | return true, javaSystem | 
|  | 1808 | } | 
| Anton Hansson | 08f476b | 2021-04-07 15:32:19 +0100 | [diff] [blame] | 1809 | if strings.HasSuffix(name, apiScopeModuleLib.stubsLibraryModuleNameSuffix()) { | 
| Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 1810 | return true, javaModule | 
|  | 1811 | } | 
| Anton Hansson | 08f476b | 2021-04-07 15:32:19 +0100 | [diff] [blame] | 1812 | if strings.HasSuffix(name, apiScopeTest.stubsLibraryModuleNameSuffix()) { | 
| Anton Hansson | 2d0c194 | 2020-05-25 12:20:51 +0100 | [diff] [blame] | 1813 | return true, javaSystem | 
|  | 1814 | } | 
|  | 1815 | return false, javaPlatform | 
|  | 1816 | } | 
|  | 1817 |  | 
| Jaewoong Jung | 4f158ee | 2019-07-11 10:05:35 -0700 | [diff] [blame] | 1818 | // java_sdk_library is a special Java library that provides optional platform APIs to apps. | 
|  | 1819 | // In practice, it can be viewed as a combination of several modules: 1) stubs library that clients | 
|  | 1820 | // are linked against to, 2) droiddoc module that internally generates API stubs source files, | 
|  | 1821 | // 3) the real runtime shared library that implements the APIs, and 4) XML file for adding | 
|  | 1822 | // 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] | 1823 | func SdkLibraryFactory() android.Module { | 
|  | 1824 | module := &SdkLibrary{} | 
| Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 1825 |  | 
|  | 1826 | // Initialize information common between source and prebuilt. | 
| Paul Duffin | 3accbb5 | 2021-06-23 11:39:47 +0100 | [diff] [blame] | 1827 | module.initCommon(module) | 
| Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 1828 |  | 
| Inseob Kim | c0907f1 | 2019-02-08 21:00:45 +0900 | [diff] [blame] | 1829 | module.InitSdkLibraryProperties() | 
| Jooyung Han | 58f26ab | 2019-12-18 15:34:32 +0900 | [diff] [blame] | 1830 | android.InitApexModule(module) | 
| Paul Duffin | b6b89a4 | 2021-05-06 16:33:43 +0100 | [diff] [blame] | 1831 | android.InitSdkAwareModule(module) | 
| Sundong Ahn | 054b19a | 2018-10-19 13:46:09 +0900 | [diff] [blame] | 1832 | InitJavaModule(module, android.HostAndDeviceSupported) | 
| Paul Duffin | 3375e35 | 2020-04-28 10:44:03 +0100 | [diff] [blame] | 1833 |  | 
|  | 1834 | // Initialize the map from scope to scope specific properties. | 
|  | 1835 | scopeToProperties := make(map[*apiScope]*ApiScopeProperties) | 
|  | 1836 | for _, scope := range allApiScopes { | 
|  | 1837 | scopeToProperties[scope] = scope.scopeSpecificProperties(module) | 
|  | 1838 | } | 
|  | 1839 | module.scopeToProperties = scopeToProperties | 
|  | 1840 |  | 
| Paul Duffin | 4911a89 | 2020-04-29 23:35:13 +0100 | [diff] [blame] | 1841 | // Add the properties containing visibility rules so that they are checked. | 
| Paul Duffin | 5df7930 | 2020-05-16 15:52:12 +0100 | [diff] [blame] | 1842 | android.AddVisibilityProperty(module, "impl_library_visibility", &module.sdkLibraryProperties.Impl_library_visibility) | 
| Paul Duffin | 4911a89 | 2020-04-29 23:35:13 +0100 | [diff] [blame] | 1843 | android.AddVisibilityProperty(module, "stubs_library_visibility", &module.sdkLibraryProperties.Stubs_library_visibility) | 
|  | 1844 | android.AddVisibilityProperty(module, "stubs_source_visibility", &module.sdkLibraryProperties.Stubs_source_visibility) | 
|  | 1845 |  | 
| Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 1846 | module.SetDefaultableHook(func(ctx android.DefaultableHookContext) { | 
| Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 1847 | // If no implementation is required then it cannot be used as a shared library | 
|  | 1848 | // either. | 
|  | 1849 | if !module.requiresRuntimeImplementationLibrary() { | 
|  | 1850 | // If shared_library has been explicitly set to true then it is incompatible | 
|  | 1851 | // with api_only: true. | 
|  | 1852 | if proptools.Bool(module.commonSdkLibraryProperties.Shared_library) { | 
|  | 1853 | ctx.PropertyErrorf("api_only/shared_library", "inconsistent settings, shared_library and api_only cannot both be true") | 
|  | 1854 | } | 
|  | 1855 | // Set shared_library: false. | 
|  | 1856 | module.commonSdkLibraryProperties.Shared_library = proptools.BoolPtr(false) | 
|  | 1857 | } | 
|  | 1858 |  | 
| Paul Duffin | 1b1e806 | 2020-05-08 13:44:43 +0100 | [diff] [blame] | 1859 | if module.initCommonAfterDefaultsApplied(ctx) { | 
|  | 1860 | module.CreateInternalModules(ctx) | 
|  | 1861 | } | 
|  | 1862 | }) | 
| Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 1863 | return module | 
|  | 1864 | } | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1865 |  | 
|  | 1866 | // | 
|  | 1867 | // SDK library prebuilts | 
|  | 1868 | // | 
|  | 1869 |  | 
| Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 1870 | // Properties associated with each api scope. | 
|  | 1871 | type sdkLibraryScopeProperties struct { | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1872 | Jars []string `android:"path"` | 
|  | 1873 |  | 
|  | 1874 | Sdk_version *string | 
|  | 1875 |  | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1876 | // List of shared java libs that this module has dependencies to | 
|  | 1877 | Libs []string | 
| Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 1878 |  | 
| Paul Duffin | c878250 | 2020-04-29 20:45:27 +0100 | [diff] [blame] | 1879 | // The stubs source. | 
| Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 1880 | Stub_srcs []string `android:"path"` | 
| Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 1881 |  | 
|  | 1882 | // The current.txt | 
| Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 1883 | Current_api *string `android:"path"` | 
| Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 1884 |  | 
|  | 1885 | // The removed.txt | 
| Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 1886 | Removed_api *string `android:"path"` | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 1887 | } | 
|  | 1888 |  | 
| Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 1889 | type sdkLibraryImportProperties struct { | 
| Paul Duffin | fcfd791 | 2020-01-31 17:54:30 +0000 | [diff] [blame] | 1890 | // List of shared java libs, common to all scopes, that this module has | 
|  | 1891 | // dependencies to | 
|  | 1892 | Libs []string | 
| Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 1893 |  | 
|  | 1894 | // If set to true, compile dex files for the stubs. Defaults to false. | 
|  | 1895 | Compile_dex *bool | 
| Paul Duffin | 7b3e10a | 2021-07-15 14:14:41 +0100 | [diff] [blame] | 1896 |  | 
|  | 1897 | // If not empty, classes are restricted to the specified packages and their sub-packages. | 
|  | 1898 | // This information is used to generate the updatable-bcp-packages.txt file. | 
|  | 1899 | Permitted_packages []string | 
| 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 | 3accbb5 | 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 | dbcc296 | 2021-07-15 13:35:26 +0100 | [diff] [blame] | 1994 | var _ PermittedPackagesForUpdatableBootJars = (*SdkLibraryImport)(nil) | 
|  | 1995 |  | 
|  | 1996 | func (module *SdkLibraryImport) PermittedPackagesForUpdatableBootJars() []string { | 
|  | 1997 | return module.properties.Permitted_packages | 
|  | 1998 | } | 
|  | 1999 |  | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2000 | func (module *SdkLibraryImport) Prebuilt() *android.Prebuilt { | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2001 | return &module.prebuilt | 
|  | 2002 | } | 
|  | 2003 |  | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2004 | func (module *SdkLibraryImport) Name() string { | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2005 | return module.prebuilt.Name(module.ModuleBase.Name()) | 
|  | 2006 | } | 
|  | 2007 |  | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2008 | func (module *SdkLibraryImport) createInternalModules(mctx android.DefaultableHookContext) { | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2009 |  | 
| Paul Duffin | 5006151 | 2020-01-21 16:31:05 +0000 | [diff] [blame] | 2010 | // 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] | 2011 | if mctx.Config().AlwaysUsePrebuiltSdks() { | 
| Paul Duffin | 5006151 | 2020-01-21 16:31:05 +0000 | [diff] [blame] | 2012 | module.prebuilt.ForcePrefer() | 
|  | 2013 | } | 
|  | 2014 |  | 
| Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 2015 | for apiScope, scopeProperties := range module.scopeProperties { | 
| Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2016 | if len(scopeProperties.Jars) == 0 { | 
|  | 2017 | continue | 
|  | 2018 | } | 
|  | 2019 |  | 
| Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2020 | module.createJavaImportForStubs(mctx, apiScope, scopeProperties) | 
| Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2021 |  | 
| Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2022 | if len(scopeProperties.Stub_srcs) > 0 { | 
|  | 2023 | module.createPrebuiltStubsSources(mctx, apiScope, scopeProperties) | 
|  | 2024 | } | 
| Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2025 | } | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2026 |  | 
|  | 2027 | javaSdkLibraries := javaSdkLibraries(mctx.Config()) | 
|  | 2028 | javaSdkLibrariesLock.Lock() | 
|  | 2029 | defer javaSdkLibrariesLock.Unlock() | 
|  | 2030 | *javaSdkLibraries = append(*javaSdkLibraries, module.BaseModuleName()) | 
|  | 2031 | } | 
|  | 2032 |  | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2033 | func (module *SdkLibraryImport) createJavaImportForStubs(mctx android.DefaultableHookContext, apiScope *apiScope, scopeProperties *sdkLibraryScopeProperties) { | 
| Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2034 | // Creates a java import for the jar with ".stubs" suffix | 
|  | 2035 | props := struct { | 
| Paul Duffin | 1dbe3ca | 2020-05-16 09:57:59 +0100 | [diff] [blame] | 2036 | Name        *string | 
|  | 2037 | Sdk_version *string | 
|  | 2038 | Libs        []string | 
|  | 2039 | Jars        []string | 
|  | 2040 | Prefer      *bool | 
| Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2041 | Compile_dex *bool | 
| Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2042 | }{} | 
| Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 2043 | props.Name = proptools.StringPtr(module.stubsLibraryModuleName(apiScope)) | 
| Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2044 | props.Sdk_version = scopeProperties.Sdk_version | 
|  | 2045 | // Prepend any of the libs from the legacy public properties to the libs for each of the | 
|  | 2046 | // scopes to avoid having to duplicate them in each scope. | 
|  | 2047 | props.Libs = append(module.properties.Libs, scopeProperties.Libs...) | 
|  | 2048 | props.Jars = scopeProperties.Jars | 
| Paul Duffin | 1dbe3ca | 2020-05-16 09:57:59 +0100 | [diff] [blame] | 2049 |  | 
| Paul Duffin | 38b5785 | 2020-05-13 16:08:09 +0100 | [diff] [blame] | 2050 | // The imports are preferred if the java_sdk_library_import is preferred. | 
|  | 2051 | props.Prefer = proptools.BoolPtr(module.prebuilt.Prefer()) | 
| Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 2052 |  | 
| Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2053 | // 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] | 2054 | compileDex := module.properties.Compile_dex | 
|  | 2055 | if module.stubLibrariesCompiledForDex() { | 
|  | 2056 | compileDex = proptools.BoolPtr(true) | 
|  | 2057 | } | 
|  | 2058 | props.Compile_dex = compileDex | 
| Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2059 |  | 
| Paul Duffin | 859fe96 | 2020-05-15 10:20:31 +0100 | [diff] [blame] | 2060 | mctx.CreateModule(ImportFactory, &props, module.sdkComponentPropertiesForChildLibrary()) | 
| Paul Duffin | bbb546b | 2020-04-09 00:07:11 +0100 | [diff] [blame] | 2061 | } | 
|  | 2062 |  | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2063 | func (module *SdkLibraryImport) createPrebuiltStubsSources(mctx android.DefaultableHookContext, apiScope *apiScope, scopeProperties *sdkLibraryScopeProperties) { | 
| Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2064 | props := struct { | 
| Paul Duffin | 38b5785 | 2020-05-13 16:08:09 +0100 | [diff] [blame] | 2065 | Name   *string | 
|  | 2066 | Srcs   []string | 
|  | 2067 | Prefer *bool | 
| Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2068 | }{} | 
| Paul Duffin | c3091c8 | 2020-05-08 14:16:20 +0100 | [diff] [blame] | 2069 | props.Name = proptools.StringPtr(module.stubsSourceModuleName(apiScope)) | 
| Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2070 | props.Srcs = scopeProperties.Stub_srcs | 
|  | 2071 | mctx.CreateModule(PrebuiltStubsSourcesFactory, &props) | 
| Paul Duffin | 38b5785 | 2020-05-13 16:08:09 +0100 | [diff] [blame] | 2072 |  | 
|  | 2073 | // The stubs source is preferred if the java_sdk_library_import is preferred. | 
|  | 2074 | props.Prefer = proptools.BoolPtr(module.prebuilt.Prefer()) | 
| Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2075 | } | 
|  | 2076 |  | 
| Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 2077 | // Add the dependencies on the child module in the component deps mutator so that it | 
|  | 2078 | // creates references to the prebuilt and not the source modules. | 
|  | 2079 | func (module *SdkLibraryImport) ComponentDepsMutator(ctx android.BottomUpMutatorContext) { | 
| Paul Duffin | 46a26a8 | 2020-04-07 19:27:04 +0100 | [diff] [blame] | 2080 | for apiScope, scopeProperties := range module.scopeProperties { | 
| Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2081 | if len(scopeProperties.Jars) == 0 { | 
|  | 2082 | continue | 
|  | 2083 | } | 
|  | 2084 |  | 
|  | 2085 | // Add dependencies to the prebuilt stubs library | 
| Paul Duffin | 864116c | 2021-04-02 10:24:13 +0100 | [diff] [blame] | 2086 | ctx.AddVariationDependencies(nil, apiScope.stubsTag, android.PrebuiltNameFromSource(module.stubsLibraryModuleName(apiScope))) | 
| Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2087 |  | 
|  | 2088 | if len(scopeProperties.Stub_srcs) > 0 { | 
|  | 2089 | // Add dependencies to the prebuilt stubs source library | 
| Paul Duffin | 864116c | 2021-04-02 10:24:13 +0100 | [diff] [blame] | 2090 | ctx.AddVariationDependencies(nil, apiScope.stubsSourceTag, android.PrebuiltNameFromSource(module.stubsSourceModuleName(apiScope))) | 
| Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2091 | } | 
| Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2092 | } | 
| Paul Duffin | 44f1d84 | 2020-06-26 20:17:02 +0100 | [diff] [blame] | 2093 | } | 
|  | 2094 |  | 
|  | 2095 | // Add other dependencies as normal. | 
|  | 2096 | func (module *SdkLibraryImport) DepsMutator(ctx android.BottomUpMutatorContext) { | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2097 |  | 
|  | 2098 | implName := module.implLibraryModuleName() | 
|  | 2099 | if ctx.OtherModuleExists(implName) { | 
|  | 2100 | ctx.AddVariationDependencies(nil, implLibraryTag, implName) | 
|  | 2101 |  | 
|  | 2102 | xmlPermissionsModuleName := module.xmlPermissionsModuleName() | 
|  | 2103 | if module.sharedLibrary() && ctx.OtherModuleExists(xmlPermissionsModuleName) { | 
|  | 2104 | // Add dependency to the rule for generating the xml permissions file | 
|  | 2105 | ctx.AddDependency(module, xmlPermissionsFileTag, xmlPermissionsModuleName) | 
|  | 2106 | } | 
|  | 2107 | } | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2108 | } | 
|  | 2109 |  | 
| Jiyong Park | 45bf82e | 2020-12-15 22:29:02 +0900 | [diff] [blame] | 2110 | var _ android.ApexModule = (*SdkLibraryImport)(nil) | 
|  | 2111 |  | 
|  | 2112 | // Implements android.ApexModule | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2113 | func (module *SdkLibraryImport) DepIsInSameApex(mctx android.BaseModuleContext, dep android.Module) bool { | 
|  | 2114 | depTag := mctx.OtherModuleDependencyTag(dep) | 
|  | 2115 | if depTag == xmlPermissionsFileTag { | 
|  | 2116 | return true | 
|  | 2117 | } | 
|  | 2118 |  | 
|  | 2119 | // None of the other dependencies of the java_sdk_library_import are in the same apex | 
|  | 2120 | // as the one that references this module. | 
|  | 2121 | return false | 
|  | 2122 | } | 
|  | 2123 |  | 
| Jiyong Park | 45bf82e | 2020-12-15 22:29:02 +0900 | [diff] [blame] | 2124 | // Implements android.ApexModule | 
| Dan Albert | c806053 | 2020-07-22 22:32:17 -0700 | [diff] [blame] | 2125 | func (module *SdkLibraryImport) ShouldSupportSdkVersion(ctx android.BaseModuleContext, | 
|  | 2126 | sdkVersion android.ApiLevel) error { | 
| Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 2127 | // we don't check prebuilt modules for sdk_version | 
|  | 2128 | return nil | 
|  | 2129 | } | 
|  | 2130 |  | 
| Paul Duffin | 2f7ccd5 | 2021-06-24 13:25:57 +0100 | [diff] [blame] | 2131 | // Implements android.ApexModule | 
|  | 2132 | func (module *SdkLibraryImport) UniqueApexVariations() bool { | 
|  | 2133 | return module.uniqueApexVariations() | 
|  | 2134 | } | 
|  | 2135 |  | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2136 | func (module *SdkLibraryImport) OutputFiles(tag string) (android.Paths, error) { | 
| Paul Duffin | 46dc45a | 2020-05-14 15:39:10 +0100 | [diff] [blame] | 2137 | return module.commonOutputFiles(tag) | 
|  | 2138 | } | 
|  | 2139 |  | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2140 | func (module *SdkLibraryImport) GenerateAndroidBuildActions(ctx android.ModuleContext) { | 
| Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 2141 | module.generateCommonBuildActions(ctx) | 
|  | 2142 |  | 
| Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2143 | var deapexerModule android.Module | 
|  | 2144 |  | 
| Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2145 | // Record the paths to the prebuilt stubs library and stubs source. | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2146 | ctx.VisitDirectDeps(func(to android.Module) { | 
|  | 2147 | tag := ctx.OtherModuleDependencyTag(to) | 
|  | 2148 |  | 
| Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2149 | // Extract information from any of the scope specific dependencies. | 
|  | 2150 | if scopeTag, ok := tag.(scopeDependencyTag); ok { | 
|  | 2151 | apiScope := scopeTag.apiScope | 
|  | 2152 | scopePaths := module.getScopePathsCreateIfNeeded(apiScope) | 
|  | 2153 |  | 
|  | 2154 | // Extract information from the dependency. The exact information extracted | 
|  | 2155 | // is determined by the nature of the dependency which is determined by the tag. | 
|  | 2156 | scopeTag.extractDepInfo(ctx, to, scopePaths) | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2157 | } else if tag == implLibraryTag { | 
|  | 2158 | if implLibrary, ok := to.(*Library); ok { | 
|  | 2159 | module.implLibraryModule = implLibrary | 
|  | 2160 | } else { | 
|  | 2161 | ctx.ModuleErrorf("implementation library must be of type *java.Library but was %T", to) | 
|  | 2162 | } | 
|  | 2163 | } else if tag == xmlPermissionsFileTag { | 
|  | 2164 | if xmlPermissionsFileModule, ok := to.(*sdkLibraryXml); ok { | 
|  | 2165 | module.xmlPermissionsFileModule = xmlPermissionsFileModule | 
|  | 2166 | } else { | 
|  | 2167 | ctx.ModuleErrorf("xml permissions file module must be of type *sdkLibraryXml but was %T", to) | 
|  | 2168 | } | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2169 | } | 
| Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2170 |  | 
|  | 2171 | // Save away the `deapexer` module on which this depends, if any. | 
|  | 2172 | if tag == android.DeapexerTag { | 
| Martin Stjernholm | 9599406 | 2021-06-30 16:35:07 +0100 | [diff] [blame] | 2173 | if deapexerModule != nil { | 
|  | 2174 | ctx.ModuleErrorf("Ambiguous duplicate deapexer module dependencies %q and %q", | 
|  | 2175 | deapexerModule.Name(), to.Name()) | 
|  | 2176 | } | 
| Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2177 | deapexerModule = to | 
|  | 2178 | } | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2179 | }) | 
| Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2180 |  | 
|  | 2181 | // Populate the scope paths with information from the properties. | 
|  | 2182 | for apiScope, scopeProperties := range module.scopeProperties { | 
|  | 2183 | if len(scopeProperties.Jars) == 0 { | 
|  | 2184 | continue | 
|  | 2185 | } | 
|  | 2186 |  | 
|  | 2187 | paths := module.getScopePathsCreateIfNeeded(apiScope) | 
|  | 2188 | paths.currentApiFilePath = android.OptionalPathForModuleSrc(ctx, scopeProperties.Current_api) | 
|  | 2189 | paths.removedApiFilePath = android.OptionalPathForModuleSrc(ctx, scopeProperties.Removed_api) | 
|  | 2190 | } | 
| Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2191 |  | 
|  | 2192 | if ctx.Device() { | 
|  | 2193 | // If this is a variant created for a prebuilt_apex then use the dex implementation jar | 
|  | 2194 | // obtained from the associated deapexer module. | 
|  | 2195 | ai := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo) | 
|  | 2196 | if ai.ForPrebuiltApex { | 
|  | 2197 | if deapexerModule == nil { | 
|  | 2198 | // This should never happen as a variant for a prebuilt_apex is only created if the | 
|  | 2199 | // deapxer module has been configured to export the dex implementation jar for this module. | 
|  | 2200 | ctx.ModuleErrorf("internal error: module %q does not depend on a `deapexer` module for prebuilt_apex %q", | 
|  | 2201 | module.Name(), ai.ApexVariationName) | 
|  | 2202 | } | 
|  | 2203 |  | 
|  | 2204 | // Get the path of the dex implementation jar from the `deapexer` module. | 
|  | 2205 | di := ctx.OtherModuleProvider(deapexerModule, android.DeapexerProvider).(android.DeapexerInfo) | 
| Paul Duffin | 034196d | 2021-06-17 15:59:07 +0100 | [diff] [blame] | 2206 | if dexOutputPath := di.PrebuiltExportPath(apexRootRelativePathToJavaLib(module.BaseModuleName())); dexOutputPath != nil { | 
| Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2207 | module.dexJarFile = dexOutputPath | 
| Paul Duffin | 6c6dde0 | 2021-05-14 15:52:25 +0100 | [diff] [blame] | 2208 | module.initHiddenAPI(ctx, dexOutputPath, module.findScopePaths(apiScopePublic).stubsImplPath[0], nil) | 
| Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2209 | } else { | 
|  | 2210 | // This should never happen as a variant for a prebuilt_apex is only created if the | 
|  | 2211 | // prebuilt_apex has been configured to export the java library dex file. | 
|  | 2212 | ctx.ModuleErrorf("internal error: no dex implementation jar available from prebuilt_apex %q", deapexerModule.Name()) | 
|  | 2213 | } | 
|  | 2214 | } | 
|  | 2215 | } | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2216 | } | 
|  | 2217 |  | 
| Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2218 | 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] | 2219 |  | 
|  | 2220 | // For consistency with SdkLibrary make the implementation jar available to libraries that | 
|  | 2221 | // are within the same APEX. | 
|  | 2222 | implLibraryModule := module.implLibraryModule | 
| Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2223 | if implLibraryModule != nil && withinSameApexesAs(ctx, module) { | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2224 | if headerJars { | 
|  | 2225 | return implLibraryModule.HeaderJars() | 
|  | 2226 | } else { | 
|  | 2227 | return implLibraryModule.ImplementationJars() | 
|  | 2228 | } | 
|  | 2229 | } | 
|  | 2230 |  | 
| Paul Duffin | 23970f4 | 2020-05-20 14:20:02 +0100 | [diff] [blame] | 2231 | return module.selectHeaderJarsForSdkVersion(ctx, sdkVersion) | 
| Paul Duffin | 56d4490 | 2020-01-31 13:36:25 +0000 | [diff] [blame] | 2232 | } | 
|  | 2233 |  | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2234 | // to satisfy SdkLibraryDependency interface | 
| Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2235 | func (module *SdkLibraryImport) SdkHeaderJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths { | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2236 | // This module is just a wrapper for the prebuilt stubs. | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2237 | return module.sdkJars(ctx, sdkVersion, true) | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2238 | } | 
|  | 2239 |  | 
|  | 2240 | // to satisfy SdkLibraryDependency interface | 
| Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 2241 | func (module *SdkLibraryImport) SdkImplementationJars(ctx android.BaseModuleContext, sdkVersion android.SdkSpec) android.Paths { | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2242 | // This module is just a wrapper for the stubs. | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2243 | return module.sdkJars(ctx, sdkVersion, false) | 
|  | 2244 | } | 
|  | 2245 |  | 
| Ulya Trafimovich | dbf3166 | 2020-12-17 12:07:54 +0000 | [diff] [blame] | 2246 | // to satisfy UsesLibraryDependency interface | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2247 | func (module *SdkLibraryImport) DexJarBuildPath() android.Path { | 
| Paul Duffin | 3985351 | 2021-02-26 11:09:39 +0000 | [diff] [blame] | 2248 | // The dex implementation jar extracted from the .apex file should be used in preference to the | 
|  | 2249 | // source. | 
|  | 2250 | if module.dexJarFile != nil { | 
|  | 2251 | return module.dexJarFile | 
|  | 2252 | } | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2253 | if module.implLibraryModule == nil { | 
|  | 2254 | return nil | 
|  | 2255 | } else { | 
|  | 2256 | return module.implLibraryModule.DexJarBuildPath() | 
|  | 2257 | } | 
|  | 2258 | } | 
|  | 2259 |  | 
| Ulya Trafimovich | dbf3166 | 2020-12-17 12:07:54 +0000 | [diff] [blame] | 2260 | // to satisfy UsesLibraryDependency interface | 
| Ulya Trafimovich | 31e444e | 2020-08-14 17:32:16 +0100 | [diff] [blame] | 2261 | func (module *SdkLibraryImport) DexJarInstallPath() android.Path { | 
|  | 2262 | if module.implLibraryModule == nil { | 
|  | 2263 | return nil | 
|  | 2264 | } else { | 
|  | 2265 | return module.implLibraryModule.DexJarInstallPath() | 
|  | 2266 | } | 
|  | 2267 | } | 
|  | 2268 |  | 
| Ulya Trafimovich | dbf3166 | 2020-12-17 12:07:54 +0000 | [diff] [blame] | 2269 | // to satisfy UsesLibraryDependency interface | 
|  | 2270 | func (module *SdkLibraryImport) ClassLoaderContexts() dexpreopt.ClassLoaderContextMap { | 
|  | 2271 | return nil | 
|  | 2272 | } | 
|  | 2273 |  | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2274 | // to satisfy apex.javaDependency interface | 
|  | 2275 | func (module *SdkLibraryImport) JacocoReportClassesFile() android.Path { | 
|  | 2276 | if module.implLibraryModule == nil { | 
|  | 2277 | return nil | 
|  | 2278 | } else { | 
|  | 2279 | return module.implLibraryModule.JacocoReportClassesFile() | 
|  | 2280 | } | 
|  | 2281 | } | 
|  | 2282 |  | 
|  | 2283 | // to satisfy apex.javaDependency interface | 
| Colin Cross | 08dca38 | 2020-07-21 20:31:17 -0700 | [diff] [blame] | 2284 | func (module *SdkLibraryImport) LintDepSets() LintDepSets { | 
|  | 2285 | if module.implLibraryModule == nil { | 
|  | 2286 | return LintDepSets{} | 
|  | 2287 | } else { | 
|  | 2288 | return module.implLibraryModule.LintDepSets() | 
|  | 2289 | } | 
|  | 2290 | } | 
|  | 2291 |  | 
| Jaewoong Jung | 476b9d6 | 2021-05-10 15:30:00 -0700 | [diff] [blame] | 2292 | func (module *SdkLibraryImport) getStrictUpdatabilityLinting() bool { | 
|  | 2293 | if module.implLibraryModule == nil { | 
|  | 2294 | return false | 
|  | 2295 | } else { | 
|  | 2296 | return module.implLibraryModule.getStrictUpdatabilityLinting() | 
|  | 2297 | } | 
|  | 2298 | } | 
|  | 2299 |  | 
|  | 2300 | func (module *SdkLibraryImport) setStrictUpdatabilityLinting(strictLinting bool) { | 
|  | 2301 | if module.implLibraryModule != nil { | 
|  | 2302 | module.implLibraryModule.setStrictUpdatabilityLinting(strictLinting) | 
|  | 2303 | } | 
|  | 2304 | } | 
|  | 2305 |  | 
| Colin Cross | 08dca38 | 2020-07-21 20:31:17 -0700 | [diff] [blame] | 2306 | // to satisfy apex.javaDependency interface | 
| Paul Duffin | eedc5d5 | 2020-06-12 17:46:39 +0100 | [diff] [blame] | 2307 | func (module *SdkLibraryImport) Stem() string { | 
|  | 2308 | return module.BaseModuleName() | 
| Colin Cross | 79c7c26 | 2019-04-17 11:11:46 -0700 | [diff] [blame] | 2309 | } | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2310 |  | 
| Paul Duffin | 44b481b | 2020-06-17 16:59:43 +0100 | [diff] [blame] | 2311 | var _ ApexDependency = (*SdkLibraryImport)(nil) | 
|  | 2312 |  | 
|  | 2313 | // to satisfy java.ApexDependency interface | 
|  | 2314 | func (module *SdkLibraryImport) HeaderJars() android.Paths { | 
|  | 2315 | if module.implLibraryModule == nil { | 
|  | 2316 | return nil | 
|  | 2317 | } else { | 
|  | 2318 | return module.implLibraryModule.HeaderJars() | 
|  | 2319 | } | 
|  | 2320 | } | 
|  | 2321 |  | 
|  | 2322 | // to satisfy java.ApexDependency interface | 
|  | 2323 | func (module *SdkLibraryImport) ImplementationAndResourcesJars() android.Paths { | 
|  | 2324 | if module.implLibraryModule == nil { | 
|  | 2325 | return nil | 
|  | 2326 | } else { | 
|  | 2327 | return module.implLibraryModule.ImplementationAndResourcesJars() | 
|  | 2328 | } | 
|  | 2329 | } | 
|  | 2330 |  | 
| Paul Duffin | 7db57e0 | 2021-06-17 14:56:05 +0100 | [diff] [blame] | 2331 | var _ android.RequiredFilesFromPrebuiltApex = (*SdkLibraryImport)(nil) | 
|  | 2332 |  | 
| Paul Duffin | 034196d | 2021-06-17 15:59:07 +0100 | [diff] [blame] | 2333 | func (module *SdkLibraryImport) RequiredFilesFromPrebuiltApex(ctx android.BaseModuleContext) []string { | 
| Paul Duffin | 7db57e0 | 2021-06-17 14:56:05 +0100 | [diff] [blame] | 2334 | name := module.BaseModuleName() | 
|  | 2335 | return requiredFilesFromPrebuiltApexForImport(name) | 
|  | 2336 | } | 
|  | 2337 |  | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2338 | // | 
|  | 2339 | // java_sdk_library_xml | 
|  | 2340 | // | 
|  | 2341 | type sdkLibraryXml struct { | 
|  | 2342 | android.ModuleBase | 
|  | 2343 | android.DefaultableModuleBase | 
|  | 2344 | android.ApexModuleBase | 
|  | 2345 |  | 
|  | 2346 | properties sdkLibraryXmlProperties | 
|  | 2347 |  | 
|  | 2348 | outputFilePath android.OutputPath | 
|  | 2349 | installDirPath android.InstallPath | 
| Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2350 |  | 
|  | 2351 | hideApexVariantFromMake bool | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2352 | } | 
|  | 2353 |  | 
|  | 2354 | type sdkLibraryXmlProperties struct { | 
|  | 2355 | // canonical name of the lib | 
|  | 2356 | Lib_name *string | 
|  | 2357 | } | 
|  | 2358 |  | 
|  | 2359 | // java_sdk_library_xml builds the permission xml file for a java_sdk_library. | 
|  | 2360 | // Not to be used directly by users. java_sdk_library internally uses this. | 
|  | 2361 | func sdkLibraryXmlFactory() android.Module { | 
|  | 2362 | module := &sdkLibraryXml{} | 
|  | 2363 |  | 
|  | 2364 | module.AddProperties(&module.properties) | 
|  | 2365 |  | 
|  | 2366 | android.InitApexModule(module) | 
|  | 2367 | android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon) | 
|  | 2368 |  | 
|  | 2369 | return module | 
|  | 2370 | } | 
|  | 2371 |  | 
| Colin Cross | aede88c | 2020-08-11 12:17:01 -0700 | [diff] [blame] | 2372 | func (module *sdkLibraryXml) UniqueApexVariations() bool { | 
|  | 2373 | // sdkLibraryXml needs a unique variation per APEX because the generated XML file contains the path to the | 
|  | 2374 | // mounted APEX, which contains the name of the APEX. | 
|  | 2375 | return true | 
|  | 2376 | } | 
|  | 2377 |  | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2378 | // from android.PrebuiltEtcModule | 
| Jooyung Han | 0703fd8 | 2020-08-26 22:11:53 +0900 | [diff] [blame] | 2379 | func (module *sdkLibraryXml) BaseDir() string { | 
|  | 2380 | return "etc" | 
|  | 2381 | } | 
|  | 2382 |  | 
|  | 2383 | // from android.PrebuiltEtcModule | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2384 | func (module *sdkLibraryXml) SubDir() string { | 
|  | 2385 | return "permissions" | 
|  | 2386 | } | 
|  | 2387 |  | 
|  | 2388 | // from android.PrebuiltEtcModule | 
|  | 2389 | func (module *sdkLibraryXml) OutputFile() android.OutputPath { | 
|  | 2390 | return module.outputFilePath | 
|  | 2391 | } | 
|  | 2392 |  | 
|  | 2393 | // from android.ApexModule | 
|  | 2394 | func (module *sdkLibraryXml) AvailableFor(what string) bool { | 
|  | 2395 | return true | 
|  | 2396 | } | 
|  | 2397 |  | 
|  | 2398 | func (module *sdkLibraryXml) DepsMutator(ctx android.BottomUpMutatorContext) { | 
|  | 2399 | // do nothing | 
|  | 2400 | } | 
|  | 2401 |  | 
| Jiyong Park | 45bf82e | 2020-12-15 22:29:02 +0900 | [diff] [blame] | 2402 | var _ android.ApexModule = (*sdkLibraryXml)(nil) | 
|  | 2403 |  | 
|  | 2404 | // Implements android.ApexModule | 
| Dan Albert | c806053 | 2020-07-22 22:32:17 -0700 | [diff] [blame] | 2405 | func (module *sdkLibraryXml) ShouldSupportSdkVersion(ctx android.BaseModuleContext, | 
|  | 2406 | sdkVersion android.ApiLevel) error { | 
| Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 2407 | // sdkLibraryXml doesn't need to be checked separately because java_sdk_library is checked | 
|  | 2408 | return nil | 
|  | 2409 | } | 
|  | 2410 |  | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2411 | // File path to the runtime implementation library | 
| Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2412 | func (module *sdkLibraryXml) implPath(ctx android.ModuleContext) string { | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2413 | implName := proptools.String(module.properties.Lib_name) | 
| Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2414 | if apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo); !apexInfo.IsForPlatform() { | 
| Colin Cross | e07f231 | 2020-08-13 11:24:56 -0700 | [diff] [blame] | 2415 | // 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] | 2416 | // In most cases, this works fine. But when apex_name is set or override_apex is used | 
|  | 2417 | // this can be wrong. | 
| Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2418 | return fmt.Sprintf("/apex/%s/javalib/%s.jar", apexInfo.ApexVariationName, implName) | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2419 | } | 
|  | 2420 | partition := "system" | 
|  | 2421 | if module.SocSpecific() { | 
|  | 2422 | partition = "vendor" | 
|  | 2423 | } else if module.DeviceSpecific() { | 
|  | 2424 | partition = "odm" | 
|  | 2425 | } else if module.ProductSpecific() { | 
|  | 2426 | partition = "product" | 
|  | 2427 | } else if module.SystemExtSpecific() { | 
|  | 2428 | partition = "system_ext" | 
|  | 2429 | } | 
|  | 2430 | return "/" + partition + "/framework/" + implName + ".jar" | 
|  | 2431 | } | 
|  | 2432 |  | 
|  | 2433 | func (module *sdkLibraryXml) GenerateAndroidBuildActions(ctx android.ModuleContext) { | 
| Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2434 | module.hideApexVariantFromMake = !ctx.Provider(android.ApexInfoProvider).(android.ApexInfo).IsForPlatform() | 
|  | 2435 |  | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2436 | libName := proptools.String(module.properties.Lib_name) | 
| Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2437 | xmlContent := fmt.Sprintf(permissionsTemplate, libName, module.implPath(ctx)) | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2438 |  | 
|  | 2439 | module.outputFilePath = android.PathForModuleOut(ctx, libName+".xml").OutputPath | 
| Colin Cross | f1a035e | 2020-11-16 17:32:30 -0800 | [diff] [blame] | 2440 | rule := android.NewRuleBuilder(pctx, ctx) | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2441 | rule.Command(). | 
|  | 2442 | Text("/bin/bash -c \"echo -e '" + xmlContent + "'\" > "). | 
|  | 2443 | Output(module.outputFilePath) | 
|  | 2444 |  | 
| Colin Cross | f1a035e | 2020-11-16 17:32:30 -0800 | [diff] [blame] | 2445 | rule.Build("java_sdk_xml", "Permission XML") | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2446 |  | 
|  | 2447 | module.installDirPath = android.PathForModuleInstall(ctx, "etc", module.SubDir()) | 
|  | 2448 | } | 
|  | 2449 |  | 
|  | 2450 | func (module *sdkLibraryXml) AndroidMkEntries() []android.AndroidMkEntries { | 
| Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 2451 | if module.hideApexVariantFromMake { | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2452 | return []android.AndroidMkEntries{android.AndroidMkEntries{ | 
|  | 2453 | Disabled: true, | 
|  | 2454 | }} | 
|  | 2455 | } | 
|  | 2456 |  | 
|  | 2457 | return []android.AndroidMkEntries{android.AndroidMkEntries{ | 
|  | 2458 | Class:      "ETC", | 
|  | 2459 | OutputFile: android.OptionalPathForPath(module.outputFilePath), | 
|  | 2460 | ExtraEntries: []android.AndroidMkExtraEntriesFunc{ | 
| Colin Cross | aa25553 | 2020-07-03 13:18:24 -0700 | [diff] [blame] | 2461 | func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) { | 
| Jiyong Park | e383388 | 2020-02-17 17:28:10 +0900 | [diff] [blame] | 2462 | entries.SetString("LOCAL_MODULE_TAGS", "optional") | 
|  | 2463 | entries.SetString("LOCAL_MODULE_PATH", module.installDirPath.ToMakePath().String()) | 
|  | 2464 | entries.SetString("LOCAL_INSTALLED_MODULE_STEM", module.outputFilePath.Base()) | 
|  | 2465 | }, | 
|  | 2466 | }, | 
|  | 2467 | }} | 
|  | 2468 | } | 
| Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2469 |  | 
|  | 2470 | type sdkLibrarySdkMemberType struct { | 
|  | 2471 | android.SdkMemberTypeBase | 
|  | 2472 | } | 
|  | 2473 |  | 
|  | 2474 | func (s *sdkLibrarySdkMemberType) AddDependencies(mctx android.BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string) { | 
|  | 2475 | mctx.AddVariationDependencies(nil, dependencyTag, names...) | 
|  | 2476 | } | 
|  | 2477 |  | 
|  | 2478 | func (s *sdkLibrarySdkMemberType) IsInstance(module android.Module) bool { | 
|  | 2479 | _, ok := module.(*SdkLibrary) | 
|  | 2480 | return ok | 
|  | 2481 | } | 
|  | 2482 |  | 
|  | 2483 | func (s *sdkLibrarySdkMemberType) AddPrebuiltModule(ctx android.SdkMemberContext, member android.SdkMember) android.BpModule { | 
|  | 2484 | return ctx.SnapshotBuilder().AddPrebuiltModule(member, "java_sdk_library_import") | 
|  | 2485 | } | 
|  | 2486 |  | 
|  | 2487 | func (s *sdkLibrarySdkMemberType) CreateVariantPropertiesStruct() android.SdkMemberProperties { | 
|  | 2488 | return &sdkLibrarySdkMemberProperties{} | 
|  | 2489 | } | 
|  | 2490 |  | 
| Paul Duffin | 976b0e5 | 2021-04-27 23:20:26 +0100 | [diff] [blame] | 2491 | var javaSdkLibrarySdkMemberType = &sdkLibrarySdkMemberType{ | 
|  | 2492 | android.SdkMemberTypeBase{ | 
|  | 2493 | PropertyName: "java_sdk_libs", | 
|  | 2494 | SupportsSdk:  true, | 
|  | 2495 | }, | 
|  | 2496 | } | 
|  | 2497 |  | 
| Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2498 | type sdkLibrarySdkMemberProperties struct { | 
|  | 2499 | android.SdkMemberPropertiesBase | 
|  | 2500 |  | 
|  | 2501 | // Scope to per scope properties. | 
|  | 2502 | Scopes map[*apiScope]scopeProperties | 
|  | 2503 |  | 
| Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2504 | // The Java stubs source files. | 
|  | 2505 | Stub_srcs []string | 
| Paul Duffin | f7a6433 | 2020-05-13 16:54:55 +0100 | [diff] [blame] | 2506 |  | 
|  | 2507 | // The naming scheme. | 
|  | 2508 | Naming_scheme *string | 
| Paul Duffin | d7eb1c2 | 2020-05-26 20:57:10 +0100 | [diff] [blame] | 2509 |  | 
|  | 2510 | // True if the java_sdk_library_import is for a shared library, false | 
|  | 2511 | // otherwise. | 
|  | 2512 | Shared_library *bool | 
| Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 2513 |  | 
| Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2514 | // True if the stub imports should produce dex jars. | 
|  | 2515 | Compile_dex *bool | 
|  | 2516 |  | 
| Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 2517 | // The paths to the doctag files to add to the prebuilt. | 
|  | 2518 | Doctag_paths android.Paths | 
| Paul Duffin | 7b3e10a | 2021-07-15 14:14:41 +0100 | [diff] [blame] | 2519 |  | 
|  | 2520 | Permitted_packages []string | 
| Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2521 | } | 
|  | 2522 |  | 
|  | 2523 | type scopeProperties struct { | 
| Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 2524 | Jars           android.Paths | 
|  | 2525 | StubsSrcJar    android.Path | 
|  | 2526 | CurrentApiFile android.Path | 
|  | 2527 | RemovedApiFile android.Path | 
|  | 2528 | SdkVersion     string | 
| Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2529 | } | 
|  | 2530 |  | 
|  | 2531 | func (s *sdkLibrarySdkMemberProperties) PopulateFromVariant(ctx android.SdkMemberContext, variant android.Module) { | 
|  | 2532 | sdk := variant.(*SdkLibrary) | 
|  | 2533 |  | 
|  | 2534 | s.Scopes = make(map[*apiScope]scopeProperties) | 
|  | 2535 | for _, apiScope := range allApiScopes { | 
| Paul Duffin | 803a956 | 2020-05-20 11:52:25 +0100 | [diff] [blame] | 2536 | paths := sdk.findScopePaths(apiScope) | 
|  | 2537 | if paths == nil { | 
|  | 2538 | continue | 
|  | 2539 | } | 
|  | 2540 |  | 
| Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2541 | jars := paths.stubsImplPath | 
|  | 2542 | if len(jars) > 0 { | 
|  | 2543 | properties := scopeProperties{} | 
|  | 2544 | properties.Jars = jars | 
| Paul Duffin | 780c5f4 | 2020-05-12 15:52:55 +0100 | [diff] [blame] | 2545 | properties.SdkVersion = sdk.sdkVersionForStubsLibrary(ctx.SdkModuleContext(), apiScope) | 
| Paul Duffin | 0f8faff | 2020-05-20 16:18:00 +0100 | [diff] [blame] | 2546 | properties.StubsSrcJar = paths.stubsSrcJar.Path() | 
| Paul Duffin | 10269f1 | 2020-06-19 18:39:55 +0100 | [diff] [blame] | 2547 | if paths.currentApiFilePath.Valid() { | 
|  | 2548 | properties.CurrentApiFile = paths.currentApiFilePath.Path() | 
|  | 2549 | } | 
|  | 2550 | if paths.removedApiFilePath.Valid() { | 
|  | 2551 | properties.RemovedApiFile = paths.removedApiFilePath.Path() | 
|  | 2552 | } | 
| Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2553 | s.Scopes[apiScope] = properties | 
|  | 2554 | } | 
|  | 2555 | } | 
|  | 2556 |  | 
| Paul Duffin | dfa131e | 2020-05-15 20:37:11 +0100 | [diff] [blame] | 2557 | s.Naming_scheme = sdk.commonSdkLibraryProperties.Naming_scheme | 
| Paul Duffin | d7eb1c2 | 2020-05-26 20:57:10 +0100 | [diff] [blame] | 2558 | s.Shared_library = proptools.BoolPtr(sdk.sharedLibrary()) | 
| Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2559 | s.Compile_dex = sdk.dexProperties.Compile_dex | 
| Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 2560 | s.Doctag_paths = sdk.doctagPaths | 
| Paul Duffin | 7b3e10a | 2021-07-15 14:14:41 +0100 | [diff] [blame] | 2561 | s.Permitted_packages = sdk.PermittedPackagesForUpdatableBootJars() | 
| Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2562 | } | 
|  | 2563 |  | 
|  | 2564 | func (s *sdkLibrarySdkMemberProperties) AddToPropertySet(ctx android.SdkMemberContext, propertySet android.BpPropertySet) { | 
| Paul Duffin | f7a6433 | 2020-05-13 16:54:55 +0100 | [diff] [blame] | 2565 | if s.Naming_scheme != nil { | 
|  | 2566 | propertySet.AddProperty("naming_scheme", proptools.String(s.Naming_scheme)) | 
|  | 2567 | } | 
| Paul Duffin | d7eb1c2 | 2020-05-26 20:57:10 +0100 | [diff] [blame] | 2568 | if s.Shared_library != nil { | 
|  | 2569 | propertySet.AddProperty("shared_library", *s.Shared_library) | 
|  | 2570 | } | 
| Paul Duffin | 1267d87 | 2021-04-16 17:21:36 +0100 | [diff] [blame] | 2571 | if s.Compile_dex != nil { | 
|  | 2572 | propertySet.AddProperty("compile_dex", *s.Compile_dex) | 
|  | 2573 | } | 
| Paul Duffin | 7b3e10a | 2021-07-15 14:14:41 +0100 | [diff] [blame] | 2574 | if len(s.Permitted_packages) > 0 { | 
|  | 2575 | propertySet.AddProperty("permitted_packages", s.Permitted_packages) | 
|  | 2576 | } | 
| Paul Duffin | f7a6433 | 2020-05-13 16:54:55 +0100 | [diff] [blame] | 2577 |  | 
| Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2578 | for _, apiScope := range allApiScopes { | 
|  | 2579 | if properties, ok := s.Scopes[apiScope]; ok { | 
| Paul Duffin | 6b836ba | 2020-05-13 19:19:49 +0100 | [diff] [blame] | 2580 | scopeSet := propertySet.AddPropertySet(apiScope.propertyName) | 
| Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2581 |  | 
| Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2582 | scopeDir := filepath.Join("sdk_library", s.OsPrefix(), apiScope.name) | 
|  | 2583 |  | 
| Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2584 | var jars []string | 
|  | 2585 | for _, p := range properties.Jars { | 
| Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2586 | dest := filepath.Join(scopeDir, ctx.Name()+"-stubs.jar") | 
| Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2587 | ctx.SnapshotBuilder().CopyToSnapshot(p, dest) | 
|  | 2588 | jars = append(jars, dest) | 
|  | 2589 | } | 
|  | 2590 | scopeSet.AddProperty("jars", jars) | 
|  | 2591 |  | 
| Paul Duffin | 22628d5 | 2021-05-12 23:13:22 +0100 | [diff] [blame] | 2592 | if ctx.SdkModuleContext().Config().IsEnvTrue("SOONG_SDK_SNAPSHOT_USE_SRCJAR") { | 
|  | 2593 | // Copy the stubs source jar into the snapshot zip as is. | 
|  | 2594 | srcJarSnapshotPath := filepath.Join(scopeDir, ctx.Name()+".srcjar") | 
|  | 2595 | ctx.SnapshotBuilder().CopyToSnapshot(properties.StubsSrcJar, srcJarSnapshotPath) | 
|  | 2596 | scopeSet.AddProperty("stub_srcs", []string{srcJarSnapshotPath}) | 
|  | 2597 | } else { | 
|  | 2598 | // Merge the stubs source jar into the snapshot zip so that when it is unpacked | 
|  | 2599 | // the source files are also unpacked. | 
|  | 2600 | snapshotRelativeDir := filepath.Join(scopeDir, ctx.Name()+"_stub_sources") | 
|  | 2601 | ctx.SnapshotBuilder().UnzipToSnapshot(properties.StubsSrcJar, snapshotRelativeDir) | 
|  | 2602 | scopeSet.AddProperty("stub_srcs", []string{snapshotRelativeDir}) | 
|  | 2603 | } | 
| Paul Duffin | 3d1248c | 2020-04-09 00:10:17 +0100 | [diff] [blame] | 2604 |  | 
| Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 2605 | if properties.CurrentApiFile != nil { | 
|  | 2606 | currentApiSnapshotPath := filepath.Join(scopeDir, ctx.Name()+".txt") | 
|  | 2607 | ctx.SnapshotBuilder().CopyToSnapshot(properties.CurrentApiFile, currentApiSnapshotPath) | 
|  | 2608 | scopeSet.AddProperty("current_api", currentApiSnapshotPath) | 
|  | 2609 | } | 
|  | 2610 |  | 
|  | 2611 | if properties.RemovedApiFile != nil { | 
|  | 2612 | removedApiSnapshotPath := filepath.Join(scopeDir, ctx.Name()+"-removed.txt") | 
| Paul Duffin | 3dbf9fd | 2020-06-02 13:00:02 +0100 | [diff] [blame] | 2613 | ctx.SnapshotBuilder().CopyToSnapshot(properties.RemovedApiFile, removedApiSnapshotPath) | 
| Paul Duffin | 1fd005d | 2020-04-09 01:08:11 +0100 | [diff] [blame] | 2614 | scopeSet.AddProperty("removed_api", removedApiSnapshotPath) | 
|  | 2615 | } | 
|  | 2616 |  | 
| Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2617 | if properties.SdkVersion != "" { | 
|  | 2618 | scopeSet.AddProperty("sdk_version", properties.SdkVersion) | 
|  | 2619 | } | 
|  | 2620 | } | 
|  | 2621 | } | 
|  | 2622 |  | 
| Paul Duffin | a2ae7e0 | 2020-09-11 11:55:00 +0100 | [diff] [blame] | 2623 | if len(s.Doctag_paths) > 0 { | 
|  | 2624 | dests := []string{} | 
|  | 2625 | for _, p := range s.Doctag_paths { | 
|  | 2626 | dest := filepath.Join("doctags", p.Rel()) | 
|  | 2627 | ctx.SnapshotBuilder().CopyToSnapshot(p, dest) | 
|  | 2628 | dests = append(dests, dest) | 
|  | 2629 | } | 
|  | 2630 | propertySet.AddProperty("doctag_files", dests) | 
|  | 2631 | } | 
| Paul Duffin | dd46f71 | 2020-02-10 13:37:10 +0000 | [diff] [blame] | 2632 | } |