blob: 6197f5974e8f1163c053cb2298c8fba39c54df2b [file] [log] [blame]
Dan Willemsen218f6562015-07-08 18:13:11 -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
Dan Willemsen218f6562015-07-08 18:13:11 -070016
17import (
18 "bytes"
Dan Willemsen97750522016-02-09 17:43:51 -080019 "fmt"
Dan Willemsen218f6562015-07-08 18:13:11 -070020 "io"
21 "io/ioutil"
22 "os"
23 "path/filepath"
24 "sort"
Dan Willemsen0fda89f2016-06-01 15:25:32 -070025 "strings"
Dan Willemsen218f6562015-07-08 18:13:11 -070026
Dan Willemsen218f6562015-07-08 18:13:11 -070027 "github.com/google/blueprint"
Dan Willemsen174978c2016-05-11 00:27:49 -070028 "github.com/google/blueprint/proptools"
Dan Willemsen218f6562015-07-08 18:13:11 -070029)
30
31func init() {
Colin Cross798bfce2016-10-12 14:28:16 -070032 RegisterSingletonType("androidmk", AndroidMkSingleton)
Dan Willemsen218f6562015-07-08 18:13:11 -070033}
34
35type AndroidMkDataProvider interface {
Dan Willemsen97750522016-02-09 17:43:51 -080036 AndroidMk() (AndroidMkData, error)
Colin Crossce75d2c2016-10-06 16:12:58 -070037 BaseModuleName() string
Dan Willemsen218f6562015-07-08 18:13:11 -070038}
39
40type AndroidMkData struct {
41 Class string
Colin Crossa2344662016-03-24 13:14:12 -070042 SubName string
Dan Willemsen34cc69e2015-09-23 15:26:20 -070043 OutputFile OptionalPath
Colin Crossca860ac2016-01-04 14:34:37 -080044 Disabled bool
Dan Willemsen218f6562015-07-08 18:13:11 -070045
Nan Zhang6d34b302017-02-04 17:47:46 -080046 Custom func(w io.Writer, name, prefix, moduleDir string) error
Dan Willemsen218f6562015-07-08 18:13:11 -070047
Colin Crossca860ac2016-01-04 14:34:37 -080048 Extra []func(w io.Writer, outputFile Path) error
Dan Willemsen218f6562015-07-08 18:13:11 -070049}
50
51func AndroidMkSingleton() blueprint.Singleton {
52 return &androidMkSingleton{}
53}
54
55type androidMkSingleton struct{}
56
57func (c *androidMkSingleton) GenerateBuildActions(ctx blueprint.SingletonContext) {
Dan Willemsen174978c2016-05-11 00:27:49 -070058 config := ctx.Config().(Config)
59
60 if !config.EmbeddedInMake() {
Dan Willemsen5ba07e82015-12-11 13:51:06 -080061 return
62 }
63
Colin Cross635c3b02016-05-18 15:37:25 -070064 var androidMkModulesList []Module
Colin Cross4f6e4e62016-01-11 12:55:55 -080065
Dan Willemsen218f6562015-07-08 18:13:11 -070066 ctx.VisitAllModules(func(module blueprint.Module) {
Colin Cross635c3b02016-05-18 15:37:25 -070067 if amod, ok := module.(Module); ok {
Dan Willemsen218f6562015-07-08 18:13:11 -070068 androidMkModulesList = append(androidMkModulesList, amod)
69 }
Colin Cross4f6e4e62016-01-11 12:55:55 -080070 })
Dan Willemsen218f6562015-07-08 18:13:11 -070071
Colin Crossd779da42015-12-17 18:00:23 -080072 sort.Sort(AndroidModulesByName{androidMkModulesList, ctx})
73
Dan Willemsen174978c2016-05-11 00:27:49 -070074 transMk := PathForOutput(ctx, "Android"+proptools.String(config.ProductVariables.Make_suffix)+".mk")
Dan Willemsen34cc69e2015-09-23 15:26:20 -070075 if ctx.Failed() {
76 return
77 }
Dan Willemsen218f6562015-07-08 18:13:11 -070078
Dan Willemsen34cc69e2015-09-23 15:26:20 -070079 err := translateAndroidMk(ctx, transMk.String(), androidMkModulesList)
Dan Willemsen218f6562015-07-08 18:13:11 -070080 if err != nil {
81 ctx.Errorf(err.Error())
82 }
83
84 ctx.Build(pctx, blueprint.BuildParams{
85 Rule: blueprint.Phony,
Dan Willemsen34cc69e2015-09-23 15:26:20 -070086 Outputs: []string{transMk.String()},
Dan Willemsen218f6562015-07-08 18:13:11 -070087 Optional: true,
88 })
89}
90
Colin Cross635c3b02016-05-18 15:37:25 -070091func translateAndroidMk(ctx blueprint.SingletonContext, mkFile string, mods []Module) error {
Dan Willemsen218f6562015-07-08 18:13:11 -070092 buf := &bytes.Buffer{}
93
Dan Willemsen97750522016-02-09 17:43:51 -080094 fmt.Fprintln(buf, "LOCAL_MODULE_MAKEFILE := $(lastword $(MAKEFILE_LIST))")
Dan Willemsen218f6562015-07-08 18:13:11 -070095
Dan Willemsen70e17fa2016-07-25 16:00:20 -070096 type_stats := make(map[string]int)
Dan Willemsen218f6562015-07-08 18:13:11 -070097 for _, mod := range mods {
98 err := translateAndroidMkModule(ctx, buf, mod)
99 if err != nil {
100 os.Remove(mkFile)
101 return err
102 }
Dan Willemsen70e17fa2016-07-25 16:00:20 -0700103
104 if ctx.PrimaryModule(mod) == mod {
105 type_stats[ctx.ModuleType(mod)] += 1
106 }
107 }
108
109 keys := []string{}
110 fmt.Fprintln(buf, "\nSTATS.SOONG_MODULE_TYPE :=")
111 for k := range type_stats {
112 keys = append(keys, k)
113 }
114 sort.Strings(keys)
115 for _, mod_type := range keys {
116 fmt.Fprintln(buf, "STATS.SOONG_MODULE_TYPE +=", mod_type)
117 fmt.Fprintf(buf, "STATS.SOONG_MODULE_TYPE.%s := %d\n", mod_type, type_stats[mod_type])
Dan Willemsen218f6562015-07-08 18:13:11 -0700118 }
119
120 // Don't write to the file if it hasn't changed
121 if _, err := os.Stat(mkFile); !os.IsNotExist(err) {
122 if data, err := ioutil.ReadFile(mkFile); err == nil {
123 matches := buf.Len() == len(data)
124
125 if matches {
126 for i, value := range buf.Bytes() {
127 if value != data[i] {
128 matches = false
129 break
130 }
131 }
132 }
133
134 if matches {
135 return nil
136 }
137 }
138 }
139
140 return ioutil.WriteFile(mkFile, buf.Bytes(), 0666)
141}
142
143func translateAndroidMkModule(ctx blueprint.SingletonContext, w io.Writer, mod blueprint.Module) error {
Dan Willemsen97750522016-02-09 17:43:51 -0800144 provider, ok := mod.(AndroidMkDataProvider)
145 if !ok {
Dan Willemsen218f6562015-07-08 18:13:11 -0700146 return nil
147 }
148
Colin Crossce75d2c2016-10-06 16:12:58 -0700149 name := provider.BaseModuleName()
Colin Cross635c3b02016-05-18 15:37:25 -0700150 amod := mod.(Module).base()
Dan Willemsen218f6562015-07-08 18:13:11 -0700151
Dan Willemsen97750522016-02-09 17:43:51 -0800152 if !amod.Enabled() {
Colin Crossce75d2c2016-10-06 16:12:58 -0700153 return nil
154 }
155
156 if amod.commonProperties.SkipInstall {
157 return nil
Dan Willemsen218f6562015-07-08 18:13:11 -0700158 }
159
Colin Crosscc4f3e32016-11-23 15:41:09 -0800160 data, err := provider.AndroidMk()
161 if err != nil {
162 return err
163 }
164
Dan Willemsen01a405a2016-06-13 17:19:03 -0700165 // Make does not understand LinuxBionic
166 if amod.Os() == LinuxBionic {
167 return nil
168 }
169
Colin Crossa2344662016-03-24 13:14:12 -0700170 if data.SubName != "" {
Dan Albert6a047692016-07-18 17:24:47 -0700171 name += data.SubName
Colin Crossa2344662016-03-24 13:14:12 -0700172 }
173
Dan Willemsen97750522016-02-09 17:43:51 -0800174 if data.Custom != nil {
Dan Willemsen218f6562015-07-08 18:13:11 -0700175 prefix := ""
Nan Zhang280802c2017-03-29 16:24:19 -0700176 if amod.ArchSpecific() {
177 switch amod.Os().Class {
178 case Host:
179 prefix = "HOST_"
180 case HostCross:
181 prefix = "HOST_CROSS_"
182 case Device:
183 prefix = "TARGET_"
Colin Crossa1ad8d12016-06-01 17:09:44 -0700184
Nan Zhang280802c2017-03-29 16:24:19 -0700185 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700186
Nan Zhang280802c2017-03-29 16:24:19 -0700187 config := ctx.Config().(Config)
188 if amod.Arch().ArchType != config.Targets[amod.Os().Class][0].Arch.ArchType {
189 prefix = "2ND_" + prefix
190 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700191 }
192
Nan Zhang6d34b302017-02-04 17:47:46 -0800193 return data.Custom(w, name, prefix, filepath.Dir(ctx.BlueprintFile(mod)))
Dan Willemsen218f6562015-07-08 18:13:11 -0700194 }
195
Colin Crossca860ac2016-01-04 14:34:37 -0800196 if data.Disabled {
197 return nil
198 }
199
Dan Willemsen97750522016-02-09 17:43:51 -0800200 if !data.OutputFile.Valid() {
201 return err
202 }
203
204 fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)")
Colin Cross26302132016-05-13 12:28:46 -0700205 fmt.Fprintln(w, "LOCAL_PATH :=", filepath.Dir(ctx.BlueprintFile(mod)))
Dan Willemsen97750522016-02-09 17:43:51 -0800206 fmt.Fprintln(w, "LOCAL_MODULE :=", name)
207 fmt.Fprintln(w, "LOCAL_MODULE_CLASS :=", data.Class)
Colin Cross26302132016-05-13 12:28:46 -0700208 fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", data.OutputFile.String())
Dan Willemsen97750522016-02-09 17:43:51 -0800209
Chris Wolfe998306e2016-08-15 14:47:23 -0400210 if len(amod.commonProperties.Required) > 0 {
211 fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES := "+strings.Join(amod.commonProperties.Required, " "))
212 }
213
Dan Willemsen97750522016-02-09 17:43:51 -0800214 archStr := amod.Arch().ArchType.String()
Colin Crossa1ad8d12016-06-01 17:09:44 -0700215 host := false
216 switch amod.Os().Class {
217 case Host:
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800218 // Make cannot identify LOCAL_MODULE_HOST_ARCH:= common.
219 if archStr != "common" {
220 fmt.Fprintln(w, "LOCAL_MODULE_HOST_ARCH :=", archStr)
221 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700222 host = true
223 case HostCross:
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800224 // Make cannot identify LOCAL_MODULE_HOST_CROSS_ARCH:= common.
225 if archStr != "common" {
226 fmt.Fprintln(w, "LOCAL_MODULE_HOST_CROSS_ARCH :=", archStr)
227 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700228 host = true
229 case Device:
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800230 // Make cannot identify LOCAL_MODULE_TARGET_ARCH:= common.
231 if archStr != "common" {
232 fmt.Fprintln(w, "LOCAL_MODULE_TARGET_ARCH :=", archStr)
233 }
Dan Willemsen0fda89f2016-06-01 15:25:32 -0700234
235 if len(amod.commonProperties.Logtags) > 0 {
236 fmt.Fprintln(w, "LOCAL_LOGTAGS_FILES := ", strings.Join(amod.commonProperties.Logtags, " "))
237 }
Dan Willemsen2277bcb2016-07-25 20:27:39 -0700238 if len(amod.commonProperties.Init_rc) > 0 {
239 fmt.Fprintln(w, "LOCAL_INIT_RC := ", strings.Join(amod.commonProperties.Init_rc, " "))
240 }
Dan Willemsen7ed1ae32016-12-05 16:47:50 -0800241 if amod.commonProperties.Proprietary {
242 fmt.Fprintln(w, "LOCAL_PROPRIETARY_MODULE := true")
243 }
Dan Willemsenaa118f92017-04-06 12:49:58 -0700244 if amod.commonProperties.Vendor {
245 fmt.Fprintln(w, "LOCAL_VENDOR_MODULE := true")
246 }
Dan Willemsenefac4a82017-07-18 19:42:09 -0700247 if amod.commonProperties.Owner != nil {
248 fmt.Fprintln(w, "LOCAL_MODULE_OWNER :=", *amod.commonProperties.Owner)
Colin Cross55708f32017-03-20 13:23:34 -0700249 }
Dan Willemsen97750522016-02-09 17:43:51 -0800250 }
251
Colin Crossa1ad8d12016-06-01 17:09:44 -0700252 if host {
253 fmt.Fprintln(w, "LOCAL_MODULE_HOST_OS :=", amod.Os().String())
254 fmt.Fprintln(w, "LOCAL_IS_HOST_MODULE := true")
255 }
256
Colin Crossca860ac2016-01-04 14:34:37 -0800257 for _, extra := range data.Extra {
258 err = extra(w, data.OutputFile.Path())
Dan Willemsen97750522016-02-09 17:43:51 -0800259 if err != nil {
260 return err
261 }
262 }
263
264 fmt.Fprintln(w, "include $(BUILD_PREBUILT)")
265
266 return err
Dan Willemsen218f6562015-07-08 18:13:11 -0700267}