blob: d6750c655d6c46553ae82976809954db839ae32c [file] [log] [blame]
Nan Zhangdb0b9a32017-02-27 10:12:13 -08001// Copyright 2017 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 python
16
17// This file contains the module types for building Python binary.
18
19import (
20 "fmt"
Cole Faust4d247e62023-01-23 10:14:58 -080021 "path/filepath"
22 "strings"
23
Nan Zhangdb0b9a32017-02-27 10:12:13 -080024 "android/soong/android"
25)
26
27func init() {
Paul Duffind0890452021-03-17 21:57:08 +000028 registerPythonBinaryComponents(android.InitRegistrationContext)
Jingwen Chen13b9b422021-03-08 07:32:28 -050029}
30
Paul Duffind0890452021-03-17 21:57:08 +000031func registerPythonBinaryComponents(ctx android.RegistrationContext) {
32 ctx.RegisterModuleType("python_binary_host", PythonBinaryHostFactory)
33}
34
Nan Zhangd4e641b2017-07-12 12:55:28 -070035type BinaryProperties struct {
Nan Zhangdb0b9a32017-02-27 10:12:13 -080036 // the name of the source file that is the main entry point of the program.
37 // this file must also be listed in srcs.
38 // If left unspecified, module name is used instead.
39 // If name doesn’t match any filename in srcs, main must be specified.
Cole Faustd82f0362023-04-12 17:32:19 -070040 Main *string
Nan Zhangdb0b9a32017-02-27 10:12:13 -080041
42 // set the name of the output binary.
Nan Zhangea568a42017-11-08 21:20:04 -080043 Stem *string `android:"arch_variant"`
Nan Zhangdb0b9a32017-02-27 10:12:13 -080044
45 // append to the name of the output binary.
Nan Zhangea568a42017-11-08 21:20:04 -080046 Suffix *string `android:"arch_variant"`
Nan Zhangc9c6cb72017-11-03 16:54:05 -070047
48 // list of compatibility suites (for example "cts", "vts") that the module should be
49 // installed into.
50 Test_suites []string `android:"arch_variant"`
Dan Willemsen6ca390f2019-02-14 23:17:08 -080051
52 // whether to use `main` when starting the executable. The default is true, when set to
53 // false it will act much like the normal `python` executable, but with the sources and
54 // libraries automatically included in the PYTHONPATH.
55 Autorun *bool `android:"arch_variant"`
Dan Shi6ffaaa82019-09-26 11:41:36 -070056
57 // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
58 // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
59 // explicitly.
60 Auto_gen_config *bool
Nan Zhangdb0b9a32017-02-27 10:12:13 -080061}
62
Cole Faust4d247e62023-01-23 10:14:58 -080063type PythonBinaryModule struct {
64 PythonLibraryModule
Nan Zhangd4e641b2017-07-12 12:55:28 -070065 binaryProperties BinaryProperties
Nan Zhangdb0b9a32017-02-27 10:12:13 -080066
Cole Faust4d247e62023-01-23 10:14:58 -080067 // (.intermediate) module output path as installation source.
68 installSource android.Path
69
70 // Final installation path.
71 installedDest android.Path
72
73 androidMkSharedLibs []string
LaMont Jonesafe7baf2024-01-09 22:47:39 +000074
75 // Aconfig files for all transitive deps. Also exposed via TransitiveDeclarationsInfo
76 mergedAconfigFiles map[string]android.Paths
Nan Zhangdb0b9a32017-02-27 10:12:13 -080077}
78
Cole Faust4d247e62023-01-23 10:14:58 -080079var _ android.AndroidMkEntriesProvider = (*PythonBinaryModule)(nil)
80var _ android.Module = (*PythonBinaryModule)(nil)
81
Nan Zhangd4e641b2017-07-12 12:55:28 -070082type IntermPathProvider interface {
83 IntermPathForModuleOut() android.OptionalPath
Nan Zhang5323f8e2017-05-10 13:37:54 -070084}
85
Cole Faust4d247e62023-01-23 10:14:58 -080086func NewBinary(hod android.HostOrDeviceSupported) *PythonBinaryModule {
87 return &PythonBinaryModule{
88 PythonLibraryModule: *newModule(hod, android.MultilibFirst),
89 }
Nan Zhangdb0b9a32017-02-27 10:12:13 -080090}
91
Nan Zhangd4e641b2017-07-12 12:55:28 -070092func PythonBinaryHostFactory() android.Module {
Cole Faust4d247e62023-01-23 10:14:58 -080093 return NewBinary(android.HostSupported).init()
Nan Zhangd4e641b2017-07-12 12:55:28 -070094}
95
Cole Faust4d247e62023-01-23 10:14:58 -080096func (p *PythonBinaryModule) init() android.Module {
97 p.AddProperties(&p.properties, &p.protoProperties)
98 p.AddProperties(&p.binaryProperties)
99 android.InitAndroidArchModule(p, p.hod, p.multilib)
100 android.InitDefaultableModule(p)
Cole Faust4d247e62023-01-23 10:14:58 -0800101 return p
Dan Willemsen6ca390f2019-02-14 23:17:08 -0800102}
103
Cole Faust4d247e62023-01-23 10:14:58 -0800104func (p *PythonBinaryModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
105 p.PythonLibraryModule.GenerateAndroidBuildActions(ctx)
106 p.buildBinary(ctx)
107 p.installedDest = ctx.InstallFile(installDir(ctx, "bin", "", ""),
108 p.installSource.Base(), p.installSource)
LaMont Jonesafe7baf2024-01-09 22:47:39 +0000109 android.CollectDependencyAconfigFiles(ctx, &p.mergedAconfigFiles)
Nan Zhangd4e641b2017-07-12 12:55:28 -0700110}
111
Cole Faust4d247e62023-01-23 10:14:58 -0800112func (p *PythonBinaryModule) buildBinary(ctx android.ModuleContext) {
Cole Faust5c503d12023-01-24 11:48:08 -0800113 embeddedLauncher := p.isEmbeddedLauncherEnabled()
114 depsSrcsZips := p.collectPathsFromTransitiveDeps(ctx, embeddedLauncher)
Dan Willemsen6ca390f2019-02-14 23:17:08 -0800115 main := ""
Cole Faust4d247e62023-01-23 10:14:58 -0800116 if p.autorun() {
117 main = p.getPyMainFile(ctx, p.srcsPathMappings)
Dan Willemsen6ca390f2019-02-14 23:17:08 -0800118 }
Nan Zhangd4e641b2017-07-12 12:55:28 -0700119
Nan Zhangcba97e62018-09-26 15:14:10 -0700120 var launcherPath android.OptionalPath
Nan Zhang1db85402017-12-18 13:20:23 -0800121 if embeddedLauncher {
Colin Crossee6143c2017-12-30 17:54:27 -0800122 ctx.VisitDirectDepsWithTag(launcherTag, func(m android.Module) {
Nan Zhangd4e641b2017-07-12 12:55:28 -0700123 if provider, ok := m.(IntermPathProvider); ok {
Nan Zhangcba97e62018-09-26 15:14:10 -0700124 if launcherPath.Valid() {
Nan Zhangd4e641b2017-07-12 12:55:28 -0700125 panic(fmt.Errorf("launcher path was found before: %q",
Nan Zhang1db85402017-12-18 13:20:23 -0800126 launcherPath))
Nan Zhangd4e641b2017-07-12 12:55:28 -0700127 }
Nan Zhangcba97e62018-09-26 15:14:10 -0700128 launcherPath = provider.IntermPathForModuleOut()
Nan Zhangd4e641b2017-07-12 12:55:28 -0700129 }
130 })
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800131 }
Cole Faust5c503d12023-01-24 11:48:08 -0800132 srcsZips := make(android.Paths, 0, len(depsSrcsZips)+1)
133 if embeddedLauncher {
134 srcsZips = append(srcsZips, p.precompiledSrcsZip)
135 } else {
136 srcsZips = append(srcsZips, p.srcsZip)
137 }
138 srcsZips = append(srcsZips, depsSrcsZips...)
Cole Faust4d247e62023-01-23 10:14:58 -0800139 p.installSource = registerBuildActionForParFile(ctx, embeddedLauncher, launcherPath,
140 p.getHostInterpreterName(ctx, p.properties.Actual_version),
Cole Faust5c503d12023-01-24 11:48:08 -0800141 main, p.getStem(ctx), srcsZips)
Cole Faust909d2372023-02-13 23:17:40 +0000142
143 var sharedLibs []string
144 // if embedded launcher is enabled, we need to collect the shared library dependencies of the
145 // launcher
146 for _, dep := range ctx.GetDirectDepsWithTag(launcherSharedLibTag) {
147 sharedLibs = append(sharedLibs, ctx.OtherModuleName(dep))
148 }
149 p.androidMkSharedLibs = sharedLibs
Cole Faust4d247e62023-01-23 10:14:58 -0800150}
151
152func (p *PythonBinaryModule) AndroidMkEntries() []android.AndroidMkEntries {
153 entries := android.AndroidMkEntries{OutputFile: android.OptionalPathForPath(p.installSource)}
154
155 entries.Class = "EXECUTABLES"
156
157 entries.ExtraEntries = append(entries.ExtraEntries,
158 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
159 entries.AddCompatibilityTestSuites(p.binaryProperties.Test_suites...)
160 })
161
162 entries.Required = append(entries.Required, "libc++")
163 entries.ExtraEntries = append(entries.ExtraEntries,
164 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
165 path, file := filepath.Split(p.installedDest.String())
166 stem := strings.TrimSuffix(file, filepath.Ext(file))
167
168 entries.SetString("LOCAL_MODULE_SUFFIX", filepath.Ext(file))
169 entries.SetString("LOCAL_MODULE_PATH", path)
170 entries.SetString("LOCAL_MODULE_STEM", stem)
171 entries.AddStrings("LOCAL_SHARED_LIBRARIES", p.androidMkSharedLibs...)
172 entries.SetBool("LOCAL_CHECK_ELF_FILES", false)
LaMont Jonesafe7baf2024-01-09 22:47:39 +0000173 android.SetAconfigFileMkEntries(&p.ModuleBase, entries, p.mergedAconfigFiles)
Cole Faust4d247e62023-01-23 10:14:58 -0800174 })
175
176 return []android.AndroidMkEntries{entries}
177}
178
179func (p *PythonBinaryModule) DepsMutator(ctx android.BottomUpMutatorContext) {
180 p.PythonLibraryModule.DepsMutator(ctx)
181
Cole Faust4d247e62023-01-23 10:14:58 -0800182 if p.isEmbeddedLauncherEnabled() {
Cole Faust909d2372023-02-13 23:17:40 +0000183 p.AddDepsOnPythonLauncherAndStdlib(ctx, pythonLibTag, launcherTag, launcherSharedLibTag, p.autorun(), ctx.Target())
Cole Faust4d247e62023-01-23 10:14:58 -0800184 }
185}
186
187// HostToolPath returns a path if appropriate such that this module can be used as a host tool,
188// fulfilling the android.HostToolProvider interface.
189func (p *PythonBinaryModule) HostToolPath() android.OptionalPath {
190 // TODO: This should only be set when building host binaries -- tests built for device would be
191 // setting this incorrectly.
192 return android.OptionalPathForPath(p.installedDest)
193}
194
195// OutputFiles returns output files based on given tag, returns an error if tag is unsupported.
196func (p *PythonBinaryModule) OutputFiles(tag string) (android.Paths, error) {
197 switch tag {
198 case "":
199 return android.Paths{p.installSource}, nil
200 default:
201 return nil, fmt.Errorf("unsupported module reference tag %q", tag)
202 }
203}
204
205func (p *PythonBinaryModule) isEmbeddedLauncherEnabled() bool {
206 return Bool(p.properties.Embedded_launcher)
207}
208
209func (b *PythonBinaryModule) autorun() bool {
210 return BoolDefault(b.binaryProperties.Autorun, true)
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800211}
212
Nan Zhangd4e641b2017-07-12 12:55:28 -0700213// get host interpreter name.
Cole Faust4d247e62023-01-23 10:14:58 -0800214func (p *PythonBinaryModule) getHostInterpreterName(ctx android.ModuleContext,
Nan Zhang1db85402017-12-18 13:20:23 -0800215 actualVersion string) string {
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800216 var interp string
Nan Zhang1db85402017-12-18 13:20:23 -0800217 switch actualVersion {
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800218 case pyVersion2:
Dan Willemsen7d1681a2017-09-25 13:47:40 -0700219 interp = "python2.7"
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800220 case pyVersion3:
221 interp = "python3"
222 default:
223 panic(fmt.Errorf("unknown Python actualVersion: %q for module: %q.",
Nan Zhang1db85402017-12-18 13:20:23 -0800224 actualVersion, ctx.ModuleName()))
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800225 }
226
227 return interp
228}
229
230// find main program path within runfiles tree.
Cole Faust4d247e62023-01-23 10:14:58 -0800231func (p *PythonBinaryModule) getPyMainFile(ctx android.ModuleContext,
Nan Zhangd4e641b2017-07-12 12:55:28 -0700232 srcsPathMappings []pathMapping) string {
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800233 var main string
Cole Faust4d247e62023-01-23 10:14:58 -0800234 if String(p.binaryProperties.Main) == "" {
Nan Zhangd4e641b2017-07-12 12:55:28 -0700235 main = ctx.ModuleName() + pyExt
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800236 } else {
Cole Faust4d247e62023-01-23 10:14:58 -0800237 main = String(p.binaryProperties.Main)
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800238 }
239
Nan Zhangd4e641b2017-07-12 12:55:28 -0700240 for _, path := range srcsPathMappings {
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800241 if main == path.src.Rel() {
242 return path.dest
243 }
244 }
245 ctx.PropertyErrorf("main", "%q is not listed in srcs.", main)
246
247 return ""
248}
249
Cole Faust4d247e62023-01-23 10:14:58 -0800250func (p *PythonBinaryModule) getStem(ctx android.ModuleContext) string {
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800251 stem := ctx.ModuleName()
Cole Faust4d247e62023-01-23 10:14:58 -0800252 if String(p.binaryProperties.Stem) != "" {
253 stem = String(p.binaryProperties.Stem)
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800254 }
255
Cole Faust4d247e62023-01-23 10:14:58 -0800256 return stem + String(p.binaryProperties.Suffix)
257}
258
259func installDir(ctx android.ModuleContext, dir, dir64, relative string) android.InstallPath {
260 if ctx.Arch().ArchType.Multilib == "lib64" && dir64 != "" {
261 dir = dir64
262 }
263 if !ctx.Host() && ctx.Config().HasMultilibConflict(ctx.Arch().ArchType) {
264 dir = filepath.Join(dir, ctx.Arch().ArchType.String())
265 }
266 return android.PathForModuleInstall(ctx, dir, relative)
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800267}