blob: c315124c95fa0c0238a7cc794092d06f35975f90 [file] [log] [blame]
Colin Cross44df5812019-02-15 23:06:46 -08001// Copyright 2019 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 (
Nicolas Geoffray47cbfcd2020-02-17 14:55:06 +000018 "fmt"
Colin Cross44df5812019-02-15 23:06:46 -080019 "path/filepath"
20 "strings"
Colin Cross2d00f0d2019-05-09 21:50:00 -070021
22 "android/soong/android"
23 "android/soong/dexpreopt"
Colin Cross44df5812019-02-15 23:06:46 -080024)
25
Colin Cross44df5812019-02-15 23:06:46 -080026// systemServerClasspath returns the on-device locations of the modules in the system server classpath. It is computed
27// once the first time it is called for any ctx.Config(), and returns the same slice for all future calls with the same
28// ctx.Config().
Ulya Trafimovichf3ff0102019-12-03 15:39:23 +000029func systemServerClasspath(ctx android.MakeVarsContext) []string {
Colin Cross44df5812019-02-15 23:06:46 -080030 return ctx.Config().OnceStringSlice(systemServerClasspathKey, func() []string {
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +000031 global := dexpreopt.GetGlobalConfig(ctx)
Colin Cross44df5812019-02-15 23:06:46 -080032 var systemServerClasspathLocations []string
Ulya Trafimovichdacc6c52020-03-11 11:59:34 +000033 nonUpdatable := dexpreopt.NonUpdatableSystemServerJars(ctx, global)
34 // 1) Non-updatable jars.
35 for _, m := range nonUpdatable {
Colin Cross44df5812019-02-15 23:06:46 -080036 systemServerClasspathLocations = append(systemServerClasspathLocations,
37 filepath.Join("/system/framework", m+".jar"))
38 }
Nicolas Geoffray47cbfcd2020-02-17 14:55:06 +000039 // 2) The jars that are from an updatable apex.
Ulya Trafimovich249386a2020-07-01 14:31:13 +010040 systemServerClasspathLocations = append(systemServerClasspathLocations,
41 global.UpdatableSystemServerJars.DevicePaths(ctx.Config(), android.Android)...)
42 if len(systemServerClasspathLocations) != len(global.SystemServerJars)+global.UpdatableSystemServerJars.Len() {
Nicolas Geoffray47cbfcd2020-02-17 14:55:06 +000043 panic(fmt.Errorf("Wrong number of system server jars, got %d, expected %d",
44 len(systemServerClasspathLocations),
Ulya Trafimovich249386a2020-07-01 14:31:13 +010045 len(global.SystemServerJars)+global.UpdatableSystemServerJars.Len()))
Nicolas Geoffray47cbfcd2020-02-17 14:55:06 +000046 }
Colin Cross44df5812019-02-15 23:06:46 -080047 return systemServerClasspathLocations
48 })
49}
50
51var systemServerClasspathKey = android.NewOnceKey("systemServerClasspath")
52
Colin Crossc11e0c52019-05-08 15:18:22 -070053// dexpreoptTargets returns the list of targets that are relevant to dexpreopting, which excludes architectures
54// supported through native bridge.
55func dexpreoptTargets(ctx android.PathContext) []android.Target {
56 var targets []android.Target
Colin Cross3b19f5d2019-09-17 14:45:31 -070057 for _, target := range ctx.Config().Targets[android.Android] {
Colin Crossc11e0c52019-05-08 15:18:22 -070058 if target.NativeBridge == android.NativeBridgeDisabled {
59 targets = append(targets, target)
60 }
61 }
David Srbecky7f8dac12020-02-13 16:00:45 +000062 // We may also need the images on host in order to run host-based tests.
63 for _, target := range ctx.Config().Targets[android.BuildOs] {
64 targets = append(targets, target)
65 }
Colin Crossc11e0c52019-05-08 15:18:22 -070066
67 return targets
68}
69
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +000070var (
Ulya Trafimovich4cdada22020-02-10 15:29:28 +000071 bootImageConfigKey = android.NewOnceKey("bootImageConfig")
72 artBootImageName = "art"
73 frameworkBootImageName = "boot"
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +000074)
Ulyana Trafimovichde534412019-11-08 10:51:01 +000075
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +000076// Construct the global boot image configs.
77func genBootImageConfigs(ctx android.PathContext) map[string]*bootImageConfig {
78 return ctx.Config().Once(bootImageConfigKey, func() interface{} {
79
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +000080 global := dexpreopt.GetGlobalConfig(ctx)
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +000081 targets := dexpreoptTargets(ctx)
82 deviceDir := android.PathForOutput(ctx, ctx.Config().DeviceName())
Nicolas Geoffray72892f12019-02-22 15:34:40 +000083
Paul Duffin7d584e92020-10-23 18:26:03 +010084 artModules := global.ArtApexJars
Ulya Trafimovich44561882020-01-03 13:25:54 +000085 // With EMMA_INSTRUMENT_FRAMEWORK=true the Core libraries depend on jacoco.
86 if ctx.Config().IsEnvTrue("EMMA_INSTRUMENT_FRAMEWORK") {
Paul Duffin7d584e92020-10-23 18:26:03 +010087 artModules = artModules.Append("com.android.art", "jacocoagent")
Ulya Trafimovich44561882020-01-03 13:25:54 +000088 }
Paul Duffin7d584e92020-10-23 18:26:03 +010089 frameworkModules := global.BootJars.RemoveList(artModules)
Nicolas Geoffray72892f12019-02-22 15:34:40 +000090
Martin Stjernholmea581fc2020-10-14 23:29:49 +010091 artSubdir := "apex/art_boot_images/javalib"
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +000092 frameworkSubdir := "system/framework"
Nicolas Geoffray72892f12019-02-22 15:34:40 +000093
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +000094 // ART config for the primary boot image in the ART apex.
95 // It includes the Core Libraries.
96 artCfg := bootImageConfig{
David Srbeckyab994982020-03-30 17:24:13 +010097 name: artBootImageName,
98 stem: "boot",
99 installSubdir: artSubdir,
100 modules: artModules,
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000101 }
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000102
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000103 // Framework config for the boot image extension.
Ulyana Trafimovich5a4ccd12019-12-18 17:32:33 +0000104 // It includes framework libraries and depends on the ART config.
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000105 frameworkCfg := bootImageConfig{
David Srbeckyab994982020-03-30 17:24:13 +0100106 extends: &artCfg,
107 name: frameworkBootImageName,
108 stem: "boot",
109 installSubdir: frameworkSubdir,
110 modules: frameworkModules,
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000111 }
112
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000113 configs := map[string]*bootImageConfig{
Ulya Trafimovich4cdada22020-02-10 15:29:28 +0000114 artBootImageName: &artCfg,
115 frameworkBootImageName: &frameworkCfg,
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000116 }
117
118 // common to all configs
119 for _, c := range configs {
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000120 c.dir = deviceDir.Join(ctx, "dex_"+c.name+"jars")
121 c.symbolsDir = deviceDir.Join(ctx, "dex_"+c.name+"jars_unstripped")
122
123 // expands to <stem>.art for primary image and <stem>-<1st module>.art for extension
Ulya Trafimovich8640ab92020-05-11 18:06:15 +0100124 imageName := c.firstModuleNameOrStem(ctx) + ".art"
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000125
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000126 // The path to bootclasspath dex files needs to be known at module
127 // GenerateAndroidBuildAction time, before the bootclasspath modules have been compiled.
128 // Set up known paths for them, the singleton rules will copy them there.
129 // TODO(b/143682396): use module dependencies instead
130 inputDir := deviceDir.Join(ctx, "dex_"+c.name+"jars_input")
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100131 c.dexPaths = c.modules.BuildPaths(ctx, inputDir)
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000132 c.dexPathsDeps = c.dexPaths
133
David Srbeckyc177ebe2020-02-18 20:43:06 +0000134 // Create target-specific variants.
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000135 for _, target := range targets {
136 arch := target.Arch.ArchType
David Srbecky7f8dac12020-02-13 16:00:45 +0000137 imageDir := c.dir.Join(ctx, target.Os.String(), c.installSubdir, arch.String())
David Srbeckyc177ebe2020-02-18 20:43:06 +0000138 variant := &bootImageVariant{
139 bootImageConfig: c,
140 target: target,
141 images: imageDir.Join(ctx, imageName),
142 imagesDeps: c.moduleFiles(ctx, imageDir, ".art", ".oat", ".vdex"),
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100143 dexLocations: c.modules.DevicePaths(ctx.Config(), target.Os),
David Srbeckyab994982020-03-30 17:24:13 +0100144 }
145 variant.dexLocationsDeps = variant.dexLocations
David Srbeckyc177ebe2020-02-18 20:43:06 +0000146 c.variants = append(c.variants, variant)
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000147 }
Colin Cross31bf00d2019-12-04 13:16:01 -0800148
149 c.zip = c.dir.Join(ctx, c.name+".zip")
Nicolas Geoffrayfeef2ef2019-04-30 09:43:22 +0100150 }
151
Ulyana Trafimovich5a4ccd12019-12-18 17:32:33 +0000152 // specific to the framework config
153 frameworkCfg.dexPathsDeps = append(artCfg.dexPathsDeps, frameworkCfg.dexPathsDeps...)
David Srbeckyc177ebe2020-02-18 20:43:06 +0000154 for i := range targets {
155 frameworkCfg.variants[i].primaryImages = artCfg.variants[i].images
David Srbeckyab994982020-03-30 17:24:13 +0100156 frameworkCfg.variants[i].dexLocationsDeps = append(artCfg.variants[i].dexLocations, frameworkCfg.variants[i].dexLocationsDeps...)
David Srbeckyc177ebe2020-02-18 20:43:06 +0000157 }
Ulyana Trafimovich5a4ccd12019-12-18 17:32:33 +0000158
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000159 return configs
160 }).(map[string]*bootImageConfig)
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000161}
162
David Srbeckyc177ebe2020-02-18 20:43:06 +0000163func artBootImageConfig(ctx android.PathContext) *bootImageConfig {
164 return genBootImageConfigs(ctx)[artBootImageName]
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000165}
166
David Srbeckyc177ebe2020-02-18 20:43:06 +0000167func defaultBootImageConfig(ctx android.PathContext) *bootImageConfig {
168 return genBootImageConfigs(ctx)[frameworkBootImageName]
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000169}
170
Colin Cross44df5812019-02-15 23:06:46 -0800171func defaultBootclasspath(ctx android.PathContext) []string {
172 return ctx.Config().OnceStringSlice(defaultBootclasspathKey, func() []string {
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000173 global := dexpreopt.GetGlobalConfig(ctx)
Colin Cross44df5812019-02-15 23:06:46 -0800174 image := defaultBootImageConfig(ctx)
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000175
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100176 updatableBootclasspath := global.UpdatableBootJars.DevicePaths(ctx.Config(), android.Android)
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000177
David Srbeckyab994982020-03-30 17:24:13 +0100178 bootclasspath := append(copyOf(image.getAnyAndroidVariant().dexLocationsDeps), updatableBootclasspath...)
Colin Cross44df5812019-02-15 23:06:46 -0800179 return bootclasspath
180 })
181}
182
183var defaultBootclasspathKey = android.NewOnceKey("defaultBootclasspath")
184
185var copyOf = android.CopyOf
186
187func init() {
188 android.RegisterMakeVarsProvider(pctx, dexpreoptConfigMakevars)
189}
190
191func dexpreoptConfigMakevars(ctx android.MakeVarsContext) {
192 ctx.Strict("PRODUCT_BOOTCLASSPATH", strings.Join(defaultBootclasspath(ctx), ":"))
David Srbeckyab994982020-03-30 17:24:13 +0100193 ctx.Strict("PRODUCT_DEX2OAT_BOOTCLASSPATH", strings.Join(defaultBootImageConfig(ctx).getAnyAndroidVariant().dexLocationsDeps, ":"))
Colin Cross44df5812019-02-15 23:06:46 -0800194 ctx.Strict("PRODUCT_SYSTEM_SERVER_CLASSPATH", strings.Join(systemServerClasspath(ctx), ":"))
Colin Cross9be41522019-02-20 10:40:13 -0800195
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100196 ctx.Strict("DEXPREOPT_BOOT_JARS_MODULES", strings.Join(defaultBootImageConfig(ctx).modules.CopyOfApexJarPairs(), ":"))
Colin Cross44df5812019-02-15 23:06:46 -0800197}