Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 1 | // 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 | |
| 15 | package android |
| 16 | |
| 17 | import ( |
| 18 | "fmt" |
| 19 | "strconv" |
| 20 | "strings" |
| 21 | ) |
| 22 | |
| 23 | type SdkContext interface { |
| 24 | // SdkVersion returns SdkSpec that corresponds to the sdk_version property of the current module |
| 25 | SdkVersion() SdkSpec |
| 26 | // SystemModules returns the system_modules property of the current module, or an empty string if it is not set. |
| 27 | SystemModules() string |
| 28 | // MinSdkVersion returns SdkSpec that corresponds to the min_sdk_version property of the current module, |
| 29 | // or from sdk_version if it is not set. |
| 30 | MinSdkVersion() SdkSpec |
| 31 | // TargetSdkVersion returns the SdkSpec that corresponds to the target_sdk_version property of the current module, |
| 32 | // or from sdk_version if it is not set. |
| 33 | TargetSdkVersion() SdkSpec |
| 34 | } |
| 35 | |
| 36 | // SdkKind represents a particular category of an SDK spec like public, system, test, etc. |
| 37 | type SdkKind int |
| 38 | |
| 39 | const ( |
| 40 | SdkInvalid SdkKind = iota |
| 41 | SdkNone |
| 42 | SdkCore |
| 43 | SdkCorePlatform |
| 44 | SdkPublic |
| 45 | SdkSystem |
| 46 | SdkTest |
| 47 | SdkModule |
| 48 | SdkSystemServer |
| 49 | SdkPrivate |
| 50 | ) |
| 51 | |
| 52 | // String returns the string representation of this SdkKind |
| 53 | func (k SdkKind) String() string { |
| 54 | switch k { |
| 55 | case SdkPrivate: |
| 56 | return "private" |
| 57 | case SdkNone: |
| 58 | return "none" |
| 59 | case SdkPublic: |
| 60 | return "public" |
| 61 | case SdkSystem: |
| 62 | return "system" |
| 63 | case SdkTest: |
| 64 | return "test" |
| 65 | case SdkCore: |
| 66 | return "core" |
| 67 | case SdkCorePlatform: |
| 68 | return "core_platform" |
| 69 | case SdkModule: |
| 70 | return "module-lib" |
| 71 | case SdkSystemServer: |
| 72 | return "system-server" |
| 73 | default: |
| 74 | return "invalid" |
| 75 | } |
| 76 | } |
| 77 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 78 | // SdkSpec represents the kind and the version of an SDK for a module to build against |
| 79 | type SdkSpec struct { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 80 | Kind SdkKind |
| 81 | ApiLevel ApiLevel |
| 82 | Raw string |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | func (s SdkSpec) String() string { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 86 | return fmt.Sprintf("%s_%s", s.Kind, s.ApiLevel) |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | // Valid checks if this SdkSpec is well-formed. Note however that true doesn't mean that the |
| 90 | // specified SDK actually exists. |
| 91 | func (s SdkSpec) Valid() bool { |
| 92 | return s.Kind != SdkInvalid |
| 93 | } |
| 94 | |
| 95 | // Specified checks if this SdkSpec is well-formed and is not "". |
| 96 | func (s SdkSpec) Specified() bool { |
| 97 | return s.Valid() && s.Kind != SdkPrivate |
| 98 | } |
| 99 | |
| 100 | // whether the API surface is managed and versioned, i.e. has .txt file that |
| 101 | // get frozen on SDK freeze and changes get reviewed by API council. |
| 102 | func (s SdkSpec) Stable() bool { |
| 103 | if !s.Specified() { |
| 104 | return false |
| 105 | } |
| 106 | switch s.Kind { |
| 107 | case SdkNone: |
| 108 | // there is nothing to manage and version in this case; de facto stable API. |
| 109 | return true |
| 110 | case SdkCore, SdkPublic, SdkSystem, SdkModule, SdkSystemServer: |
| 111 | return true |
| 112 | case SdkCorePlatform, SdkTest, SdkPrivate: |
| 113 | return false |
| 114 | default: |
| 115 | panic(fmt.Errorf("unknown SdkKind=%v", s.Kind)) |
| 116 | } |
| 117 | return false |
| 118 | } |
| 119 | |
| 120 | // PrebuiltSdkAvailableForUnbundledBuilt tells whether this SdkSpec can have a prebuilt SDK |
| 121 | // that can be used for unbundled builds. |
| 122 | func (s SdkSpec) PrebuiltSdkAvailableForUnbundledBuild() bool { |
| 123 | // "", "none", and "core_platform" are not available for unbundled build |
| 124 | // as we don't/can't have prebuilt stub for the versions |
| 125 | return s.Kind != SdkPrivate && s.Kind != SdkNone && s.Kind != SdkCorePlatform |
| 126 | } |
| 127 | |
| 128 | func (s SdkSpec) ForVendorPartition(ctx EarlyModuleContext) SdkSpec { |
| 129 | // If BOARD_CURRENT_API_LEVEL_FOR_VENDOR_MODULES has a numeric value, |
| 130 | // use it instead of "current" for the vendor partition. |
| 131 | currentSdkVersion := ctx.DeviceConfig().CurrentApiLevelForVendorModules() |
| 132 | if currentSdkVersion == "current" { |
| 133 | return s |
| 134 | } |
| 135 | |
| 136 | if s.Kind == SdkPublic || s.Kind == SdkSystem { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 137 | if s.ApiLevel.IsCurrent() { |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 138 | if i, err := strconv.Atoi(currentSdkVersion); err == nil { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 139 | apiLevel := uncheckedFinalApiLevel(i) |
| 140 | return SdkSpec{s.Kind, apiLevel, s.Raw} |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 141 | } |
| 142 | panic(fmt.Errorf("BOARD_CURRENT_API_LEVEL_FOR_VENDOR_MODULES must be either \"current\" or a number, but was %q", currentSdkVersion)) |
| 143 | } |
| 144 | } |
| 145 | return s |
| 146 | } |
| 147 | |
| 148 | // UsePrebuilt determines whether prebuilt SDK should be used for this SdkSpec with the given context. |
| 149 | func (s SdkSpec) UsePrebuilt(ctx EarlyModuleContext) bool { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 150 | if s.ApiLevel.IsCurrent() { |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 151 | // "current" can be built from source and be from prebuilt SDK |
| 152 | return ctx.Config().AlwaysUsePrebuiltSdks() |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 153 | } else if !s.ApiLevel.IsPreview() { |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 154 | // validation check |
| 155 | if s.Kind != SdkPublic && s.Kind != SdkSystem && s.Kind != SdkTest && s.Kind != SdkModule { |
| 156 | panic(fmt.Errorf("prebuilt SDK is not not available for SdkKind=%q", s.Kind)) |
| 157 | return false |
| 158 | } |
| 159 | // numbered SDKs are always from prebuilt |
| 160 | return true |
| 161 | } |
| 162 | // "", "none", "core_platform" fall here |
| 163 | return false |
| 164 | } |
| 165 | |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 166 | // EffectiveVersion converts an SdkSpec into the concrete ApiLevel that the module should use. For |
| 167 | // modules targeting an unreleased SDK (meaning it does not yet have a number) it returns |
| 168 | // FutureApiLevel(10000). |
| 169 | func (s SdkSpec) EffectiveVersion(ctx EarlyModuleContext) (ApiLevel, error) { |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 170 | if !s.Valid() { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 171 | return s.ApiLevel, fmt.Errorf("invalid sdk version %q", s.Raw) |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | if ctx.DeviceSpecific() || ctx.SocSpecific() { |
| 175 | s = s.ForVendorPartition(ctx) |
| 176 | } |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 177 | if !s.ApiLevel.IsPreview() { |
| 178 | return s.ApiLevel, nil |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 179 | } |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 180 | ret := ctx.Config().DefaultAppTargetSdk(ctx) |
| 181 | if ret.IsPreview() { |
| 182 | return FutureApiLevel, nil |
| 183 | } |
| 184 | return ret, nil |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | // EffectiveVersionString converts an SdkSpec into the concrete version string that the module |
| 188 | // should use. For modules targeting an unreleased SDK (meaning it does not yet have a number) |
| 189 | // it returns the codename (P, Q, R, etc.) |
| 190 | func (s SdkSpec) EffectiveVersionString(ctx EarlyModuleContext) (string, error) { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 191 | if !s.Valid() { |
| 192 | return s.ApiLevel.String(), fmt.Errorf("invalid sdk version %q", s.Raw) |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 193 | } |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 194 | |
| 195 | if ctx.DeviceSpecific() || ctx.SocSpecific() { |
| 196 | s = s.ForVendorPartition(ctx) |
| 197 | } |
| 198 | if !s.ApiLevel.IsPreview() { |
| 199 | return s.ApiLevel.String(), nil |
| 200 | } |
| 201 | return ctx.Config().DefaultAppTargetSdk(ctx).String(), nil |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | func SdkSpecFrom(str string) SdkSpec { |
| 205 | switch str { |
| 206 | // special cases first |
| 207 | case "": |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 208 | return SdkSpec{SdkPrivate, NoneApiLevel, str} |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 209 | case "none": |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 210 | return SdkSpec{SdkNone, NoneApiLevel, str} |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 211 | case "core_platform": |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 212 | return SdkSpec{SdkCorePlatform, NoneApiLevel, str} |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 213 | default: |
| 214 | // the syntax is [kind_]version |
| 215 | sep := strings.LastIndex(str, "_") |
| 216 | |
| 217 | var kindString string |
| 218 | if sep == 0 { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 219 | return SdkSpec{SdkInvalid, NoneApiLevel, str} |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 220 | } else if sep == -1 { |
| 221 | kindString = "" |
| 222 | } else { |
| 223 | kindString = str[0:sep] |
| 224 | } |
| 225 | versionString := str[sep+1 : len(str)] |
| 226 | |
| 227 | var kind SdkKind |
| 228 | switch kindString { |
| 229 | case "": |
| 230 | kind = SdkPublic |
| 231 | case "core": |
| 232 | kind = SdkCore |
| 233 | case "system": |
| 234 | kind = SdkSystem |
| 235 | case "test": |
| 236 | kind = SdkTest |
| 237 | case "module": |
| 238 | kind = SdkModule |
| 239 | case "system_server": |
| 240 | kind = SdkSystemServer |
| 241 | default: |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 242 | return SdkSpec{SdkInvalid, NoneApiLevel, str} |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 243 | } |
| 244 | |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 245 | var apiLevel ApiLevel |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 246 | if versionString == "current" { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 247 | apiLevel = FutureApiLevel |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 248 | } else if i, err := strconv.Atoi(versionString); err == nil { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 249 | apiLevel = uncheckedFinalApiLevel(i) |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 250 | } else { |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 251 | return SdkSpec{SdkInvalid, apiLevel, str} |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 252 | } |
| 253 | |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 254 | return SdkSpec{kind, apiLevel, str} |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 255 | } |
| 256 | } |
| 257 | |
| 258 | func (s SdkSpec) ValidateSystemSdk(ctx EarlyModuleContext) bool { |
| 259 | // Ensures that the specified system SDK version is one of BOARD_SYSTEMSDK_VERSIONS (for vendor/product Java module) |
| 260 | // Assuming that BOARD_SYSTEMSDK_VERSIONS := 28 29, |
| 261 | // sdk_version of the modules in vendor/product that use system sdk must be either system_28, system_29 or system_current |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 262 | if s.Kind != SdkSystem || s.ApiLevel.IsPreview() { |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 263 | return true |
| 264 | } |
| 265 | allowedVersions := ctx.DeviceConfig().PlatformSystemSdkVersions() |
| 266 | if ctx.DeviceSpecific() || ctx.SocSpecific() || (ctx.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface()) { |
| 267 | systemSdkVersions := ctx.DeviceConfig().SystemSdkVersions() |
| 268 | if len(systemSdkVersions) > 0 { |
| 269 | allowedVersions = systemSdkVersions |
| 270 | } |
| 271 | } |
Jiyong Park | 54105c4 | 2021-03-31 18:17:53 +0900 | [diff] [blame^] | 272 | if len(allowedVersions) > 0 && !InList(s.ApiLevel.String(), allowedVersions) { |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 273 | ctx.PropertyErrorf("sdk_version", "incompatible sdk version %q. System SDK version should be one of %q", |
| 274 | s.Raw, allowedVersions) |
| 275 | return false |
| 276 | } |
| 277 | return true |
| 278 | } |