blob: 56fa12b3e7e717288b4faeb8eedc40608392016c [file] [log] [blame]
Colin Crossfb6d7812019-01-09 22:17:55 -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 (
Colin Crossfb6d7812019-01-09 22:17:55 -080018 "fmt"
19 "path/filepath"
Colin Cross98fd5742019-01-09 23:04:25 -080020 "sort"
Colin Crossfb6d7812019-01-09 22:17:55 -080021 "strconv"
22 "strings"
Colin Cross3047fa22019-04-18 10:56:44 -070023
Jaewoong Jung9befb0c2020-01-18 10:33:43 -080024 "android/soong/android"
25 "android/soong/java/config"
26
Colin Cross3047fa22019-04-18 10:56:44 -070027 "github.com/google/blueprint/pathtools"
Colin Crossfb6d7812019-01-09 22:17:55 -080028)
29
Colin Cross98fd5742019-01-09 23:04:25 -080030func init() {
Colin Cross3047fa22019-04-18 10:56:44 -070031 android.RegisterPreSingletonType("sdk_versions", sdkPreSingletonFactory)
32 android.RegisterSingletonType("sdk", sdkSingletonFactory)
Colin Cross10932872019-04-18 14:27:12 -070033 android.RegisterMakeVarsProvider(pctx, sdkMakeVars)
Colin Cross98fd5742019-01-09 23:04:25 -080034}
35
Colin Cross3047fa22019-04-18 10:56:44 -070036var sdkVersionsKey = android.NewOnceKey("sdkVersionsKey")
37var sdkFrameworkAidlPathKey = android.NewOnceKey("sdkFrameworkAidlPathKey")
Anton Hansson3f07ab22020-04-09 13:29:59 +010038var nonUpdatableFrameworkAidlPathKey = android.NewOnceKey("nonUpdatableFrameworkAidlPathKey")
Colin Cross10932872019-04-18 14:27:12 -070039var apiFingerprintPathKey = android.NewOnceKey("apiFingerprintPathKey")
Colin Cross98fd5742019-01-09 23:04:25 -080040
Colin Crossfb6d7812019-01-09 22:17:55 -080041type sdkContext interface {
Jiyong Park6a927c42020-01-21 02:03:43 +090042 // sdkVersion returns sdkSpec that corresponds to the sdk_version property of the current module
43 sdkVersion() sdkSpec
Paul Duffine25c6442019-10-11 13:50:28 +010044 // systemModules returns the system_modules property of the current module, or an empty string if it is not set.
45 systemModules() string
Jiyong Park6a927c42020-01-21 02:03:43 +090046 // minSdkVersion returns sdkSpec that corresponds to the min_sdk_version property of the current module,
47 // or from sdk_version if it is not set.
48 minSdkVersion() sdkSpec
49 // targetSdkVersion returns the sdkSpec that corresponds to the target_sdk_version property of the current module,
50 // or from sdk_version if it is not set.
51 targetSdkVersion() sdkSpec
Colin Crossfb6d7812019-01-09 22:17:55 -080052}
53
Nikita Ioffe1f4f3452020-03-02 16:58:11 +000054func UseApiFingerprint(ctx android.BaseModuleContext) bool {
55 if ctx.Config().UnbundledBuild() &&
Jeongik Cha816a23a2020-07-08 01:09:23 +090056 !ctx.Config().AlwaysUsePrebuiltSdks() &&
Baligh Uddinf6201372020-01-24 23:15:44 +000057 ctx.Config().IsEnvTrue("UNBUNDLED_BUILD_TARGET_SDK_WITH_API_FINGERPRINT") {
58 return true
59 }
60 return false
61}
62
Jiyong Park6a927c42020-01-21 02:03:43 +090063// sdkKind represents a particular category of an SDK spec like public, system, test, etc.
64type sdkKind int
65
66const (
67 sdkInvalid sdkKind = iota
68 sdkNone
69 sdkCore
70 sdkCorePlatform
71 sdkPublic
72 sdkSystem
73 sdkTest
Jiyong Park50146e92020-01-30 18:00:15 +090074 sdkModule
Jiyong Parkaae9bd12020-02-12 04:36:43 +090075 sdkSystemServer
Jiyong Park6a927c42020-01-21 02:03:43 +090076 sdkPrivate
77)
78
79// String returns the string representation of this sdkKind
80func (k sdkKind) String() string {
81 switch k {
82 case sdkPrivate:
83 return "private"
84 case sdkNone:
85 return "none"
86 case sdkPublic:
87 return "public"
88 case sdkSystem:
89 return "system"
90 case sdkTest:
91 return "test"
92 case sdkCore:
93 return "core"
94 case sdkCorePlatform:
95 return "core_platform"
Jiyong Park50146e92020-01-30 18:00:15 +090096 case sdkModule:
Jiyong Park49062c82020-06-17 12:11:14 +090097 return "module-lib"
Jiyong Parkaae9bd12020-02-12 04:36:43 +090098 case sdkSystemServer:
Jiyong Park49062c82020-06-17 12:11:14 +090099 return "system-server"
Colin Crossfb6d7812019-01-09 22:17:55 -0800100 default:
Jiyong Park6a927c42020-01-21 02:03:43 +0900101 return "invalid"
Colin Crossfb6d7812019-01-09 22:17:55 -0800102 }
103}
104
Jiyong Park6a927c42020-01-21 02:03:43 +0900105// sdkVersion represents a specific version number of an SDK spec of a particular kind
106type sdkVersion int
107
108const (
109 // special version number for a not-yet-frozen SDK
110 sdkVersionCurrent sdkVersion = sdkVersion(android.FutureApiLevel)
111 // special version number to be used for SDK specs where version number doesn't
112 // make sense, e.g. "none", "", etc.
113 sdkVersionNone sdkVersion = sdkVersion(0)
114)
115
116// isCurrent checks if the sdkVersion refers to the not-yet-published version of an sdkKind
117func (v sdkVersion) isCurrent() bool {
118 return v == sdkVersionCurrent
119}
120
121// isNumbered checks if the sdkVersion refers to the published (a.k.a numbered) version of an sdkKind
122func (v sdkVersion) isNumbered() bool {
123 return !v.isCurrent() && v != sdkVersionNone
124}
125
126// String returns the string representation of this sdkVersion.
127func (v sdkVersion) String() string {
128 if v.isCurrent() {
129 return "current"
130 } else if v.isNumbered() {
131 return strconv.Itoa(int(v))
132 }
133 return "(no version)"
134}
135
136// asNumberString directly converts the numeric value of this sdk version as a string.
137// When isNumbered() is true, this method is the same as String(). However, for sdkVersionCurrent
138// and sdkVersionNone, this returns 10000 and 0 while String() returns "current" and "(no version"),
139// respectively.
140func (v sdkVersion) asNumberString() string {
141 return strconv.Itoa(int(v))
142}
143
144// sdkSpec represents the kind and the version of an SDK for a module to build against
145type sdkSpec struct {
146 kind sdkKind
147 version sdkVersion
148 raw string
149}
150
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100151func (s sdkSpec) String() string {
152 return fmt.Sprintf("%s_%s", s.kind, s.version)
153}
154
Jiyong Park6a927c42020-01-21 02:03:43 +0900155// valid checks if this sdkSpec is well-formed. Note however that true doesn't mean that the
156// specified SDK actually exists.
157func (s sdkSpec) valid() bool {
158 return s.kind != sdkInvalid
159}
160
161// specified checks if this sdkSpec is well-formed and is not "".
162func (s sdkSpec) specified() bool {
163 return s.valid() && s.kind != sdkPrivate
164}
165
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100166// whether the API surface is managed and versioned, i.e. has .txt file that
167// get frozen on SDK freeze and changes get reviewed by API council.
168func (s sdkSpec) stable() bool {
169 if !s.specified() {
170 return false
171 }
172 switch s.kind {
Artur Satayev8cf899a2020-04-15 17:29:42 +0100173 case sdkNone:
174 // there is nothing to manage and version in this case; de facto stable API.
175 return true
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100176 case sdkCore, sdkPublic, sdkSystem, sdkModule, sdkSystemServer:
177 return true
Artur Satayev8cf899a2020-04-15 17:29:42 +0100178 case sdkCorePlatform, sdkTest, sdkPrivate:
Artur Satayev2db1c3f2020-04-08 19:09:30 +0100179 return false
180 default:
181 panic(fmt.Errorf("unknown sdkKind=%v", s.kind))
182 }
183 return false
184}
185
Jiyong Park6a927c42020-01-21 02:03:43 +0900186// prebuiltSdkAvailableForUnbundledBuilt tells whether this sdkSpec can have a prebuilt SDK
187// that can be used for unbundled builds.
188func (s sdkSpec) prebuiltSdkAvailableForUnbundledBuild() bool {
189 // "", "none", and "core_platform" are not available for unbundled build
190 // as we don't/can't have prebuilt stub for the versions
191 return s.kind != sdkPrivate && s.kind != sdkNone && s.kind != sdkCorePlatform
192}
193
Jeongik Cha219141c2020-08-06 23:00:37 +0900194func (s sdkSpec) forVendorPartition(ctx android.EarlyModuleContext) sdkSpec {
195 // If BOARD_CURRENT_API_LEVEL_FOR_VENDOR_MODULES has a numeric value,
196 // use it instead of "current" for the vendor partition.
197 currentSdkVersion := ctx.DeviceConfig().CurrentApiLevelForVendorModules()
198 if currentSdkVersion == "current" {
199 return s
200 }
201
202 if s.kind == sdkPublic || s.kind == sdkSystem {
203 if s.version.isCurrent() {
204 if i, err := strconv.Atoi(currentSdkVersion); err == nil {
205 version := sdkVersion(i)
206 return sdkSpec{s.kind, version, s.raw}
207 }
208 panic(fmt.Errorf("BOARD_CURRENT_API_LEVEL_FOR_VENDOR_MODULES must be either \"current\" or a number, but was %q", currentSdkVersion))
209 }
210 }
211 return s
212}
213
Jiyong Park6a927c42020-01-21 02:03:43 +0900214// usePrebuilt determines whether prebuilt SDK should be used for this sdkSpec with the given context.
215func (s sdkSpec) usePrebuilt(ctx android.EarlyModuleContext) bool {
216 if s.version.isCurrent() {
217 // "current" can be built from source and be from prebuilt SDK
Jeongik Cha816a23a2020-07-08 01:09:23 +0900218 return ctx.Config().AlwaysUsePrebuiltSdks()
Jiyong Park6a927c42020-01-21 02:03:43 +0900219 } else if s.version.isNumbered() {
Patrice Arrudab481b872020-07-28 18:30:44 +0000220 // validation check
Jiyong Park6a927c42020-01-21 02:03:43 +0900221 if s.kind != sdkPublic && s.kind != sdkSystem && s.kind != sdkTest {
222 panic(fmt.Errorf("prebuilt SDK is not not available for sdkKind=%q", s.kind))
223 return false
224 }
225 // numbered SDKs are always from prebuilt
226 return true
Colin Crossfb6d7812019-01-09 22:17:55 -0800227 }
Jiyong Park6a927c42020-01-21 02:03:43 +0900228 // "", "none", "core_platform" fall here
229 return false
230}
231
232// effectiveVersion converts an sdkSpec into the concrete sdkVersion that the module
233// should use. For modules targeting an unreleased SDK (meaning it does not yet have a number)
234// it returns android.FutureApiLevel(10000).
235func (s sdkSpec) effectiveVersion(ctx android.EarlyModuleContext) (sdkVersion, error) {
236 if !s.valid() {
237 return s.version, fmt.Errorf("invalid sdk version %q", s.raw)
238 }
Jeongik Cha219141c2020-08-06 23:00:37 +0900239
240 if ctx.DeviceSpecific() || ctx.SocSpecific() {
241 s = s.forVendorPartition(ctx)
242 }
Jiyong Park6a927c42020-01-21 02:03:43 +0900243 if s.version.isNumbered() {
244 return s.version, nil
245 }
246 return sdkVersion(ctx.Config().DefaultAppTargetSdkInt()), nil
247}
248
249// effectiveVersionString converts an sdkSpec into the concrete version string that the module
250// should use. For modules targeting an unreleased SDK (meaning it does not yet have a number)
251// it returns the codename (P, Q, R, etc.)
252func (s sdkSpec) effectiveVersionString(ctx android.EarlyModuleContext) (string, error) {
253 ver, err := s.effectiveVersion(ctx)
254 if err == nil && int(ver) == ctx.Config().DefaultAppTargetSdkInt() {
255 return ctx.Config().DefaultAppTargetSdk(), nil
256 }
257 return ver.String(), err
258}
259
Colin Cross17dec172020-05-14 18:05:32 -0700260func (s sdkSpec) defaultJavaLanguageVersion(ctx android.EarlyModuleContext) javaVersion {
261 sdk, err := s.effectiveVersion(ctx)
262 if err != nil {
263 ctx.PropertyErrorf("sdk_version", "%s", err)
264 }
265 if sdk <= 23 {
266 return JAVA_VERSION_7
267 } else if sdk <= 29 {
268 return JAVA_VERSION_8
269 } else {
270 return JAVA_VERSION_9
271 }
272}
273
Jiyong Park6a927c42020-01-21 02:03:43 +0900274func sdkSpecFrom(str string) sdkSpec {
275 switch str {
276 // special cases first
277 case "":
278 return sdkSpec{sdkPrivate, sdkVersionNone, str}
279 case "none":
280 return sdkSpec{sdkNone, sdkVersionNone, str}
281 case "core_platform":
282 return sdkSpec{sdkCorePlatform, sdkVersionNone, str}
283 default:
284 // the syntax is [kind_]version
285 sep := strings.LastIndex(str, "_")
286
287 var kindString string
288 if sep == 0 {
289 return sdkSpec{sdkInvalid, sdkVersionNone, str}
290 } else if sep == -1 {
291 kindString = ""
292 } else {
293 kindString = str[0:sep]
294 }
295 versionString := str[sep+1 : len(str)]
296
297 var kind sdkKind
298 switch kindString {
299 case "":
300 kind = sdkPublic
301 case "core":
302 kind = sdkCore
303 case "system":
304 kind = sdkSystem
305 case "test":
306 kind = sdkTest
Jiyong Park50146e92020-01-30 18:00:15 +0900307 case "module":
308 kind = sdkModule
Jiyong Parkaae9bd12020-02-12 04:36:43 +0900309 case "system_server":
310 kind = sdkSystemServer
Jiyong Park6a927c42020-01-21 02:03:43 +0900311 default:
312 return sdkSpec{sdkInvalid, sdkVersionNone, str}
313 }
314
315 var version sdkVersion
316 if versionString == "current" {
317 version = sdkVersionCurrent
318 } else if i, err := strconv.Atoi(versionString); err == nil {
319 version = sdkVersion(i)
320 } else {
321 return sdkSpec{sdkInvalid, sdkVersionNone, str}
322 }
323
324 return sdkSpec{kind, version, str}
325 }
Colin Crossfb6d7812019-01-09 22:17:55 -0800326}
327
Jeongik Cha7c708312020-01-28 13:52:36 +0900328func (s sdkSpec) validateSystemSdk(ctx android.EarlyModuleContext) bool {
329 // Ensures that the specified system SDK version is one of BOARD_SYSTEMSDK_VERSIONS (for vendor/product Java module)
330 // Assuming that BOARD_SYSTEMSDK_VERSIONS := 28 29,
331 // sdk_version of the modules in vendor/product that use system sdk must be either system_28, system_29 or system_current
332 if s.kind != sdkSystem || !s.version.isNumbered() {
333 return true
334 }
335 allowedVersions := ctx.DeviceConfig().PlatformSystemSdkVersions()
336 if ctx.DeviceSpecific() || ctx.SocSpecific() || (ctx.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface()) {
337 systemSdkVersions := ctx.DeviceConfig().SystemSdkVersions()
338 if len(systemSdkVersions) > 0 {
339 allowedVersions = systemSdkVersions
340 }
341 }
342 if len(allowedVersions) > 0 && !android.InList(s.version.String(), allowedVersions) {
343 ctx.PropertyErrorf("sdk_version", "incompatible sdk version %q. System SDK version should be one of %q",
344 s.raw, allowedVersions)
345 return false
346 }
347 return true
348}
349
Colin Cross1184b642019-12-30 18:43:07 -0800350func decodeSdkDep(ctx android.EarlyModuleContext, sdkContext sdkContext) sdkDep {
Jiyong Park6a927c42020-01-21 02:03:43 +0900351 sdkVersion := sdkContext.sdkVersion()
352 if !sdkVersion.valid() {
353 ctx.PropertyErrorf("sdk_version", "invalid version %q", sdkVersion.raw)
Colin Crossfb6d7812019-01-09 22:17:55 -0800354 return sdkDep{}
355 }
356
Jeongik Cha219141c2020-08-06 23:00:37 +0900357 if ctx.DeviceSpecific() || ctx.SocSpecific() {
358 sdkVersion = sdkVersion.forVendorPartition(ctx)
359 }
360
Jeongik Cha7c708312020-01-28 13:52:36 +0900361 if !sdkVersion.validateSystemSdk(ctx) {
362 return sdkDep{}
363 }
Jiyong Park6a927c42020-01-21 02:03:43 +0900364
365 if sdkVersion.usePrebuilt(ctx) {
366 dir := filepath.Join("prebuilts", "sdk", sdkVersion.version.String(), sdkVersion.kind.String())
Colin Crossfb6d7812019-01-09 22:17:55 -0800367 jar := filepath.Join(dir, "android.jar")
368 // There's no aidl for other SDKs yet.
369 // TODO(77525052): Add aidl files for other SDKs too.
Jiyong Park6a927c42020-01-21 02:03:43 +0900370 public_dir := filepath.Join("prebuilts", "sdk", sdkVersion.version.String(), "public")
Colin Crossfb6d7812019-01-09 22:17:55 -0800371 aidl := filepath.Join(public_dir, "framework.aidl")
372 jarPath := android.ExistentPathForSource(ctx, jar)
373 aidlPath := android.ExistentPathForSource(ctx, aidl)
374 lambdaStubsPath := android.PathForSource(ctx, config.SdkLambdaStubsPath)
375
376 if (!jarPath.Valid() || !aidlPath.Valid()) && ctx.Config().AllowMissingDependencies() {
377 return sdkDep{
378 invalidVersion: true,
Jiyong Park6a927c42020-01-21 02:03:43 +0900379 bootclasspath: []string{fmt.Sprintf("sdk_%s_%s_android", sdkVersion.kind, sdkVersion.version.String())},
Colin Crossfb6d7812019-01-09 22:17:55 -0800380 }
381 }
382
383 if !jarPath.Valid() {
Jiyong Park6a927c42020-01-21 02:03:43 +0900384 ctx.PropertyErrorf("sdk_version", "invalid sdk version %q, %q does not exist", sdkVersion.raw, jar)
Colin Crossfb6d7812019-01-09 22:17:55 -0800385 return sdkDep{}
386 }
387
388 if !aidlPath.Valid() {
Jiyong Park6a927c42020-01-21 02:03:43 +0900389 ctx.PropertyErrorf("sdk_version", "invalid sdk version %q, %q does not exist", sdkVersion.raw, aidl)
Colin Crossfb6d7812019-01-09 22:17:55 -0800390 return sdkDep{}
391 }
392
Colin Cross17dec172020-05-14 18:05:32 -0700393 var systemModules string
394 if sdkVersion.defaultJavaLanguageVersion(ctx).usesJavaModules() {
395 systemModules = "sdk_public_" + sdkVersion.version.String() + "_system_modules"
396 }
397
Colin Crossfb6d7812019-01-09 22:17:55 -0800398 return sdkDep{
Colin Cross17dec172020-05-14 18:05:32 -0700399 useFiles: true,
400 jars: android.Paths{jarPath.Path(), lambdaStubsPath},
401 aidl: android.OptionalPathForPath(aidlPath.Path()),
402 systemModules: systemModules,
Colin Crossfb6d7812019-01-09 22:17:55 -0800403 }
404 }
405
Jiyong Parkaae9bd12020-02-12 04:36:43 +0900406 toModule := func(modules []string, res string, aidl android.Path) sdkDep {
Colin Cross6cef4812019-10-17 14:23:50 -0700407 return sdkDep{
Colin Crossfb6d7812019-01-09 22:17:55 -0800408 useModule: true,
Jiyong Parkaae9bd12020-02-12 04:36:43 +0900409 bootclasspath: append(modules, config.DefaultLambdaStubsLibrary),
Colin Cross6cef4812019-10-17 14:23:50 -0700410 systemModules: "core-current-stubs-system-modules",
Jiyong Parkaae9bd12020-02-12 04:36:43 +0900411 java9Classpath: modules,
412 frameworkResModule: res,
Colin Cross3047fa22019-04-18 10:56:44 -0700413 aidl: android.OptionalPathForPath(aidl),
Colin Crossfb6d7812019-01-09 22:17:55 -0800414 }
Colin Crossfb6d7812019-01-09 22:17:55 -0800415 }
416
Jiyong Park6a927c42020-01-21 02:03:43 +0900417 switch sdkVersion.kind {
418 case sdkPrivate:
Colin Crossfb6d7812019-01-09 22:17:55 -0800419 return sdkDep{
Pete Gilline3d44b22020-06-29 11:28:51 +0100420 useModule: true,
Pete Gillin84c38072020-07-09 18:03:41 +0100421 systemModules: corePlatformSystemModules(ctx),
422 bootclasspath: corePlatformBootclasspathLibraries(ctx),
Pete Gilline3d44b22020-06-29 11:28:51 +0100423 classpath: config.FrameworkLibraries,
Colin Crossfb6d7812019-01-09 22:17:55 -0800424 frameworkResModule: "framework-res",
425 }
Jiyong Park6a927c42020-01-21 02:03:43 +0900426 case sdkNone:
Paul Duffine25c6442019-10-11 13:50:28 +0100427 systemModules := sdkContext.systemModules()
428 if systemModules == "" {
429 ctx.PropertyErrorf("sdk_version",
430 `system_modules is required to be set to a non-empty value when sdk_version is "none", did you mean sdk_version: "core_platform"?`)
431 } else if systemModules == "none" {
Colin Cross6d8d8c62019-10-28 15:10:03 -0700432 return sdkDep{
433 noStandardLibs: true,
434 }
Paul Duffine25c6442019-10-11 13:50:28 +0100435 }
436
Paul Duffin52d398a2019-06-11 12:31:14 +0100437 return sdkDep{
Colin Cross6d8d8c62019-10-28 15:10:03 -0700438 useModule: true,
Paul Duffin52d398a2019-06-11 12:31:14 +0100439 noStandardLibs: true,
Paul Duffine25c6442019-10-11 13:50:28 +0100440 systemModules: systemModules,
Colin Cross6cef4812019-10-17 14:23:50 -0700441 bootclasspath: []string{systemModules},
Paul Duffin52d398a2019-06-11 12:31:14 +0100442 }
Jiyong Park6a927c42020-01-21 02:03:43 +0900443 case sdkCorePlatform:
Paul Duffin50c217c2019-06-12 13:25:22 +0100444 return sdkDep{
Pete Gillin7b0bdce2020-07-01 13:05:32 +0100445 useModule: true,
Pete Gillin84c38072020-07-09 18:03:41 +0100446 systemModules: corePlatformSystemModules(ctx),
447 bootclasspath: corePlatformBootclasspathLibraries(ctx),
Pete Gillin7b0bdce2020-07-01 13:05:32 +0100448 noFrameworksLibs: true,
Paul Duffin50c217c2019-06-12 13:25:22 +0100449 }
Jiyong Park6a927c42020-01-21 02:03:43 +0900450 case sdkPublic:
Jiyong Parkaae9bd12020-02-12 04:36:43 +0900451 return toModule([]string{"android_stubs_current"}, "framework-res", sdkFrameworkAidlPath(ctx))
Jiyong Park6a927c42020-01-21 02:03:43 +0900452 case sdkSystem:
Jiyong Parkaae9bd12020-02-12 04:36:43 +0900453 return toModule([]string{"android_system_stubs_current"}, "framework-res", sdkFrameworkAidlPath(ctx))
Jiyong Park6a927c42020-01-21 02:03:43 +0900454 case sdkTest:
Jiyong Parkaae9bd12020-02-12 04:36:43 +0900455 return toModule([]string{"android_test_stubs_current"}, "framework-res", sdkFrameworkAidlPath(ctx))
Jiyong Park6a927c42020-01-21 02:03:43 +0900456 case sdkCore:
Pete Gillin880f9642020-07-01 13:17:16 +0100457 return sdkDep{
458 useModule: true,
459 bootclasspath: []string{"core.current.stubs", config.DefaultLambdaStubsLibrary},
460 systemModules: "core-current-stubs-system-modules",
461 noFrameworksLibs: true,
462 }
Jiyong Park50146e92020-01-30 18:00:15 +0900463 case sdkModule:
464 // TODO(146757305): provide .apk and .aidl that have more APIs for modules
Anton Hansson3f07ab22020-04-09 13:29:59 +0100465 return toModule([]string{"android_module_lib_stubs_current"}, "framework-res", nonUpdatableFrameworkAidlPath(ctx))
Jiyong Parkaae9bd12020-02-12 04:36:43 +0900466 case sdkSystemServer:
467 // TODO(146757305): provide .apk and .aidl that have more APIs for modules
Anton Hanssonba6ab2e2020-03-19 15:23:38 +0000468 return toModule([]string{"android_system_server_stubs_current"}, "framework-res", sdkFrameworkAidlPath(ctx))
Colin Crossfb6d7812019-01-09 22:17:55 -0800469 default:
Jiyong Park6a927c42020-01-21 02:03:43 +0900470 panic(fmt.Errorf("invalid sdk %q", sdkVersion.raw))
Colin Crossfb6d7812019-01-09 22:17:55 -0800471 }
472}
Colin Cross98fd5742019-01-09 23:04:25 -0800473
Colin Cross3047fa22019-04-18 10:56:44 -0700474func sdkPreSingletonFactory() android.Singleton {
475 return sdkPreSingleton{}
Colin Cross98fd5742019-01-09 23:04:25 -0800476}
477
Colin Cross3047fa22019-04-18 10:56:44 -0700478type sdkPreSingleton struct{}
Colin Cross98fd5742019-01-09 23:04:25 -0800479
Colin Cross3047fa22019-04-18 10:56:44 -0700480func (sdkPreSingleton) GenerateBuildActions(ctx android.SingletonContext) {
Colin Cross98fd5742019-01-09 23:04:25 -0800481 sdkJars, err := ctx.GlobWithDeps("prebuilts/sdk/*/public/android.jar", nil)
482 if err != nil {
483 ctx.Errorf("failed to glob prebuilts/sdk/*/public/android.jar: %s", err.Error())
484 }
485
486 var sdkVersions []int
487 for _, sdkJar := range sdkJars {
488 dir := filepath.Base(filepath.Dir(filepath.Dir(sdkJar)))
489 v, err := strconv.Atoi(dir)
490 if scerr, ok := err.(*strconv.NumError); ok && scerr.Err == strconv.ErrSyntax {
491 continue
492 } else if err != nil {
493 ctx.Errorf("invalid sdk jar %q, %s, %v", sdkJar, err.Error())
494 }
495 sdkVersions = append(sdkVersions, v)
496 }
497
498 sort.Ints(sdkVersions)
499
Colin Cross3047fa22019-04-18 10:56:44 -0700500 ctx.Config().Once(sdkVersionsKey, func() interface{} { return sdkVersions })
501}
502
Jiyong Park6a927c42020-01-21 02:03:43 +0900503func LatestSdkVersionInt(ctx android.EarlyModuleContext) int {
504 sdkVersions := ctx.Config().Get(sdkVersionsKey).([]int)
505 latestSdkVersion := 0
506 if len(sdkVersions) > 0 {
507 latestSdkVersion = sdkVersions[len(sdkVersions)-1]
508 }
509 return latestSdkVersion
510}
511
Colin Cross3047fa22019-04-18 10:56:44 -0700512func sdkSingletonFactory() android.Singleton {
513 return sdkSingleton{}
514}
515
516type sdkSingleton struct{}
517
518func (sdkSingleton) GenerateBuildActions(ctx android.SingletonContext) {
Dan Willemsen9f435972020-05-28 15:28:00 -0700519 if ctx.Config().AlwaysUsePrebuiltSdks() {
Colin Cross3047fa22019-04-18 10:56:44 -0700520 return
521 }
522
Colin Cross10932872019-04-18 14:27:12 -0700523 createSdkFrameworkAidl(ctx)
Anton Hansson3f07ab22020-04-09 13:29:59 +0100524 createNonUpdatableFrameworkAidl(ctx)
Colin Cross10932872019-04-18 14:27:12 -0700525 createAPIFingerprint(ctx)
526}
Colin Cross3047fa22019-04-18 10:56:44 -0700527
Colin Cross10932872019-04-18 14:27:12 -0700528// Create framework.aidl by extracting anything that implements android.os.Parcelable from the SDK stubs modules.
529func createSdkFrameworkAidl(ctx android.SingletonContext) {
Colin Cross3047fa22019-04-18 10:56:44 -0700530 stubsModules := []string{
531 "android_stubs_current",
532 "android_test_stubs_current",
533 "android_system_stubs_current",
534 }
535
Anton Hansson3f07ab22020-04-09 13:29:59 +0100536 combinedAidl := sdkFrameworkAidlPath(ctx)
537 tempPath := combinedAidl.ReplaceExtension(ctx, "aidl.tmp")
538
539 rule := createFrameworkAidl(stubsModules, tempPath, ctx)
540
541 commitChangeForRestat(rule, tempPath, combinedAidl)
542
543 rule.Build(pctx, ctx, "framework_aidl", "generate framework.aidl")
544}
545
546// Creates a version of framework.aidl for the non-updatable part of the platform.
547func createNonUpdatableFrameworkAidl(ctx android.SingletonContext) {
548 stubsModules := []string{"android_module_lib_stubs_current"}
549
550 combinedAidl := nonUpdatableFrameworkAidlPath(ctx)
551 tempPath := combinedAidl.ReplaceExtension(ctx, "aidl.tmp")
552
553 rule := createFrameworkAidl(stubsModules, tempPath, ctx)
554
555 commitChangeForRestat(rule, tempPath, combinedAidl)
556
557 rule.Build(pctx, ctx, "framework_non_updatable_aidl", "generate framework_non_updatable.aidl")
558}
559
560func createFrameworkAidl(stubsModules []string, path android.OutputPath, ctx android.SingletonContext) *android.RuleBuilder {
Colin Cross3047fa22019-04-18 10:56:44 -0700561 stubsJars := make([]android.Paths, len(stubsModules))
562
563 ctx.VisitAllModules(func(module android.Module) {
564 // Collect dex jar paths for the modules listed above.
565 if j, ok := module.(Dependency); ok {
566 name := ctx.ModuleName(module)
567 if i := android.IndexList(name, stubsModules); i != -1 {
568 stubsJars[i] = j.HeaderJars()
569 }
570 }
571 })
572
573 var missingDeps []string
574
575 for i := range stubsJars {
576 if stubsJars[i] == nil {
577 if ctx.Config().AllowMissingDependencies() {
578 missingDeps = append(missingDeps, stubsModules[i])
579 } else {
Anton Hansson3f07ab22020-04-09 13:29:59 +0100580 ctx.Errorf("failed to find dex jar path for module %q", stubsModules[i])
Colin Cross3047fa22019-04-18 10:56:44 -0700581 }
582 }
583 }
584
585 rule := android.NewRuleBuilder()
586 rule.MissingDeps(missingDeps)
587
588 var aidls android.Paths
589 for _, jars := range stubsJars {
590 for _, jar := range jars {
591 aidl := android.PathForOutput(ctx, "aidl", pathtools.ReplaceExtension(jar.Base(), "aidl"))
592
593 rule.Command().
594 Text("rm -f").Output(aidl)
595 rule.Command().
Colin Crossee94d6a2019-07-08 17:08:34 -0700596 BuiltTool(ctx, "sdkparcelables").
Colin Cross3047fa22019-04-18 10:56:44 -0700597 Input(jar).
598 Output(aidl)
599
600 aidls = append(aidls, aidl)
601 }
602 }
603
Colin Cross3047fa22019-04-18 10:56:44 -0700604 rule.Command().
Anton Hansson3f07ab22020-04-09 13:29:59 +0100605 Text("rm -f").Output(path)
Colin Cross3047fa22019-04-18 10:56:44 -0700606 rule.Command().
607 Text("cat").
608 Inputs(aidls).
609 Text("| sort -u >").
Anton Hansson3f07ab22020-04-09 13:29:59 +0100610 Output(path)
Colin Cross3047fa22019-04-18 10:56:44 -0700611
Anton Hansson3f07ab22020-04-09 13:29:59 +0100612 return rule
Colin Cross3047fa22019-04-18 10:56:44 -0700613}
614
615func sdkFrameworkAidlPath(ctx android.PathContext) android.OutputPath {
616 return ctx.Config().Once(sdkFrameworkAidlPathKey, func() interface{} {
617 return android.PathForOutput(ctx, "framework.aidl")
618 }).(android.OutputPath)
619}
620
Anton Hansson3f07ab22020-04-09 13:29:59 +0100621func nonUpdatableFrameworkAidlPath(ctx android.PathContext) android.OutputPath {
622 return ctx.Config().Once(nonUpdatableFrameworkAidlPathKey, func() interface{} {
623 return android.PathForOutput(ctx, "framework_non_updatable.aidl")
624 }).(android.OutputPath)
625}
626
Colin Cross10932872019-04-18 14:27:12 -0700627// Create api_fingerprint.txt
628func createAPIFingerprint(ctx android.SingletonContext) {
Jiyong Park71b519d2019-04-18 17:25:49 +0900629 out := ApiFingerprintPath(ctx)
Colin Cross10932872019-04-18 14:27:12 -0700630
631 rule := android.NewRuleBuilder()
632
633 rule.Command().
634 Text("rm -f").Output(out)
635 cmd := rule.Command()
636
637 if ctx.Config().PlatformSdkCodename() == "REL" {
638 cmd.Text("echo REL >").Output(out)
Jeongik Cha816a23a2020-07-08 01:09:23 +0900639 } else if !ctx.Config().AlwaysUsePrebuiltSdks() {
Colin Cross10932872019-04-18 14:27:12 -0700640 in, err := ctx.GlobWithDeps("frameworks/base/api/*current.txt", nil)
641 if err != nil {
642 ctx.Errorf("error globbing API files: %s", err)
643 }
644
645 cmd.Text("cat").
646 Inputs(android.PathsForSource(ctx, in)).
Elliott Hughes34b49d12019-09-06 14:42:24 -0700647 Text("| md5sum | cut -d' ' -f1 >").
Colin Cross10932872019-04-18 14:27:12 -0700648 Output(out)
649 } else {
650 // Unbundled build
651 // TODO: use a prebuilt api_fingerprint.txt from prebuilts/sdk/current.txt once we have one
652 cmd.Text("echo").
653 Flag(ctx.Config().PlatformPreviewSdkVersion()).
654 Text(">").
655 Output(out)
656 }
657
658 rule.Build(pctx, ctx, "api_fingerprint", "generate api_fingerprint.txt")
659}
660
Jiyong Park71b519d2019-04-18 17:25:49 +0900661func ApiFingerprintPath(ctx android.PathContext) android.OutputPath {
Colin Cross10932872019-04-18 14:27:12 -0700662 return ctx.Config().Once(apiFingerprintPathKey, func() interface{} {
663 return android.PathForOutput(ctx, "api_fingerprint.txt")
664 }).(android.OutputPath)
665}
666
667func sdkMakeVars(ctx android.MakeVarsContext) {
Dan Willemsen9f435972020-05-28 15:28:00 -0700668 if ctx.Config().AlwaysUsePrebuiltSdks() {
Colin Cross3047fa22019-04-18 10:56:44 -0700669 return
670 }
671
672 ctx.Strict("FRAMEWORK_AIDL", sdkFrameworkAidlPath(ctx).String())
Jiyong Park71b519d2019-04-18 17:25:49 +0900673 ctx.Strict("API_FINGERPRINT", ApiFingerprintPath(ctx).String())
Colin Cross98fd5742019-01-09 23:04:25 -0800674}