blob: 50429b07abd5f29e157348d4f84ae4719c4605ff [file] [log] [blame]
Paul Duffin3451e162021-01-20 15:16:56 +00001// 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
15package java
16
17import (
Paul Duffina1d60252021-01-21 18:13:43 +000018 "fmt"
Paul Duffinea465fb2022-03-04 18:39:29 +000019 "io"
Paul Duffin7c955552021-04-19 13:23:53 +010020 "path/filepath"
Paul Duffinba6afd02019-11-19 19:44:10 +000021 "reflect"
Paul Duffin3451e162021-01-20 15:16:56 +000022 "strings"
23
24 "android/soong/android"
Paul Duffina1d60252021-01-21 18:13:43 +000025 "android/soong/dexpreopt"
Colin Crossc33e5212021-05-25 18:16:02 -070026
Paul Duffinc7ef9892021-03-23 23:21:59 +000027 "github.com/google/blueprint/proptools"
Martin Stjernholmb79c7f12021-03-17 00:26:25 +000028
Paul Duffin3451e162021-01-20 15:16:56 +000029 "github.com/google/blueprint"
30)
31
32func init() {
Paul Duffin7771eba2021-04-23 14:25:28 +010033 registerBootclasspathFragmentBuildComponents(android.InitRegistrationContext)
Paul Duffinf7f65da2021-03-10 15:00:46 +000034
Paul Duffin4e7d1c42022-05-13 13:12:19 +000035 android.RegisterSdkMemberType(BootclasspathFragmentSdkMemberType)
Paul Duffin3451e162021-01-20 15:16:56 +000036}
37
Paul Duffin7771eba2021-04-23 14:25:28 +010038func registerBootclasspathFragmentBuildComponents(ctx android.RegistrationContext) {
Paul Duffin7771eba2021-04-23 14:25:28 +010039 ctx.RegisterModuleType("bootclasspath_fragment", bootclasspathFragmentFactory)
Paul Duffinc15b9e92022-03-31 15:42:30 +010040 ctx.RegisterModuleType("bootclasspath_fragment_test", testBootclasspathFragmentFactory)
Paul Duffin7771eba2021-04-23 14:25:28 +010041 ctx.RegisterModuleType("prebuilt_bootclasspath_fragment", prebuiltBootclasspathFragmentFactory)
Paul Duffin3451e162021-01-20 15:16:56 +000042}
43
Paul Duffin4e7d1c42022-05-13 13:12:19 +000044// BootclasspathFragmentSdkMemberType is the member type used to add bootclasspath_fragments to
45// the SDK snapshot. It is exported for use by apex.
46var BootclasspathFragmentSdkMemberType = &bootclasspathFragmentMemberType{
47 SdkMemberTypeBase: android.SdkMemberTypeBase{
48 PropertyName: "bootclasspath_fragments",
49 SupportsSdk: true,
50 },
51}
52
Paul Duffin65898052021-04-20 22:47:03 +010053type bootclasspathFragmentContentDependencyTag struct {
Paul Duffinc7ef9892021-03-23 23:21:59 +000054 blueprint.BaseDependencyTag
55}
56
Paul Duffin7771eba2021-04-23 14:25:28 +010057// Avoid having to make bootclasspath_fragment content visible to the bootclasspath_fragment.
Paul Duffinc7ef9892021-03-23 23:21:59 +000058//
Paul Duffin7771eba2021-04-23 14:25:28 +010059// This is a temporary workaround to make it easier to migrate to bootclasspath_fragment modules
60// with proper dependencies.
Paul Duffinc7ef9892021-03-23 23:21:59 +000061// TODO(b/177892522): Remove this and add needed visibility.
Paul Duffin65898052021-04-20 22:47:03 +010062func (b bootclasspathFragmentContentDependencyTag) ExcludeFromVisibilityEnforcement() {
63}
64
65// The bootclasspath_fragment contents must never depend on prebuilts.
66func (b bootclasspathFragmentContentDependencyTag) ReplaceSourceWithPrebuilt() bool {
67 return false
Paul Duffinc7ef9892021-03-23 23:21:59 +000068}
69
Paul Duffine95b53a2021-04-23 20:41:23 +010070// SdkMemberType causes dependencies added with this tag to be automatically added to the sdk as if
Paul Duffina10bd3c2021-05-12 13:46:54 +010071// they were specified using java_boot_libs or java_sdk_libs.
72func (b bootclasspathFragmentContentDependencyTag) SdkMemberType(child android.Module) android.SdkMemberType {
73 // If the module is a java_sdk_library then treat it as if it was specified in the java_sdk_libs
74 // property, otherwise treat if it was specified in the java_boot_libs property.
75 if javaSdkLibrarySdkMemberType.IsInstance(child) {
76 return javaSdkLibrarySdkMemberType
77 }
78
Paul Duffine95b53a2021-04-23 20:41:23 +010079 return javaBootLibsSdkMemberType
80}
81
82func (b bootclasspathFragmentContentDependencyTag) ExportMember() bool {
83 return true
84}
85
Colin Crossc33e5212021-05-25 18:16:02 -070086// Contents of bootclasspath fragments in an apex are considered to be directly in the apex, as if
87// they were listed in java_libs.
88func (b bootclasspathFragmentContentDependencyTag) CopyDirectlyInAnyApex() {}
89
Paul Duffinfef55002021-06-17 14:56:05 +010090// Contents of bootclasspath fragments require files from prebuilt apex files.
91func (b bootclasspathFragmentContentDependencyTag) RequiresFilesFromPrebuiltApex() {}
92
Paul Duffin7771eba2021-04-23 14:25:28 +010093// The tag used for the dependency between the bootclasspath_fragment module and its contents.
Paul Duffin65898052021-04-20 22:47:03 +010094var bootclasspathFragmentContentDepTag = bootclasspathFragmentContentDependencyTag{}
Paul Duffinc7ef9892021-03-23 23:21:59 +000095
Paul Duffin65898052021-04-20 22:47:03 +010096var _ android.ExcludeFromVisibilityEnforcementTag = bootclasspathFragmentContentDepTag
97var _ android.ReplaceSourceWithPrebuilt = bootclasspathFragmentContentDepTag
Paul Duffinf7b3d0d2021-09-02 14:29:21 +010098var _ android.SdkMemberDependencyTag = bootclasspathFragmentContentDepTag
Colin Crossc33e5212021-05-25 18:16:02 -070099var _ android.CopyDirectlyInAnyApexTag = bootclasspathFragmentContentDepTag
Paul Duffinfef55002021-06-17 14:56:05 +0100100var _ android.RequiresFilesFromPrebuiltApexTag = bootclasspathFragmentContentDepTag
Paul Duffinc7ef9892021-03-23 23:21:59 +0000101
Paul Duffin65898052021-04-20 22:47:03 +0100102func IsBootclasspathFragmentContentDepTag(tag blueprint.DependencyTag) bool {
103 return tag == bootclasspathFragmentContentDepTag
Paul Duffin4d101b62021-03-24 15:42:20 +0000104}
105
Paul Duffinc7d16442021-04-23 13:55:49 +0100106// Properties that can be different when coverage is enabled.
107type BootclasspathFragmentCoverageAffectedProperties struct {
108 // The contents of this bootclasspath_fragment, could be either java_library, or java_sdk_library.
109 //
Paul Duffin34827d42021-05-13 21:25:05 +0100110 // A java_sdk_library specified here will also be treated as if it was specified on the stub_libs
111 // property.
112 //
Paul Duffinc7d16442021-04-23 13:55:49 +0100113 // The order of this list matters as it is the order that is used in the bootclasspath.
114 Contents []string
Paul Duffin10931582021-04-25 10:13:54 +0100115
116 // The properties for specifying the API stubs provided by this fragment.
117 BootclasspathAPIProperties
Paul Duffinc7d16442021-04-23 13:55:49 +0100118}
119
Paul Duffin7771eba2021-04-23 14:25:28 +0100120type bootclasspathFragmentProperties struct {
Paul Duffin3451e162021-01-20 15:16:56 +0000121 // The name of the image this represents.
122 //
Paul Duffin82886d62021-03-24 01:34:57 +0000123 // If specified then it must be one of "art" or "boot".
Paul Duffin64be7bb2021-03-23 23:06:38 +0000124 Image_name *string
Paul Duffinc7ef9892021-03-23 23:21:59 +0000125
Paul Duffinc7d16442021-04-23 13:55:49 +0100126 // Properties whose values need to differ with and without coverage.
127 BootclasspathFragmentCoverageAffectedProperties
128 Coverage BootclasspathFragmentCoverageAffectedProperties
Paul Duffin9b381ef2021-04-08 23:01:37 +0100129
Paul Duffin31fad802021-06-18 18:14:25 +0100130 // Hidden API related properties.
Paul Duffin9b61abb2022-07-27 16:16:54 +0000131 HiddenAPIFlagFileProperties
Paul Duffin70cfdff2021-05-15 09:10:42 +0100132
Paul Duffin5cca7c42021-05-26 10:16:01 +0100133 // The list of additional stub libraries which this fragment's contents use but which are not
134 // provided by another bootclasspath_fragment.
135 //
136 // Note, "android-non-updatable" is treated specially. While no such module exists it is treated
137 // as if it was a java_sdk_library. So, when public API stubs are needed then it will be replaced
138 // with "android-non-updatable.stubs", with "androidn-non-updatable.system.stubs" when the system
139 // stubs are needed and so on.
140 Additional_stubs []string
141
Paul Duffin70cfdff2021-05-15 09:10:42 +0100142 // Properties that allow a fragment to depend on other fragments. This is needed for hidden API
143 // processing as it needs access to all the classes used by a fragment including those provided
144 // by other fragments.
145 BootclasspathFragmentsDepsProperties
Paul Duffin3451e162021-01-20 15:16:56 +0000146}
147
Paul Duffin1e9e9382022-07-27 15:55:06 +0000148type HiddenAPIPackageProperties struct {
Paul Duffin1e18e982021-08-03 15:42:27 +0100149 Hidden_api struct {
150 // Contains prefixes of a package hierarchy that is provided solely by this
151 // bootclasspath_fragment.
152 //
153 // This affects the signature patterns file that is used to select the subset of monolithic
154 // hidden API flags. See split_packages property for more details.
155 Package_prefixes []string
156
Paul Duffin846beb72022-03-15 17:45:57 +0000157 // A list of individual packages that are provided solely by this
158 // bootclasspath_fragment but which cannot be listed in package_prefixes
159 // because there are sub-packages which are provided by other modules.
160 //
161 // This should only be used for legacy packages. New packages should be
162 // covered by a package prefix.
163 Single_packages []string
164
Paul Duffin1e18e982021-08-03 15:42:27 +0100165 // The list of split packages provided by this bootclasspath_fragment.
166 //
167 // A split package is one that contains classes which are provided by multiple
168 // bootclasspath_fragment modules.
169 //
170 // This defaults to "*" - which treats all packages as being split. A module that has no split
171 // packages must specify an empty list.
172 //
173 // This affects the signature patterns file that is generated by a bootclasspath_fragment and
174 // used to select the subset of monolithic hidden API flags against which the flags generated
175 // by the bootclasspath_fragment are compared.
176 //
177 // The signature patterns file selects the subset of monolithic hidden API flags using a number
178 // of patterns, i.e.:
179 // * The qualified name (including package) of an outermost class, e.g. java/lang/Character.
180 // This selects all the flags for all the members of this class and any nested classes.
181 // * A package wildcard, e.g. java/lang/*. This selects all the flags for all the members of all
182 // the classes in this package (but not in sub-packages).
183 // * A recursive package wildcard, e.g. java/**. This selects all the flags for all the members
184 // of all the classes in this package and sub-packages.
185 //
186 // The signature patterns file is constructed as follows:
187 // * All the signatures are retrieved from the all-flags.csv file.
188 // * The member and inner class names are removed.
189 // * If a class is in a split package then that is kept, otherwise the class part is removed
190 // and replaced with a wildcard, i.e. *.
191 // * If a package matches a package prefix then the package is removed.
192 // * All the package prefixes are added with a recursive wildcard appended to each, i.e. **.
193 // * The resulting patterns are sorted.
194 //
195 // So, by default (i.e. without specifying any package_prefixes or split_packages) the signature
196 // patterns is a list of class names, because there are no package packages and all packages are
197 // assumed to be split.
198 //
199 // If any split packages are specified then only those packages are treated as split and all
200 // other packages are treated as belonging solely to the bootclasspath_fragment and so they use
201 // wildcard package patterns.
202 //
203 // So, if an empty list of split packages is specified then the signature patterns file just
204 // includes a wildcard package pattern for every package provided by the bootclasspath_fragment.
205 //
206 // If split_packages are specified and a package that is split is not listed then it could lead
207 // to build failures as it will select monolithic flags that are generated by another
208 // bootclasspath_fragment to compare against the flags provided by this fragment. The latter
209 // will obviously not contain those flags and that can cause the comparison and build to fail.
210 //
211 // If any package prefixes are specified then any matching packages are removed from the
212 // signature patterns and replaced with a single recursive package pattern.
213 //
214 // It is not strictly necessary to specify either package_prefixes or split_packages as the
215 // defaults will produce a valid set of signature patterns. However, those patterns may include
216 // implementation details, e.g. names of implementation classes or packages, which will be
217 // exported to the sdk snapshot in the signature patterns file. That is something that should be
218 // avoided where possible. Specifying package_prefixes and split_packages allows those
219 // implementation details to be excluded from the snapshot.
220 Split_packages []string
221 }
222}
223
Paul Duffin846beb72022-03-15 17:45:57 +0000224type SourceOnlyBootclasspathProperties struct {
Paul Duffin1e9e9382022-07-27 15:55:06 +0000225 HiddenAPIPackageProperties
226 Coverage HiddenAPIPackageProperties
Paul Duffin846beb72022-03-15 17:45:57 +0000227}
228
Paul Duffin7771eba2021-04-23 14:25:28 +0100229type BootclasspathFragmentModule struct {
Paul Duffin3451e162021-01-20 15:16:56 +0000230 android.ModuleBase
Paul Duffina1d60252021-01-21 18:13:43 +0000231 android.ApexModuleBase
satayev3db35472021-05-06 23:59:58 +0100232 ClasspathFragmentBase
233
Paul Duffinc15b9e92022-03-31 15:42:30 +0100234 // True if this fragment is for testing purposes.
235 testFragment bool
236
Paul Duffin7771eba2021-04-23 14:25:28 +0100237 properties bootclasspathFragmentProperties
braleeb0c1f0c2021-06-07 22:49:13 +0800238
Paul Duffin1e18e982021-08-03 15:42:27 +0100239 sourceOnlyProperties SourceOnlyBootclasspathProperties
240
braleeb0c1f0c2021-06-07 22:49:13 +0800241 // Collect the module directory for IDE info in java/jdeps.go.
242 modulePaths []string
Jiakai Zhangc08c1622023-05-10 18:38:34 +0100243
244 // Path to the boot image profile.
245 profilePath android.Path
Paul Duffin3451e162021-01-20 15:16:56 +0000246}
247
Paul Duffin2fef1362021-04-15 13:32:00 +0100248// commonBootclasspathFragment defines the methods that are implemented by both source and prebuilt
249// bootclasspath fragment modules.
250type commonBootclasspathFragment interface {
Paul Duffine5218812021-06-07 13:28:19 +0100251 // produceHiddenAPIOutput produces the all-flags.csv and intermediate files and encodes the flags
252 // into dex files.
Paul Duffin2fef1362021-04-15 13:32:00 +0100253 //
Paul Duffine5218812021-06-07 13:28:19 +0100254 // Returns a *HiddenAPIOutput containing the paths for the generated files. Returns nil if the
255 // module cannot contribute to hidden API processing, e.g. because it is a prebuilt module in a
256 // versioned sdk.
Paul Duffin1938dba2022-07-26 23:53:00 +0000257 produceHiddenAPIOutput(ctx android.ModuleContext, contents []android.Module, fragments []android.Module, input HiddenAPIFlagInput) *HiddenAPIOutput
Paul Duffin5466a362021-06-07 10:25:31 +0100258
Paul Duffin56afb272021-07-01 22:04:22 +0100259 // produceBootImageFiles will attempt to produce rules to create the boot image files at the paths
260 // predefined in the bootImageConfig.
Paul Duffin5466a362021-06-07 10:25:31 +0100261 //
Paul Duffin56afb272021-07-01 22:04:22 +0100262 // If it could not create the files then it will return nil. Otherwise, it will return a map from
263 // android.ArchType to the predefined paths of the boot image files.
Paul Duffin9f6ac0b2022-10-04 15:36:44 +0100264 produceBootImageFiles(ctx android.ModuleContext, imageConfig *bootImageConfig) bootImageOutputs
Jiakai Zhangc08c1622023-05-10 18:38:34 +0100265
266 // getImageName returns the `image_name` property of this fragment.
267 getImageName() *string
268
269 // getProfilePath returns the path to the boot image profile.
270 getProfilePath() android.Path
Paul Duffin2fef1362021-04-15 13:32:00 +0100271}
272
Paul Duffin1e6f5c42021-05-21 16:15:31 +0100273var _ commonBootclasspathFragment = (*BootclasspathFragmentModule)(nil)
274
Paul Duffin7771eba2021-04-23 14:25:28 +0100275func bootclasspathFragmentFactory() android.Module {
276 m := &BootclasspathFragmentModule{}
Paul Duffin1e18e982021-08-03 15:42:27 +0100277 m.AddProperties(&m.properties, &m.sourceOnlyProperties)
Paul Duffina1d60252021-01-21 18:13:43 +0000278 android.InitApexModule(m)
satayev3db35472021-05-06 23:59:58 +0100279 initClasspathFragment(m, BOOTCLASSPATH)
Paul Duffinb2c21732022-05-11 14:29:53 +0000280 android.InitAndroidArchModule(m, android.DeviceSupported, android.MultilibCommon)
Paul Duffinc7ef9892021-03-23 23:21:59 +0000281
Paul Duffinc7ef9892021-03-23 23:21:59 +0000282 android.AddLoadHook(m, func(ctx android.LoadHookContext) {
Paul Duffinc7d16442021-04-23 13:55:49 +0100283 // If code coverage has been enabled for the framework then append the properties with
284 // coverage specific properties.
285 if ctx.Config().IsEnvTrue("EMMA_INSTRUMENT_FRAMEWORK") {
286 err := proptools.AppendProperties(&m.properties.BootclasspathFragmentCoverageAffectedProperties, &m.properties.Coverage, nil)
287 if err != nil {
288 ctx.PropertyErrorf("coverage", "error trying to append coverage specific properties: %s", err)
289 return
290 }
Paul Duffin846beb72022-03-15 17:45:57 +0000291
Paul Duffin1e9e9382022-07-27 15:55:06 +0000292 err = proptools.AppendProperties(&m.sourceOnlyProperties.HiddenAPIPackageProperties, &m.sourceOnlyProperties.Coverage, nil)
Paul Duffin846beb72022-03-15 17:45:57 +0000293 if err != nil {
294 ctx.PropertyErrorf("coverage", "error trying to append hidden api coverage specific properties: %s", err)
295 return
296 }
Paul Duffinc7d16442021-04-23 13:55:49 +0100297 }
298
299 // Initialize the contents property from the image_name.
Paul Duffin7771eba2021-04-23 14:25:28 +0100300 bootclasspathFragmentInitContentsFromImage(ctx, m)
Paul Duffinc7ef9892021-03-23 23:21:59 +0000301 })
Paul Duffin3451e162021-01-20 15:16:56 +0000302 return m
303}
304
Paul Duffinc15b9e92022-03-31 15:42:30 +0100305func testBootclasspathFragmentFactory() android.Module {
306 m := bootclasspathFragmentFactory().(*BootclasspathFragmentModule)
307 m.testFragment = true
308 return m
309}
310
Paul Duffin7771eba2021-04-23 14:25:28 +0100311// bootclasspathFragmentInitContentsFromImage will initialize the contents property from the image_name if
312// necessary.
313func bootclasspathFragmentInitContentsFromImage(ctx android.EarlyModuleContext, m *BootclasspathFragmentModule) {
Paul Duffin82886d62021-03-24 01:34:57 +0000314 contents := m.properties.Contents
Paul Duffin8018e502021-05-21 19:28:09 +0100315 if len(contents) == 0 {
316 ctx.PropertyErrorf("contents", "required property is missing")
317 return
318 }
319
320 if m.properties.Image_name == nil {
321 // Nothing to do.
322 return
Paul Duffin82886d62021-03-24 01:34:57 +0000323 }
Paul Duffinba6afd02019-11-19 19:44:10 +0000324
Paul Duffinc7ef9892021-03-23 23:21:59 +0000325 imageName := proptools.String(m.properties.Image_name)
Paul Duffin8018e502021-05-21 19:28:09 +0100326 if imageName != "art" {
327 ctx.PropertyErrorf("image_name", `unknown image name %q, expected "art"`, imageName)
328 return
Paul Duffinba6afd02019-11-19 19:44:10 +0000329 }
Paul Duffin8018e502021-05-21 19:28:09 +0100330
Paul Duffin8018e502021-05-21 19:28:09 +0100331 // Get the configuration for the art apex jars. Do not use getImageConfig(ctx) here as this is
332 // too early in the Soong processing for that to work.
333 global := dexpreopt.GetGlobalConfig(ctx)
334 modules := global.ArtApexJars
335
336 // Make sure that the apex specified in the configuration is consistent and is one for which
337 // this boot image is available.
338 commonApex := ""
339 for i := 0; i < modules.Len(); i++ {
340 apex := modules.Apex(i)
341 jar := modules.Jar(i)
342 if apex == "platform" {
343 ctx.ModuleErrorf("ArtApexJars is invalid as it requests a platform variant of %q", jar)
344 continue
345 }
346 if !m.AvailableFor(apex) {
347 ctx.ModuleErrorf("ArtApexJars configuration incompatible with this module, ArtApexJars expects this to be in apex %q but this is only in apexes %q",
348 apex, m.ApexAvailable())
349 continue
350 }
351 if commonApex == "" {
352 commonApex = apex
353 } else if commonApex != apex {
354 ctx.ModuleErrorf("ArtApexJars configuration is inconsistent, expected all jars to be in the same apex but it specifies apex %q and %q",
355 commonApex, apex)
356 }
357 }
Paul Duffinba6afd02019-11-19 19:44:10 +0000358}
359
360// bootclasspathImageNameContentsConsistencyCheck checks that the configuration that applies to this
361// module (if any) matches the contents.
362//
363// This should be a noop as if image_name="art" then the contents will be set from the ArtApexJars
364// config by bootclasspathFragmentInitContentsFromImage so it will be guaranteed to match. However,
365// in future this will not be the case.
366func (b *BootclasspathFragmentModule) bootclasspathImageNameContentsConsistencyCheck(ctx android.BaseModuleContext) {
367 imageName := proptools.String(b.properties.Image_name)
368 if imageName == "art" {
Paul Duffinba6afd02019-11-19 19:44:10 +0000369 // Get the configuration for the art apex jars.
370 modules := b.getImageConfig(ctx).modules
371 configuredJars := modules.CopyOfJars()
372
373 // Skip the check if the configured jars list is empty as that is a common configuration when
374 // building targets that do not result in a system image.
375 if len(configuredJars) == 0 {
376 return
377 }
378
379 contents := b.properties.Contents
380 if !reflect.DeepEqual(configuredJars, contents) {
381 ctx.ModuleErrorf("inconsistency in specification of contents. ArtApexJars configuration specifies %#v, contents property specifies %#v",
382 configuredJars, contents)
383 }
Paul Duffinc7ef9892021-03-23 23:21:59 +0000384 }
385}
386
Paul Duffine946b322021-04-25 23:04:00 +0100387var BootclasspathFragmentApexContentInfoProvider = blueprint.NewProvider(BootclasspathFragmentApexContentInfo{})
Paul Duffin3451e162021-01-20 15:16:56 +0000388
Paul Duffine946b322021-04-25 23:04:00 +0100389// BootclasspathFragmentApexContentInfo contains the bootclasspath_fragments contributions to the
390// apex contents.
391type BootclasspathFragmentApexContentInfo struct {
Paul Duffin58e0e762021-05-21 19:27:58 +0100392 // The configured modules, will be empty if this is from a bootclasspath_fragment that does not
393 // set image_name: "art".
394 modules android.ConfiguredJarList
395
Paul Duffine5218812021-06-07 13:28:19 +0100396 // Map from the base module name (without prebuilt_ prefix) of a fragment's contents module to the
397 // hidden API encoded dex jar path.
398 contentModuleDexJarPaths bootDexJarByModule
Jiakai Zhang49b1eb62021-11-26 18:09:27 +0000399
400 // Path to the image profile file on host (or empty, if profile is not generated).
401 profilePathOnHost android.Path
402
403 // Install path of the boot image profile if it needs to be installed in the APEX, or empty if not
404 // needed.
405 profileInstallPathInApex string
Paul Duffin3451e162021-01-20 15:16:56 +0000406}
407
Paul Duffine946b322021-04-25 23:04:00 +0100408func (i BootclasspathFragmentApexContentInfo) Modules() android.ConfiguredJarList {
Paul Duffin58e0e762021-05-21 19:27:58 +0100409 return i.modules
Paul Duffin3451e162021-01-20 15:16:56 +0000410}
411
Paul Duffin190fdef2021-04-26 10:33:59 +0100412// DexBootJarPathForContentModule returns the path to the dex boot jar for specified module.
413//
414// The dex boot jar is one which has had hidden API encoding performed on it.
Paul Duffin1a8010a2021-05-15 12:39:23 +0100415func (i BootclasspathFragmentApexContentInfo) DexBootJarPathForContentModule(module android.Module) (android.Path, error) {
Paul Duffine5218812021-06-07 13:28:19 +0100416 // A bootclasspath_fragment cannot use a prebuilt library so Name() will return the base name
417 // without a prebuilt_ prefix so is safe to use as the key for the contentModuleDexJarPaths.
Paul Duffin1a8010a2021-05-15 12:39:23 +0100418 name := module.Name()
419 if dexJar, ok := i.contentModuleDexJarPaths[name]; ok {
420 return dexJar, nil
421 } else {
422 return nil, fmt.Errorf("unknown bootclasspath_fragment content module %s, expected one of %s",
Cole Faust18994c72023-02-28 16:02:16 -0800423 name, strings.Join(android.SortedKeys(i.contentModuleDexJarPaths), ", "))
Paul Duffin1a8010a2021-05-15 12:39:23 +0100424 }
Paul Duffin190fdef2021-04-26 10:33:59 +0100425}
426
Jiakai Zhang49b1eb62021-11-26 18:09:27 +0000427func (i BootclasspathFragmentApexContentInfo) ProfilePathOnHost() android.Path {
428 return i.profilePathOnHost
429}
430
431func (i BootclasspathFragmentApexContentInfo) ProfileInstallPathInApex() string {
432 return i.profileInstallPathInApex
433}
434
Paul Duffin7771eba2021-04-23 14:25:28 +0100435func (b *BootclasspathFragmentModule) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
Paul Duffina1d60252021-01-21 18:13:43 +0000436 tag := ctx.OtherModuleDependencyTag(dep)
Paul Duffin65898052021-04-20 22:47:03 +0100437 if IsBootclasspathFragmentContentDepTag(tag) {
Paul Duffin4d101b62021-03-24 15:42:20 +0000438 // Boot image contents are automatically added to apex.
439 return true
Paul Duffinc7ef9892021-03-23 23:21:59 +0000440 }
Bob Badour07065cd2021-02-05 19:59:11 -0800441 if android.IsMetaDependencyTag(tag) {
442 // Cross-cutting metadata dependencies are metadata.
443 return false
444 }
Paul Duffina1d60252021-01-21 18:13:43 +0000445 panic(fmt.Errorf("boot_image module %q should not have a dependency on %q via tag %s", b, dep, android.PrettyPrintTag(tag)))
446}
447
Paul Duffin7771eba2021-04-23 14:25:28 +0100448func (b *BootclasspathFragmentModule) ShouldSupportSdkVersion(ctx android.BaseModuleContext, sdkVersion android.ApiLevel) error {
Paul Duffina1d60252021-01-21 18:13:43 +0000449 return nil
450}
451
Paul Duffin65898052021-04-20 22:47:03 +0100452// ComponentDepsMutator adds dependencies onto modules before any prebuilt modules without a
453// corresponding source module are renamed. This means that adding a dependency using a name without
454// a prebuilt_ prefix will always resolve to a source module and when using a name with that prefix
455// it will always resolve to a prebuilt module.
Paul Duffin7771eba2021-04-23 14:25:28 +0100456func (b *BootclasspathFragmentModule) ComponentDepsMutator(ctx android.BottomUpMutatorContext) {
Paul Duffin65898052021-04-20 22:47:03 +0100457 module := ctx.Module()
Paul Duffin7771eba2021-04-23 14:25:28 +0100458 _, isSourceModule := module.(*BootclasspathFragmentModule)
Paul Duffin65898052021-04-20 22:47:03 +0100459
460 for _, name := range b.properties.Contents {
461 // A bootclasspath_fragment must depend only on other source modules, while the
462 // prebuilt_bootclasspath_fragment must only depend on other prebuilt modules.
Paul Duffina9dd6fa2021-04-22 17:25:57 +0100463 //
464 // TODO(b/177892522) - avoid special handling of jacocoagent.
465 if !isSourceModule && name != "jacocoagent" {
Paul Duffin65898052021-04-20 22:47:03 +0100466 name = android.PrebuiltNameFromSource(name)
467 }
468 ctx.AddDependency(module, bootclasspathFragmentContentDepTag, name)
469 }
470
471}
472
Paul Duffin7771eba2021-04-23 14:25:28 +0100473func (b *BootclasspathFragmentModule) DepsMutator(ctx android.BottomUpMutatorContext) {
Paul Duffin10931582021-04-25 10:13:54 +0100474 // Add dependencies onto all the modules that provide the API stubs for classes on this
475 // bootclasspath fragment.
Paul Duffin31fad802021-06-18 18:14:25 +0100476 hiddenAPIAddStubLibDependencies(ctx, b.properties.apiScopeToStubLibs())
Paul Duffinc7ef9892021-03-23 23:21:59 +0000477
Paul Duffin5cca7c42021-05-26 10:16:01 +0100478 for _, additionalStubModule := range b.properties.Additional_stubs {
479 for _, apiScope := range hiddenAPISdkLibrarySupportedScopes {
480 // Add a dependency onto a possibly scope specific stub library.
481 scopeSpecificDependency := apiScope.scopeSpecificStubModule(ctx, additionalStubModule)
482 tag := hiddenAPIStubsDependencyTag{apiScope: apiScope, fromAdditionalDependency: true}
483 ctx.AddVariationDependencies(nil, tag, scopeSpecificDependency)
484 }
485 }
486
Jiakai Zhangbc698cd2023-05-08 16:28:38 +0000487 if !dexpreopt.IsDex2oatNeeded(ctx) {
Qiao Yang8d8c6602023-05-05 15:03:24 +0000488 return
489 }
490
Paul Duffina1d60252021-01-21 18:13:43 +0000491 // Add a dependency onto the dex2oat tool which is needed for creating the boot image. The
492 // path is retrieved from the dependency by GetGlobalSoongConfig(ctx).
493 dexpreopt.RegisterToolDeps(ctx)
494}
495
Paul Duffinf1b358c2021-05-17 07:38:47 +0100496func (b *BootclasspathFragmentModule) BootclasspathDepsMutator(ctx android.BottomUpMutatorContext) {
497 // Add dependencies on all the fragments.
498 b.properties.BootclasspathFragmentsDepsProperties.addDependenciesOntoFragments(ctx)
499}
500
Paul Duffin7771eba2021-04-23 14:25:28 +0100501func (b *BootclasspathFragmentModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Paul Duffinba6afd02019-11-19 19:44:10 +0000502 // Only perform a consistency check if this module is the active module. That will prevent an
503 // unused prebuilt that was created without instrumentation from breaking an instrumentation
504 // build.
505 if isActiveModule(ctx.Module()) {
506 b.bootclasspathImageNameContentsConsistencyCheck(ctx)
507 }
508
satayev3db35472021-05-06 23:59:58 +0100509 // Generate classpaths.proto config
510 b.generateClasspathProtoBuildActions(ctx)
511
braleeb0c1f0c2021-06-07 22:49:13 +0800512 // Collect the module directory for IDE info in java/jdeps.go.
513 b.modulePaths = append(b.modulePaths, ctx.ModuleDir())
514
Paul Duffin7ebebfd2021-04-27 19:36:57 +0100515 // Gather the bootclasspath fragment's contents.
516 var contents []android.Module
517 ctx.VisitDirectDeps(func(module android.Module) {
518 tag := ctx.OtherModuleDependencyTag(module)
519 if IsBootclasspathFragmentContentDepTag(tag) {
Paul Duffin79fd3d72021-05-14 16:14:17 +0100520 contents = append(contents, module)
Paul Duffin7ebebfd2021-04-27 19:36:57 +0100521 }
522 })
523
Paul Duffinf1b358c2021-05-17 07:38:47 +0100524 fragments := gatherApexModulePairDepsWithTag(ctx, bootclasspathFragmentDepTag)
525
Paul Duffin1a8010a2021-05-15 12:39:23 +0100526 // Verify that the image_name specified on a bootclasspath_fragment is valid even if this is a
527 // prebuilt which will not use the image config.
528 imageConfig := b.getImageConfig(ctx)
529
Paul Duffin458a15b2022-11-25 12:18:24 +0000530 // Perform hidden API processing.
531 hiddenAPIOutput := b.generateHiddenAPIBuildActions(ctx, contents, fragments)
Paul Duffine5218812021-06-07 13:28:19 +0100532
Paul Duffin458a15b2022-11-25 12:18:24 +0000533 var bootImageFiles bootImageOutputs
534 if imageConfig != nil {
535 // Delegate the production of the boot image files to a module type specific method.
536 common := ctx.Module().(commonBootclasspathFragment)
537 bootImageFiles = common.produceBootImageFiles(ctx, imageConfig)
Jiakai Zhangc08c1622023-05-10 18:38:34 +0100538 b.profilePath = bootImageFiles.profile
Paul Duffin5466a362021-06-07 10:25:31 +0100539
Paul Duffin458a15b2022-11-25 12:18:24 +0000540 if shouldCopyBootFilesToPredefinedLocations(ctx, imageConfig) {
541 // Zip the boot image files up, if available. This will generate the zip file in a
542 // predefined location.
543 buildBootImageZipInPredefinedLocation(ctx, imageConfig, bootImageFiles.byArch)
Paul Duffin56afb272021-07-01 22:04:22 +0100544
Paul Duffin458a15b2022-11-25 12:18:24 +0000545 // Copy the dex jars of this fragment's content modules to their predefined locations.
546 copyBootJarsToPredefinedLocations(ctx, hiddenAPIOutput.EncodedBootDexFilesByModule, imageConfig.dexPathsByModule)
Paul Duffince918b02021-06-07 14:33:47 +0100547 }
Paul Duffin458a15b2022-11-25 12:18:24 +0000548 }
549
550 // A prebuilt fragment cannot contribute to an apex.
551 if !android.IsModulePrebuilt(ctx.Module()) {
552 // Provide the apex content info.
553 b.provideApexContentInfo(ctx, imageConfig, hiddenAPIOutput, bootImageFiles)
Paul Duffinea465fb2022-03-04 18:39:29 +0000554 }
555
556 // In order for information about bootclasspath_fragment modules to be added to module-info.json
557 // it is necessary to output an entry to Make. As bootclasspath_fragment modules are part of an
558 // APEX there can be multiple variants, including the default/platform variant and only one can
559 // be output to Make but it does not really matter which variant is output. The default/platform
560 // variant is the first (ctx.PrimaryModule()) and is usually hidden from make so this just picks
561 // the last variant (ctx.FinalModule()).
562 if ctx.Module() != ctx.FinalModule() {
563 b.HideFromMake()
Paul Duffin1a8010a2021-05-15 12:39:23 +0100564 }
565}
566
Paul Duffince918b02021-06-07 14:33:47 +0100567// shouldCopyBootFilesToPredefinedLocations determines whether the current module should copy boot
568// files, e.g. boot dex jars or boot image files, to the predefined location expected by the rest
569// of the build.
570//
571// This ensures that only a single module will copy its files to the image configuration.
572func shouldCopyBootFilesToPredefinedLocations(ctx android.ModuleContext, imageConfig *bootImageConfig) bool {
573 // Bootclasspath fragment modules that are for the platform do not produce boot related files.
574 apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo)
575 if apexInfo.IsForPlatform() {
576 return false
577 }
578
579 // If the image configuration has no modules specified then it means that the build has been
580 // configured to build something other than a boot image, e.g. an sdk, so do not try and copy the
581 // files.
582 if imageConfig.modules.Len() == 0 {
583 return false
584 }
585
586 // Only copy files from the module that is preferred.
587 return isActiveModule(ctx.Module())
588}
589
Paul Duffin1a8010a2021-05-15 12:39:23 +0100590// provideApexContentInfo creates, initializes and stores the apex content info for use by other
591// modules.
Paul Duffin9f6ac0b2022-10-04 15:36:44 +0100592func (b *BootclasspathFragmentModule) provideApexContentInfo(ctx android.ModuleContext, imageConfig *bootImageConfig, hiddenAPIOutput *HiddenAPIOutput, bootImageFiles bootImageOutputs) {
Paul Duffin1a8010a2021-05-15 12:39:23 +0100593 // Construct the apex content info from the config.
Paul Duffine5218812021-06-07 13:28:19 +0100594 info := BootclasspathFragmentApexContentInfo{
595 // Populate the apex content info with paths to the dex jars.
596 contentModuleDexJarPaths: hiddenAPIOutput.EncodedBootDexFilesByModule,
597 }
Paul Duffin1a8010a2021-05-15 12:39:23 +0100598
Paul Duffin58e0e762021-05-21 19:27:58 +0100599 if imageConfig != nil {
600 info.modules = imageConfig.modules
Jiakai Zhang29e35e12021-12-08 10:48:35 +0000601 global := dexpreopt.GetGlobalConfig(ctx)
602 if !global.DisableGenerateProfile {
Paul Duffin9f6ac0b2022-10-04 15:36:44 +0100603 info.profilePathOnHost = bootImageFiles.profile
Jiakai Zhang29e35e12021-12-08 10:48:35 +0000604 info.profileInstallPathInApex = imageConfig.profileInstallPathInApex
605 }
Paul Duffin1a8010a2021-05-15 12:39:23 +0100606 }
Paul Duffin3451e162021-01-20 15:16:56 +0000607
Paul Duffin1a8010a2021-05-15 12:39:23 +0100608 // Make the apex content info available for other modules.
609 ctx.SetProvider(BootclasspathFragmentApexContentInfoProvider, info)
610}
611
satayev3db35472021-05-06 23:59:58 +0100612// generateClasspathProtoBuildActions generates all required build actions for classpath.proto config
613func (b *BootclasspathFragmentModule) generateClasspathProtoBuildActions(ctx android.ModuleContext) {
614 var classpathJars []classpathJar
satayevb3090502021-06-15 17:49:10 +0100615 configuredJars := b.configuredJars(ctx)
satayev3db35472021-05-06 23:59:58 +0100616 if "art" == proptools.String(b.properties.Image_name) {
617 // ART and platform boot jars must have a corresponding entry in DEX2OATBOOTCLASSPATH
satayevb3090502021-06-15 17:49:10 +0100618 classpathJars = configuredJarListToClasspathJars(ctx, configuredJars, BOOTCLASSPATH, DEX2OATBOOTCLASSPATH)
satayev3db35472021-05-06 23:59:58 +0100619 } else {
satayevb3090502021-06-15 17:49:10 +0100620 classpathJars = configuredJarListToClasspathJars(ctx, configuredJars, b.classpathType)
satayev3db35472021-05-06 23:59:58 +0100621 }
satayevb3090502021-06-15 17:49:10 +0100622 b.classpathFragmentBase().generateClasspathProtoBuildActions(ctx, configuredJars, classpathJars)
satayev3db35472021-05-06 23:59:58 +0100623}
624
satayev142ed272021-06-15 16:21:17 +0100625func (b *BootclasspathFragmentModule) configuredJars(ctx android.ModuleContext) android.ConfiguredJarList {
satayev8fab6f82021-05-07 00:10:33 +0100626 if "art" == proptools.String(b.properties.Image_name) {
627 return b.getImageConfig(ctx).modules
628 }
629
630 global := dexpreopt.GetGlobalConfig(ctx)
631
satayevd604b212021-07-21 14:23:52 +0100632 possibleUpdatableModules := gatherPossibleApexModuleNamesAndStems(ctx, b.properties.Contents, bootclasspathFragmentContentDepTag)
satayevd34eb0c2021-08-06 13:20:28 +0100633 jars, unknown := global.ApexBootJars.Filter(possibleUpdatableModules)
satayev1b75a3c2021-06-04 18:09:40 +0100634
635 // TODO(satayev): for apex_test we want to include all contents unconditionally to classpaths
satayevd604b212021-07-21 14:23:52 +0100636 // config. However, any test specific jars would not be present in ApexBootJars. Instead,
satayev1b75a3c2021-06-04 18:09:40 +0100637 // we should check if we are creating a config for apex_test via ApexInfo and amend the values.
638 // This is an exception to support end-to-end test for SdkExtensions, until such support exists.
Paul Duffin56c93e82021-06-29 20:04:45 +0100639 if android.InList("test_framework-sdkextensions", possibleUpdatableModules) {
satayev1b75a3c2021-06-04 18:09:40 +0100640 jars = jars.Append("com.android.sdkext", "test_framework-sdkextensions")
Samiul Islam7b385c52021-10-11 22:47:13 +0100641 } else if android.InList("test_framework-apexd", possibleUpdatableModules) {
642 jars = jars.Append("com.android.apex.test_package", "test_framework-apexd")
Paul Duffin458a15b2022-11-25 12:18:24 +0000643 } else if global.ApexBootJars.Len() != 0 {
satayevd34eb0c2021-08-06 13:20:28 +0100644 unknown = android.RemoveListFromList(unknown, b.properties.Coverage.Contents)
645 _, unknown = android.RemoveFromList("core-icu4j", unknown)
Keun young Park59799962021-10-14 15:42:04 -0700646 // This module only exists in car products.
647 // So ignore it even if it is not in PRODUCT_APEX_BOOT_JARS.
648 // TODO(b/202896428): Add better way to handle this.
649 _, unknown = android.RemoveFromList("android.car-module", unknown)
satayevd34eb0c2021-08-06 13:20:28 +0100650 if len(unknown) > 0 {
651 ctx.ModuleErrorf("%s in contents must also be declared in PRODUCT_APEX_BOOT_JARS", unknown)
652 }
satayev1b75a3c2021-06-04 18:09:40 +0100653 }
654 return jars
satayev3db35472021-05-06 23:59:58 +0100655}
656
Paul Duffin7771eba2021-04-23 14:25:28 +0100657func (b *BootclasspathFragmentModule) getImageConfig(ctx android.EarlyModuleContext) *bootImageConfig {
Paul Duffin64be7bb2021-03-23 23:06:38 +0000658 // Get a map of the image configs that are supported.
659 imageConfigs := genBootImageConfigs(ctx)
660
661 // Retrieve the config for this image.
662 imageNamePtr := b.properties.Image_name
663 if imageNamePtr == nil {
664 return nil
665 }
666
667 imageName := *imageNamePtr
668 imageConfig := imageConfigs[imageName]
669 if imageConfig == nil {
Cole Faust18994c72023-02-28 16:02:16 -0800670 ctx.PropertyErrorf("image_name", "Unknown image name %q, expected one of %s", imageName, strings.Join(android.SortedKeys(imageConfigs), ", "))
Paul Duffin64be7bb2021-03-23 23:06:38 +0000671 return nil
672 }
673 return imageConfig
674}
675
Paul Duffin9b381ef2021-04-08 23:01:37 +0100676// generateHiddenAPIBuildActions generates all the hidden API related build rules.
Paul Duffine5218812021-06-07 13:28:19 +0100677func (b *BootclasspathFragmentModule) generateHiddenAPIBuildActions(ctx android.ModuleContext, contents []android.Module, fragments []android.Module) *HiddenAPIOutput {
Paul Duffin10931582021-04-25 10:13:54 +0100678
Paul Duffin1352f7c2021-05-21 22:18:49 +0100679 // Create hidden API input structure.
Paul Duffinf1b358c2021-05-17 07:38:47 +0100680 input := b.createHiddenAPIFlagInput(ctx, contents, fragments)
Paul Duffin10931582021-04-25 10:13:54 +0100681
Paul Duffinda286f42021-06-29 11:59:23 +0100682 // Delegate the production of the hidden API all-flags.csv file to a module type specific method.
683 common := ctx.Module().(commonBootclasspathFragment)
Paul Duffin1938dba2022-07-26 23:53:00 +0000684 output := common.produceHiddenAPIOutput(ctx, contents, fragments, input)
Paul Duffin62370922021-05-23 16:55:37 +0100685
Paul Duffin67b9d612021-07-21 17:38:47 +0100686 // If the source or prebuilts module does not provide a signature patterns file then generate one
687 // from the flags.
688 // TODO(b/192868581): Remove once the source and prebuilts provide a signature patterns file of
689 // their own.
690 if output.SignaturePatternsPath == nil {
Paul Duffin846beb72022-03-15 17:45:57 +0000691 output.SignaturePatternsPath = buildRuleSignaturePatternsFile(
Paul Duffin1938dba2022-07-26 23:53:00 +0000692 ctx, output.AllFlagsPath, []string{"*"}, nil, nil, "")
Paul Duffin67b9d612021-07-21 17:38:47 +0100693 }
694
Paul Duffin62370922021-05-23 16:55:37 +0100695 // Initialize a HiddenAPIInfo structure.
Paul Duffinaf99afa2021-05-21 22:18:56 +0100696 hiddenAPIInfo := HiddenAPIInfo{
Paul Duffin62370922021-05-23 16:55:37 +0100697 // The monolithic hidden API processing needs access to the flag files that override the default
698 // flags from all the fragments whether or not they actually perform their own hidden API flag
699 // generation. That is because the monolithic hidden API processing uses those flag files to
700 // perform its own flag generation.
Paul Duffin1352f7c2021-05-21 22:18:49 +0100701 FlagFilesByCategory: input.FlagFilesByCategory,
Paul Duffin18cf1972021-05-21 22:46:59 +0100702
Paul Duffinf1b358c2021-05-17 07:38:47 +0100703 // Other bootclasspath_fragments that depend on this need the transitive set of stub dex jars
704 // from this to resolve any references from their code to classes provided by this fragment
705 // and the fragments this depends upon.
Paul Duffin31fad802021-06-18 18:14:25 +0100706 TransitiveStubDexJarsByScope: input.transitiveStubDexJarsByScope(),
Paul Duffin62370922021-05-23 16:55:37 +0100707 }
Paul Duffin2fef1362021-04-15 13:32:00 +0100708
Paul Duffine5218812021-06-07 13:28:19 +0100709 // The monolithic hidden API processing also needs access to all the output files produced by
710 // hidden API processing of this fragment.
Paul Duffin54e41972021-07-19 13:23:40 +0100711 hiddenAPIInfo.HiddenAPIFlagOutput = output.HiddenAPIFlagOutput
Paul Duffin62370922021-05-23 16:55:37 +0100712
713 // Provide it for use by other modules.
Paul Duffinaf99afa2021-05-21 22:18:56 +0100714 ctx.SetProvider(HiddenAPIInfoProvider, hiddenAPIInfo)
Paul Duffin54c98f52021-05-15 08:54:30 +0100715
Paul Duffin1e6f5c42021-05-21 16:15:31 +0100716 return output
Paul Duffin2fef1362021-04-15 13:32:00 +0100717}
718
Paul Duffine5218812021-06-07 13:28:19 +0100719// retrieveLegacyEncodedBootDexFiles attempts to retrieve the legacy encoded boot dex jar files.
720func retrieveLegacyEncodedBootDexFiles(ctx android.ModuleContext, contents []android.Module) bootDexJarByModule {
721 // If the current bootclasspath_fragment is the active module or a source module then retrieve the
722 // encoded dex files, otherwise return an empty map.
723 //
724 // An inactive (i.e. not preferred) bootclasspath_fragment needs to retrieve the encoded dex jars
725 // as they are still needed by an apex. An inactive prebuilt_bootclasspath_fragment does not need
726 // to do so and may not yet have access to dex boot jars from a prebuilt_apex/apex_set.
727 if isActiveModule(ctx.Module()) || !android.IsModulePrebuilt(ctx.Module()) {
728 return extractEncodedDexJarsFromModules(ctx, contents)
729 } else {
730 return nil
731 }
732}
733
Paul Duffin1352f7c2021-05-21 22:18:49 +0100734// createHiddenAPIFlagInput creates a HiddenAPIFlagInput struct and initializes it with information derived
735// from the properties on this module and its dependencies.
Paul Duffinf1b358c2021-05-17 07:38:47 +0100736func (b *BootclasspathFragmentModule) createHiddenAPIFlagInput(ctx android.ModuleContext, contents []android.Module, fragments []android.Module) HiddenAPIFlagInput {
Paul Duffinf1b358c2021-05-17 07:38:47 +0100737 // Merge the HiddenAPIInfo from all the fragment dependencies.
738 dependencyHiddenApiInfo := newHiddenAPIInfo()
739 dependencyHiddenApiInfo.mergeFromFragmentDeps(ctx, fragments)
740
741 // Create hidden API flag input structure.
Paul Duffin1352f7c2021-05-21 22:18:49 +0100742 input := newHiddenAPIFlagInput()
743
744 // Update the input structure with information obtained from the stub libraries.
745 input.gatherStubLibInfo(ctx, contents)
746
747 // Populate with flag file paths from the properties.
Paul Duffin9b61abb2022-07-27 16:16:54 +0000748 input.extractFlagFilesFromProperties(ctx, &b.properties.HiddenAPIFlagFileProperties)
Paul Duffin1352f7c2021-05-21 22:18:49 +0100749
Paul Duffin1e9e9382022-07-27 15:55:06 +0000750 // Populate with package rules from the properties.
751 input.extractPackageRulesFromProperties(&b.sourceOnlyProperties.HiddenAPIPackageProperties)
752
Paul Duffin3f1ae0b2022-07-27 16:27:42 +0000753 input.gatherPropertyInfo(ctx, contents)
754
Paul Duffin5cca7c42021-05-26 10:16:01 +0100755 // Add the stub dex jars from this module's fragment dependencies.
Paul Duffin280a31a2021-06-27 20:28:29 +0100756 input.DependencyStubDexJarsByScope.addStubDexJarsByModule(dependencyHiddenApiInfo.TransitiveStubDexJarsByScope)
Paul Duffinf1b358c2021-05-17 07:38:47 +0100757
Paul Duffin1352f7c2021-05-21 22:18:49 +0100758 return input
759}
760
Paul Duffinc15b9e92022-03-31 15:42:30 +0100761// isTestFragment returns true if the current module is a test bootclasspath_fragment.
762func (b *BootclasspathFragmentModule) isTestFragment() bool {
Paul Duffind0fe1302022-09-14 17:04:51 +0000763 return b.testFragment
Paul Duffinc15b9e92022-03-31 15:42:30 +0100764}
765
Paul Duffinaf705182022-09-14 11:47:34 +0100766// generateHiddenApiFlagRules generates rules to generate hidden API flags and compute the signature
767// patterns file.
768func (b *BootclasspathFragmentModule) generateHiddenApiFlagRules(ctx android.ModuleContext, contents []android.Module, input HiddenAPIFlagInput, bootDexInfoByModule bootDexInfoByModule, suffix string) HiddenAPIFlagOutput {
Paul Duffin1352f7c2021-05-21 22:18:49 +0100769 // Generate the rules to create the hidden API flags and update the supplied hiddenAPIInfo with the
Paul Duffin2fef1362021-04-15 13:32:00 +0100770 // paths to the created files.
Paul Duffin1938dba2022-07-26 23:53:00 +0000771 flagOutput := hiddenAPIFlagRulesForBootclasspathFragment(ctx, bootDexInfoByModule, contents, input, suffix)
Paul Duffin1e18e982021-08-03 15:42:27 +0100772
773 // If the module specifies split_packages or package_prefixes then use those to generate the
774 // signature patterns.
Paul Duffin1e9e9382022-07-27 15:55:06 +0000775 splitPackages := input.SplitPackages
776 packagePrefixes := input.PackagePrefixes
777 singlePackages := input.SinglePackages
Paul Duffin846beb72022-03-15 17:45:57 +0000778 if splitPackages != nil || packagePrefixes != nil || singlePackages != nil {
Paul Duffinaf705182022-09-14 11:47:34 +0100779 flagOutput.SignaturePatternsPath = buildRuleSignaturePatternsFile(
Paul Duffin1938dba2022-07-26 23:53:00 +0000780 ctx, flagOutput.AllFlagsPath, splitPackages, packagePrefixes, singlePackages, suffix)
Paul Duffin9fd56472022-03-31 15:42:30 +0100781 } else if !b.isTestFragment() {
782 ctx.ModuleErrorf(`Must specify at least one of the split_packages, package_prefixes and single_packages properties
783 If this is a new bootclasspath_fragment or you are unsure what to do add the
784 the following to the bootclasspath_fragment:
785 hidden_api: {split_packages: ["*"]},
786 and then run the following:
787 m analyze_bcpf && analyze_bcpf --bcpf %q
788 it will analyze the bootclasspath_fragment and provide hints as to what you
789 should specify here. If you are happy with its suggestions then you can add
790 the --fix option and it will fix them for you.`, b.BaseModuleName())
Paul Duffin1e18e982021-08-03 15:42:27 +0100791 }
Paul Duffinaf705182022-09-14 11:47:34 +0100792 return flagOutput
793}
794
795// produceHiddenAPIOutput produces the hidden API all-flags.csv file (and supporting files)
796// for the fragment as well as encoding the flags in the boot dex jars.
Paul Duffin1938dba2022-07-26 23:53:00 +0000797func (b *BootclasspathFragmentModule) produceHiddenAPIOutput(ctx android.ModuleContext, contents []android.Module, fragments []android.Module, input HiddenAPIFlagInput) *HiddenAPIOutput {
Paul Duffinaf705182022-09-14 11:47:34 +0100798 // Gather information about the boot dex files for the boot libraries provided by this fragment.
799 bootDexInfoByModule := extractBootDexInfoFromModules(ctx, contents)
800
801 // Generate the flag file needed to encode into the dex files.
802 flagOutput := b.generateHiddenApiFlagRules(ctx, contents, input, bootDexInfoByModule, "")
803
804 // Encode those flags into the dex files of the contents of this fragment.
805 encodedBootDexFilesByModule := hiddenAPIEncodeRulesForBootclasspathFragment(ctx, bootDexInfoByModule, flagOutput.AllFlagsPath)
806
807 // Store that information for return for use by other rules.
808 output := &HiddenAPIOutput{
809 HiddenAPIFlagOutput: flagOutput,
810 EncodedBootDexFilesByModule: encodedBootDexFilesByModule,
811 }
Paul Duffin1e18e982021-08-03 15:42:27 +0100812
Paul Duffin1938dba2022-07-26 23:53:00 +0000813 // Get the ApiLevel associated with SOONG_SDK_SNAPSHOT_TARGET_BUILD_RELEASE, defaulting to current
814 // if not set.
815 config := ctx.Config()
816 targetApiLevel := android.ApiLevelOrPanic(ctx,
817 config.GetenvWithDefault("SOONG_SDK_SNAPSHOT_TARGET_BUILD_RELEASE", "current"))
818
819 // Filter the contents list to remove any modules that do not support the target build release.
820 // The current build release supports all the modules.
821 contentsForSdkSnapshot := []android.Module{}
822 for _, module := range contents {
823 // If the module has a min_sdk_version that is higher than the target build release then it will
824 // not work on the target build release and so must not be included in the sdk snapshot.
825 minApiLevel := android.MinApiLevelForSdkSnapshot(ctx, module)
826 if minApiLevel.GreaterThan(targetApiLevel) {
827 continue
828 }
829
830 contentsForSdkSnapshot = append(contentsForSdkSnapshot, module)
831 }
832
833 var flagFilesByCategory FlagFilesByCategory
834 if len(contentsForSdkSnapshot) != len(contents) {
835 // The sdk snapshot has different contents to the runtime fragment so it is not possible to
836 // reuse the hidden API information generated for the fragment. So, recompute that information
837 // for the sdk snapshot.
838 filteredInput := b.createHiddenAPIFlagInput(ctx, contentsForSdkSnapshot, fragments)
839
840 // Gather information about the boot dex files for the boot libraries provided by this fragment.
841 filteredBootDexInfoByModule := extractBootDexInfoFromModules(ctx, contentsForSdkSnapshot)
842 flagOutput = b.generateHiddenApiFlagRules(ctx, contentsForSdkSnapshot, filteredInput, filteredBootDexInfoByModule, "-for-sdk-snapshot")
843 flagFilesByCategory = filteredInput.FlagFilesByCategory
844 } else {
845 // The sdk snapshot has the same contents as the runtime fragment so reuse that information.
846 flagFilesByCategory = input.FlagFilesByCategory
847 }
Paul Duffin887efdd2022-09-14 16:37:12 +0100848
849 // Make the information available for the sdk snapshot.
850 ctx.SetProvider(HiddenAPIInfoForSdkProvider, HiddenAPIInfoForSdk{
851 FlagFilesByCategory: flagFilesByCategory,
852 HiddenAPIFlagOutput: flagOutput,
853 })
854
Paul Duffin1e18e982021-08-03 15:42:27 +0100855 return output
Paul Duffin9b381ef2021-04-08 23:01:37 +0100856}
857
Paul Duffin5466a362021-06-07 10:25:31 +0100858// produceBootImageFiles builds the boot image files from the source if it is required.
Paul Duffin9f6ac0b2022-10-04 15:36:44 +0100859func (b *BootclasspathFragmentModule) produceBootImageFiles(ctx android.ModuleContext, imageConfig *bootImageConfig) bootImageOutputs {
Paul Duffin5466a362021-06-07 10:25:31 +0100860 // Only generate the boot image if the configuration does not skip it.
Paul Duffin56afb272021-07-01 22:04:22 +0100861 return b.generateBootImageBuildActions(ctx, imageConfig)
Paul Duffin5466a362021-06-07 10:25:31 +0100862}
863
Paul Duffin7ebebfd2021-04-27 19:36:57 +0100864// generateBootImageBuildActions generates ninja rules to create the boot image if required for this
865// module.
Paul Duffin58e0e762021-05-21 19:27:58 +0100866//
Paul Duffin56afb272021-07-01 22:04:22 +0100867// If it could not create the files then it will return nil. Otherwise, it will return a map from
868// android.ArchType to the predefined paths of the boot image files.
Paul Duffin9f6ac0b2022-10-04 15:36:44 +0100869func (b *BootclasspathFragmentModule) generateBootImageBuildActions(ctx android.ModuleContext, imageConfig *bootImageConfig) bootImageOutputs {
Paul Duffin7ebebfd2021-04-27 19:36:57 +0100870 global := dexpreopt.GetGlobalConfig(ctx)
871 if !shouldBuildBootImages(ctx.Config(), global) {
Paul Duffin9f6ac0b2022-10-04 15:36:44 +0100872 return bootImageOutputs{}
Paul Duffin7ebebfd2021-04-27 19:36:57 +0100873 }
874
875 // Bootclasspath fragment modules that are for the platform do not produce a boot image.
876 apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo)
877 if apexInfo.IsForPlatform() {
Paul Duffin9f6ac0b2022-10-04 15:36:44 +0100878 return bootImageOutputs{}
Paul Duffin7ebebfd2021-04-27 19:36:57 +0100879 }
880
Paul Duffin2fc82ad2021-04-29 23:36:12 +0100881 // Build a profile for the image config and then use that to build the boot image.
882 profile := bootImageProfileRule(ctx, imageConfig)
Paul Duffina56be7d2021-07-02 13:00:43 +0100883
Jiakai Zhangbc698cd2023-05-08 16:28:38 +0000884 // If dexpreopt of boot image jars should be skipped, generate only a profile.
885 if SkipDexpreoptBootJars(ctx) {
886 return bootImageOutputs{
887 profile: profile,
888 }
889 }
890
Paul Duffina56be7d2021-07-02 13:00:43 +0100891 // Build boot image files for the host variants.
892 buildBootImageVariantsForBuildOs(ctx, imageConfig, profile)
893
894 // Build boot image files for the android variants.
Paul Duffin9f6ac0b2022-10-04 15:36:44 +0100895 bootImageFiles := buildBootImageVariantsForAndroidOs(ctx, imageConfig, profile)
Paul Duffina56be7d2021-07-02 13:00:43 +0100896
897 // Return the boot image files for the android variants for inclusion in an APEX and to be zipped
898 // up for the dist.
Paul Duffin9f6ac0b2022-10-04 15:36:44 +0100899 return bootImageFiles
Paul Duffin7ebebfd2021-04-27 19:36:57 +0100900}
901
Jiakai Zhang6decef92022-01-12 17:56:19 +0000902func (b *BootclasspathFragmentModule) AndroidMkEntries() []android.AndroidMkEntries {
Paul Duffinea465fb2022-03-04 18:39:29 +0000903 // Use the generated classpath proto as the output.
904 outputFile := b.outputFilepath
905 // Create a fake entry that will cause this to be added to the module-info.json file.
906 entriesList := []android.AndroidMkEntries{{
907 Class: "FAKE",
908 OutputFile: android.OptionalPathForPath(outputFile),
909 Include: "$(BUILD_PHONY_PACKAGE)",
910 ExtraFooters: []android.AndroidMkExtraFootersFunc{
911 func(w io.Writer, name, prefix, moduleDir string) {
912 // Allow the bootclasspath_fragment to be built by simply passing its name on the command
913 // line.
914 fmt.Fprintln(w, ".PHONY:", b.Name())
915 fmt.Fprintln(w, b.Name()+":", outputFile.String())
916 },
917 },
918 }}
Jiakai Zhang6decef92022-01-12 17:56:19 +0000919 return entriesList
920}
921
Jiakai Zhangc08c1622023-05-10 18:38:34 +0100922func (b *BootclasspathFragmentModule) getImageName() *string {
923 return b.properties.Image_name
924}
925
926func (b *BootclasspathFragmentModule) getProfilePath() android.Path {
927 return b.profilePath
928}
929
braleeb0c1f0c2021-06-07 22:49:13 +0800930// Collect information for opening IDE project files in java/jdeps.go.
931func (b *BootclasspathFragmentModule) IDEInfo(dpInfo *android.IdeInfo) {
932 dpInfo.Deps = append(dpInfo.Deps, b.properties.Contents...)
933 dpInfo.Paths = append(dpInfo.Paths, b.modulePaths...)
934}
935
Paul Duffin7771eba2021-04-23 14:25:28 +0100936type bootclasspathFragmentMemberType struct {
Paul Duffinf7f65da2021-03-10 15:00:46 +0000937 android.SdkMemberTypeBase
938}
939
Paul Duffin296701e2021-07-14 10:29:36 +0100940func (b *bootclasspathFragmentMemberType) AddDependencies(ctx android.SdkDependencyContext, dependencyTag blueprint.DependencyTag, names []string) {
941 ctx.AddVariationDependencies(nil, dependencyTag, names...)
Paul Duffinf7f65da2021-03-10 15:00:46 +0000942}
943
Paul Duffin7771eba2021-04-23 14:25:28 +0100944func (b *bootclasspathFragmentMemberType) IsInstance(module android.Module) bool {
945 _, ok := module.(*BootclasspathFragmentModule)
Paul Duffinf7f65da2021-03-10 15:00:46 +0000946 return ok
947}
948
Paul Duffin7771eba2021-04-23 14:25:28 +0100949func (b *bootclasspathFragmentMemberType) AddPrebuiltModule(ctx android.SdkMemberContext, member android.SdkMember) android.BpModule {
Paul Duffin4b64ba02021-03-29 11:02:53 +0100950 if b.PropertyName == "boot_images" {
951 return ctx.SnapshotBuilder().AddPrebuiltModule(member, "prebuilt_boot_image")
952 } else {
953 return ctx.SnapshotBuilder().AddPrebuiltModule(member, "prebuilt_bootclasspath_fragment")
954 }
Paul Duffinf7f65da2021-03-10 15:00:46 +0000955}
956
Paul Duffin7771eba2021-04-23 14:25:28 +0100957func (b *bootclasspathFragmentMemberType) CreateVariantPropertiesStruct() android.SdkMemberProperties {
958 return &bootclasspathFragmentSdkMemberProperties{}
Paul Duffinf7f65da2021-03-10 15:00:46 +0000959}
960
Paul Duffin7771eba2021-04-23 14:25:28 +0100961type bootclasspathFragmentSdkMemberProperties struct {
Paul Duffinf7f65da2021-03-10 15:00:46 +0000962 android.SdkMemberPropertiesBase
963
Paul Duffina57835e2021-04-19 13:23:06 +0100964 // The image name
Paul Duffin64be7bb2021-03-23 23:06:38 +0000965 Image_name *string
Paul Duffina57835e2021-04-19 13:23:06 +0100966
967 // Contents of the bootclasspath fragment
968 Contents []string
Paul Duffin7c955552021-04-19 13:23:53 +0100969
Paul Duffin895c7142021-04-25 13:40:15 +0100970 // Stub_libs properties.
971 Stub_libs []string
972 Core_platform_stub_libs []string
973
Paul Duffin51227d82021-05-18 12:54:27 +0100974 // Fragment properties
975 Fragments []ApexVariantReference
976
Paul Duffin7c955552021-04-19 13:23:53 +0100977 // Flag files by *hiddenAPIFlagFileCategory
Paul Duffin438eb572021-05-21 16:58:23 +0100978 Flag_files_by_category FlagFilesByCategory
Paul Duffin2fef1362021-04-15 13:32:00 +0100979
Paul Duffin2fef1362021-04-15 13:32:00 +0100980 // The path to the generated annotation-flags.csv file.
981 Annotation_flags_path android.OptionalPath
982
983 // The path to the generated metadata.csv file.
984 Metadata_path android.OptionalPath
985
986 // The path to the generated index.csv file.
987 Index_path android.OptionalPath
988
Paul Duffin67b9d612021-07-21 17:38:47 +0100989 // The path to the generated stub-flags.csv file.
Paul Duffin191be3a2021-08-10 16:14:16 +0100990 Stub_flags_path android.OptionalPath `supported_build_releases:"S"`
Paul Duffin67b9d612021-07-21 17:38:47 +0100991
Paul Duffin2fef1362021-04-15 13:32:00 +0100992 // The path to the generated all-flags.csv file.
Paul Duffin191be3a2021-08-10 16:14:16 +0100993 All_flags_path android.OptionalPath `supported_build_releases:"S"`
994
995 // The path to the generated signature-patterns.csv file.
Paul Duffine7babdb2022-02-10 13:06:54 +0000996 Signature_patterns_path android.OptionalPath `supported_build_releases:"Tiramisu+"`
Paul Duffin191be3a2021-08-10 16:14:16 +0100997
998 // The path to the generated filtered-stub-flags.csv file.
Paul Duffine7babdb2022-02-10 13:06:54 +0000999 Filtered_stub_flags_path android.OptionalPath `supported_build_releases:"Tiramisu+"`
Paul Duffin191be3a2021-08-10 16:14:16 +01001000
1001 // The path to the generated filtered-flags.csv file.
Paul Duffine7babdb2022-02-10 13:06:54 +00001002 Filtered_flags_path android.OptionalPath `supported_build_releases:"Tiramisu+"`
Paul Duffin2fef1362021-04-15 13:32:00 +01001003}
1004
Paul Duffin7771eba2021-04-23 14:25:28 +01001005func (b *bootclasspathFragmentSdkMemberProperties) PopulateFromVariant(ctx android.SdkMemberContext, variant android.Module) {
1006 module := variant.(*BootclasspathFragmentModule)
Paul Duffinf7f65da2021-03-10 15:00:46 +00001007
1008 b.Image_name = module.properties.Image_name
Paul Duffin2dc665b2021-04-23 16:58:51 +01001009 b.Contents = module.properties.Contents
Paul Duffin7c955552021-04-19 13:23:53 +01001010
Paul Duffinaf99afa2021-05-21 22:18:56 +01001011 // Get the hidden API information from the module.
Paul Duffin7c955552021-04-19 13:23:53 +01001012 mctx := ctx.SdkModuleContext()
Paul Duffin887efdd2022-09-14 16:37:12 +01001013 hiddenAPIInfo := mctx.OtherModuleProvider(module, HiddenAPIInfoForSdkProvider).(HiddenAPIInfoForSdk)
Paul Duffinaf99afa2021-05-21 22:18:56 +01001014 b.Flag_files_by_category = hiddenAPIInfo.FlagFilesByCategory
Paul Duffin895c7142021-04-25 13:40:15 +01001015
Paul Duffin2fef1362021-04-15 13:32:00 +01001016 // Copy all the generated file paths.
Paul Duffinaf99afa2021-05-21 22:18:56 +01001017 b.Annotation_flags_path = android.OptionalPathForPath(hiddenAPIInfo.AnnotationFlagsPath)
1018 b.Metadata_path = android.OptionalPathForPath(hiddenAPIInfo.MetadataPath)
1019 b.Index_path = android.OptionalPathForPath(hiddenAPIInfo.IndexPath)
Paul Duffin67b9d612021-07-21 17:38:47 +01001020
1021 b.Stub_flags_path = android.OptionalPathForPath(hiddenAPIInfo.StubFlagsPath)
Paul Duffinaf99afa2021-05-21 22:18:56 +01001022 b.All_flags_path = android.OptionalPathForPath(hiddenAPIInfo.AllFlagsPath)
Paul Duffin2fef1362021-04-15 13:32:00 +01001023
Paul Duffin191be3a2021-08-10 16:14:16 +01001024 b.Signature_patterns_path = android.OptionalPathForPath(hiddenAPIInfo.SignaturePatternsPath)
1025 b.Filtered_stub_flags_path = android.OptionalPathForPath(hiddenAPIInfo.FilteredStubFlagsPath)
1026 b.Filtered_flags_path = android.OptionalPathForPath(hiddenAPIInfo.FilteredFlagsPath)
1027
Paul Duffin895c7142021-04-25 13:40:15 +01001028 // Copy stub_libs properties.
1029 b.Stub_libs = module.properties.Api.Stub_libs
1030 b.Core_platform_stub_libs = module.properties.Core_platform_api.Stub_libs
Paul Duffin51227d82021-05-18 12:54:27 +01001031
1032 // Copy fragment properties.
1033 b.Fragments = module.properties.Fragments
Paul Duffinf7f65da2021-03-10 15:00:46 +00001034}
1035
Paul Duffin7771eba2021-04-23 14:25:28 +01001036func (b *bootclasspathFragmentSdkMemberProperties) AddToPropertySet(ctx android.SdkMemberContext, propertySet android.BpPropertySet) {
Paul Duffin64be7bb2021-03-23 23:06:38 +00001037 if b.Image_name != nil {
1038 propertySet.AddProperty("image_name", *b.Image_name)
Paul Duffinf7f65da2021-03-10 15:00:46 +00001039 }
Paul Duffina57835e2021-04-19 13:23:06 +01001040
Paul Duffin895c7142021-04-25 13:40:15 +01001041 builder := ctx.SnapshotBuilder()
1042 requiredMemberDependency := builder.SdkMemberReferencePropertyTag(true)
1043
Paul Duffina57835e2021-04-19 13:23:06 +01001044 if len(b.Contents) > 0 {
Paul Duffin895c7142021-04-25 13:40:15 +01001045 propertySet.AddPropertyWithTag("contents", b.Contents, requiredMemberDependency)
Paul Duffina57835e2021-04-19 13:23:06 +01001046 }
Paul Duffin7c955552021-04-19 13:23:53 +01001047
Paul Duffin895c7142021-04-25 13:40:15 +01001048 if len(b.Stub_libs) > 0 {
1049 apiPropertySet := propertySet.AddPropertySet("api")
1050 apiPropertySet.AddPropertyWithTag("stub_libs", b.Stub_libs, requiredMemberDependency)
1051 }
1052 if len(b.Core_platform_stub_libs) > 0 {
1053 corePlatformApiPropertySet := propertySet.AddPropertySet("core_platform_api")
1054 corePlatformApiPropertySet.AddPropertyWithTag("stub_libs", b.Core_platform_stub_libs, requiredMemberDependency)
1055 }
Paul Duffin51227d82021-05-18 12:54:27 +01001056 if len(b.Fragments) > 0 {
1057 propertySet.AddProperty("fragments", b.Fragments)
1058 }
Paul Duffin895c7142021-04-25 13:40:15 +01001059
Paul Duffin2fef1362021-04-15 13:32:00 +01001060 hiddenAPISet := propertySet.AddPropertySet("hidden_api")
1061 hiddenAPIDir := "hiddenapi"
1062
1063 // Copy manually curated flag files specified on the bootclasspath_fragment.
Paul Duffin7c955552021-04-19 13:23:53 +01001064 if b.Flag_files_by_category != nil {
Paul Duffin524c82c2021-06-09 14:39:28 +01001065 for _, category := range HiddenAPIFlagFileCategories {
Paul Duffin7c955552021-04-19 13:23:53 +01001066 paths := b.Flag_files_by_category[category]
1067 if len(paths) > 0 {
1068 dests := []string{}
1069 for _, p := range paths {
Paul Duffin2fef1362021-04-15 13:32:00 +01001070 dest := filepath.Join(hiddenAPIDir, p.Base())
Paul Duffin7c955552021-04-19 13:23:53 +01001071 builder.CopyToSnapshot(p, dest)
1072 dests = append(dests, dest)
1073 }
Paul Duffin524c82c2021-06-09 14:39:28 +01001074 hiddenAPISet.AddProperty(category.PropertyName, dests)
Paul Duffin7c955552021-04-19 13:23:53 +01001075 }
1076 }
1077 }
Paul Duffin2fef1362021-04-15 13:32:00 +01001078
1079 copyOptionalPath := func(path android.OptionalPath, property string) {
1080 if path.Valid() {
1081 p := path.Path()
1082 dest := filepath.Join(hiddenAPIDir, p.Base())
1083 builder.CopyToSnapshot(p, dest)
1084 hiddenAPISet.AddProperty(property, dest)
1085 }
1086 }
1087
1088 // Copy all the generated files, if available.
Paul Duffin2fef1362021-04-15 13:32:00 +01001089 copyOptionalPath(b.Annotation_flags_path, "annotation_flags")
1090 copyOptionalPath(b.Metadata_path, "metadata")
1091 copyOptionalPath(b.Index_path, "index")
Paul Duffin191be3a2021-08-10 16:14:16 +01001092
Paul Duffin67b9d612021-07-21 17:38:47 +01001093 copyOptionalPath(b.Stub_flags_path, "stub_flags")
Paul Duffin2fef1362021-04-15 13:32:00 +01001094 copyOptionalPath(b.All_flags_path, "all_flags")
Paul Duffin191be3a2021-08-10 16:14:16 +01001095
1096 copyOptionalPath(b.Signature_patterns_path, "signature_patterns")
1097 copyOptionalPath(b.Filtered_stub_flags_path, "filtered_stub_flags")
1098 copyOptionalPath(b.Filtered_flags_path, "filtered_flags")
Paul Duffinf7f65da2021-03-10 15:00:46 +00001099}
1100
Paul Duffin7771eba2021-04-23 14:25:28 +01001101var _ android.SdkMemberType = (*bootclasspathFragmentMemberType)(nil)
Paul Duffinf7f65da2021-03-10 15:00:46 +00001102
Paul Duffin2fef1362021-04-15 13:32:00 +01001103// prebuiltBootclasspathFragmentProperties contains additional prebuilt_bootclasspath_fragment
1104// specific properties.
1105type prebuiltBootclasspathFragmentProperties struct {
1106 Hidden_api struct {
Paul Duffin2fef1362021-04-15 13:32:00 +01001107 // The path to the annotation-flags.csv file created by the bootclasspath_fragment.
1108 Annotation_flags *string `android:"path"`
1109
1110 // The path to the metadata.csv file created by the bootclasspath_fragment.
1111 Metadata *string `android:"path"`
1112
1113 // The path to the index.csv file created by the bootclasspath_fragment.
1114 Index *string `android:"path"`
1115
Paul Duffin8d007e92021-07-22 12:00:49 +01001116 // The path to the signature-patterns.csv file created by the bootclasspath_fragment.
1117 Signature_patterns *string `android:"path"`
1118
Paul Duffin67b9d612021-07-21 17:38:47 +01001119 // The path to the stub-flags.csv file created by the bootclasspath_fragment.
1120 Stub_flags *string `android:"path"`
1121
Paul Duffin2fef1362021-04-15 13:32:00 +01001122 // The path to the all-flags.csv file created by the bootclasspath_fragment.
1123 All_flags *string `android:"path"`
Paul Duffin191be3a2021-08-10 16:14:16 +01001124
1125 // The path to the filtered-stub-flags.csv file created by the bootclasspath_fragment.
1126 Filtered_stub_flags *string `android:"path"`
1127
1128 // The path to the filtered-flags.csv file created by the bootclasspath_fragment.
1129 Filtered_flags *string `android:"path"`
Paul Duffin2fef1362021-04-15 13:32:00 +01001130 }
1131}
1132
Paul Duffin7771eba2021-04-23 14:25:28 +01001133// A prebuilt version of the bootclasspath_fragment module.
Paul Duffinf7f65da2021-03-10 15:00:46 +00001134//
Paul Duffin7771eba2021-04-23 14:25:28 +01001135// At the moment this is basically just a bootclasspath_fragment module that can be used as a
1136// prebuilt. Eventually as more functionality is migrated into the bootclasspath_fragment module
1137// type from the various singletons then this will diverge.
Jiakai Zhange6e90db2022-01-28 14:58:56 +00001138type PrebuiltBootclasspathFragmentModule struct {
Paul Duffin7771eba2021-04-23 14:25:28 +01001139 BootclasspathFragmentModule
Paul Duffinf7f65da2021-03-10 15:00:46 +00001140 prebuilt android.Prebuilt
Paul Duffin2fef1362021-04-15 13:32:00 +01001141
1142 // Additional prebuilt specific properties.
1143 prebuiltProperties prebuiltBootclasspathFragmentProperties
Paul Duffinf7f65da2021-03-10 15:00:46 +00001144}
1145
Jiakai Zhange6e90db2022-01-28 14:58:56 +00001146func (module *PrebuiltBootclasspathFragmentModule) Prebuilt() *android.Prebuilt {
Paul Duffinf7f65da2021-03-10 15:00:46 +00001147 return &module.prebuilt
1148}
1149
Jiakai Zhange6e90db2022-01-28 14:58:56 +00001150func (module *PrebuiltBootclasspathFragmentModule) Name() string {
Paul Duffinf7f65da2021-03-10 15:00:46 +00001151 return module.prebuilt.Name(module.ModuleBase.Name())
1152}
1153
Paul Duffine5218812021-06-07 13:28:19 +01001154// produceHiddenAPIOutput returns a path to the prebuilt all-flags.csv or nil if none is specified.
Paul Duffin1938dba2022-07-26 23:53:00 +00001155func (module *PrebuiltBootclasspathFragmentModule) produceHiddenAPIOutput(ctx android.ModuleContext, contents []android.Module, fragments []android.Module, input HiddenAPIFlagInput) *HiddenAPIOutput {
Paul Duffin191be3a2021-08-10 16:14:16 +01001156 pathForOptionalSrc := func(src *string, defaultPath android.Path) android.Path {
Paul Duffin8d007e92021-07-22 12:00:49 +01001157 if src == nil {
Paul Duffin191be3a2021-08-10 16:14:16 +01001158 return defaultPath
Paul Duffin8d007e92021-07-22 12:00:49 +01001159 }
1160 return android.PathForModuleSrc(ctx, *src)
1161 }
Paul Duffin54e41972021-07-19 13:23:40 +01001162 pathForSrc := func(property string, src *string) android.Path {
Paul Duffin2fef1362021-04-15 13:32:00 +01001163 if src == nil {
Paul Duffin54e41972021-07-19 13:23:40 +01001164 ctx.PropertyErrorf(property, "is required but was not specified")
1165 return android.PathForModuleSrc(ctx, "missing", property)
Paul Duffin2fef1362021-04-15 13:32:00 +01001166 }
Paul Duffin1e6f5c42021-05-21 16:15:31 +01001167 return android.PathForModuleSrc(ctx, *src)
Paul Duffin2fef1362021-04-15 13:32:00 +01001168 }
1169
Paul Duffine5218812021-06-07 13:28:19 +01001170 // Retrieve the dex files directly from the content modules. They in turn should retrieve the
1171 // encoded dex jars from the prebuilt .apex files.
1172 encodedBootDexJarsByModule := extractEncodedDexJarsFromModules(ctx, contents)
1173
1174 output := HiddenAPIOutput{
1175 HiddenAPIFlagOutput: HiddenAPIFlagOutput{
Paul Duffin8d007e92021-07-22 12:00:49 +01001176 AnnotationFlagsPath: pathForSrc("hidden_api.annotation_flags", module.prebuiltProperties.Hidden_api.Annotation_flags),
1177 MetadataPath: pathForSrc("hidden_api.metadata", module.prebuiltProperties.Hidden_api.Metadata),
1178 IndexPath: pathForSrc("hidden_api.index", module.prebuiltProperties.Hidden_api.Index),
Paul Duffin191be3a2021-08-10 16:14:16 +01001179 SignaturePatternsPath: pathForOptionalSrc(module.prebuiltProperties.Hidden_api.Signature_patterns, nil),
1180 // TODO: Temporarily handle stub_flags/all_flags properties until prebuilts have been updated.
1181 StubFlagsPath: pathForOptionalSrc(module.prebuiltProperties.Hidden_api.Stub_flags, nil),
1182 AllFlagsPath: pathForOptionalSrc(module.prebuiltProperties.Hidden_api.All_flags, nil),
Paul Duffine5218812021-06-07 13:28:19 +01001183 },
Paul Duffin191be3a2021-08-10 16:14:16 +01001184
Paul Duffine5218812021-06-07 13:28:19 +01001185 EncodedBootDexFilesByModule: encodedBootDexJarsByModule,
Paul Duffin1e6f5c42021-05-21 16:15:31 +01001186 }
1187
Paul Duffin191be3a2021-08-10 16:14:16 +01001188 // TODO: Temporarily fallback to stub_flags/all_flags properties until prebuilts have been updated.
1189 output.FilteredStubFlagsPath = pathForOptionalSrc(module.prebuiltProperties.Hidden_api.Filtered_stub_flags, output.StubFlagsPath)
1190 output.FilteredFlagsPath = pathForOptionalSrc(module.prebuiltProperties.Hidden_api.Filtered_flags, output.AllFlagsPath)
1191
Paul Duffin1e6f5c42021-05-21 16:15:31 +01001192 return &output
Paul Duffin2fef1362021-04-15 13:32:00 +01001193}
1194
Paul Duffin5466a362021-06-07 10:25:31 +01001195// produceBootImageFiles extracts the boot image files from the APEX if available.
Paul Duffin9f6ac0b2022-10-04 15:36:44 +01001196func (module *PrebuiltBootclasspathFragmentModule) produceBootImageFiles(ctx android.ModuleContext, imageConfig *bootImageConfig) bootImageOutputs {
Paul Duffin5466a362021-06-07 10:25:31 +01001197 if !shouldCopyBootFilesToPredefinedLocations(ctx, imageConfig) {
Paul Duffin9f6ac0b2022-10-04 15:36:44 +01001198 return bootImageOutputs{}
Paul Duffin5466a362021-06-07 10:25:31 +01001199 }
1200
Martin Stjernholm44825602021-09-17 01:44:12 +01001201 di := android.FindDeapexerProviderForModule(ctx)
1202 if di == nil {
Paul Duffin9f6ac0b2022-10-04 15:36:44 +01001203 return bootImageOutputs{} // An error has been reported by FindDeapexerProviderForModule.
Paul Duffin5466a362021-06-07 10:25:31 +01001204 }
1205
Jiakai Zhange6e90db2022-01-28 14:58:56 +00001206 profile := (android.WritablePath)(nil)
1207 if imageConfig.profileInstallPathInApex != "" {
1208 profile = di.PrebuiltExportPath(imageConfig.profileInstallPathInApex)
Paul Duffin5466a362021-06-07 10:25:31 +01001209 }
1210
Jiakai Zhange6e90db2022-01-28 14:58:56 +00001211 // Build the boot image files for the host variants. These are always built from the dex files
1212 // provided by the contents of this module as prebuilt versions of the host boot image files are
1213 // not available, i.e. there is no host specific prebuilt apex containing them. This has to be
1214 // built without a profile as the prebuilt modules do not provide a profile.
1215 buildBootImageVariantsForBuildOs(ctx, imageConfig, profile)
Paul Duffina56be7d2021-07-02 13:00:43 +01001216
Jiakai Zhangb47cacc2023-05-10 16:40:18 +01001217 if profile == nil && imageConfig.isProfileGuided() {
1218 ctx.ModuleErrorf("Unable to produce boot image files: profiles not found in the prebuilt apex")
1219 return bootImageOutputs{}
Jiakai Zhange6e90db2022-01-28 14:58:56 +00001220 }
Jiakai Zhangb47cacc2023-05-10 16:40:18 +01001221 // Build boot image files for the android variants from the dex files provided by the contents
1222 // of this module.
1223 return buildBootImageVariantsForAndroidOs(ctx, imageConfig, profile)
Paul Duffin5466a362021-06-07 10:25:31 +01001224}
1225
Jiakai Zhangc08c1622023-05-10 18:38:34 +01001226func (b *PrebuiltBootclasspathFragmentModule) getImageName() *string {
1227 return b.properties.Image_name
1228}
1229
1230func (b *PrebuiltBootclasspathFragmentModule) getProfilePath() android.Path {
1231 return b.profilePath
1232}
1233
Jiakai Zhange6e90db2022-01-28 14:58:56 +00001234var _ commonBootclasspathFragment = (*PrebuiltBootclasspathFragmentModule)(nil)
Paul Duffin2fef1362021-04-15 13:32:00 +01001235
Paul Duffin5466a362021-06-07 10:25:31 +01001236// RequiredFilesFromPrebuiltApex returns the list of all files the prebuilt_bootclasspath_fragment
1237// requires from a prebuilt .apex file.
1238//
1239// If there is no image config associated with this fragment then it returns nil. Otherwise, it
1240// returns the files that are listed in the image config.
Jiakai Zhange6e90db2022-01-28 14:58:56 +00001241func (module *PrebuiltBootclasspathFragmentModule) RequiredFilesFromPrebuiltApex(ctx android.BaseModuleContext) []string {
Paul Duffin5466a362021-06-07 10:25:31 +01001242 imageConfig := module.getImageConfig(ctx)
1243 if imageConfig != nil {
Paul Duffinb4bbf2c2021-06-17 15:59:07 +01001244 files := []string{}
Jiakai Zhange6e90db2022-01-28 14:58:56 +00001245 if imageConfig.profileInstallPathInApex != "" {
1246 // Add the boot image profile.
1247 files = append(files, imageConfig.profileInstallPathInApex)
1248 }
Paul Duffin5466a362021-06-07 10:25:31 +01001249 return files
1250 }
1251 return nil
1252}
1253
Jiakai Zhange6e90db2022-01-28 14:58:56 +00001254var _ android.RequiredFilesFromPrebuiltApex = (*PrebuiltBootclasspathFragmentModule)(nil)
Paul Duffin5466a362021-06-07 10:25:31 +01001255
Paul Duffin7771eba2021-04-23 14:25:28 +01001256func prebuiltBootclasspathFragmentFactory() android.Module {
Jiakai Zhange6e90db2022-01-28 14:58:56 +00001257 m := &PrebuiltBootclasspathFragmentModule{}
Paul Duffin2fef1362021-04-15 13:32:00 +01001258 m.AddProperties(&m.properties, &m.prebuiltProperties)
Paul Duffinf7f65da2021-03-10 15:00:46 +00001259 // This doesn't actually have any prebuilt files of its own so pass a placeholder for the srcs
1260 // array.
1261 android.InitPrebuiltModule(m, &[]string{"placeholder"})
1262 android.InitApexModule(m)
Martin Stjernholmb79c7f12021-03-17 00:26:25 +00001263 android.InitAndroidArchModule(m, android.HostAndDeviceSupported, android.MultilibCommon)
Paul Duffinc7ef9892021-03-23 23:21:59 +00001264
Paul Duffin7771eba2021-04-23 14:25:28 +01001265 // Initialize the contents property from the image_name.
Paul Duffinc7ef9892021-03-23 23:21:59 +00001266 android.AddLoadHook(m, func(ctx android.LoadHookContext) {
Paul Duffin7771eba2021-04-23 14:25:28 +01001267 bootclasspathFragmentInitContentsFromImage(ctx, &m.BootclasspathFragmentModule)
Paul Duffinc7ef9892021-03-23 23:21:59 +00001268 })
Paul Duffinf7f65da2021-03-10 15:00:46 +00001269 return m
1270}