blob: f6cb79585df1afc76bb07ec0aa95be07e7000224 [file] [log] [blame]
satayev95e9c5b2021-04-29 11:50:26 +01001// Copyright 2021 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
15package java
16
17import (
18 "android/soong/android"
satayev013485b2021-05-06 23:38:10 +010019 "android/soong/dexpreopt"
Colin Crossc33e5212021-05-25 18:16:02 -070020
satayev9366a052021-05-17 21:13:44 +010021 "github.com/google/blueprint"
satayev95e9c5b2021-04-29 11:50:26 +010022)
23
24func init() {
25 registerSystemserverClasspathBuildComponents(android.InitRegistrationContext)
Jiakai Zhanga8d86602021-09-26 09:02:17 +000026
Paul Duffin4e7d1c42022-05-13 13:12:19 +000027 android.RegisterSdkMemberType(SystemServerClasspathFragmentSdkMemberType)
satayev95e9c5b2021-04-29 11:50:26 +010028}
29
30func registerSystemserverClasspathBuildComponents(ctx android.RegistrationContext) {
satayev95e9c5b2021-04-29 11:50:26 +010031 ctx.RegisterModuleType("platform_systemserverclasspath", platformSystemServerClasspathFactory)
satayevaa86bac2021-05-13 19:01:52 +010032 ctx.RegisterModuleType("systemserverclasspath_fragment", systemServerClasspathFactory)
Jiakai Zhangc9864272021-09-26 03:52:19 +000033 ctx.RegisterModuleType("prebuilt_systemserverclasspath_fragment", prebuiltSystemServerClasspathModuleFactory)
satayev95e9c5b2021-04-29 11:50:26 +010034}
35
Paul Duffin4e7d1c42022-05-13 13:12:19 +000036var SystemServerClasspathFragmentSdkMemberType = &systemServerClasspathFragmentMemberType{
37 SdkMemberTypeBase: android.SdkMemberTypeBase{
38 PropertyName: "systemserverclasspath_fragments",
39 SupportsSdk: true,
40
41 // Support for adding systemserverclasspath_fragments to the sdk snapshot was only added in
42 // Tiramisu.
43 SupportedBuildReleaseSpecification: "Tiramisu+",
44 },
45}
46
satayev95e9c5b2021-04-29 11:50:26 +010047type platformSystemServerClasspathModule struct {
48 android.ModuleBase
49
50 ClasspathFragmentBase
51}
52
53func platformSystemServerClasspathFactory() android.Module {
54 m := &platformSystemServerClasspathModule{}
55 initClasspathFragment(m, SYSTEMSERVERCLASSPATH)
56 android.InitAndroidArchModule(m, android.DeviceSupported, android.MultilibCommon)
57 return m
58}
59
satayevaa86bac2021-05-13 19:01:52 +010060func (p *platformSystemServerClasspathModule) AndroidMkEntries() (entries []android.AndroidMkEntries) {
61 return p.classpathFragmentBase().androidMkEntries()
satayev95e9c5b2021-04-29 11:50:26 +010062}
63
satayevaa86bac2021-05-13 19:01:52 +010064func (p *platformSystemServerClasspathModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
satayevb3090502021-06-15 17:49:10 +010065 configuredJars := p.configuredJars(ctx)
66 classpathJars := configuredJarListToClasspathJars(ctx, configuredJars, p.classpathType)
Jiakai Zhangcee9e192021-10-29 19:46:45 +000067 standaloneConfiguredJars := p.standaloneConfiguredJars(ctx)
68 standaloneClasspathJars := configuredJarListToClasspathJars(ctx, standaloneConfiguredJars, STANDALONE_SYSTEMSERVER_JARS)
Jiakai Zhang389a6472021-12-14 18:54:06 +000069 configuredJars = configuredJars.AppendList(&standaloneConfiguredJars)
Jiakai Zhangcee9e192021-10-29 19:46:45 +000070 classpathJars = append(classpathJars, standaloneClasspathJars...)
satayevb3090502021-06-15 17:49:10 +010071 p.classpathFragmentBase().generateClasspathProtoBuildActions(ctx, configuredJars, classpathJars)
satayev013485b2021-05-06 23:38:10 +010072}
73
satayev142ed272021-06-15 16:21:17 +010074func (p *platformSystemServerClasspathModule) configuredJars(ctx android.ModuleContext) android.ConfiguredJarList {
satayevb3090502021-06-15 17:49:10 +010075 // TODO(satayev): include any apex jars that don't populate their classpath proto config.
76 return dexpreopt.GetGlobalConfig(ctx).SystemServerJars
satayev95e9c5b2021-04-29 11:50:26 +010077}
satayevaa86bac2021-05-13 19:01:52 +010078
Jiakai Zhangcee9e192021-10-29 19:46:45 +000079func (p *platformSystemServerClasspathModule) standaloneConfiguredJars(ctx android.ModuleContext) android.ConfiguredJarList {
80 return dexpreopt.GetGlobalConfig(ctx).StandaloneSystemServerJars
81}
82
satayev333a1732021-05-17 21:35:26 +010083type SystemServerClasspathModule struct {
satayevaa86bac2021-05-13 19:01:52 +010084 android.ModuleBase
satayev333a1732021-05-17 21:35:26 +010085 android.ApexModuleBase
Jiakai Zhanga8d86602021-09-26 09:02:17 +000086 android.SdkBase
satayevaa86bac2021-05-13 19:01:52 +010087
88 ClasspathFragmentBase
satayev9366a052021-05-17 21:13:44 +010089
90 properties systemServerClasspathFragmentProperties
braleeb0c1f0c2021-06-07 22:49:13 +080091
92 // Collect the module directory for IDE info in java/jdeps.go.
93 modulePaths []string
satayev9366a052021-05-17 21:13:44 +010094}
95
satayev333a1732021-05-17 21:35:26 +010096func (s *SystemServerClasspathModule) ShouldSupportSdkVersion(ctx android.BaseModuleContext, sdkVersion android.ApiLevel) error {
97 return nil
98}
99
satayev9366a052021-05-17 21:13:44 +0100100type systemServerClasspathFragmentProperties struct {
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000101 // List of system_server classpath jars, could be either java_library, or java_sdk_library.
satayev9366a052021-05-17 21:13:44 +0100102 //
103 // The order of this list matters as it is the order that is used in the SYSTEMSERVERCLASSPATH.
104 Contents []string
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000105
106 // List of jars that system_server loads dynamically using separate classloaders.
107 //
108 // The order does not matter.
109 Standalone_contents []string
satayevaa86bac2021-05-13 19:01:52 +0100110}
111
112func systemServerClasspathFactory() android.Module {
satayev333a1732021-05-17 21:35:26 +0100113 m := &SystemServerClasspathModule{}
satayev9366a052021-05-17 21:13:44 +0100114 m.AddProperties(&m.properties)
satayev333a1732021-05-17 21:35:26 +0100115 android.InitApexModule(m)
Jiakai Zhanga8d86602021-09-26 09:02:17 +0000116 android.InitSdkAwareModule(m)
satayevaa86bac2021-05-13 19:01:52 +0100117 initClasspathFragment(m, SYSTEMSERVERCLASSPATH)
118 android.InitAndroidArchModule(m, android.DeviceSupported, android.MultilibCommon)
119 return m
120}
121
satayev333a1732021-05-17 21:35:26 +0100122func (s *SystemServerClasspathModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000123 if len(s.properties.Contents) == 0 && len(s.properties.Standalone_contents) == 0 {
124 ctx.PropertyErrorf("contents", "Either contents or standalone_contents needs to be non-empty")
satayev9366a052021-05-17 21:13:44 +0100125 }
126
satayevb3090502021-06-15 17:49:10 +0100127 configuredJars := s.configuredJars(ctx)
128 classpathJars := configuredJarListToClasspathJars(ctx, configuredJars, s.classpathType)
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000129 standaloneConfiguredJars := s.standaloneConfiguredJars(ctx)
130 standaloneClasspathJars := configuredJarListToClasspathJars(ctx, standaloneConfiguredJars, STANDALONE_SYSTEMSERVER_JARS)
Jiakai Zhang389a6472021-12-14 18:54:06 +0000131 configuredJars = configuredJars.AppendList(&standaloneConfiguredJars)
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000132 classpathJars = append(classpathJars, standaloneClasspathJars...)
satayevb3090502021-06-15 17:49:10 +0100133 s.classpathFragmentBase().generateClasspathProtoBuildActions(ctx, configuredJars, classpathJars)
braleeb0c1f0c2021-06-07 22:49:13 +0800134
135 // Collect the module directory for IDE info in java/jdeps.go.
136 s.modulePaths = append(s.modulePaths, ctx.ModuleDir())
satayevaa86bac2021-05-13 19:01:52 +0100137}
138
satayev142ed272021-06-15 16:21:17 +0100139func (s *SystemServerClasspathModule) configuredJars(ctx android.ModuleContext) android.ConfiguredJarList {
satayev703c67a2021-05-20 21:33:41 +0100140 global := dexpreopt.GetGlobalConfig(ctx)
141
satayevd604b212021-07-21 14:23:52 +0100142 possibleUpdatableModules := gatherPossibleApexModuleNamesAndStems(ctx, s.properties.Contents, systemServerClasspathFragmentContentDepTag)
satayevd34eb0c2021-08-06 13:20:28 +0100143 jars, unknown := global.ApexSystemServerJars.Filter(possibleUpdatableModules)
144 // TODO(satayev): remove geotz ssc_fragment, since geotz is not part of SSCP anymore.
145 _, unknown = android.RemoveFromList("geotz", unknown)
Keun young Parkd64ab232021-10-18 08:42:23 -0700146 // This module only exists in car products.
147 // So ignore it even if it is not in PRODUCT_APEX_SYSTEM_SERVER_JARS.
148 // TODO(b/203233647): Add better mechanism to make it optional.
149 _, unknown = android.RemoveFromList("car-frameworks-service-module", unknown)
Samiul Islam7b385c52021-10-11 22:47:13 +0100150
Alan Stokesbcd567e2021-11-12 15:21:43 +0000151 // This module is optional, so it is not present in all products.
152 // (See PRODUCT_ISOLATED_COMPILATION_ENABLED.)
153 // So ignore it even if it is not in PRODUCT_APEX_SYSTEM_SERVER_JARS.
154 // TODO(b/203233647): Add better mechanism to make it optional.
155 _, unknown = android.RemoveFromList("service-compos", unknown)
156
Samiul Islam7b385c52021-10-11 22:47:13 +0100157 // TODO(satayev): for apex_test we want to include all contents unconditionally to classpaths
158 // config. However, any test specific jars would not be present in ApexSystemServerJars. Instead,
159 // we should check if we are creating a config for apex_test via ApexInfo and amend the values.
160 // This is an exception to support end-to-end test for ApexdUnitTests, until such support exists.
161 if android.InList("test_service-apexd", possibleUpdatableModules) {
162 jars = jars.Append("com.android.apex.test_package", "test_service-apexd")
Paul Duffin458a15b2022-11-25 12:18:24 +0000163 } else if global.ApexSystemServerJars.Len() > 0 && len(unknown) > 0 {
Samiul Islam7b385c52021-10-11 22:47:13 +0100164 // For non test apexes, make sure that all contents are actually declared in make.
Ulya Trafimoviche5b2b492021-10-04 15:42:53 +0100165 ctx.ModuleErrorf("%s in contents must also be declared in PRODUCT_APEX_SYSTEM_SERVER_JARS", unknown)
satayevd34eb0c2021-08-06 13:20:28 +0100166 }
167
168 return jars
satayevaa86bac2021-05-13 19:01:52 +0100169}
satayev9366a052021-05-17 21:13:44 +0100170
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000171func (s *SystemServerClasspathModule) standaloneConfiguredJars(ctx android.ModuleContext) android.ConfiguredJarList {
172 global := dexpreopt.GetGlobalConfig(ctx)
173
174 possibleUpdatableModules := gatherPossibleApexModuleNamesAndStems(ctx, s.properties.Standalone_contents, systemServerClasspathFragmentContentDepTag)
175 jars, _ := global.ApexStandaloneSystemServerJars.Filter(possibleUpdatableModules)
176
177 // TODO(jiakaiz): add a check to ensure that the contents are declared in make.
178
179 return jars
180}
181
satayev9366a052021-05-17 21:13:44 +0100182type systemServerClasspathFragmentContentDependencyTag struct {
183 blueprint.BaseDependencyTag
184}
185
Paul Duffin25322e42021-09-07 14:52:48 +0100186// The systemserverclasspath_fragment contents must never depend on prebuilts.
187func (systemServerClasspathFragmentContentDependencyTag) ReplaceSourceWithPrebuilt() bool {
188 return false
189}
190
Jiakai Zhanga8d86602021-09-26 09:02:17 +0000191// SdkMemberType causes dependencies added with this tag to be automatically added to the sdk as if
192// they were specified using java_systemserver_libs or java_sdk_libs.
193func (b systemServerClasspathFragmentContentDependencyTag) SdkMemberType(child android.Module) android.SdkMemberType {
194 // If the module is a java_sdk_library then treat it as if it was specified in the java_sdk_libs
195 // property, otherwise treat if it was specified in the java_systemserver_libs property.
196 if javaSdkLibrarySdkMemberType.IsInstance(child) {
197 return javaSdkLibrarySdkMemberType
198 }
199
200 return javaSystemserverLibsSdkMemberType
201}
202
203func (b systemServerClasspathFragmentContentDependencyTag) ExportMember() bool {
204 return true
205}
206
Colin Crossc33e5212021-05-25 18:16:02 -0700207// Contents of system server fragments in an apex are considered to be directly in the apex, as if
208// they were listed in java_libs.
209func (systemServerClasspathFragmentContentDependencyTag) CopyDirectlyInAnyApex() {}
210
Jiakai Zhang774dd302021-09-26 03:54:25 +0000211// Contents of system server fragments require files from prebuilt apex files.
212func (systemServerClasspathFragmentContentDependencyTag) RequiresFilesFromPrebuiltApex() {}
213
Paul Duffin25322e42021-09-07 14:52:48 +0100214var _ android.ReplaceSourceWithPrebuilt = systemServerClasspathFragmentContentDepTag
Jiakai Zhanga8d86602021-09-26 09:02:17 +0000215var _ android.SdkMemberDependencyTag = systemServerClasspathFragmentContentDepTag
Colin Crossc33e5212021-05-25 18:16:02 -0700216var _ android.CopyDirectlyInAnyApexTag = systemServerClasspathFragmentContentDepTag
Jiakai Zhang774dd302021-09-26 03:54:25 +0000217var _ android.RequiresFilesFromPrebuiltApexTag = systemServerClasspathFragmentContentDepTag
Colin Crossc33e5212021-05-25 18:16:02 -0700218
satayev9366a052021-05-17 21:13:44 +0100219// The tag used for the dependency between the systemserverclasspath_fragment module and its contents.
220var systemServerClasspathFragmentContentDepTag = systemServerClasspathFragmentContentDependencyTag{}
221
222func IsSystemServerClasspathFragmentContentDepTag(tag blueprint.DependencyTag) bool {
223 return tag == systemServerClasspathFragmentContentDepTag
224}
225
satayev333a1732021-05-17 21:35:26 +0100226func (s *SystemServerClasspathModule) ComponentDepsMutator(ctx android.BottomUpMutatorContext) {
satayev9366a052021-05-17 21:13:44 +0100227 module := ctx.Module()
Jiakai Zhangc9864272021-09-26 03:52:19 +0000228 _, isSourceModule := module.(*SystemServerClasspathModule)
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000229 var deps []string
230 deps = append(deps, s.properties.Contents...)
231 deps = append(deps, s.properties.Standalone_contents...)
satayev9366a052021-05-17 21:13:44 +0100232
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000233 for _, name := range deps {
Jiakai Zhangc9864272021-09-26 03:52:19 +0000234 // A systemserverclasspath_fragment must depend only on other source modules, while the
235 // prebuilt_systemserverclasspath_fragment_fragment must only depend on other prebuilt modules.
236 if !isSourceModule {
237 name = android.PrebuiltNameFromSource(name)
238 }
satayev9366a052021-05-17 21:13:44 +0100239 ctx.AddDependency(module, systemServerClasspathFragmentContentDepTag, name)
240 }
241}
braleeb0c1f0c2021-06-07 22:49:13 +0800242
243// Collect information for opening IDE project files in java/jdeps.go.
244func (s *SystemServerClasspathModule) IDEInfo(dpInfo *android.IdeInfo) {
245 dpInfo.Deps = append(dpInfo.Deps, s.properties.Contents...)
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000246 dpInfo.Deps = append(dpInfo.Deps, s.properties.Standalone_contents...)
braleeb0c1f0c2021-06-07 22:49:13 +0800247 dpInfo.Paths = append(dpInfo.Paths, s.modulePaths...)
248}
Jiakai Zhangc9864272021-09-26 03:52:19 +0000249
Jiakai Zhanga8d86602021-09-26 09:02:17 +0000250type systemServerClasspathFragmentMemberType struct {
251 android.SdkMemberTypeBase
252}
253
254func (s *systemServerClasspathFragmentMemberType) AddDependencies(ctx android.SdkDependencyContext, dependencyTag blueprint.DependencyTag, names []string) {
255 ctx.AddVariationDependencies(nil, dependencyTag, names...)
256}
257
258func (s *systemServerClasspathFragmentMemberType) IsInstance(module android.Module) bool {
259 _, ok := module.(*SystemServerClasspathModule)
260 return ok
261}
262
263func (s *systemServerClasspathFragmentMemberType) AddPrebuiltModule(ctx android.SdkMemberContext, member android.SdkMember) android.BpModule {
264 return ctx.SnapshotBuilder().AddPrebuiltModule(member, "prebuilt_systemserverclasspath_fragment")
265}
266
267func (s *systemServerClasspathFragmentMemberType) CreateVariantPropertiesStruct() android.SdkMemberProperties {
268 return &systemServerClasspathFragmentSdkMemberProperties{}
269}
270
271type systemServerClasspathFragmentSdkMemberProperties struct {
272 android.SdkMemberPropertiesBase
273
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000274 // List of system_server classpath jars, could be either java_library, or java_sdk_library.
275 //
276 // The order of this list matters as it is the order that is used in the SYSTEMSERVERCLASSPATH.
Jiakai Zhanga8d86602021-09-26 09:02:17 +0000277 Contents []string
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000278
279 // List of jars that system_server loads dynamically using separate classloaders.
280 //
281 // The order does not matter.
282 Standalone_contents []string
Jiakai Zhanga8d86602021-09-26 09:02:17 +0000283}
284
285func (s *systemServerClasspathFragmentSdkMemberProperties) PopulateFromVariant(ctx android.SdkMemberContext, variant android.Module) {
286 module := variant.(*SystemServerClasspathModule)
287
288 s.Contents = module.properties.Contents
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000289 s.Standalone_contents = module.properties.Standalone_contents
Jiakai Zhanga8d86602021-09-26 09:02:17 +0000290}
291
292func (s *systemServerClasspathFragmentSdkMemberProperties) AddToPropertySet(ctx android.SdkMemberContext, propertySet android.BpPropertySet) {
293 builder := ctx.SnapshotBuilder()
294 requiredMemberDependency := builder.SdkMemberReferencePropertyTag(true)
295
296 if len(s.Contents) > 0 {
297 propertySet.AddPropertyWithTag("contents", s.Contents, requiredMemberDependency)
298 }
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000299
300 if len(s.Standalone_contents) > 0 {
301 propertySet.AddPropertyWithTag("standalone_contents", s.Standalone_contents, requiredMemberDependency)
302 }
Jiakai Zhanga8d86602021-09-26 09:02:17 +0000303}
304
305var _ android.SdkMemberType = (*systemServerClasspathFragmentMemberType)(nil)
306
Jiakai Zhangc9864272021-09-26 03:52:19 +0000307// A prebuilt version of the systemserverclasspath_fragment module.
308type prebuiltSystemServerClasspathModule struct {
309 SystemServerClasspathModule
310 prebuilt android.Prebuilt
311}
312
313func (module *prebuiltSystemServerClasspathModule) Prebuilt() *android.Prebuilt {
314 return &module.prebuilt
315}
316
317func (module *prebuiltSystemServerClasspathModule) Name() string {
318 return module.prebuilt.Name(module.ModuleBase.Name())
319}
320
Jiakai Zhang774dd302021-09-26 03:54:25 +0000321func (module *prebuiltSystemServerClasspathModule) RequiredFilesFromPrebuiltApex(ctx android.BaseModuleContext) []string {
322 return nil
323}
324
325var _ android.RequiredFilesFromPrebuiltApex = (*prebuiltSystemServerClasspathModule)(nil)
326
Jiakai Zhangc9864272021-09-26 03:52:19 +0000327func prebuiltSystemServerClasspathModuleFactory() android.Module {
328 m := &prebuiltSystemServerClasspathModule{}
329 m.AddProperties(&m.properties)
330 // This doesn't actually have any prebuilt files of its own so pass a placeholder for the srcs
331 // array.
332 android.InitPrebuiltModule(m, &[]string{"placeholder"})
333 android.InitApexModule(m)
Jiakai Zhanga8d86602021-09-26 09:02:17 +0000334 android.InitSdkAwareModule(m)
Jiakai Zhangc9864272021-09-26 03:52:19 +0000335 android.InitAndroidArchModule(m, android.DeviceSupported, android.MultilibCommon)
336 return m
337}