blob: edf42351f3476905616e2b7ece406103f793a47b [file] [log] [blame]
Paul Duffin438eb572021-05-21 16:58:23 +01001// 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 (
18 "android/soong/android"
19 "github.com/google/blueprint"
20)
21
22// MonolithicHiddenAPIInfo contains information needed/provided by the hidden API generation of the
23// monolithic hidden API files.
24//
25// Each list of paths includes all the equivalent paths from each of the bootclasspath_fragment
26// modules that contribute to the platform-bootclasspath.
27type MonolithicHiddenAPIInfo struct {
28 // FlagsFilesByCategory maps from the flag file category to the paths containing information for
29 // that category.
30 FlagsFilesByCategory FlagFilesByCategory
31
32 // The paths to the generated stub-flags.csv files.
33 StubFlagsPaths android.Paths
34
35 // The paths to the generated annotation-flags.csv files.
36 AnnotationFlagsPaths android.Paths
37
38 // The paths to the generated metadata.csv files.
39 MetadataPaths android.Paths
40
41 // The paths to the generated index.csv files.
42 IndexPaths android.Paths
43
44 // The paths to the generated all-flags.csv files.
45 AllFlagsPaths android.Paths
46}
47
48// newMonolithicHiddenAPIInfo creates a new MonolithicHiddenAPIInfo from the flagFilesByCategory
49// plus information provided by each of the fragments.
50func newMonolithicHiddenAPIInfo(ctx android.ModuleContext, flagFilesByCategory FlagFilesByCategory, fragments []android.Module) MonolithicHiddenAPIInfo {
51 monolithicInfo := MonolithicHiddenAPIInfo{}
52
53 monolithicInfo.FlagsFilesByCategory = flagFilesByCategory
54
55 // Merge all the information from the fragments. The fragments form a DAG so it is possible that
56 // this will introduce duplicates so they will be resolved after processing all the fragments.
57 for _, fragment := range fragments {
Paul Duffinaf99afa2021-05-21 22:18:56 +010058 if ctx.OtherModuleHasProvider(fragment, HiddenAPIInfoProvider) {
59 info := ctx.OtherModuleProvider(fragment, HiddenAPIInfoProvider).(HiddenAPIInfo)
Paul Duffin438eb572021-05-21 16:58:23 +010060 monolithicInfo.append(&info)
61 }
62 }
63
64 // Dedup paths.
65 monolithicInfo.dedup()
66
67 return monolithicInfo
68}
69
70// append appends all the files from the supplied info to the corresponding files in this struct.
Paul Duffinaf99afa2021-05-21 22:18:56 +010071func (i *MonolithicHiddenAPIInfo) append(other *HiddenAPIInfo) {
Paul Duffin438eb572021-05-21 16:58:23 +010072 i.FlagsFilesByCategory.append(other.FlagFilesByCategory)
Paul Duffin62370922021-05-23 16:55:37 +010073
74 // The output may not be set if the bootclasspath_fragment has not yet been updated to support
75 // hidden API processing.
76 // TODO(b/179354495): Switch back to append once all bootclasspath_fragment modules have been
77 // updated to support hidden API processing properly.
78 appendIfNotNil := func(paths android.Paths, path android.Path) android.Paths {
79 if path == nil {
80 return paths
81 }
82 return append(paths, path)
83 }
84 i.StubFlagsPaths = appendIfNotNil(i.StubFlagsPaths, other.StubFlagsPath)
85 i.AnnotationFlagsPaths = appendIfNotNil(i.AnnotationFlagsPaths, other.AnnotationFlagsPath)
86 i.MetadataPaths = appendIfNotNil(i.MetadataPaths, other.MetadataPath)
87 i.IndexPaths = appendIfNotNil(i.IndexPaths, other.IndexPath)
88 i.AllFlagsPaths = appendIfNotNil(i.AllFlagsPaths, other.AllFlagsPath)
Paul Duffin438eb572021-05-21 16:58:23 +010089}
90
91// dedup removes duplicates in all the paths, while maintaining the order in which they were
92// appended.
93func (i *MonolithicHiddenAPIInfo) dedup() {
94 i.FlagsFilesByCategory.dedup()
95 i.StubFlagsPaths = android.FirstUniquePaths(i.StubFlagsPaths)
96 i.AnnotationFlagsPaths = android.FirstUniquePaths(i.AnnotationFlagsPaths)
97 i.MetadataPaths = android.FirstUniquePaths(i.MetadataPaths)
98 i.IndexPaths = android.FirstUniquePaths(i.IndexPaths)
99 i.AllFlagsPaths = android.FirstUniquePaths(i.AllFlagsPaths)
100}
101
Paul Duffin524c82c2021-06-09 14:39:28 +0100102var MonolithicHiddenAPIInfoProvider = blueprint.NewProvider(MonolithicHiddenAPIInfo{})