blob: f13d9f210f7d6141b50d7b5847079117e21a98a6 [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.
Roshan Pius9b51a402019-11-21 12:36:53 -080040 for _, m := range global.UpdatableSystemServerJars {
Roshan Pius9b51a402019-11-21 12:36:53 -080041 systemServerClasspathLocations = append(systemServerClasspathLocations,
Ulya Trafimovich8640ab92020-05-11 18:06:15 +010042 dexpreopt.GetJarLocationFromApexJarPair(ctx, m))
Roshan Pius9b51a402019-11-21 12:36:53 -080043 }
Nicolas Geoffray47cbfcd2020-02-17 14:55:06 +000044 if len(systemServerClasspathLocations) != len(global.SystemServerJars)+len(global.UpdatableSystemServerJars) {
45 panic(fmt.Errorf("Wrong number of system server jars, got %d, expected %d",
46 len(systemServerClasspathLocations),
47 len(global.SystemServerJars)+len(global.UpdatableSystemServerJars)))
48 }
Colin Cross44df5812019-02-15 23:06:46 -080049 return systemServerClasspathLocations
50 })
51}
52
53var systemServerClasspathKey = android.NewOnceKey("systemServerClasspath")
54
Colin Crossc11e0c52019-05-08 15:18:22 -070055// dexpreoptTargets returns the list of targets that are relevant to dexpreopting, which excludes architectures
56// supported through native bridge.
57func dexpreoptTargets(ctx android.PathContext) []android.Target {
58 var targets []android.Target
Colin Cross3b19f5d2019-09-17 14:45:31 -070059 for _, target := range ctx.Config().Targets[android.Android] {
Colin Crossc11e0c52019-05-08 15:18:22 -070060 if target.NativeBridge == android.NativeBridgeDisabled {
61 targets = append(targets, target)
62 }
63 }
David Srbecky7f8dac12020-02-13 16:00:45 +000064 // We may also need the images on host in order to run host-based tests.
65 for _, target := range ctx.Config().Targets[android.BuildOs] {
66 targets = append(targets, target)
67 }
Colin Crossc11e0c52019-05-08 15:18:22 -070068
69 return targets
70}
71
Jiyong Park0b238752019-10-29 11:23:10 +090072func stemOf(moduleName string) string {
73 // b/139391334: the stem of framework-minus-apex is framework
74 // This is hard coded here until we find a good way to query the stem
75 // of a module before any other mutators are run
76 if moduleName == "framework-minus-apex" {
77 return "framework"
78 }
79 return moduleName
80}
81
Ulya Trafimovich50c4a4b2020-04-21 15:36:33 +010082func getDexLocation(ctx android.PathContext, target android.Target, module string) string {
Ulya Trafimovich8640ab92020-05-11 18:06:15 +010083 apex, jar := android.SplitApexJarPair(ctx, module)
Ulya Trafimovich50c4a4b2020-04-21 15:36:33 +010084
85 name := stemOf(jar) + ".jar"
86
87 var subdir string
88 if apex == "platform" {
89 // Special apex name "platform" denotes jars do not come from an apex, but are part
90 // of the platform. Such jars are installed on the /system partition on device.
91 subdir = "system/framework"
Chris Gross06c80362020-05-01 16:14:54 -070092 } else if apex == "system_ext" {
93 subdir = "system_ext/framework"
Ulya Trafimovich50c4a4b2020-04-21 15:36:33 +010094 } else {
95 subdir = filepath.Join("apex", apex, "javalib")
96 }
97
David Srbeckyab994982020-03-30 17:24:13 +010098 if target.Os.Class == android.Host {
David Srbecky0f6fdf52020-04-06 18:48:22 +010099 return filepath.Join(ctx.Config().Getenv("OUT_DIR"), "host", ctx.Config().PrebuiltOS(), subdir, name)
David Srbeckyab994982020-03-30 17:24:13 +0100100 } else {
101 return filepath.Join("/", subdir, name)
102 }
103}
104
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000105var (
Ulya Trafimovich4cdada22020-02-10 15:29:28 +0000106 bootImageConfigKey = android.NewOnceKey("bootImageConfig")
107 artBootImageName = "art"
108 frameworkBootImageName = "boot"
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000109)
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000110
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000111// Construct the global boot image configs.
112func genBootImageConfigs(ctx android.PathContext) map[string]*bootImageConfig {
113 return ctx.Config().Once(bootImageConfigKey, func() interface{} {
114
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000115 global := dexpreopt.GetGlobalConfig(ctx)
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000116 targets := dexpreoptTargets(ctx)
117 deviceDir := android.PathForOutput(ctx, ctx.Config().DeviceName())
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000118
Martin Stjernholmcc4b0ad2019-07-05 22:38:25 +0100119 artModules := global.ArtApexJars
Ulya Trafimovich44561882020-01-03 13:25:54 +0000120 // With EMMA_INSTRUMENT_FRAMEWORK=true the Core libraries depend on jacoco.
121 if ctx.Config().IsEnvTrue("EMMA_INSTRUMENT_FRAMEWORK") {
Ulya Trafimovich817133e2020-05-04 12:16:25 +0100122 artModules = append(artModules, "com.android.art:jacocoagent")
Ulya Trafimovich44561882020-01-03 13:25:54 +0000123 }
Ulya Trafimovich50c4a4b2020-04-21 15:36:33 +0100124 frameworkModules := android.RemoveListFromList(global.BootJars, artModules)
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000125
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000126 artSubdir := "apex/com.android.art/javalib"
127 frameworkSubdir := "system/framework"
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000128
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000129 // ART config for the primary boot image in the ART apex.
130 // It includes the Core Libraries.
131 artCfg := bootImageConfig{
David Srbeckyab994982020-03-30 17:24:13 +0100132 name: artBootImageName,
133 stem: "boot",
134 installSubdir: artSubdir,
135 modules: artModules,
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000136 }
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000137
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000138 // Framework config for the boot image extension.
Ulyana Trafimovich5a4ccd12019-12-18 17:32:33 +0000139 // It includes framework libraries and depends on the ART config.
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000140 frameworkCfg := bootImageConfig{
David Srbeckyab994982020-03-30 17:24:13 +0100141 extends: &artCfg,
142 name: frameworkBootImageName,
143 stem: "boot",
144 installSubdir: frameworkSubdir,
145 modules: frameworkModules,
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000146 }
147
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000148 configs := map[string]*bootImageConfig{
Ulya Trafimovich4cdada22020-02-10 15:29:28 +0000149 artBootImageName: &artCfg,
150 frameworkBootImageName: &frameworkCfg,
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000151 }
152
153 // common to all configs
154 for _, c := range configs {
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000155 c.dir = deviceDir.Join(ctx, "dex_"+c.name+"jars")
156 c.symbolsDir = deviceDir.Join(ctx, "dex_"+c.name+"jars_unstripped")
157
158 // expands to <stem>.art for primary image and <stem>-<1st module>.art for extension
Ulya Trafimovich8640ab92020-05-11 18:06:15 +0100159 imageName := c.firstModuleNameOrStem(ctx) + ".art"
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000160
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000161 // The path to bootclasspath dex files needs to be known at module
162 // GenerateAndroidBuildAction time, before the bootclasspath modules have been compiled.
163 // Set up known paths for them, the singleton rules will copy them there.
164 // TODO(b/143682396): use module dependencies instead
165 inputDir := deviceDir.Join(ctx, "dex_"+c.name+"jars_input")
166 for _, m := range c.modules {
Ulya Trafimovich8640ab92020-05-11 18:06:15 +0100167 _, jar := android.SplitApexJarPair(ctx, m)
Ulya Trafimovich50c4a4b2020-04-21 15:36:33 +0100168 c.dexPaths = append(c.dexPaths, inputDir.Join(ctx, stemOf(jar)+".jar"))
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000169 }
170 c.dexPathsDeps = c.dexPaths
171
David Srbeckyc177ebe2020-02-18 20:43:06 +0000172 // Create target-specific variants.
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000173 for _, target := range targets {
174 arch := target.Arch.ArchType
David Srbecky7f8dac12020-02-13 16:00:45 +0000175 imageDir := c.dir.Join(ctx, target.Os.String(), c.installSubdir, arch.String())
David Srbeckyc177ebe2020-02-18 20:43:06 +0000176 variant := &bootImageVariant{
177 bootImageConfig: c,
178 target: target,
179 images: imageDir.Join(ctx, imageName),
180 imagesDeps: c.moduleFiles(ctx, imageDir, ".art", ".oat", ".vdex"),
181 }
David Srbeckyab994982020-03-30 17:24:13 +0100182 for _, m := range c.modules {
Ulya Trafimovich50c4a4b2020-04-21 15:36:33 +0100183 variant.dexLocations = append(variant.dexLocations, getDexLocation(ctx, target, m))
David Srbeckyab994982020-03-30 17:24:13 +0100184 }
185 variant.dexLocationsDeps = variant.dexLocations
David Srbeckyc177ebe2020-02-18 20:43:06 +0000186 c.variants = append(c.variants, variant)
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000187 }
Colin Cross31bf00d2019-12-04 13:16:01 -0800188
189 c.zip = c.dir.Join(ctx, c.name+".zip")
Nicolas Geoffrayfeef2ef2019-04-30 09:43:22 +0100190 }
191
Ulyana Trafimovich5a4ccd12019-12-18 17:32:33 +0000192 // specific to the framework config
193 frameworkCfg.dexPathsDeps = append(artCfg.dexPathsDeps, frameworkCfg.dexPathsDeps...)
David Srbeckyc177ebe2020-02-18 20:43:06 +0000194 for i := range targets {
195 frameworkCfg.variants[i].primaryImages = artCfg.variants[i].images
David Srbeckyab994982020-03-30 17:24:13 +0100196 frameworkCfg.variants[i].dexLocationsDeps = append(artCfg.variants[i].dexLocations, frameworkCfg.variants[i].dexLocationsDeps...)
David Srbeckyc177ebe2020-02-18 20:43:06 +0000197 }
Ulyana Trafimovich5a4ccd12019-12-18 17:32:33 +0000198
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000199 return configs
200 }).(map[string]*bootImageConfig)
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000201}
202
David Srbeckyc177ebe2020-02-18 20:43:06 +0000203func artBootImageConfig(ctx android.PathContext) *bootImageConfig {
204 return genBootImageConfigs(ctx)[artBootImageName]
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000205}
206
David Srbeckyc177ebe2020-02-18 20:43:06 +0000207func defaultBootImageConfig(ctx android.PathContext) *bootImageConfig {
208 return genBootImageConfigs(ctx)[frameworkBootImageName]
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000209}
210
Colin Cross44df5812019-02-15 23:06:46 -0800211func defaultBootclasspath(ctx android.PathContext) []string {
212 return ctx.Config().OnceStringSlice(defaultBootclasspathKey, func() []string {
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000213 global := dexpreopt.GetGlobalConfig(ctx)
Colin Cross44df5812019-02-15 23:06:46 -0800214 image := defaultBootImageConfig(ctx)
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000215
Roshan Piusccc26ef2019-11-27 09:37:46 -0800216 updatableBootclasspath := make([]string, len(global.UpdatableBootJars))
217 for i, p := range global.UpdatableBootJars {
Ulya Trafimovich8640ab92020-05-11 18:06:15 +0100218 updatableBootclasspath[i] = dexpreopt.GetJarLocationFromApexJarPair(ctx, p)
Roshan Piusccc26ef2019-11-27 09:37:46 -0800219 }
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000220
David Srbeckyab994982020-03-30 17:24:13 +0100221 bootclasspath := append(copyOf(image.getAnyAndroidVariant().dexLocationsDeps), updatableBootclasspath...)
Colin Cross44df5812019-02-15 23:06:46 -0800222 return bootclasspath
223 })
224}
225
226var defaultBootclasspathKey = android.NewOnceKey("defaultBootclasspath")
227
228var copyOf = android.CopyOf
229
230func init() {
231 android.RegisterMakeVarsProvider(pctx, dexpreoptConfigMakevars)
232}
233
234func dexpreoptConfigMakevars(ctx android.MakeVarsContext) {
235 ctx.Strict("PRODUCT_BOOTCLASSPATH", strings.Join(defaultBootclasspath(ctx), ":"))
David Srbeckyab994982020-03-30 17:24:13 +0100236 ctx.Strict("PRODUCT_DEX2OAT_BOOTCLASSPATH", strings.Join(defaultBootImageConfig(ctx).getAnyAndroidVariant().dexLocationsDeps, ":"))
Colin Cross44df5812019-02-15 23:06:46 -0800237 ctx.Strict("PRODUCT_SYSTEM_SERVER_CLASSPATH", strings.Join(systemServerClasspath(ctx), ":"))
Colin Cross9be41522019-02-20 10:40:13 -0800238
239 ctx.Strict("DEXPREOPT_BOOT_JARS_MODULES", strings.Join(defaultBootImageConfig(ctx).modules, ":"))
Colin Cross44df5812019-02-15 23:06:46 -0800240}