LaMont Jones | aa005ae | 2023-12-19 19:01:57 +0000 | [diff] [blame] | 1 | // Copyright 2023 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 android |
| 16 | |
| 17 | import ( |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 18 | "fmt" |
| 19 | "io" |
Yu Liu | 67a2842 | 2024-03-05 00:36:31 +0000 | [diff] [blame] | 20 | "maps" |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 21 | "reflect" |
| 22 | |
LaMont Jones | aa005ae | 2023-12-19 19:01:57 +0000 | [diff] [blame] | 23 | "github.com/google/blueprint" |
| 24 | ) |
| 25 | |
| 26 | var ( |
| 27 | mergeAconfigFilesRule = pctx.AndroidStaticRule("mergeAconfigFilesRule", |
| 28 | blueprint.RuleParams{ |
| 29 | Command: `${aconfig} dump --dedup --format protobuf --out $out $flags`, |
| 30 | CommandDeps: []string{"${aconfig}"}, |
| 31 | }, "flags") |
| 32 | _ = pctx.HostBinToolVariable("aconfig", "aconfig") |
| 33 | ) |
| 34 | |
| 35 | // Provider published by aconfig_value_set |
| 36 | type AconfigDeclarationsProviderData struct { |
| 37 | Package string |
| 38 | Container string |
Zi Wang | 0e5d16c | 2024-02-08 06:19:34 +0000 | [diff] [blame] | 39 | Exportable bool |
LaMont Jones | aa005ae | 2023-12-19 19:01:57 +0000 | [diff] [blame] | 40 | IntermediateCacheOutputPath WritablePath |
| 41 | IntermediateDumpOutputPath WritablePath |
| 42 | } |
| 43 | |
| 44 | var AconfigDeclarationsProviderKey = blueprint.NewProvider[AconfigDeclarationsProviderData]() |
| 45 | |
LaMont Jones | 21d04d9 | 2024-06-11 11:28:54 -0700 | [diff] [blame] | 46 | type AconfigReleaseDeclarationsProviderData map[string]AconfigDeclarationsProviderData |
| 47 | |
| 48 | var AconfigReleaseDeclarationsProviderKey = blueprint.NewProvider[AconfigReleaseDeclarationsProviderData]() |
| 49 | |
Yu Liu | 67a2842 | 2024-03-05 00:36:31 +0000 | [diff] [blame] | 50 | type ModeInfo struct { |
| 51 | Container string |
| 52 | Mode string |
| 53 | } |
| 54 | type CodegenInfo struct { |
| 55 | // AconfigDeclarations is the name of the aconfig_declarations modules that |
| 56 | // the codegen module is associated with |
| 57 | AconfigDeclarations []string |
| 58 | |
| 59 | // Paths to the cache files of the associated aconfig_declaration modules |
| 60 | IntermediateCacheOutputPaths Paths |
| 61 | |
| 62 | // Paths to the srcjar files generated from the java_aconfig_library modules |
| 63 | Srcjars Paths |
| 64 | |
| 65 | ModeInfos map[string]ModeInfo |
| 66 | } |
| 67 | |
| 68 | var CodegenInfoProvider = blueprint.NewProvider[CodegenInfo]() |
| 69 | |
| 70 | func propagateModeInfos(ctx ModuleContext, module Module, to, from map[string]ModeInfo) { |
| 71 | if len(from) > 0 { |
| 72 | depTag := ctx.OtherModuleDependencyTag(module) |
| 73 | if tag, ok := depTag.(PropagateAconfigValidationDependencyTag); ok && tag.PropagateAconfigValidation() { |
| 74 | maps.Copy(to, from) |
| 75 | } |
| 76 | } |
| 77 | } |
| 78 | |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 79 | type aconfigPropagatingDeclarationsInfo struct { |
| 80 | AconfigFiles map[string]Paths |
Yu Liu | 67a2842 | 2024-03-05 00:36:31 +0000 | [diff] [blame] | 81 | ModeInfos map[string]ModeInfo |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Justin Yun | 40182b6 | 2024-05-07 10:22:19 +0900 | [diff] [blame] | 84 | var AconfigPropagatingProviderKey = blueprint.NewProvider[aconfigPropagatingDeclarationsInfo]() |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 85 | |
Yu Liu | 67a2842 | 2024-03-05 00:36:31 +0000 | [diff] [blame] | 86 | func VerifyAconfigBuildMode(ctx ModuleContext, container string, module blueprint.Module, asError bool) { |
Justin Yun | 40182b6 | 2024-05-07 10:22:19 +0900 | [diff] [blame] | 87 | if dep, ok := OtherModuleProvider(ctx, module, AconfigPropagatingProviderKey); ok { |
Yu Liu | 67a2842 | 2024-03-05 00:36:31 +0000 | [diff] [blame] | 88 | for k, v := range dep.ModeInfos { |
| 89 | msg := fmt.Sprintf("%s/%s depends on %s/%s/%s across containers\n", |
| 90 | module.Name(), container, k, v.Container, v.Mode) |
| 91 | if v.Container != container && v.Mode != "exported" && v.Mode != "force-read-only" { |
| 92 | if asError { |
| 93 | ctx.ModuleErrorf(msg) |
| 94 | } else { |
| 95 | fmt.Printf("WARNING: " + msg) |
| 96 | } |
| 97 | } else { |
| 98 | if !asError { |
| 99 | fmt.Printf("PASSED: " + msg) |
| 100 | } |
| 101 | } |
| 102 | } |
| 103 | } |
| 104 | } |
| 105 | |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 106 | func aconfigUpdateAndroidBuildActions(ctx ModuleContext) { |
| 107 | mergedAconfigFiles := make(map[string]Paths) |
Yu Liu | 67a2842 | 2024-03-05 00:36:31 +0000 | [diff] [blame] | 108 | mergedModeInfos := make(map[string]ModeInfo) |
| 109 | |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 110 | ctx.VisitDirectDepsIgnoreBlueprint(func(module Module) { |
Yu Liu | 67a2842 | 2024-03-05 00:36:31 +0000 | [diff] [blame] | 111 | if aconfig_dep, ok := OtherModuleProvider(ctx, module, CodegenInfoProvider); ok && len(aconfig_dep.ModeInfos) > 0 { |
| 112 | maps.Copy(mergedModeInfos, aconfig_dep.ModeInfos) |
| 113 | } |
| 114 | |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 115 | // If any of our dependencies have aconfig declarations (directly or propagated), then merge those and provide them. |
| 116 | if dep, ok := OtherModuleProvider(ctx, module, AconfigDeclarationsProviderKey); ok { |
| 117 | mergedAconfigFiles[dep.Container] = append(mergedAconfigFiles[dep.Container], dep.IntermediateCacheOutputPath) |
| 118 | } |
LaMont Jones | 21d04d9 | 2024-06-11 11:28:54 -0700 | [diff] [blame] | 119 | // If we were generating on-device artifacts for other release configs, we would need to add code here to propagate |
| 120 | // those artifacts as well. See also b/298444886. |
Justin Yun | 40182b6 | 2024-05-07 10:22:19 +0900 | [diff] [blame] | 121 | if dep, ok := OtherModuleProvider(ctx, module, AconfigPropagatingProviderKey); ok { |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 122 | for container, v := range dep.AconfigFiles { |
| 123 | mergedAconfigFiles[container] = append(mergedAconfigFiles[container], v...) |
| 124 | } |
Yu Liu | 67a2842 | 2024-03-05 00:36:31 +0000 | [diff] [blame] | 125 | propagateModeInfos(ctx, module, mergedModeInfos, dep.ModeInfos) |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 126 | } |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 127 | }) |
| 128 | // We only need to set the provider if we have aconfig files. |
| 129 | if len(mergedAconfigFiles) > 0 { |
Spandan Das | 87f5ee4 | 2024-03-28 21:22:37 +0000 | [diff] [blame] | 130 | for _, container := range SortedKeys(mergedAconfigFiles) { |
| 131 | aconfigFiles := mergedAconfigFiles[container] |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 132 | mergedAconfigFiles[container] = mergeAconfigFiles(ctx, container, aconfigFiles, true) |
| 133 | } |
| 134 | |
Justin Yun | 40182b6 | 2024-05-07 10:22:19 +0900 | [diff] [blame] | 135 | SetProvider(ctx, AconfigPropagatingProviderKey, aconfigPropagatingDeclarationsInfo{ |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 136 | AconfigFiles: mergedAconfigFiles, |
Yu Liu | 67a2842 | 2024-03-05 00:36:31 +0000 | [diff] [blame] | 137 | ModeInfos: mergedModeInfos, |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 138 | }) |
Yu Liu | 9a99313 | 2024-08-27 23:21:06 +0000 | [diff] [blame^] | 139 | ctx.setAconfigPaths(getAconfigFilePaths(ctx.Module().base(), mergedAconfigFiles)) |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 140 | } |
| 141 | } |
| 142 | |
| 143 | func aconfigUpdateAndroidMkData(ctx fillInEntriesContext, mod Module, data *AndroidMkData) { |
Yu Liu | 663e450 | 2024-08-12 18:23:59 +0000 | [diff] [blame] | 144 | info, ok := OtherModuleProvider(ctx, mod, AconfigPropagatingProviderKey) |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 145 | // If there is no aconfigPropagatingProvider, or there are no AconfigFiles, then we are done. |
| 146 | if !ok || len(info.AconfigFiles) == 0 { |
| 147 | return |
| 148 | } |
| 149 | data.Extra = append(data.Extra, func(w io.Writer, outputFile Path) { |
| 150 | AndroidMkEmitAssignList(w, "LOCAL_ACONFIG_FILES", getAconfigFilePaths(mod.base(), info.AconfigFiles).Strings()) |
| 151 | }) |
| 152 | // If there is a Custom writer, it needs to support this provider. |
| 153 | if data.Custom != nil { |
| 154 | switch reflect.TypeOf(mod).String() { |
| 155 | case "*aidl.aidlApi": // writes non-custom before adding .phony |
| 156 | case "*android_sdk.sdkRepoHost": // doesn't go through base_rules |
| 157 | case "*apex.apexBundle": // aconfig_file properties written |
| 158 | case "*bpf.bpf": // properties written (both for module and objs) |
| 159 | case "*genrule.Module": // writes non-custom before adding .phony |
| 160 | case "*java.SystemModules": // doesn't go through base_rules |
| 161 | case "*phony.phony": // properties written |
| 162 | case "*phony.PhonyRule": // writes phony deps and acts like `.PHONY` |
| 163 | case "*sysprop.syspropLibrary": // properties written |
| 164 | default: |
| 165 | panic(fmt.Errorf("custom make rules do not handle aconfig files for %q (%q) module %q", ctx.ModuleType(mod), reflect.TypeOf(mod), mod)) |
| 166 | } |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | func aconfigUpdateAndroidMkEntries(ctx fillInEntriesContext, mod Module, entries *[]AndroidMkEntries) { |
| 171 | // If there are no entries, then we can ignore this module, even if it has aconfig files. |
| 172 | if len(*entries) == 0 { |
| 173 | return |
| 174 | } |
Yu Liu | 663e450 | 2024-08-12 18:23:59 +0000 | [diff] [blame] | 175 | info, ok := OtherModuleProvider(ctx, mod, AconfigPropagatingProviderKey) |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 176 | if !ok || len(info.AconfigFiles) == 0 { |
| 177 | return |
| 178 | } |
| 179 | // All of the files in the module potentially depend on the aconfig flag values. |
| 180 | for idx, _ := range *entries { |
| 181 | (*entries)[idx].ExtraEntries = append((*entries)[idx].ExtraEntries, |
| 182 | func(ctx AndroidMkExtraEntriesContext, entries *AndroidMkEntries) { |
Justin Yun | 40182b6 | 2024-05-07 10:22:19 +0900 | [diff] [blame] | 183 | entries.AddPaths("LOCAL_ACONFIG_FILES", getAconfigFilePaths(mod.base(), info.AconfigFiles)) |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 184 | }, |
| 185 | ) |
| 186 | |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | func mergeAconfigFiles(ctx ModuleContext, container string, inputs Paths, generateRule bool) Paths { |
Spandan Das | 4d4edfb | 2024-02-05 19:27:06 +0000 | [diff] [blame] | 191 | inputs = SortedUniquePaths(inputs) |
LaMont Jones | aa005ae | 2023-12-19 19:01:57 +0000 | [diff] [blame] | 192 | if len(inputs) == 1 { |
| 193 | return Paths{inputs[0]} |
| 194 | } |
| 195 | |
Yu Liu | edeadbf | 2024-01-10 23:07:35 +0000 | [diff] [blame] | 196 | output := PathForModuleOut(ctx, container, "aconfig_merged.pb") |
LaMont Jones | aa005ae | 2023-12-19 19:01:57 +0000 | [diff] [blame] | 197 | |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 198 | if generateRule { |
| 199 | ctx.Build(pctx, BuildParams{ |
| 200 | Rule: mergeAconfigFilesRule, |
| 201 | Description: "merge aconfig files", |
| 202 | Inputs: inputs, |
| 203 | Output: output, |
| 204 | Args: map[string]string{ |
| 205 | "flags": JoinWithPrefix(inputs.Strings(), "--cache "), |
| 206 | }, |
| 207 | }) |
| 208 | } |
LaMont Jones | aa005ae | 2023-12-19 19:01:57 +0000 | [diff] [blame] | 209 | |
| 210 | return Paths{output} |
| 211 | } |
LaMont Jones | acae2d7 | 2024-01-09 22:53:52 +0000 | [diff] [blame] | 212 | |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 213 | func getAconfigFilePaths(m *ModuleBase, aconfigFiles map[string]Paths) (paths Paths) { |
LaMont Jones | d4a6cc6 | 2024-06-28 14:30:59 +0000 | [diff] [blame] | 214 | // TODO(b/311155208): The default container here should be system. |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 215 | container := "system" |
LaMont Jones | acae2d7 | 2024-01-09 22:53:52 +0000 | [diff] [blame] | 216 | |
| 217 | if m.SocSpecific() { |
| 218 | container = "vendor" |
| 219 | } else if m.ProductSpecific() { |
| 220 | container = "product" |
| 221 | } else if m.SystemExtSpecific() { |
| 222 | container = "system_ext" |
| 223 | } |
| 224 | |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 225 | paths = append(paths, aconfigFiles[container]...) |
LaMont Jones | d4a6cc6 | 2024-06-28 14:30:59 +0000 | [diff] [blame] | 226 | if container == "system" { |
| 227 | // TODO(b/311155208): Once the default container is system, we can drop this. |
| 228 | paths = append(paths, aconfigFiles[""]...) |
| 229 | } |
| 230 | if container != "system" { |
| 231 | if len(aconfigFiles[container]) == 0 && len(aconfigFiles[""]) > 0 { |
| 232 | // TODO(b/308625757): Either we guessed the container wrong, or the flag is misdeclared. |
| 233 | // For now, just include the system (aka "") container if we get here. |
| 234 | //fmt.Printf("container_mismatch: module=%v container=%v files=%v\n", m, container, aconfigFiles) |
| 235 | } |
| 236 | paths = append(paths, aconfigFiles[""]...) |
| 237 | } |
LaMont Jones | b509938 | 2024-01-10 23:42:36 +0000 | [diff] [blame] | 238 | return |
LaMont Jones | acae2d7 | 2024-01-09 22:53:52 +0000 | [diff] [blame] | 239 | } |