blob: af6608f8b8d4216c066226c42718492e59a4209e [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
Dan Willemsen174978c2016-05-11 00:27:49 -070064 ctx.SetNinjaBuildDir(pctx, filepath.Join(config.buildDir, ".."))
Dan Willemsen218f6562015-07-08 18:13:11 -070065
Colin Cross635c3b02016-05-18 15:37:25 -070066 var androidMkModulesList []Module
Colin Cross4f6e4e62016-01-11 12:55:55 -080067
Dan Willemsen218f6562015-07-08 18:13:11 -070068 ctx.VisitAllModules(func(module blueprint.Module) {
Colin Cross635c3b02016-05-18 15:37:25 -070069 if amod, ok := module.(Module); ok {
Dan Willemsen218f6562015-07-08 18:13:11 -070070 androidMkModulesList = append(androidMkModulesList, amod)
71 }
Colin Cross4f6e4e62016-01-11 12:55:55 -080072 })
Dan Willemsen218f6562015-07-08 18:13:11 -070073
Colin Crossd779da42015-12-17 18:00:23 -080074 sort.Sort(AndroidModulesByName{androidMkModulesList, ctx})
75
Dan Willemsen174978c2016-05-11 00:27:49 -070076 transMk := PathForOutput(ctx, "Android"+proptools.String(config.ProductVariables.Make_suffix)+".mk")
Dan Willemsen34cc69e2015-09-23 15:26:20 -070077 if ctx.Failed() {
78 return
79 }
Dan Willemsen218f6562015-07-08 18:13:11 -070080
Dan Willemsen34cc69e2015-09-23 15:26:20 -070081 err := translateAndroidMk(ctx, transMk.String(), androidMkModulesList)
Dan Willemsen218f6562015-07-08 18:13:11 -070082 if err != nil {
83 ctx.Errorf(err.Error())
84 }
85
86 ctx.Build(pctx, blueprint.BuildParams{
87 Rule: blueprint.Phony,
Dan Willemsen34cc69e2015-09-23 15:26:20 -070088 Outputs: []string{transMk.String()},
Dan Willemsen218f6562015-07-08 18:13:11 -070089 Optional: true,
90 })
91}
92
Colin Cross635c3b02016-05-18 15:37:25 -070093func translateAndroidMk(ctx blueprint.SingletonContext, mkFile string, mods []Module) error {
Dan Willemsen218f6562015-07-08 18:13:11 -070094 buf := &bytes.Buffer{}
95
Dan Willemsen97750522016-02-09 17:43:51 -080096 fmt.Fprintln(buf, "LOCAL_MODULE_MAKEFILE := $(lastword $(MAKEFILE_LIST))")
Dan Willemsen218f6562015-07-08 18:13:11 -070097
Dan Willemsen70e17fa2016-07-25 16:00:20 -070098 type_stats := make(map[string]int)
Dan Willemsen218f6562015-07-08 18:13:11 -070099 for _, mod := range mods {
100 err := translateAndroidMkModule(ctx, buf, mod)
101 if err != nil {
102 os.Remove(mkFile)
103 return err
104 }
Dan Willemsen70e17fa2016-07-25 16:00:20 -0700105
106 if ctx.PrimaryModule(mod) == mod {
107 type_stats[ctx.ModuleType(mod)] += 1
108 }
109 }
110
111 keys := []string{}
112 fmt.Fprintln(buf, "\nSTATS.SOONG_MODULE_TYPE :=")
113 for k := range type_stats {
114 keys = append(keys, k)
115 }
116 sort.Strings(keys)
117 for _, mod_type := range keys {
118 fmt.Fprintln(buf, "STATS.SOONG_MODULE_TYPE +=", mod_type)
119 fmt.Fprintf(buf, "STATS.SOONG_MODULE_TYPE.%s := %d\n", mod_type, type_stats[mod_type])
Dan Willemsen218f6562015-07-08 18:13:11 -0700120 }
121
122 // Don't write to the file if it hasn't changed
123 if _, err := os.Stat(mkFile); !os.IsNotExist(err) {
124 if data, err := ioutil.ReadFile(mkFile); err == nil {
125 matches := buf.Len() == len(data)
126
127 if matches {
128 for i, value := range buf.Bytes() {
129 if value != data[i] {
130 matches = false
131 break
132 }
133 }
134 }
135
136 if matches {
137 return nil
138 }
139 }
140 }
141
142 return ioutil.WriteFile(mkFile, buf.Bytes(), 0666)
143}
144
145func translateAndroidMkModule(ctx blueprint.SingletonContext, w io.Writer, mod blueprint.Module) error {
Dan Willemsen97750522016-02-09 17:43:51 -0800146 provider, ok := mod.(AndroidMkDataProvider)
147 if !ok {
Dan Willemsen218f6562015-07-08 18:13:11 -0700148 return nil
149 }
150
Colin Crossce75d2c2016-10-06 16:12:58 -0700151 name := provider.BaseModuleName()
Colin Cross635c3b02016-05-18 15:37:25 -0700152 amod := mod.(Module).base()
Dan Willemsen218f6562015-07-08 18:13:11 -0700153
Dan Willemsen97750522016-02-09 17:43:51 -0800154 if !amod.Enabled() {
Colin Crossce75d2c2016-10-06 16:12:58 -0700155 return nil
156 }
157
158 if amod.commonProperties.SkipInstall {
159 return nil
Dan Willemsen218f6562015-07-08 18:13:11 -0700160 }
161
Colin Crosscc4f3e32016-11-23 15:41:09 -0800162 data, err := provider.AndroidMk()
163 if err != nil {
164 return err
165 }
166
Dan Willemsen01a405a2016-06-13 17:19:03 -0700167 // Make does not understand LinuxBionic
168 if amod.Os() == LinuxBionic {
169 return nil
170 }
171
Colin Crossa2344662016-03-24 13:14:12 -0700172 if data.SubName != "" {
Dan Albert6a047692016-07-18 17:24:47 -0700173 name += data.SubName
Colin Crossa2344662016-03-24 13:14:12 -0700174 }
175
Dan Willemsen97750522016-02-09 17:43:51 -0800176 if data.Custom != nil {
Dan Willemsen218f6562015-07-08 18:13:11 -0700177 prefix := ""
Nan Zhang280802c2017-03-29 16:24:19 -0700178 if amod.ArchSpecific() {
179 switch amod.Os().Class {
180 case Host:
181 prefix = "HOST_"
182 case HostCross:
183 prefix = "HOST_CROSS_"
184 case Device:
185 prefix = "TARGET_"
Colin Crossa1ad8d12016-06-01 17:09:44 -0700186
Nan Zhang280802c2017-03-29 16:24:19 -0700187 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700188
Nan Zhang280802c2017-03-29 16:24:19 -0700189 config := ctx.Config().(Config)
190 if amod.Arch().ArchType != config.Targets[amod.Os().Class][0].Arch.ArchType {
191 prefix = "2ND_" + prefix
192 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700193 }
194
Nan Zhang6d34b302017-02-04 17:47:46 -0800195 return data.Custom(w, name, prefix, filepath.Dir(ctx.BlueprintFile(mod)))
Dan Willemsen218f6562015-07-08 18:13:11 -0700196 }
197
Colin Crossca860ac2016-01-04 14:34:37 -0800198 if data.Disabled {
199 return nil
200 }
201
Dan Willemsen97750522016-02-09 17:43:51 -0800202 if !data.OutputFile.Valid() {
203 return err
204 }
205
206 fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)")
Colin Cross26302132016-05-13 12:28:46 -0700207 fmt.Fprintln(w, "LOCAL_PATH :=", filepath.Dir(ctx.BlueprintFile(mod)))
Dan Willemsen97750522016-02-09 17:43:51 -0800208 fmt.Fprintln(w, "LOCAL_MODULE :=", name)
209 fmt.Fprintln(w, "LOCAL_MODULE_CLASS :=", data.Class)
Colin Cross26302132016-05-13 12:28:46 -0700210 fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", data.OutputFile.String())
Dan Willemsen97750522016-02-09 17:43:51 -0800211
Chris Wolfe998306e2016-08-15 14:47:23 -0400212 if len(amod.commonProperties.Required) > 0 {
213 fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES := "+strings.Join(amod.commonProperties.Required, " "))
214 }
215
Dan Willemsen97750522016-02-09 17:43:51 -0800216 archStr := amod.Arch().ArchType.String()
Colin Crossa1ad8d12016-06-01 17:09:44 -0700217 host := false
218 switch amod.Os().Class {
219 case Host:
220 fmt.Fprintln(w, "LOCAL_MODULE_HOST_ARCH :=", archStr)
221 host = true
222 case HostCross:
223 fmt.Fprintln(w, "LOCAL_MODULE_HOST_CROSS_ARCH :=", archStr)
224 host = true
225 case Device:
Dan Willemsen97750522016-02-09 17:43:51 -0800226 fmt.Fprintln(w, "LOCAL_MODULE_TARGET_ARCH :=", archStr)
Dan Willemsen0fda89f2016-06-01 15:25:32 -0700227
228 if len(amod.commonProperties.Logtags) > 0 {
229 fmt.Fprintln(w, "LOCAL_LOGTAGS_FILES := ", strings.Join(amod.commonProperties.Logtags, " "))
230 }
Dan Willemsen2277bcb2016-07-25 20:27:39 -0700231 if len(amod.commonProperties.Init_rc) > 0 {
232 fmt.Fprintln(w, "LOCAL_INIT_RC := ", strings.Join(amod.commonProperties.Init_rc, " "))
233 }
Dan Willemsen7ed1ae32016-12-05 16:47:50 -0800234 if amod.commonProperties.Proprietary {
235 fmt.Fprintln(w, "LOCAL_PROPRIETARY_MODULE := true")
236 }
Dan Willemsenaa118f92017-04-06 12:49:58 -0700237 if amod.commonProperties.Vendor {
238 fmt.Fprintln(w, "LOCAL_VENDOR_MODULE := true")
239 }
Colin Cross55708f32017-03-20 13:23:34 -0700240 if amod.commonProperties.Owner != "" {
241 fmt.Fprintln(w, "LOCAL_MODULE_OWNER :=", amod.commonProperties.Owner)
242 }
Dan Willemsen97750522016-02-09 17:43:51 -0800243 }
244
Colin Crossa1ad8d12016-06-01 17:09:44 -0700245 if host {
246 fmt.Fprintln(w, "LOCAL_MODULE_HOST_OS :=", amod.Os().String())
247 fmt.Fprintln(w, "LOCAL_IS_HOST_MODULE := true")
248 }
249
Colin Crossca860ac2016-01-04 14:34:37 -0800250 for _, extra := range data.Extra {
251 err = extra(w, data.OutputFile.Path())
Dan Willemsen97750522016-02-09 17:43:51 -0800252 if err != nil {
253 return err
254 }
255 }
256
257 fmt.Fprintln(w, "include $(BUILD_PREBUILT)")
258
259 return err
Dan Willemsen218f6562015-07-08 18:13:11 -0700260}