blob: 3be10f723e131530978610d45cb1a99f5a525b34 [file] [log] [blame]
Colin Crossce75d2c2016-10-06 16:12:58 -07001// Copyright 2016 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
15package android
16
Colin Cross74d73e22017-08-02 11:05:49 -070017import (
18 "fmt"
19
20 "github.com/google/blueprint"
Jaewoong Jung939ebd52019-03-26 15:07:36 -070021 "github.com/google/blueprint/proptools"
Colin Cross74d73e22017-08-02 11:05:49 -070022)
Colin Crossce75d2c2016-10-06 16:12:58 -070023
24// This file implements common functionality for handling modules that may exist as prebuilts,
25// source, or both.
26
Nan Zhang2502e122017-03-09 18:43:01 -080027type prebuiltDependencyTag struct {
28 blueprint.BaseDependencyTag
29}
30
31var prebuiltDepTag prebuiltDependencyTag
Colin Crossce75d2c2016-10-06 16:12:58 -070032
Colin Cross74d73e22017-08-02 11:05:49 -070033type PrebuiltProperties struct {
34 // When prefer is set to true the prebuilt will be used instead of any source module with
35 // a matching name.
Nan Zhang0007d812017-11-07 10:57:05 -080036 Prefer *bool `android:"arch_variant"`
Colin Crossce75d2c2016-10-06 16:12:58 -070037
Colin Cross74d73e22017-08-02 11:05:49 -070038 SourceExists bool `blueprint:"mutated"`
39 UsePrebuilt bool `blueprint:"mutated"`
40}
41
42type Prebuilt struct {
43 properties PrebuiltProperties
44 module Module
45 srcs *[]string
Jaewoong Jung939ebd52019-03-26 15:07:36 -070046 src *string
Colin Crossce75d2c2016-10-06 16:12:58 -070047}
48
49func (p *Prebuilt) Name(name string) string {
50 return "prebuilt_" + name
51}
52
Colin Cross74d73e22017-08-02 11:05:49 -070053func (p *Prebuilt) SingleSourcePath(ctx ModuleContext) Path {
Jaewoong Jung939ebd52019-03-26 15:07:36 -070054 if p.srcs != nil {
55 if len(*p.srcs) == 0 {
56 ctx.PropertyErrorf("srcs", "missing prebuilt source file")
57 return nil
58 }
Colin Crossce75d2c2016-10-06 16:12:58 -070059
Jaewoong Jung939ebd52019-03-26 15:07:36 -070060 if len(*p.srcs) > 1 {
61 ctx.PropertyErrorf("srcs", "multiple prebuilt source files")
62 return nil
63 }
Colin Crossce75d2c2016-10-06 16:12:58 -070064
Jaewoong Jung939ebd52019-03-26 15:07:36 -070065 // Return the singleton source after expanding any filegroup in the
66 // sources.
67 return PathForModuleSrc(ctx, (*p.srcs)[0])
68 } else {
69 if proptools.String(p.src) == "" {
70 ctx.PropertyErrorf("src", "missing prebuilt source file")
71 return nil
72 }
73 return PathForModuleSrc(ctx, *p.src)
74 }
Colin Cross74d73e22017-08-02 11:05:49 -070075}
76
Jiyong Parka41f12a2019-04-23 18:00:10 +090077func (p *Prebuilt) UsePrebuilt() bool {
78 return p.properties.UsePrebuilt
79}
80
Colin Cross74d73e22017-08-02 11:05:49 -070081func InitPrebuiltModule(module PrebuiltInterface, srcs *[]string) {
82 p := module.Prebuilt()
83 module.AddProperties(&p.properties)
84 p.srcs = srcs
Colin Crossce75d2c2016-10-06 16:12:58 -070085}
86
Jaewoong Jung939ebd52019-03-26 15:07:36 -070087func InitSingleSourcePrebuiltModule(module PrebuiltInterface, src *string) {
88 p := module.Prebuilt()
89 module.AddProperties(&p.properties)
90 p.src = src
91}
92
Colin Crossce75d2c2016-10-06 16:12:58 -070093type PrebuiltInterface interface {
94 Module
95 Prebuilt() *Prebuilt
Colin Crossce75d2c2016-10-06 16:12:58 -070096}
97
Colin Cross5ea9bcc2017-07-27 15:41:32 -070098func RegisterPrebuiltsPreArchMutators(ctx RegisterMutatorsContext) {
Jaewoong Jung939ebd52019-03-26 15:07:36 -070099 ctx.BottomUp("prebuilts", PrebuiltMutator).Parallel()
Colin Crosscec81712017-07-13 14:43:27 -0700100}
101
Colin Cross5ea9bcc2017-07-27 15:41:32 -0700102func RegisterPrebuiltsPostDepsMutators(ctx RegisterMutatorsContext) {
Colin Crosscec81712017-07-13 14:43:27 -0700103 ctx.TopDown("prebuilt_select", PrebuiltSelectModuleMutator).Parallel()
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -0700104 ctx.BottomUp("prebuilt_postdeps", PrebuiltPostDepsMutator).Parallel()
Colin Crosscec81712017-07-13 14:43:27 -0700105}
106
Jaewoong Jung939ebd52019-03-26 15:07:36 -0700107// PrebuiltMutator ensures that there is always a module with an undecorated name, and marks
Colin Crossce75d2c2016-10-06 16:12:58 -0700108// prebuilt modules that have both a prebuilt and a source module.
Jaewoong Jung939ebd52019-03-26 15:07:36 -0700109func PrebuiltMutator(ctx BottomUpMutatorContext) {
Colin Crossce75d2c2016-10-06 16:12:58 -0700110 if m, ok := ctx.Module().(PrebuiltInterface); ok && m.Prebuilt() != nil {
111 p := m.Prebuilt()
112 name := m.base().BaseModuleName()
113 if ctx.OtherModuleExists(name) {
Nan Zhang2502e122017-03-09 18:43:01 -0800114 ctx.AddReverseDependency(ctx.Module(), prebuiltDepTag, name)
Colin Cross74d73e22017-08-02 11:05:49 -0700115 p.properties.SourceExists = true
Colin Crossce75d2c2016-10-06 16:12:58 -0700116 } else {
117 ctx.Rename(name)
118 }
119 }
120}
121
Colin Crossc3e7fa62017-03-17 13:14:32 -0700122// PrebuiltSelectModuleMutator marks prebuilts that are used, either overriding source modules or
123// because the source module doesn't exist. It also disables installing overridden source modules.
Colin Crossa2f296f2016-11-29 15:16:18 -0800124func PrebuiltSelectModuleMutator(ctx TopDownMutatorContext) {
Colin Crossc3e7fa62017-03-17 13:14:32 -0700125 if m, ok := ctx.Module().(PrebuiltInterface); ok && m.Prebuilt() != nil {
126 p := m.Prebuilt()
Jaewoong Jung939ebd52019-03-26 15:07:36 -0700127 if p.srcs == nil && p.src == nil {
Colin Cross74d73e22017-08-02 11:05:49 -0700128 panic(fmt.Errorf("prebuilt module did not have InitPrebuiltModule called on it"))
129 }
130 if !p.properties.SourceExists {
131 p.properties.UsePrebuilt = p.usePrebuilt(ctx, nil)
Colin Crossc3e7fa62017-03-17 13:14:32 -0700132 }
133 } else if s, ok := ctx.Module().(Module); ok {
Colin Crossee6143c2017-12-30 17:54:27 -0800134 ctx.VisitDirectDepsWithTag(prebuiltDepTag, func(m Module) {
135 p := m.(PrebuiltInterface).Prebuilt()
136 if p.usePrebuilt(ctx, s) {
137 p.properties.UsePrebuilt = true
138 s.SkipInstall()
Colin Crossa2f296f2016-11-29 15:16:18 -0800139 }
140 })
141 }
142}
143
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -0700144// PrebuiltPostDepsMutator does two operations. It replace dependencies on the
145// source module with dependencies on the prebuilt when both modules exist and
146// the prebuilt should be used. When the prebuilt should not be used, disable
147// installing it. Secondly, it also adds a sourcegroup to any filegroups found
148// in the prebuilt's 'Srcs' property.
149func PrebuiltPostDepsMutator(ctx BottomUpMutatorContext) {
Colin Crossce75d2c2016-10-06 16:12:58 -0700150 if m, ok := ctx.Module().(PrebuiltInterface); ok && m.Prebuilt() != nil {
151 p := m.Prebuilt()
152 name := m.base().BaseModuleName()
Colin Cross74d73e22017-08-02 11:05:49 -0700153 if p.properties.UsePrebuilt {
154 if p.properties.SourceExists {
Colin Cross0f3c72f2016-11-23 15:44:07 -0800155 ctx.ReplaceDependencies(name)
156 }
157 } else {
158 m.SkipInstall()
Colin Crossce75d2c2016-10-06 16:12:58 -0700159 }
160 }
161}
162
Colin Crossa2f296f2016-11-29 15:16:18 -0800163// usePrebuilt returns true if a prebuilt should be used instead of the source module. The prebuilt
164// will be used if it is marked "prefer" or if the source module is disabled.
165func (p *Prebuilt) usePrebuilt(ctx TopDownMutatorContext, source Module) bool {
Jaewoong Jung939ebd52019-03-26 15:07:36 -0700166 if p.srcs != nil && len(*p.srcs) == 0 {
167 return false
168 }
169
170 if p.src != nil && *p.src == "" {
Colin Crossa2f296f2016-11-29 15:16:18 -0800171 return false
Colin Crossce75d2c2016-10-06 16:12:58 -0700172 }
Colin Crossce75d2c2016-10-06 16:12:58 -0700173
Colin Crossa2f296f2016-11-29 15:16:18 -0800174 // TODO: use p.Properties.Name and ctx.ModuleDir to override preference
Nan Zhang0007d812017-11-07 10:57:05 -0800175 if Bool(p.properties.Prefer) {
Colin Crossa2f296f2016-11-29 15:16:18 -0800176 return true
177 }
178
Colin Crossc3e7fa62017-03-17 13:14:32 -0700179 return source == nil || !source.Enabled()
Colin Crossce75d2c2016-10-06 16:12:58 -0700180}
Jiyong Park0a573d72019-07-07 12:39:16 +0900181
182func (p *Prebuilt) SourceExists() bool {
183 return p.properties.SourceExists
184}