2017-02-27 19:12:13 +01:00
|
|
|
|
// Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
//
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
|
|
package python
|
|
|
|
|
|
|
|
|
|
// This file contains the module types for building Python binary.
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
|
|
"android/soong/android"
|
2021-03-08 13:32:28 +01:00
|
|
|
|
"android/soong/bazel"
|
|
|
|
|
|
|
|
|
|
"github.com/google/blueprint/proptools"
|
2017-02-27 19:12:13 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
2021-03-17 22:57:08 +01:00
|
|
|
|
registerPythonBinaryComponents(android.InitRegistrationContext)
|
2021-03-08 13:32:28 +01:00
|
|
|
|
android.RegisterBp2BuildMutator("python_binary_host", PythonBinaryBp2Build)
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-17 22:57:08 +01:00
|
|
|
|
func registerPythonBinaryComponents(ctx android.RegistrationContext) {
|
|
|
|
|
ctx.RegisterModuleType("python_binary_host", PythonBinaryHostFactory)
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 13:32:28 +01:00
|
|
|
|
type bazelPythonBinaryAttributes struct {
|
|
|
|
|
Main string
|
2021-03-15 11:02:43 +01:00
|
|
|
|
Srcs bazel.LabelListAttribute
|
|
|
|
|
Data bazel.LabelListAttribute
|
2021-08-26 22:13:29 +02:00
|
|
|
|
Deps bazel.LabelListAttribute
|
2021-03-08 13:32:28 +01:00
|
|
|
|
Python_version string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func PythonBinaryBp2Build(ctx android.TopDownMutatorContext) {
|
|
|
|
|
m, ok := ctx.Module().(*Module)
|
2021-03-10 08:05:59 +01:00
|
|
|
|
if !ok || !m.ConvertWithBp2build(ctx) {
|
2021-03-08 13:32:28 +01:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// a Module can be something other than a python_binary_host
|
|
|
|
|
if ctx.ModuleType() != "python_binary_host" {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var main string
|
|
|
|
|
for _, propIntf := range m.GetProperties() {
|
|
|
|
|
if props, ok := propIntf.(*BinaryProperties); ok {
|
|
|
|
|
// main is optional.
|
|
|
|
|
if props.Main != nil {
|
|
|
|
|
main = *props.Main
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// TODO(b/182306917): this doesn't fully handle all nested props versioned
|
|
|
|
|
// by the python version, which would have been handled by the version split
|
|
|
|
|
// mutator. This is sufficient for very simple python_binary_host modules
|
|
|
|
|
// under Bionic.
|
|
|
|
|
py3Enabled := proptools.BoolDefault(m.properties.Version.Py3.Enabled, false)
|
|
|
|
|
py2Enabled := proptools.BoolDefault(m.properties.Version.Py2.Enabled, false)
|
|
|
|
|
var python_version string
|
|
|
|
|
if py3Enabled && py2Enabled {
|
|
|
|
|
panic(fmt.Errorf(
|
|
|
|
|
"error for '%s' module: bp2build's python_binary_host converter does not support "+
|
|
|
|
|
"converting a module that is enabled for both Python 2 and 3 at the same time.", m.Name()))
|
|
|
|
|
} else if py2Enabled {
|
|
|
|
|
python_version = "PY2"
|
|
|
|
|
} else {
|
|
|
|
|
// do nothing, since python_version defaults to PY3.
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-15 11:02:43 +01:00
|
|
|
|
srcs := android.BazelLabelForModuleSrcExcludes(ctx, m.properties.Srcs, m.properties.Exclude_srcs)
|
|
|
|
|
data := android.BazelLabelForModuleSrc(ctx, m.properties.Data)
|
2021-08-26 22:13:29 +02:00
|
|
|
|
deps := android.BazelLabelForModuleDeps(ctx, m.properties.Libs)
|
2021-03-15 11:02:43 +01:00
|
|
|
|
|
2021-03-08 13:32:28 +01:00
|
|
|
|
attrs := &bazelPythonBinaryAttributes{
|
|
|
|
|
Main: main,
|
2021-03-15 11:02:43 +01:00
|
|
|
|
Srcs: bazel.MakeLabelListAttribute(srcs),
|
|
|
|
|
Data: bazel.MakeLabelListAttribute(data),
|
2021-08-26 22:13:29 +02:00
|
|
|
|
Deps: bazel.MakeLabelListAttribute(deps),
|
2021-03-08 13:32:28 +01:00
|
|
|
|
Python_version: python_version,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
props := bazel.BazelTargetModuleProperties{
|
|
|
|
|
// Use the native py_binary rule.
|
|
|
|
|
Rule_class: "py_binary",
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-11 06:17:36 +02:00
|
|
|
|
ctx.CreateBazelTargetModule(m.Name(), props, attrs)
|
2017-02-27 19:12:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 21:55:28 +02:00
|
|
|
|
type BinaryProperties struct {
|
2017-02-27 19:12:13 +01:00
|
|
|
|
// the name of the source file that is the main entry point of the program.
|
|
|
|
|
// this file must also be listed in srcs.
|
|
|
|
|
// If left unspecified, module name is used instead.
|
|
|
|
|
// If name doesn’t match any filename in srcs, main must be specified.
|
2017-11-09 06:20:04 +01:00
|
|
|
|
Main *string `android:"arch_variant"`
|
2017-02-27 19:12:13 +01:00
|
|
|
|
|
|
|
|
|
// set the name of the output binary.
|
2017-11-09 06:20:04 +01:00
|
|
|
|
Stem *string `android:"arch_variant"`
|
2017-02-27 19:12:13 +01:00
|
|
|
|
|
|
|
|
|
// append to the name of the output binary.
|
2017-11-09 06:20:04 +01:00
|
|
|
|
Suffix *string `android:"arch_variant"`
|
2017-11-04 00:54:05 +01:00
|
|
|
|
|
|
|
|
|
// list of compatibility suites (for example "cts", "vts") that the module should be
|
|
|
|
|
// installed into.
|
|
|
|
|
Test_suites []string `android:"arch_variant"`
|
2019-02-15 08:17:08 +01:00
|
|
|
|
|
|
|
|
|
// whether to use `main` when starting the executable. The default is true, when set to
|
|
|
|
|
// false it will act much like the normal `python` executable, but with the sources and
|
|
|
|
|
// libraries automatically included in the PYTHONPATH.
|
|
|
|
|
Autorun *bool `android:"arch_variant"`
|
2019-09-26 20:41:36 +02:00
|
|
|
|
|
|
|
|
|
// Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
|
|
|
|
|
// doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
|
|
|
|
|
// explicitly.
|
|
|
|
|
Auto_gen_config *bool
|
2017-02-27 19:12:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 21:55:28 +02:00
|
|
|
|
type binaryDecorator struct {
|
|
|
|
|
binaryProperties BinaryProperties
|
2017-02-27 19:12:13 +01:00
|
|
|
|
|
2017-12-01 21:00:31 +01:00
|
|
|
|
*pythonInstaller
|
2017-05-10 22:37:54 +02:00
|
|
|
|
}
|
2017-02-27 19:12:13 +01:00
|
|
|
|
|
2017-07-12 21:55:28 +02:00
|
|
|
|
type IntermPathProvider interface {
|
|
|
|
|
IntermPathForModuleOut() android.OptionalPath
|
2017-02-27 19:12:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var (
|
2020-06-13 01:38:45 +02:00
|
|
|
|
StubTemplateHost = "build/soong/python/scripts/stub_template_host.txt"
|
2017-02-27 19:12:13 +01:00
|
|
|
|
)
|
|
|
|
|
|
2017-07-12 21:55:28 +02:00
|
|
|
|
func NewBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) {
|
|
|
|
|
module := newModule(hod, android.MultilibFirst)
|
2017-12-01 21:00:31 +01:00
|
|
|
|
decorator := &binaryDecorator{pythonInstaller: NewPythonInstaller("bin", "")}
|
2017-05-10 22:37:54 +02:00
|
|
|
|
|
2017-07-12 21:55:28 +02:00
|
|
|
|
module.bootstrapper = decorator
|
|
|
|
|
module.installer = decorator
|
2017-02-27 19:12:13 +01:00
|
|
|
|
|
2017-07-12 21:55:28 +02:00
|
|
|
|
return module, decorator
|
2017-02-27 19:12:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 21:55:28 +02:00
|
|
|
|
func PythonBinaryHostFactory() android.Module {
|
2020-09-14 12:43:17 +02:00
|
|
|
|
module, _ := NewBinary(android.HostSupported)
|
2017-07-12 21:55:28 +02:00
|
|
|
|
|
2021-03-08 13:32:28 +01:00
|
|
|
|
android.InitBazelModule(module)
|
|
|
|
|
|
2020-11-17 00:42:51 +01:00
|
|
|
|
return module.init()
|
2017-07-12 21:55:28 +02:00
|
|
|
|
}
|
2017-02-27 19:12:13 +01:00
|
|
|
|
|
2019-02-15 08:17:08 +01:00
|
|
|
|
func (binary *binaryDecorator) autorun() bool {
|
|
|
|
|
return BoolDefault(binary.binaryProperties.Autorun, true)
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 21:55:28 +02:00
|
|
|
|
func (binary *binaryDecorator) bootstrapperProps() []interface{} {
|
|
|
|
|
return []interface{}{&binary.binaryProperties}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-18 22:20:23 +01:00
|
|
|
|
func (binary *binaryDecorator) bootstrap(ctx android.ModuleContext, actualVersion string,
|
|
|
|
|
embeddedLauncher bool, srcsPathMappings []pathMapping, srcsZip android.Path,
|
|
|
|
|
depsSrcsZips android.Paths) android.OptionalPath {
|
2017-02-27 19:12:13 +01:00
|
|
|
|
|
2019-02-15 08:17:08 +01:00
|
|
|
|
main := ""
|
|
|
|
|
if binary.autorun() {
|
|
|
|
|
main = binary.getPyMainFile(ctx, srcsPathMappings)
|
|
|
|
|
}
|
2017-07-12 21:55:28 +02:00
|
|
|
|
|
2018-09-27 00:14:10 +02:00
|
|
|
|
var launcherPath android.OptionalPath
|
2017-12-18 22:20:23 +01:00
|
|
|
|
if embeddedLauncher {
|
2017-12-31 02:54:27 +01:00
|
|
|
|
ctx.VisitDirectDepsWithTag(launcherTag, func(m android.Module) {
|
2017-07-12 21:55:28 +02:00
|
|
|
|
if provider, ok := m.(IntermPathProvider); ok {
|
2018-09-27 00:14:10 +02:00
|
|
|
|
if launcherPath.Valid() {
|
2017-07-12 21:55:28 +02:00
|
|
|
|
panic(fmt.Errorf("launcher path was found before: %q",
|
2017-12-18 22:20:23 +01:00
|
|
|
|
launcherPath))
|
2017-07-12 21:55:28 +02:00
|
|
|
|
}
|
2018-09-27 00:14:10 +02:00
|
|
|
|
launcherPath = provider.IntermPathForModuleOut()
|
2017-07-12 21:55:28 +02:00
|
|
|
|
}
|
|
|
|
|
})
|
2017-02-27 19:12:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-18 22:20:23 +01:00
|
|
|
|
binFile := registerBuildActionForParFile(ctx, embeddedLauncher, launcherPath,
|
|
|
|
|
binary.getHostInterpreterName(ctx, actualVersion),
|
|
|
|
|
main, binary.getStem(ctx), append(android.Paths{srcsZip}, depsSrcsZips...))
|
2017-02-27 19:12:13 +01:00
|
|
|
|
|
2017-05-10 22:37:54 +02:00
|
|
|
|
return android.OptionalPathForPath(binFile)
|
2017-02-27 19:12:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 21:55:28 +02:00
|
|
|
|
// get host interpreter name.
|
|
|
|
|
func (binary *binaryDecorator) getHostInterpreterName(ctx android.ModuleContext,
|
2017-12-18 22:20:23 +01:00
|
|
|
|
actualVersion string) string {
|
2017-02-27 19:12:13 +01:00
|
|
|
|
var interp string
|
2017-12-18 22:20:23 +01:00
|
|
|
|
switch actualVersion {
|
2017-02-27 19:12:13 +01:00
|
|
|
|
case pyVersion2:
|
2017-09-25 22:47:40 +02:00
|
|
|
|
interp = "python2.7"
|
2017-02-27 19:12:13 +01:00
|
|
|
|
case pyVersion3:
|
|
|
|
|
interp = "python3"
|
|
|
|
|
default:
|
|
|
|
|
panic(fmt.Errorf("unknown Python actualVersion: %q for module: %q.",
|
2017-12-18 22:20:23 +01:00
|
|
|
|
actualVersion, ctx.ModuleName()))
|
2017-02-27 19:12:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return interp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// find main program path within runfiles tree.
|
2017-07-12 21:55:28 +02:00
|
|
|
|
func (binary *binaryDecorator) getPyMainFile(ctx android.ModuleContext,
|
|
|
|
|
srcsPathMappings []pathMapping) string {
|
2017-02-27 19:12:13 +01:00
|
|
|
|
var main string
|
2017-11-09 06:20:04 +01:00
|
|
|
|
if String(binary.binaryProperties.Main) == "" {
|
2017-07-12 21:55:28 +02:00
|
|
|
|
main = ctx.ModuleName() + pyExt
|
2017-02-27 19:12:13 +01:00
|
|
|
|
} else {
|
2017-11-09 06:20:04 +01:00
|
|
|
|
main = String(binary.binaryProperties.Main)
|
2017-02-27 19:12:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 21:55:28 +02:00
|
|
|
|
for _, path := range srcsPathMappings {
|
2017-02-27 19:12:13 +01:00
|
|
|
|
if main == path.src.Rel() {
|
|
|
|
|
return path.dest
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ctx.PropertyErrorf("main", "%q is not listed in srcs.", main)
|
|
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-12 21:55:28 +02:00
|
|
|
|
func (binary *binaryDecorator) getStem(ctx android.ModuleContext) string {
|
2017-02-27 19:12:13 +01:00
|
|
|
|
stem := ctx.ModuleName()
|
2017-11-09 06:20:04 +01:00
|
|
|
|
if String(binary.binaryProperties.Stem) != "" {
|
|
|
|
|
stem = String(binary.binaryProperties.Stem)
|
2017-02-27 19:12:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-09 06:20:04 +01:00
|
|
|
|
return stem + String(binary.binaryProperties.Suffix)
|
2017-02-27 19:12:13 +01:00
|
|
|
|
}
|