blob: d55cdca3377dd99e8e1c2c186f3dd347ea1a32f9 [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 := ""
Colin Crossa1ad8d12016-06-01 17:09:44 -0700178 switch amod.Os().Class {
179 case Host:
180 prefix = "HOST_"
181 case HostCross:
182 prefix = "HOST_CROSS_"
183 case Device:
Dan Willemsen97750522016-02-09 17:43:51 -0800184 prefix = "TARGET_"
Colin Crossa1ad8d12016-06-01 17:09:44 -0700185
186 }
187
188 config := ctx.Config().(Config)
189 if amod.Arch().ArchType != config.Targets[amod.Os().Class][0].Arch.ArchType {
190 prefix = "2ND_" + prefix
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:
218 fmt.Fprintln(w, "LOCAL_MODULE_HOST_ARCH :=", archStr)
219 host = true
220 case HostCross:
221 fmt.Fprintln(w, "LOCAL_MODULE_HOST_CROSS_ARCH :=", archStr)
222 host = true
223 case Device:
Dan Willemsen97750522016-02-09 17:43:51 -0800224 fmt.Fprintln(w, "LOCAL_MODULE_TARGET_ARCH :=", archStr)
Dan Willemsen0fda89f2016-06-01 15:25:32 -0700225
226 if len(amod.commonProperties.Logtags) > 0 {
227 fmt.Fprintln(w, "LOCAL_LOGTAGS_FILES := ", strings.Join(amod.commonProperties.Logtags, " "))
228 }
Dan Willemsen2277bcb2016-07-25 20:27:39 -0700229 if len(amod.commonProperties.Init_rc) > 0 {
230 fmt.Fprintln(w, "LOCAL_INIT_RC := ", strings.Join(amod.commonProperties.Init_rc, " "))
231 }
Dan Willemsen7ed1ae32016-12-05 16:47:50 -0800232 if amod.commonProperties.Proprietary {
233 fmt.Fprintln(w, "LOCAL_PROPRIETARY_MODULE := true")
234 }
Colin Cross55708f32017-03-20 13:23:34 -0700235 if amod.commonProperties.Owner != "" {
236 fmt.Fprintln(w, "LOCAL_MODULE_OWNER :=", amod.commonProperties.Owner)
237 }
Dan Willemsen97750522016-02-09 17:43:51 -0800238 }
239
Colin Crossa1ad8d12016-06-01 17:09:44 -0700240 if host {
241 fmt.Fprintln(w, "LOCAL_MODULE_HOST_OS :=", amod.Os().String())
242 fmt.Fprintln(w, "LOCAL_IS_HOST_MODULE := true")
243 }
244
Colin Crossca860ac2016-01-04 14:34:37 -0800245 for _, extra := range data.Extra {
246 err = extra(w, data.OutputFile.Path())
Dan Willemsen97750522016-02-09 17:43:51 -0800247 if err != nil {
248 return err
249 }
250 }
251
252 fmt.Fprintln(w, "include $(BUILD_PREBUILT)")
253
254 return err
Dan Willemsen218f6562015-07-08 18:13:11 -0700255}