blob: c5b957be54e9ba5d2d2c64699c9b170ec1fa9376 [file] [log] [blame]
Colin Cross7f64b6d2015-07-09 13:57:48 -07001// Copyright 2015 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
Colin Cross635c3b02016-05-18 15:37:25 -070015package android
Colin Cross7f64b6d2015-07-09 13:57:48 -070016
17import (
18 "fmt"
19 "reflect"
Dan Willemsen490fd492015-11-24 17:53:15 -080020 "runtime"
Colin Cross7f64b6d2015-07-09 13:57:48 -070021 "strings"
22
Colin Cross7f64b6d2015-07-09 13:57:48 -070023 "github.com/google/blueprint/proptools"
24)
25
26func init() {
Colin Cross1e676be2016-10-12 14:38:15 -070027 PreDepsMutators(func(ctx RegisterMutatorsContext) {
28 ctx.BottomUp("variable", variableMutator).Parallel()
29 })
Colin Cross7f64b6d2015-07-09 13:57:48 -070030}
31
32type variableProperties struct {
33 Product_variables struct {
Dan Willemsen47cf66b2015-09-16 16:48:54 -070034 Platform_sdk_version struct {
35 Asflags []string
36 }
Colin Cross83163192015-12-01 16:31:16 -080037
38 // unbundled_build is a catch-all property to annotate modules that don't build in one or
39 // more unbundled branches, usually due to dependencies missing from the manifest.
40 Unbundled_build struct {
41 Enabled *bool `android:"arch_variant"`
42 } `android:"arch_variant"`
Dan Willemsen496e3952016-01-05 14:27:55 -080043
44 Brillo struct {
Dan Willemsen7b872832016-10-03 23:36:47 -070045 Cflags []string
Dan Willemsen496e3952016-01-05 14:27:55 -080046 Version_script *string `android:"arch_variant"`
47 } `android:"arch_variant"`
Dan Willemsen97cae012016-03-01 14:08:42 -080048
49 Malloc_not_svelte struct {
50 Cflags []string
51 }
Evgenii Stepanov8391efa2016-05-12 18:04:18 -070052
53 Safestack struct {
54 Cflags []string `android:"arch_variant"`
55 } `android:"arch_variant"`
Dan Willemsena6f7d152016-07-12 14:57:40 -070056
Dan Willemsen1be35382016-07-25 17:42:18 -070057 Binder32bit struct {
58 Cflags []string
59 }
Dan Willemsenfcebcd52016-09-22 14:49:10 -070060
Colin Cross6bc59ef2016-12-08 09:46:35 -080061 // debuggable is true for eng and userdebug builds, and can be used to turn on additional
62 // debugging features that don't significantly impact runtime behavior. userdebug builds
63 // are used for dogfooding and performance testing, and should be as similar to user builds
64 // as possible.
Dan Willemsenfcebcd52016-09-22 14:49:10 -070065 Debuggable struct {
Dan Willemsen7b872832016-10-03 23:36:47 -070066 Cflags []string
67 Cppflags []string
Dan Willemsenfcebcd52016-09-22 14:49:10 -070068 }
Colin Cross6bc59ef2016-12-08 09:46:35 -080069
70 // eng is true for -eng builds, and can be used to turn on additionaly heavyweight debugging
71 // features.
72 Eng struct {
73 Cflags []string
74 Cppflags []string
75 }
Colin Cross83163192015-12-01 16:31:16 -080076 } `android:"arch_variant"`
Colin Cross7f64b6d2015-07-09 13:57:48 -070077}
78
79var zeroProductVariables variableProperties
80
Colin Cross485e5722015-08-27 13:28:01 -070081type productVariables struct {
Dan Willemsen174978c2016-05-11 00:27:49 -070082 // Suffix to add to generated Makefiles
83 Make_suffix *string `json:",omitempty"`
84
Dan Willemsen97cae012016-03-01 14:08:42 -080085 Platform_sdk_version *int `json:",omitempty"`
Colin Cross4225f652015-09-17 14:33:42 -070086
Dan Willemsen1d31ec32015-09-22 16:56:09 -070087 DeviceName *string `json:",omitempty"`
Colin Cross4225f652015-09-17 14:33:42 -070088 DeviceArch *string `json:",omitempty"`
89 DeviceArchVariant *string `json:",omitempty"`
90 DeviceCpuVariant *string `json:",omitempty"`
91 DeviceAbi *[]string `json:",omitempty"`
Dan Willemsendd0e2c32015-10-20 14:29:35 -070092 DeviceUsesClang *bool `json:",omitempty"`
Dan Willemsend2ede872016-11-18 14:54:24 -080093 DeviceVndkVersion *string `json:",omitempty"`
Colin Cross4225f652015-09-17 14:33:42 -070094
95 DeviceSecondaryArch *string `json:",omitempty"`
96 DeviceSecondaryArchVariant *string `json:",omitempty"`
97 DeviceSecondaryCpuVariant *string `json:",omitempty"`
98 DeviceSecondaryAbi *[]string `json:",omitempty"`
99
100 HostArch *string `json:",omitempty"`
101 HostSecondaryArch *string `json:",omitempty"`
Dan Willemsen490fd492015-11-24 17:53:15 -0800102
103 CrossHost *string `json:",omitempty"`
104 CrossHostArch *string `json:",omitempty"`
105 CrossHostSecondaryArch *string `json:",omitempty"`
Colin Cross83163192015-12-01 16:31:16 -0800106
Dan Willemsenb5038162016-03-16 12:35:33 -0700107 Allow_missing_dependencies *bool `json:",omitempty"`
108 Unbundled_build *bool `json:",omitempty"`
109 Brillo *bool `json:",omitempty"`
110 Malloc_not_svelte *bool `json:",omitempty"`
Evgenii Stepanov8391efa2016-05-12 18:04:18 -0700111 Safestack *bool `json:",omitempty"`
Dan Willemsen36cff8b2016-05-17 16:35:02 -0700112 HostStaticBinaries *bool `json:",omitempty"`
Dan Willemsen1be35382016-07-25 17:42:18 -0700113 Binder32bit *bool `json:",omitempty"`
Colin Cross9d45bb72016-08-29 16:14:13 -0700114 UseGoma *bool `json:",omitempty"`
Dan Willemsenfcebcd52016-09-22 14:49:10 -0700115 Debuggable *bool `json:",omitempty"`
Colin Cross6bc59ef2016-12-08 09:46:35 -0800116 Eng *bool `json:",omitempty"`
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800117 EnableCFI *bool `json:",omitempty"`
Colin Cross16b23492016-01-06 14:41:07 -0800118
Dan Willemsen4353bc42016-12-05 17:16:02 -0800119 VendorPath *string `json:",omitempty"`
120
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700121 ClangTidy *bool `json:",omitempty"`
122 TidyChecks *string `json:",omitempty"`
123
Ryan Campbell469a18a2017-02-27 09:01:54 -0800124 NativeCoverage *bool `json:",omitempty"`
125 CoveragePaths *[]string `json:",omitempty"`
126 CoverageExcludePaths *[]string `json:",omitempty"`
Dan Willemsen581341d2017-02-09 16:16:31 -0800127
Colin Cross1e7d3702016-08-24 15:25:47 -0700128 DevicePrefer32BitExecutables *bool `json:",omitempty"`
129 HostPrefer32BitExecutables *bool `json:",omitempty"`
130
Colin Cross23ae82a2016-11-02 14:34:39 -0700131 SanitizeHost []string `json:",omitempty"`
132 SanitizeDevice []string `json:",omitempty"`
133 SanitizeDeviceArch []string `json:",omitempty"`
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800134
135 ArtUseReadBarrier *bool `json:",omitempty"`
Jack He8cc71432016-12-08 15:45:07 -0800136
137 BtConfigIncludeDir *string `json:",omitempty"`
Colin Crossa6bc19e2015-09-16 13:53:42 -0700138}
139
140func boolPtr(v bool) *bool {
141 return &v
Colin Cross485e5722015-08-27 13:28:01 -0700142}
143
Dan Willemsen47cf66b2015-09-16 16:48:54 -0700144func intPtr(v int) *int {
145 return &v
146}
147
Colin Cross4225f652015-09-17 14:33:42 -0700148func stringPtr(v string) *string {
149 return &v
150}
151
Colin Cross27385972015-09-18 10:57:10 -0700152func (v *productVariables) SetDefaultConfig() {
153 *v = productVariables{
Dan Albert22c0b412016-11-10 11:08:00 -0800154 Platform_sdk_version: intPtr(24),
Colin Cross4225f652015-09-17 14:33:42 -0700155 HostArch: stringPtr("x86_64"),
156 HostSecondaryArch: stringPtr("x86"),
Dan Willemsen1d31ec32015-09-22 16:56:09 -0700157 DeviceName: stringPtr("flounder"),
Colin Cross4225f652015-09-17 14:33:42 -0700158 DeviceArch: stringPtr("arm64"),
Dan Willemsena91d1272016-03-29 22:06:05 -0700159 DeviceArchVariant: stringPtr("armv8-a"),
Colin Cross4225f652015-09-17 14:33:42 -0700160 DeviceCpuVariant: stringPtr("denver64"),
161 DeviceAbi: &[]string{"arm64-v8a"},
Dan Willemsendd0e2c32015-10-20 14:29:35 -0700162 DeviceUsesClang: boolPtr(true),
Colin Cross4225f652015-09-17 14:33:42 -0700163 DeviceSecondaryArch: stringPtr("arm"),
164 DeviceSecondaryArchVariant: stringPtr("armv7-a-neon"),
Dan Willemsen1d31ec32015-09-22 16:56:09 -0700165 DeviceSecondaryCpuVariant: stringPtr("denver"),
Colin Cross4225f652015-09-17 14:33:42 -0700166 DeviceSecondaryAbi: &[]string{"armeabi-v7a"},
Dan Willemsen97cae012016-03-01 14:08:42 -0800167 Malloc_not_svelte: boolPtr(false),
Evgenii Stepanov8391efa2016-05-12 18:04:18 -0700168 Safestack: boolPtr(false),
Colin Cross485e5722015-08-27 13:28:01 -0700169 }
Dan Willemsen490fd492015-11-24 17:53:15 -0800170
171 if runtime.GOOS == "linux" {
172 v.CrossHost = stringPtr("windows")
173 v.CrossHostArch = stringPtr("x86")
Dan Willemsen07cd0512016-02-03 23:16:33 -0800174 v.CrossHostSecondaryArch = stringPtr("x86_64")
Dan Willemsen490fd492015-11-24 17:53:15 -0800175 }
Colin Cross7f64b6d2015-07-09 13:57:48 -0700176}
177
Colin Cross635c3b02016-05-18 15:37:25 -0700178func variableMutator(mctx BottomUpMutatorContext) {
179 var module Module
Colin Cross7f64b6d2015-07-09 13:57:48 -0700180 var ok bool
Colin Cross635c3b02016-05-18 15:37:25 -0700181 if module, ok = mctx.Module().(Module); !ok {
Colin Cross7f64b6d2015-07-09 13:57:48 -0700182 return
183 }
184
185 // TODO: depend on config variable, create variants, propagate variants up tree
186 a := module.base()
Colin Cross06a931b2015-10-28 17:23:31 -0700187 variableValues := reflect.ValueOf(&a.variableProperties.Product_variables).Elem()
Colin Cross7f64b6d2015-07-09 13:57:48 -0700188 zeroValues := reflect.ValueOf(zeroProductVariables.Product_variables)
189
190 for i := 0; i < variableValues.NumField(); i++ {
191 variableValue := variableValues.Field(i)
192 zeroValue := zeroValues.Field(i)
Colin Cross485e5722015-08-27 13:28:01 -0700193 name := variableValues.Type().Field(i).Name
194 property := "product_variables." + proptools.PropertyNameForField(name)
Colin Cross7f64b6d2015-07-09 13:57:48 -0700195
Colin Crossa6bc19e2015-09-16 13:53:42 -0700196 // Check that the variable was set for the product
Colin Cross485e5722015-08-27 13:28:01 -0700197 val := reflect.ValueOf(mctx.Config().(Config).ProductVariables).FieldByName(name)
Colin Crossa6bc19e2015-09-16 13:53:42 -0700198 if !val.IsValid() || val.Kind() != reflect.Ptr || val.IsNil() {
199 continue
Colin Cross7f64b6d2015-07-09 13:57:48 -0700200 }
Colin Crossa6bc19e2015-09-16 13:53:42 -0700201
202 val = val.Elem()
203
204 // For bools, check that the value is true
205 if val.Kind() == reflect.Bool && val.Bool() == false {
206 continue
207 }
208
209 // Check if any properties were set for the module
210 if reflect.DeepEqual(variableValue.Interface(), zeroValue.Interface()) {
211 continue
212 }
213
214 a.setVariableProperties(mctx, property, variableValue, val.Interface())
Colin Cross7f64b6d2015-07-09 13:57:48 -0700215 }
216}
217
Colin Cross635c3b02016-05-18 15:37:25 -0700218func (a *ModuleBase) setVariableProperties(ctx BottomUpMutatorContext,
Colin Cross7f64b6d2015-07-09 13:57:48 -0700219 prefix string, productVariablePropertyValue reflect.Value, variableValue interface{}) {
220
Colin Crossdd0dbe62015-12-02 15:24:38 -0800221 printfIntoProperties(productVariablePropertyValue, variableValue)
Colin Cross7f64b6d2015-07-09 13:57:48 -0700222
Colin Cross06a931b2015-10-28 17:23:31 -0700223 err := proptools.AppendMatchingProperties(a.generalProperties,
224 productVariablePropertyValue.Addr().Interface(), nil)
225 if err != nil {
226 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
227 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
228 } else {
229 panic(err)
230 }
231 }
Colin Cross7f64b6d2015-07-09 13:57:48 -0700232}
233
234func printfIntoProperties(productVariablePropertyValue reflect.Value, variableValue interface{}) {
235 for i := 0; i < productVariablePropertyValue.NumField(); i++ {
236 propertyValue := productVariablePropertyValue.Field(i)
Colin Crossdd0dbe62015-12-02 15:24:38 -0800237 kind := propertyValue.Kind()
238 if kind == reflect.Ptr {
239 if propertyValue.IsNil() {
240 continue
241 }
242 propertyValue = propertyValue.Elem()
243 }
Colin Cross7f64b6d2015-07-09 13:57:48 -0700244 switch propertyValue.Kind() {
245 case reflect.String:
246 printfIntoProperty(propertyValue, variableValue)
247 case reflect.Slice:
248 for j := 0; j < propertyValue.Len(); j++ {
249 printfIntoProperty(propertyValue.Index(j), variableValue)
250 }
Colin Crossdd0dbe62015-12-02 15:24:38 -0800251 case reflect.Bool:
252 // Nothing
Colin Cross7f64b6d2015-07-09 13:57:48 -0700253 case reflect.Struct:
254 printfIntoProperties(propertyValue, variableValue)
255 default:
256 panic(fmt.Errorf("unsupported field kind %q", propertyValue.Kind()))
257 }
258 }
259}
260
261func printfIntoProperty(propertyValue reflect.Value, variableValue interface{}) {
262 s := propertyValue.String()
263 // For now, we only support int formats
264 var i int
265 if strings.Contains(s, "%d") {
266 switch v := variableValue.(type) {
267 case int:
268 i = v
269 case bool:
270 if v {
271 i = 1
272 }
273 default:
274 panic(fmt.Errorf("unsupported type %T", variableValue))
275 }
276 propertyValue.Set(reflect.ValueOf(fmt.Sprintf(s, i)))
277 }
278}