blob: df25a89faa7a863c05a21a92416d3a0b39eebb70 [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
77func InitPrebuiltModule(module PrebuiltInterface, srcs *[]string) {
78 p := module.Prebuilt()
79 module.AddProperties(&p.properties)
80 p.srcs = srcs
Colin Crossce75d2c2016-10-06 16:12:58 -070081}
82
Jaewoong Jung939ebd52019-03-26 15:07:36 -070083func InitSingleSourcePrebuiltModule(module PrebuiltInterface, src *string) {
84 p := module.Prebuilt()
85 module.AddProperties(&p.properties)
86 p.src = src
87}
88
Colin Crossce75d2c2016-10-06 16:12:58 -070089type PrebuiltInterface interface {
90 Module
91 Prebuilt() *Prebuilt
Colin Crossce75d2c2016-10-06 16:12:58 -070092}
93
Colin Cross5ea9bcc2017-07-27 15:41:32 -070094func RegisterPrebuiltsPreArchMutators(ctx RegisterMutatorsContext) {
Jaewoong Jung939ebd52019-03-26 15:07:36 -070095 ctx.BottomUp("prebuilts", PrebuiltMutator).Parallel()
Colin Crosscec81712017-07-13 14:43:27 -070096}
97
Colin Cross5ea9bcc2017-07-27 15:41:32 -070098func RegisterPrebuiltsPostDepsMutators(ctx RegisterMutatorsContext) {
Colin Crosscec81712017-07-13 14:43:27 -070099 ctx.TopDown("prebuilt_select", PrebuiltSelectModuleMutator).Parallel()
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -0700100 ctx.BottomUp("prebuilt_postdeps", PrebuiltPostDepsMutator).Parallel()
Colin Crosscec81712017-07-13 14:43:27 -0700101}
102
Jaewoong Jung939ebd52019-03-26 15:07:36 -0700103// PrebuiltMutator ensures that there is always a module with an undecorated name, and marks
Colin Crossce75d2c2016-10-06 16:12:58 -0700104// prebuilt modules that have both a prebuilt and a source module.
Jaewoong Jung939ebd52019-03-26 15:07:36 -0700105func PrebuiltMutator(ctx BottomUpMutatorContext) {
Colin Crossce75d2c2016-10-06 16:12:58 -0700106 if m, ok := ctx.Module().(PrebuiltInterface); ok && m.Prebuilt() != nil {
107 p := m.Prebuilt()
108 name := m.base().BaseModuleName()
109 if ctx.OtherModuleExists(name) {
Nan Zhang2502e122017-03-09 18:43:01 -0800110 ctx.AddReverseDependency(ctx.Module(), prebuiltDepTag, name)
Colin Cross74d73e22017-08-02 11:05:49 -0700111 p.properties.SourceExists = true
Colin Crossce75d2c2016-10-06 16:12:58 -0700112 } else {
113 ctx.Rename(name)
114 }
115 }
116}
117
Colin Crossc3e7fa62017-03-17 13:14:32 -0700118// PrebuiltSelectModuleMutator marks prebuilts that are used, either overriding source modules or
119// because the source module doesn't exist. It also disables installing overridden source modules.
Colin Crossa2f296f2016-11-29 15:16:18 -0800120func PrebuiltSelectModuleMutator(ctx TopDownMutatorContext) {
Colin Crossc3e7fa62017-03-17 13:14:32 -0700121 if m, ok := ctx.Module().(PrebuiltInterface); ok && m.Prebuilt() != nil {
122 p := m.Prebuilt()
Jaewoong Jung939ebd52019-03-26 15:07:36 -0700123 if p.srcs == nil && p.src == nil {
Colin Cross74d73e22017-08-02 11:05:49 -0700124 panic(fmt.Errorf("prebuilt module did not have InitPrebuiltModule called on it"))
125 }
126 if !p.properties.SourceExists {
127 p.properties.UsePrebuilt = p.usePrebuilt(ctx, nil)
Colin Crossc3e7fa62017-03-17 13:14:32 -0700128 }
129 } else if s, ok := ctx.Module().(Module); ok {
Colin Crossee6143c2017-12-30 17:54:27 -0800130 ctx.VisitDirectDepsWithTag(prebuiltDepTag, func(m Module) {
131 p := m.(PrebuiltInterface).Prebuilt()
132 if p.usePrebuilt(ctx, s) {
133 p.properties.UsePrebuilt = true
134 s.SkipInstall()
Colin Crossa2f296f2016-11-29 15:16:18 -0800135 }
136 })
137 }
138}
139
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -0700140// PrebuiltPostDepsMutator does two operations. It replace dependencies on the
141// source module with dependencies on the prebuilt when both modules exist and
142// the prebuilt should be used. When the prebuilt should not be used, disable
143// installing it. Secondly, it also adds a sourcegroup to any filegroups found
144// in the prebuilt's 'Srcs' property.
145func PrebuiltPostDepsMutator(ctx BottomUpMutatorContext) {
Colin Crossce75d2c2016-10-06 16:12:58 -0700146 if m, ok := ctx.Module().(PrebuiltInterface); ok && m.Prebuilt() != nil {
147 p := m.Prebuilt()
148 name := m.base().BaseModuleName()
Colin Cross74d73e22017-08-02 11:05:49 -0700149 if p.properties.UsePrebuilt {
150 if p.properties.SourceExists {
Colin Cross0f3c72f2016-11-23 15:44:07 -0800151 ctx.ReplaceDependencies(name)
152 }
153 } else {
154 m.SkipInstall()
Colin Crossce75d2c2016-10-06 16:12:58 -0700155 }
156 }
157}
158
Colin Crossa2f296f2016-11-29 15:16:18 -0800159// usePrebuilt returns true if a prebuilt should be used instead of the source module. The prebuilt
160// will be used if it is marked "prefer" or if the source module is disabled.
161func (p *Prebuilt) usePrebuilt(ctx TopDownMutatorContext, source Module) bool {
Jaewoong Jung939ebd52019-03-26 15:07:36 -0700162 if p.srcs != nil && len(*p.srcs) == 0 {
163 return false
164 }
165
166 if p.src != nil && *p.src == "" {
Colin Crossa2f296f2016-11-29 15:16:18 -0800167 return false
Colin Crossce75d2c2016-10-06 16:12:58 -0700168 }
Colin Crossce75d2c2016-10-06 16:12:58 -0700169
Colin Crossa2f296f2016-11-29 15:16:18 -0800170 // TODO: use p.Properties.Name and ctx.ModuleDir to override preference
Nan Zhang0007d812017-11-07 10:57:05 -0800171 if Bool(p.properties.Prefer) {
Colin Crossa2f296f2016-11-29 15:16:18 -0800172 return true
173 }
174
Colin Crossc3e7fa62017-03-17 13:14:32 -0700175 return source == nil || !source.Enabled()
Colin Crossce75d2c2016-10-06 16:12:58 -0700176}