| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 1 | // Copyright (C) 2021 The Android Open Source Project | 
|  | 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 api | 
|  | 16 |  | 
|  | 17 | import ( | 
| Anton Hansson | 07a1295 | 2022-01-12 17:28:39 +0000 | [diff] [blame] | 18 | "sort" | 
|  | 19 |  | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 20 | "github.com/google/blueprint/proptools" | 
|  | 21 |  | 
|  | 22 | "android/soong/android" | 
|  | 23 | "android/soong/genrule" | 
| Anton Hansson | cb00f94 | 2022-01-13 09:45:12 +0000 | [diff] [blame] | 24 | "android/soong/java" | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 25 | ) | 
|  | 26 |  | 
| Anton Hansson | 05e944d | 2022-01-13 12:26:30 +0000 | [diff] [blame] | 27 | const art = "art.module.public.api" | 
|  | 28 | const conscrypt = "conscrypt.module.public.api" | 
|  | 29 | const i18n = "i18n.module.public.api" | 
| Anton Hansson | 09a9c4e | 2022-04-08 10:59:46 +0100 | [diff] [blame] | 30 |  | 
| Anton Hansson | 23274ee | 2022-01-28 11:31:50 +0000 | [diff] [blame] | 31 | var core_libraries_modules = []string{art, conscrypt, i18n} | 
| Anton Hansson | 05e944d | 2022-01-13 12:26:30 +0000 | [diff] [blame] | 32 |  | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 33 | // The intention behind this soong plugin is to generate a number of "merged" | 
|  | 34 | // API-related modules that would otherwise require a large amount of very | 
|  | 35 | // similar Android.bp boilerplate to define. For example, the merged current.txt | 
|  | 36 | // API definitions (created by merging the non-updatable current.txt with all | 
|  | 37 | // the module current.txts). This simplifies the addition of new android | 
|  | 38 | // modules, by reducing the number of genrules etc a new module must be added to. | 
|  | 39 |  | 
|  | 40 | // The properties of the combined_apis module type. | 
|  | 41 | type CombinedApisProperties struct { | 
| Anton Hansson | 16ff357 | 2022-01-11 18:36:35 +0000 | [diff] [blame] | 42 | // Module libraries in the bootclasspath | 
|  | 43 | Bootclasspath []string | 
| Anton Hansson | 07a1295 | 2022-01-12 17:28:39 +0000 | [diff] [blame] | 44 | // Module libraries on the bootclasspath if include_nonpublic_framework_api is true. | 
|  | 45 | Conditional_bootclasspath []string | 
| Anton Hansson | 16ff357 | 2022-01-11 18:36:35 +0000 | [diff] [blame] | 46 | // Module libraries in system server | 
|  | 47 | System_server_classpath []string | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 48 | } | 
|  | 49 |  | 
|  | 50 | type CombinedApis struct { | 
|  | 51 | android.ModuleBase | 
|  | 52 |  | 
|  | 53 | properties CombinedApisProperties | 
|  | 54 | } | 
|  | 55 |  | 
|  | 56 | func init() { | 
|  | 57 | registerBuildComponents(android.InitRegistrationContext) | 
|  | 58 | } | 
|  | 59 |  | 
|  | 60 | func registerBuildComponents(ctx android.RegistrationContext) { | 
|  | 61 | ctx.RegisterModuleType("combined_apis", combinedApisModuleFactory) | 
|  | 62 | } | 
|  | 63 |  | 
|  | 64 | var PrepareForCombinedApisTest = android.FixtureRegisterWithContext(registerBuildComponents) | 
|  | 65 |  | 
|  | 66 | func (a *CombinedApis) GenerateAndroidBuildActions(ctx android.ModuleContext) { | 
|  | 67 | } | 
|  | 68 |  | 
|  | 69 | type genruleProps struct { | 
|  | 70 | Name       *string | 
|  | 71 | Cmd        *string | 
|  | 72 | Dists      []android.Dist | 
|  | 73 | Out        []string | 
|  | 74 | Srcs       []string | 
|  | 75 | Tools      []string | 
|  | 76 | Visibility []string | 
|  | 77 | } | 
|  | 78 |  | 
| Anton Hansson | cb00f94 | 2022-01-13 09:45:12 +0000 | [diff] [blame] | 79 | type libraryProps struct { | 
|  | 80 | Name        *string | 
|  | 81 | Sdk_version *string | 
|  | 82 | Static_libs []string | 
|  | 83 | Visibility  []string | 
|  | 84 | } | 
|  | 85 |  | 
| Anton Hansson | 4468d7c | 2022-01-14 12:10:01 +0000 | [diff] [blame] | 86 | type fgProps struct { | 
|  | 87 | Name       *string | 
|  | 88 | Srcs       []string | 
|  | 89 | Visibility []string | 
|  | 90 | } | 
|  | 91 |  | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 92 | // Struct to pass parameters for the various merged [current|removed].txt file modules we create. | 
|  | 93 | type MergedTxtDefinition struct { | 
|  | 94 | // "current.txt" or "removed.txt" | 
|  | 95 | TxtFilename string | 
| Anton Hansson | 09a9c4e | 2022-04-08 10:59:46 +0100 | [diff] [blame] | 96 | // Filename in the new dist dir. "android.txt" or "android-removed.txt" | 
|  | 97 | DistFilename string | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 98 | // The module for the non-updatable / non-module part of the api. | 
|  | 99 | BaseTxt string | 
|  | 100 | // The list of modules that are relevant for this merged txt. | 
|  | 101 | Modules []string | 
|  | 102 | // The output tag for each module to use.e.g. {.public.api.txt} for current.txt | 
|  | 103 | ModuleTag string | 
|  | 104 | // public, system, module-lib or system-server | 
|  | 105 | Scope string | 
|  | 106 | } | 
|  | 107 |  | 
|  | 108 | func createMergedTxt(ctx android.LoadHookContext, txt MergedTxtDefinition) { | 
|  | 109 | metalavaCmd := "$(location metalava)" | 
|  | 110 | // Silence reflection warnings. See b/168689341 | 
|  | 111 | metalavaCmd += " -J--add-opens=java.base/java.util=ALL-UNNAMED " | 
|  | 112 | metalavaCmd += " --quiet --no-banner --format=v2 " | 
|  | 113 |  | 
|  | 114 | filename := txt.TxtFilename | 
|  | 115 | if txt.Scope != "public" { | 
|  | 116 | filename = txt.Scope + "-" + filename | 
|  | 117 | } | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 118 | props := genruleProps{} | 
|  | 119 | props.Name = proptools.StringPtr(ctx.ModuleName() + "-" + filename) | 
|  | 120 | props.Tools = []string{"metalava"} | 
| Anton Hansson | 16ff357 | 2022-01-11 18:36:35 +0000 | [diff] [blame] | 121 | props.Out = []string{filename} | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 122 | props.Cmd = proptools.StringPtr(metalavaCmd + "$(in) --api $(out)") | 
| Anton Hansson | fd31645 | 2022-01-14 11:15:52 +0000 | [diff] [blame] | 123 | props.Srcs = append([]string{txt.BaseTxt}, createSrcs(txt.Modules, txt.ModuleTag)...) | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 124 | props.Dists = []android.Dist{ | 
|  | 125 | { | 
|  | 126 | Targets: []string{"droidcore"}, | 
|  | 127 | Dir:     proptools.StringPtr("api"), | 
|  | 128 | Dest:    proptools.StringPtr(filename), | 
|  | 129 | }, | 
|  | 130 | { | 
| Anton Hansson | 09a9c4e | 2022-04-08 10:59:46 +0100 | [diff] [blame] | 131 | Targets: []string{"api_txt", "sdk"}, | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 132 | Dir:     proptools.StringPtr("apistubs/android/" + txt.Scope + "/api"), | 
| Anton Hansson | 09a9c4e | 2022-04-08 10:59:46 +0100 | [diff] [blame] | 133 | Dest:    proptools.StringPtr(txt.DistFilename), | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 134 | }, | 
|  | 135 | } | 
|  | 136 | props.Visibility = []string{"//visibility:public"} | 
|  | 137 | ctx.CreateModule(genrule.GenRuleFactory, &props) | 
|  | 138 | } | 
|  | 139 |  | 
|  | 140 | func createMergedStubsSrcjar(ctx android.LoadHookContext, modules []string) { | 
|  | 141 | props := genruleProps{} | 
|  | 142 | props.Name = proptools.StringPtr(ctx.ModuleName() + "-current.srcjar") | 
|  | 143 | props.Tools = []string{"merge_zips"} | 
|  | 144 | props.Out = []string{"current.srcjar"} | 
|  | 145 | props.Cmd = proptools.StringPtr("$(location merge_zips) $(out) $(in)") | 
| Anton Hansson | fd31645 | 2022-01-14 11:15:52 +0000 | [diff] [blame] | 146 | props.Srcs = append([]string{":api-stubs-docs-non-updatable"}, createSrcs(modules, "{.public.stubs.source}")...) | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 147 | props.Visibility = []string{"//visibility:private"} // Used by make module in //development, mind | 
|  | 148 | ctx.CreateModule(genrule.GenRuleFactory, &props) | 
|  | 149 | } | 
|  | 150 |  | 
| Anton Hansson | cc18e03 | 2022-01-12 14:45:22 +0000 | [diff] [blame] | 151 | // This produces the same annotations.zip as framework-doc-stubs, but by using | 
|  | 152 | // outputs from individual modules instead of all the source code. | 
|  | 153 | func createMergedAnnotations(ctx android.LoadHookContext, modules []string) { | 
|  | 154 | props := genruleProps{} | 
|  | 155 | props.Name = proptools.StringPtr("sdk-annotations.zip") | 
|  | 156 | props.Tools = []string{"merge_annotation_zips", "soong_zip"} | 
|  | 157 | props.Out = []string{"annotations.zip"} | 
|  | 158 | props.Cmd = proptools.StringPtr("$(location merge_annotation_zips) $(genDir)/out $(in) && " + | 
|  | 159 | "$(location soong_zip) -o $(out) -C $(genDir)/out -D $(genDir)/out") | 
| Anton Hansson | fd31645 | 2022-01-14 11:15:52 +0000 | [diff] [blame] | 160 | props.Srcs = append([]string{":android-non-updatable-doc-stubs{.annotations.zip}"}, createSrcs(modules, "{.public.annotations.zip}")...) | 
| Anton Hansson | cc18e03 | 2022-01-12 14:45:22 +0000 | [diff] [blame] | 161 | ctx.CreateModule(genrule.GenRuleFactory, &props) | 
|  | 162 | } | 
|  | 163 |  | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 164 | func createFilteredApiVersions(ctx android.LoadHookContext, modules []string) { | 
| Anton Hansson | 05e944d | 2022-01-13 12:26:30 +0000 | [diff] [blame] | 165 | // For the filtered api versions, we prune all APIs except art module's APIs. because | 
|  | 166 | // 1) ART apis are available by default to all modules, while other module-to-module deps are | 
|  | 167 | //    explicit and probably receive more scrutiny anyway | 
|  | 168 | // 2) The number of ART/libcore APIs is large, so not linting them would create a large gap | 
|  | 169 | // 3) It's a compromise. Ideally we wouldn't be filtering out any module APIs, and have | 
|  | 170 | //    per-module lint databases that excludes just that module's APIs. Alas, that's more | 
|  | 171 | //    difficult to achieve. | 
|  | 172 | modules = remove(modules, art) | 
|  | 173 |  | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 174 | props := genruleProps{} | 
|  | 175 | props.Name = proptools.StringPtr("api-versions-xml-public-filtered") | 
|  | 176 | props.Tools = []string{"api_versions_trimmer"} | 
|  | 177 | props.Out = []string{"api-versions-public-filtered.xml"} | 
|  | 178 | props.Cmd = proptools.StringPtr("$(location api_versions_trimmer) $(out) $(in)") | 
|  | 179 | // Note: order matters: first parameter is the full api-versions.xml | 
|  | 180 | // after that the stubs files in any order | 
|  | 181 | // stubs files are all modules that export API surfaces EXCEPT ART | 
| Anton Hansson | fd31645 | 2022-01-14 11:15:52 +0000 | [diff] [blame] | 182 | props.Srcs = append([]string{":framework-doc-stubs{.api_versions.xml}"}, createSrcs(modules, ".stubs{.jar}")...) | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 183 | props.Dists = []android.Dist{{Targets: []string{"sdk"}}} | 
|  | 184 | ctx.CreateModule(genrule.GenRuleFactory, &props) | 
|  | 185 | } | 
|  | 186 |  | 
| Anton Hansson | c6e9d2f | 2022-01-25 15:53:43 +0000 | [diff] [blame] | 187 | func createMergedPublicStubs(ctx android.LoadHookContext, modules []string) { | 
|  | 188 | props := libraryProps{} | 
|  | 189 | props.Name = proptools.StringPtr("all-modules-public-stubs") | 
|  | 190 | props.Static_libs = transformArray(modules, "", ".stubs") | 
|  | 191 | props.Sdk_version = proptools.StringPtr("module_current") | 
|  | 192 | props.Visibility = []string{"//frameworks/base"} | 
|  | 193 | ctx.CreateModule(java.LibraryFactory, &props) | 
|  | 194 | } | 
|  | 195 |  | 
|  | 196 | func createMergedSystemStubs(ctx android.LoadHookContext, modules []string) { | 
|  | 197 | props := libraryProps{} | 
| Anton Hansson | c6e9d2f | 2022-01-25 15:53:43 +0000 | [diff] [blame] | 198 | props.Name = proptools.StringPtr("all-modules-system-stubs") | 
| Paul Duffin | 57533b4 | 2022-01-25 16:25:35 +0000 | [diff] [blame] | 199 | props.Static_libs = transformArray(modules, "", ".stubs.system") | 
| Anton Hansson | c6e9d2f | 2022-01-25 15:53:43 +0000 | [diff] [blame] | 200 | props.Sdk_version = proptools.StringPtr("module_current") | 
|  | 201 | props.Visibility = []string{"//frameworks/base"} | 
|  | 202 | ctx.CreateModule(java.LibraryFactory, &props) | 
|  | 203 | } | 
|  | 204 |  | 
| Anton Hansson | 23274ee | 2022-01-28 11:31:50 +0000 | [diff] [blame] | 205 | func createMergedFrameworkImpl(ctx android.LoadHookContext, modules []string) { | 
|  | 206 | // This module is for the "framework-all" module, which should not include the core libraries. | 
|  | 207 | modules = removeAll(modules, core_libraries_modules) | 
| Anton Hansson | 23274ee | 2022-01-28 11:31:50 +0000 | [diff] [blame] | 208 | props := libraryProps{} | 
|  | 209 | props.Name = proptools.StringPtr("all-framework-module-impl") | 
|  | 210 | props.Static_libs = transformArray(modules, "", ".impl") | 
| Anton Hansson | 23274ee | 2022-01-28 11:31:50 +0000 | [diff] [blame] | 211 | props.Sdk_version = proptools.StringPtr("module_current") | 
|  | 212 | props.Visibility = []string{"//frameworks/base"} | 
|  | 213 | ctx.CreateModule(java.LibraryFactory, &props) | 
|  | 214 | } | 
|  | 215 |  | 
|  | 216 | func createMergedFrameworkModuleLibStubs(ctx android.LoadHookContext, modules []string) { | 
| Anton Hansson | cb00f94 | 2022-01-13 09:45:12 +0000 | [diff] [blame] | 217 | // The user of this module compiles against the "core" SDK, so remove core libraries to avoid dupes. | 
| Anton Hansson | 23274ee | 2022-01-28 11:31:50 +0000 | [diff] [blame] | 218 | modules = removeAll(modules, core_libraries_modules) | 
| Anton Hansson | cb00f94 | 2022-01-13 09:45:12 +0000 | [diff] [blame] | 219 | props := libraryProps{} | 
|  | 220 | props.Name = proptools.StringPtr("framework-updatable-stubs-module_libs_api") | 
| Anton Hansson | fd31645 | 2022-01-14 11:15:52 +0000 | [diff] [blame] | 221 | props.Static_libs = transformArray(modules, "", ".stubs.module_lib") | 
| Anton Hansson | cb00f94 | 2022-01-13 09:45:12 +0000 | [diff] [blame] | 222 | props.Sdk_version = proptools.StringPtr("module_current") | 
|  | 223 | props.Visibility = []string{"//frameworks/base"} | 
|  | 224 | ctx.CreateModule(java.LibraryFactory, &props) | 
|  | 225 | } | 
|  | 226 |  | 
| Anton Hansson | 4468d7c | 2022-01-14 12:10:01 +0000 | [diff] [blame] | 227 | func createPublicStubsSourceFilegroup(ctx android.LoadHookContext, modules []string) { | 
|  | 228 | props := fgProps{} | 
|  | 229 | props.Name = proptools.StringPtr("all-modules-public-stubs-source") | 
|  | 230 | props.Srcs = createSrcs(modules, "{.public.stubs.source}") | 
|  | 231 | props.Visibility = []string{"//frameworks/base"} | 
|  | 232 | ctx.CreateModule(android.FileGroupFactory, &props) | 
|  | 233 | } | 
|  | 234 |  | 
| Anton Hansson | 07a1295 | 2022-01-12 17:28:39 +0000 | [diff] [blame] | 235 | func createMergedTxts(ctx android.LoadHookContext, bootclasspath, system_server_classpath []string) { | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 236 | var textFiles []MergedTxtDefinition | 
| Anton Hansson | 16ff357 | 2022-01-11 18:36:35 +0000 | [diff] [blame] | 237 |  | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 238 | tagSuffix := []string{".api.txt}", ".removed-api.txt}"} | 
| Anton Hansson | 09a9c4e | 2022-04-08 10:59:46 +0100 | [diff] [blame] | 239 | distFilename := []string{"android.txt", "android-removed.txt"} | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 240 | for i, f := range []string{"current.txt", "removed.txt"} { | 
|  | 241 | textFiles = append(textFiles, MergedTxtDefinition{ | 
| Anton Hansson | 09a9c4e | 2022-04-08 10:59:46 +0100 | [diff] [blame] | 242 | TxtFilename:  f, | 
|  | 243 | DistFilename: distFilename[i], | 
|  | 244 | BaseTxt:      ":non-updatable-" + f, | 
|  | 245 | Modules:      bootclasspath, | 
|  | 246 | ModuleTag:    "{.public" + tagSuffix[i], | 
|  | 247 | Scope:        "public", | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 248 | }) | 
|  | 249 | textFiles = append(textFiles, MergedTxtDefinition{ | 
| Anton Hansson | 09a9c4e | 2022-04-08 10:59:46 +0100 | [diff] [blame] | 250 | TxtFilename:  f, | 
|  | 251 | DistFilename: distFilename[i], | 
|  | 252 | BaseTxt:      ":non-updatable-system-" + f, | 
|  | 253 | Modules:      bootclasspath, | 
|  | 254 | ModuleTag:    "{.system" + tagSuffix[i], | 
|  | 255 | Scope:        "system", | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 256 | }) | 
|  | 257 | textFiles = append(textFiles, MergedTxtDefinition{ | 
| Anton Hansson | 09a9c4e | 2022-04-08 10:59:46 +0100 | [diff] [blame] | 258 | TxtFilename:  f, | 
|  | 259 | DistFilename: distFilename[i], | 
|  | 260 | BaseTxt:      ":non-updatable-module-lib-" + f, | 
|  | 261 | Modules:      bootclasspath, | 
|  | 262 | ModuleTag:    "{.module-lib" + tagSuffix[i], | 
|  | 263 | Scope:        "module-lib", | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 264 | }) | 
|  | 265 | textFiles = append(textFiles, MergedTxtDefinition{ | 
| Anton Hansson | 09a9c4e | 2022-04-08 10:59:46 +0100 | [diff] [blame] | 266 | TxtFilename:  f, | 
|  | 267 | DistFilename: distFilename[i], | 
|  | 268 | BaseTxt:      ":non-updatable-system-server-" + f, | 
|  | 269 | Modules:      system_server_classpath, | 
|  | 270 | ModuleTag:    "{.system-server" + tagSuffix[i], | 
|  | 271 | Scope:        "system-server", | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 272 | }) | 
|  | 273 | } | 
|  | 274 | for _, txt := range textFiles { | 
|  | 275 | createMergedTxt(ctx, txt) | 
|  | 276 | } | 
|  | 277 | } | 
|  | 278 |  | 
|  | 279 | func (a *CombinedApis) createInternalModules(ctx android.LoadHookContext) { | 
| Anton Hansson | 07a1295 | 2022-01-12 17:28:39 +0000 | [diff] [blame] | 280 | bootclasspath := a.properties.Bootclasspath | 
|  | 281 | if ctx.Config().VendorConfig("ANDROID").Bool("include_nonpublic_framework_api") { | 
|  | 282 | bootclasspath = append(bootclasspath, a.properties.Conditional_bootclasspath...) | 
|  | 283 | sort.Strings(bootclasspath) | 
|  | 284 | } | 
|  | 285 | createMergedTxts(ctx, bootclasspath, a.properties.System_server_classpath) | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 286 |  | 
| Anton Hansson | 07a1295 | 2022-01-12 17:28:39 +0000 | [diff] [blame] | 287 | createMergedStubsSrcjar(ctx, bootclasspath) | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 288 |  | 
| Anton Hansson | c6e9d2f | 2022-01-25 15:53:43 +0000 | [diff] [blame] | 289 | createMergedPublicStubs(ctx, bootclasspath) | 
|  | 290 | createMergedSystemStubs(ctx, bootclasspath) | 
| Anton Hansson | 23274ee | 2022-01-28 11:31:50 +0000 | [diff] [blame] | 291 | createMergedFrameworkModuleLibStubs(ctx, bootclasspath) | 
|  | 292 | createMergedFrameworkImpl(ctx, bootclasspath) | 
| Anton Hansson | cb00f94 | 2022-01-13 09:45:12 +0000 | [diff] [blame] | 293 |  | 
| Anton Hansson | 05e944d | 2022-01-13 12:26:30 +0000 | [diff] [blame] | 294 | createMergedAnnotations(ctx, bootclasspath) | 
| Anton Hansson | cc18e03 | 2022-01-12 14:45:22 +0000 | [diff] [blame] | 295 |  | 
| Anton Hansson | 05e944d | 2022-01-13 12:26:30 +0000 | [diff] [blame] | 296 | createFilteredApiVersions(ctx, bootclasspath) | 
| Anton Hansson | 4468d7c | 2022-01-14 12:10:01 +0000 | [diff] [blame] | 297 |  | 
|  | 298 | createPublicStubsSourceFilegroup(ctx, bootclasspath) | 
| Anton Hansson | 0860aaf | 2021-10-08 16:48:03 +0100 | [diff] [blame] | 299 | } | 
|  | 300 |  | 
|  | 301 | func combinedApisModuleFactory() android.Module { | 
|  | 302 | module := &CombinedApis{} | 
|  | 303 | module.AddProperties(&module.properties) | 
|  | 304 | android.InitAndroidModule(module) | 
|  | 305 | android.AddLoadHook(module, func(ctx android.LoadHookContext) { module.createInternalModules(ctx) }) | 
|  | 306 | return module | 
|  | 307 | } | 
| Anton Hansson | fd31645 | 2022-01-14 11:15:52 +0000 | [diff] [blame] | 308 |  | 
|  | 309 | // Various utility methods below. | 
|  | 310 |  | 
|  | 311 | // Creates an array of ":<m><tag>" for each m in <modules>. | 
|  | 312 | func createSrcs(modules []string, tag string) []string { | 
|  | 313 | return transformArray(modules, ":", tag) | 
|  | 314 | } | 
|  | 315 |  | 
|  | 316 | // Creates an array of "<prefix><m><suffix>", for each m in <modules>. | 
|  | 317 | func transformArray(modules []string, prefix, suffix string) []string { | 
|  | 318 | a := make([]string, 0, len(modules)) | 
|  | 319 | for _, module := range modules { | 
|  | 320 | a = append(a, prefix+module+suffix) | 
|  | 321 | } | 
|  | 322 | return a | 
|  | 323 | } | 
|  | 324 |  | 
|  | 325 | func removeAll(s []string, vs []string) []string { | 
|  | 326 | for _, v := range vs { | 
|  | 327 | s = remove(s, v) | 
|  | 328 | } | 
|  | 329 | return s | 
|  | 330 | } | 
|  | 331 |  | 
|  | 332 | func remove(s []string, v string) []string { | 
|  | 333 | s2 := make([]string, 0, len(s)) | 
|  | 334 | for _, sv := range s { | 
|  | 335 | if sv != v { | 
|  | 336 | s2 = append(s2, sv) | 
|  | 337 | } | 
|  | 338 | } | 
|  | 339 | return s2 | 
|  | 340 | } |