blob: 1f01dc64fba2f6819e40ae5e99ca48c2ea4821d4 [file] [log] [blame]
Jiyong Parkf1691d22021-03-29 20:11:58 +09001// 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 android
16
17import (
18 "fmt"
19 "strconv"
20 "strings"
21)
22
23type SdkContext interface {
24 // SdkVersion returns SdkSpec that corresponds to the sdk_version property of the current module
Jiyong Park92315372021-04-02 08:45:46 +090025 SdkVersion(ctx EarlyModuleContext) SdkSpec
Jiyong Parkf1691d22021-03-29 20:11:58 +090026 // SystemModules returns the system_modules property of the current module, or an empty string if it is not set.
27 SystemModules() string
Spandan Das8c9ae7e2023-03-03 21:20:36 +000028 // MinSdkVersion returns ApiLevel that corresponds to the min_sdk_version property of the current module,
Jiyong Parkf1691d22021-03-29 20:11:58 +090029 // or from sdk_version if it is not set.
Spandan Das8c9ae7e2023-03-03 21:20:36 +000030 MinSdkVersion(ctx EarlyModuleContext) ApiLevel
Spandan Dasa26eda72023-03-02 00:56:06 +000031 // ReplaceMaxSdkVersionPlaceholder returns Apilevel to replace the maxSdkVersion property of permission and
William Loh5a082f92022-05-17 20:21:50 +000032 // uses-permission tags if it is set.
Spandan Dasa26eda72023-03-02 00:56:06 +000033 ReplaceMaxSdkVersionPlaceholder(ctx EarlyModuleContext) ApiLevel
Spandan Dasca70fc42023-03-01 23:38:49 +000034 // TargetSdkVersion returns the ApiLevel that corresponds to the target_sdk_version property of the current module,
Jiyong Parkf1691d22021-03-29 20:11:58 +090035 // or from sdk_version if it is not set.
Spandan Dasca70fc42023-03-01 23:38:49 +000036 TargetSdkVersion(ctx EarlyModuleContext) ApiLevel
Jiyong Parkf1691d22021-03-29 20:11:58 +090037}
38
39// SdkKind represents a particular category of an SDK spec like public, system, test, etc.
40type SdkKind int
41
42const (
43 SdkInvalid SdkKind = iota
44 SdkNone
45 SdkCore
46 SdkCorePlatform
Spandan Das0b555e32022-11-28 18:48:51 +000047 SdkIntraCore // API surface provided by one core module to another
Jiyong Parkf1691d22021-03-29 20:11:58 +090048 SdkPublic
49 SdkSystem
50 SdkTest
51 SdkModule
52 SdkSystemServer
53 SdkPrivate
Spandan Das4ac2aed2022-12-28 01:54:29 +000054 SdkToolchain // API surface provided by ART to compile other API domains
Jiyong Parkf1691d22021-03-29 20:11:58 +090055)
56
57// String returns the string representation of this SdkKind
58func (k SdkKind) String() string {
59 switch k {
60 case SdkPrivate:
61 return "private"
62 case SdkNone:
63 return "none"
64 case SdkPublic:
65 return "public"
66 case SdkSystem:
67 return "system"
68 case SdkTest:
69 return "test"
70 case SdkCore:
71 return "core"
72 case SdkCorePlatform:
73 return "core_platform"
Spandan Das0b555e32022-11-28 18:48:51 +000074 case SdkIntraCore:
75 return "intracore"
Jiyong Parkf1691d22021-03-29 20:11:58 +090076 case SdkModule:
77 return "module-lib"
78 case SdkSystemServer:
79 return "system-server"
Spandan Das4ac2aed2022-12-28 01:54:29 +000080 case SdkToolchain:
81 return "toolchain"
Jiyong Parkf1691d22021-03-29 20:11:58 +090082 default:
83 return "invalid"
84 }
85}
86
Spandan Das626a8ad2023-03-20 18:52:50 +000087// JavaLibraryName returns the soong module containing the Java APIs of that API surface.
88func (k SdkKind) JavaLibraryName(c Config) string {
89 name := k.defaultJavaLibraryName()
Spandan Das69f42182023-03-29 16:25:16 +000090 return JavaApiLibraryName(c, name)
Spandan Das626a8ad2023-03-20 18:52:50 +000091}
92
Spandan Das69f42182023-03-29 16:25:16 +000093// JavaApiLibraryName returns the name of .txt equivalent of a java_library, but does
Spandan Das626a8ad2023-03-20 18:52:50 +000094// not check if either module exists.
95// TODO: Return .txt (single-tree or multi-tree equivalents) based on config
Spandan Das69f42182023-03-29 16:25:16 +000096func JavaApiLibraryName(c Config, name string) string {
Jihoon Kang1bff0342023-01-17 20:40:22 +000097 if c.BuildFromTextStub() {
98 return name + ".from-text"
99 }
Spandan Das626a8ad2023-03-20 18:52:50 +0000100 return name
101}
102
103func (k SdkKind) defaultJavaLibraryName() string {
104 switch k {
105 case SdkPublic:
106 return "android_stubs_current"
107 case SdkSystem:
108 return "android_system_stubs_current"
109 case SdkTest:
110 return "android_test_stubs_current"
111 case SdkCore:
112 return "core.current.stubs"
113 case SdkModule:
114 return "android_module_lib_stubs_current"
115 case SdkSystemServer:
116 return "android_system_server_stubs_current"
117 default:
118 panic(fmt.Errorf("APIs of API surface %v cannot be provided by a single Soong module\n", k))
119 }
120}
121
Jiyong Parkf1691d22021-03-29 20:11:58 +0900122// SdkSpec represents the kind and the version of an SDK for a module to build against
123type SdkSpec struct {
Jiyong Park54105c42021-03-31 18:17:53 +0900124 Kind SdkKind
125 ApiLevel ApiLevel
126 Raw string
Jiyong Parkf1691d22021-03-29 20:11:58 +0900127}
128
129func (s SdkSpec) String() string {
Jiyong Park54105c42021-03-31 18:17:53 +0900130 return fmt.Sprintf("%s_%s", s.Kind, s.ApiLevel)
Jiyong Parkf1691d22021-03-29 20:11:58 +0900131}
132
133// Valid checks if this SdkSpec is well-formed. Note however that true doesn't mean that the
134// specified SDK actually exists.
135func (s SdkSpec) Valid() bool {
136 return s.Kind != SdkInvalid
137}
138
139// Specified checks if this SdkSpec is well-formed and is not "".
140func (s SdkSpec) Specified() bool {
141 return s.Valid() && s.Kind != SdkPrivate
142}
143
144// whether the API surface is managed and versioned, i.e. has .txt file that
145// get frozen on SDK freeze and changes get reviewed by API council.
146func (s SdkSpec) Stable() bool {
147 if !s.Specified() {
148 return false
149 }
150 switch s.Kind {
151 case SdkNone:
152 // there is nothing to manage and version in this case; de facto stable API.
153 return true
154 case SdkCore, SdkPublic, SdkSystem, SdkModule, SdkSystemServer:
155 return true
156 case SdkCorePlatform, SdkTest, SdkPrivate:
157 return false
158 default:
159 panic(fmt.Errorf("unknown SdkKind=%v", s.Kind))
160 }
161 return false
162}
163
satayev0ee2f912021-12-01 17:39:48 +0000164// PrebuiltSdkAvailableForUnbundledBuild tells whether this SdkSpec can have a prebuilt SDK
Jiyong Parkf1691d22021-03-29 20:11:58 +0900165// that can be used for unbundled builds.
166func (s SdkSpec) PrebuiltSdkAvailableForUnbundledBuild() bool {
167 // "", "none", and "core_platform" are not available for unbundled build
168 // as we don't/can't have prebuilt stub for the versions
169 return s.Kind != SdkPrivate && s.Kind != SdkNone && s.Kind != SdkCorePlatform
170}
171
172func (s SdkSpec) ForVendorPartition(ctx EarlyModuleContext) SdkSpec {
173 // If BOARD_CURRENT_API_LEVEL_FOR_VENDOR_MODULES has a numeric value,
174 // use it instead of "current" for the vendor partition.
175 currentSdkVersion := ctx.DeviceConfig().CurrentApiLevelForVendorModules()
176 if currentSdkVersion == "current" {
177 return s
178 }
179
180 if s.Kind == SdkPublic || s.Kind == SdkSystem {
Jiyong Park54105c42021-03-31 18:17:53 +0900181 if s.ApiLevel.IsCurrent() {
Jiyong Parkf1691d22021-03-29 20:11:58 +0900182 if i, err := strconv.Atoi(currentSdkVersion); err == nil {
Jiyong Park54105c42021-03-31 18:17:53 +0900183 apiLevel := uncheckedFinalApiLevel(i)
184 return SdkSpec{s.Kind, apiLevel, s.Raw}
Jiyong Parkf1691d22021-03-29 20:11:58 +0900185 }
186 panic(fmt.Errorf("BOARD_CURRENT_API_LEVEL_FOR_VENDOR_MODULES must be either \"current\" or a number, but was %q", currentSdkVersion))
187 }
188 }
189 return s
190}
191
192// UsePrebuilt determines whether prebuilt SDK should be used for this SdkSpec with the given context.
193func (s SdkSpec) UsePrebuilt(ctx EarlyModuleContext) bool {
Jiyong Parkc7022042021-04-15 16:53:05 +0900194 switch s {
195 case SdkSpecNone, SdkSpecCorePlatform, SdkSpecPrivate:
196 return false
197 }
198
Jiyong Park54105c42021-03-31 18:17:53 +0900199 if s.ApiLevel.IsCurrent() {
Jiyong Parkf1691d22021-03-29 20:11:58 +0900200 // "current" can be built from source and be from prebuilt SDK
201 return ctx.Config().AlwaysUsePrebuiltSdks()
Jiyong Park54105c42021-03-31 18:17:53 +0900202 } else if !s.ApiLevel.IsPreview() {
Jiyong Parkf1691d22021-03-29 20:11:58 +0900203 // validation check
Paul Duffin12e311d2021-10-28 17:42:16 +0100204 if s.Kind != SdkPublic && s.Kind != SdkSystem && s.Kind != SdkTest && s.Kind != SdkModule && s.Kind != SdkSystemServer {
Jiyong Parkf1691d22021-03-29 20:11:58 +0900205 panic(fmt.Errorf("prebuilt SDK is not not available for SdkKind=%q", s.Kind))
206 return false
207 }
208 // numbered SDKs are always from prebuilt
209 return true
210 }
Jiyong Parkf1691d22021-03-29 20:11:58 +0900211 return false
212}
213
Jiyong Park54105c42021-03-31 18:17:53 +0900214// EffectiveVersion converts an SdkSpec into the concrete ApiLevel that the module should use. For
215// modules targeting an unreleased SDK (meaning it does not yet have a number) it returns
216// FutureApiLevel(10000).
217func (s SdkSpec) EffectiveVersion(ctx EarlyModuleContext) (ApiLevel, error) {
Jiyong Parkf1691d22021-03-29 20:11:58 +0900218 if !s.Valid() {
Jiyong Park54105c42021-03-31 18:17:53 +0900219 return s.ApiLevel, fmt.Errorf("invalid sdk version %q", s.Raw)
Jiyong Parkf1691d22021-03-29 20:11:58 +0900220 }
221
222 if ctx.DeviceSpecific() || ctx.SocSpecific() {
223 s = s.ForVendorPartition(ctx)
224 }
Spandan Dasdd7057c2023-01-05 01:03:47 +0000225 return s.ApiLevel.EffectiveVersion(ctx)
Jiyong Parkf1691d22021-03-29 20:11:58 +0900226}
227
228// EffectiveVersionString converts an SdkSpec into the concrete version string that the module
229// should use. For modules targeting an unreleased SDK (meaning it does not yet have a number)
230// it returns the codename (P, Q, R, etc.)
231func (s SdkSpec) EffectiveVersionString(ctx EarlyModuleContext) (string, error) {
Jiyong Park54105c42021-03-31 18:17:53 +0900232 if !s.Valid() {
233 return s.ApiLevel.String(), fmt.Errorf("invalid sdk version %q", s.Raw)
Jiyong Parkf1691d22021-03-29 20:11:58 +0900234 }
Jiyong Park54105c42021-03-31 18:17:53 +0900235
236 if ctx.DeviceSpecific() || ctx.SocSpecific() {
237 s = s.ForVendorPartition(ctx)
238 }
Spandan Dasdd7057c2023-01-05 01:03:47 +0000239 return s.ApiLevel.EffectiveVersionString(ctx)
Jiyong Parkf1691d22021-03-29 20:11:58 +0900240}
241
Jiyong Park92315372021-04-02 08:45:46 +0900242var (
Jiyong Parkc7022042021-04-15 16:53:05 +0900243 SdkSpecNone = SdkSpec{SdkNone, NoneApiLevel, "(no version)"}
Spandan Das15da5882023-03-02 23:36:39 +0000244 SdkSpecPrivate = SdkSpec{SdkPrivate, PrivateApiLevel, ""}
Jiyong Parkc7022042021-04-15 16:53:05 +0900245 SdkSpecCorePlatform = SdkSpec{SdkCorePlatform, FutureApiLevel, "core_platform"}
Jiyong Park92315372021-04-02 08:45:46 +0900246)
247
248func SdkSpecFrom(ctx EarlyModuleContext, str string) SdkSpec {
satayev0ee2f912021-12-01 17:39:48 +0000249 return SdkSpecFromWithConfig(ctx.Config(), str)
250}
251
252func SdkSpecFromWithConfig(config Config, str string) SdkSpec {
Jiyong Parkf1691d22021-03-29 20:11:58 +0900253 switch str {
254 // special cases first
255 case "":
Jiyong Park92315372021-04-02 08:45:46 +0900256 return SdkSpecPrivate
Jiyong Parkf1691d22021-03-29 20:11:58 +0900257 case "none":
Jiyong Park92315372021-04-02 08:45:46 +0900258 return SdkSpecNone
Jiyong Parkf1691d22021-03-29 20:11:58 +0900259 case "core_platform":
Jiyong Park92315372021-04-02 08:45:46 +0900260 return SdkSpecCorePlatform
Jiyong Parkf1691d22021-03-29 20:11:58 +0900261 default:
262 // the syntax is [kind_]version
263 sep := strings.LastIndex(str, "_")
264
265 var kindString string
266 if sep == 0 {
Spandan Das15da5882023-03-02 23:36:39 +0000267 return SdkSpec{SdkInvalid, NewInvalidApiLevel(str), str}
Jiyong Parkf1691d22021-03-29 20:11:58 +0900268 } else if sep == -1 {
269 kindString = ""
270 } else {
271 kindString = str[0:sep]
272 }
273 versionString := str[sep+1 : len(str)]
274
275 var kind SdkKind
276 switch kindString {
277 case "":
278 kind = SdkPublic
279 case "core":
280 kind = SdkCore
281 case "system":
282 kind = SdkSystem
283 case "test":
284 kind = SdkTest
285 case "module":
286 kind = SdkModule
287 case "system_server":
288 kind = SdkSystemServer
289 default:
Jiyong Park54105c42021-03-31 18:17:53 +0900290 return SdkSpec{SdkInvalid, NoneApiLevel, str}
Jiyong Parkf1691d22021-03-29 20:11:58 +0900291 }
292
satayev0ee2f912021-12-01 17:39:48 +0000293 apiLevel, err := ApiLevelFromUserWithConfig(config, versionString)
Jiyong Park92315372021-04-02 08:45:46 +0900294 if err != nil {
Spandan Das15da5882023-03-02 23:36:39 +0000295 return SdkSpec{SdkInvalid, NewInvalidApiLevel(versionString), str}
Jiyong Parkf1691d22021-03-29 20:11:58 +0900296 }
Jiyong Park54105c42021-03-31 18:17:53 +0900297 return SdkSpec{kind, apiLevel, str}
Jiyong Parkf1691d22021-03-29 20:11:58 +0900298 }
299}
300
301func (s SdkSpec) ValidateSystemSdk(ctx EarlyModuleContext) bool {
302 // Ensures that the specified system SDK version is one of BOARD_SYSTEMSDK_VERSIONS (for vendor/product Java module)
303 // Assuming that BOARD_SYSTEMSDK_VERSIONS := 28 29,
304 // sdk_version of the modules in vendor/product that use system sdk must be either system_28, system_29 or system_current
Jiyong Park54105c42021-03-31 18:17:53 +0900305 if s.Kind != SdkSystem || s.ApiLevel.IsPreview() {
Jiyong Parkf1691d22021-03-29 20:11:58 +0900306 return true
307 }
308 allowedVersions := ctx.DeviceConfig().PlatformSystemSdkVersions()
309 if ctx.DeviceSpecific() || ctx.SocSpecific() || (ctx.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface()) {
310 systemSdkVersions := ctx.DeviceConfig().SystemSdkVersions()
311 if len(systemSdkVersions) > 0 {
312 allowedVersions = systemSdkVersions
313 }
314 }
Jiyong Park54105c42021-03-31 18:17:53 +0900315 if len(allowedVersions) > 0 && !InList(s.ApiLevel.String(), allowedVersions) {
Jiyong Parkf1691d22021-03-29 20:11:58 +0900316 ctx.PropertyErrorf("sdk_version", "incompatible sdk version %q. System SDK version should be one of %q",
317 s.Raw, allowedVersions)
318 return false
319 }
320 return true
321}
Spandan Das6b73fcb2023-03-20 20:20:58 +0000322
323func init() {
324 RegisterMakeVarsProvider(pctx, javaSdkMakeVars)
325}
326
327// Export the name of the soong modules representing the various Java API surfaces.
328func javaSdkMakeVars(ctx MakeVarsContext) {
329 ctx.Strict("ANDROID_PUBLIC_STUBS", SdkPublic.JavaLibraryName(ctx.Config()))
330 ctx.Strict("ANDROID_SYSTEM_STUBS", SdkSystem.JavaLibraryName(ctx.Config()))
331 ctx.Strict("ANDROID_TEST_STUBS", SdkTest.JavaLibraryName(ctx.Config()))
332 ctx.Strict("ANDROID_MODULE_LIB_STUBS", SdkModule.JavaLibraryName(ctx.Config()))
333 ctx.Strict("ANDROID_SYSTEM_SERVER_STUBS", SdkSystemServer.JavaLibraryName(ctx.Config()))
334 // TODO (jihoonkang): Create a .txt equivalent for core.current.stubs
335 ctx.Strict("ANDROID_CORE_STUBS", SdkCore.JavaLibraryName(ctx.Config()))
336}