2017-02-28 02:12:13 +08: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"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
android.RegisterModuleType("python_binary_host", PythonBinaryHostFactory)
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-13 03:55:28 +08:00
|
|
|
|
type BinaryProperties struct {
|
2017-02-28 02:12:13 +08: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 13:20:04 +08:00
|
|
|
|
Main *string `android:"arch_variant"`
|
2017-02-28 02:12:13 +08:00
|
|
|
|
|
|
|
|
|
// set the name of the output binary.
|
2017-11-09 13:20:04 +08:00
|
|
|
|
Stem *string `android:"arch_variant"`
|
2017-02-28 02:12:13 +08:00
|
|
|
|
|
|
|
|
|
// append to the name of the output binary.
|
2017-11-09 13:20:04 +08:00
|
|
|
|
Suffix *string `android:"arch_variant"`
|
2017-11-04 07:54:05 +08:00
|
|
|
|
|
|
|
|
|
// list of compatibility suites (for example "cts", "vts") that the module should be
|
|
|
|
|
// installed into.
|
|
|
|
|
Test_suites []string `android:"arch_variant"`
|
2017-02-28 02:12:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-13 03:55:28 +08:00
|
|
|
|
type binaryDecorator struct {
|
|
|
|
|
binaryProperties BinaryProperties
|
2017-02-28 02:12:13 +08:00
|
|
|
|
|
2017-12-02 04:00:31 +08:00
|
|
|
|
*pythonInstaller
|
2017-05-11 04:37:54 +08:00
|
|
|
|
}
|
2017-02-28 02:12:13 +08:00
|
|
|
|
|
2017-07-13 03:55:28 +08:00
|
|
|
|
type IntermPathProvider interface {
|
|
|
|
|
IntermPathForModuleOut() android.OptionalPath
|
2017-02-28 02:12:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
stubTemplateHost = "build/soong/python/scripts/stub_template_host.txt"
|
|
|
|
|
)
|
|
|
|
|
|
2017-07-13 03:55:28 +08:00
|
|
|
|
func NewBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) {
|
|
|
|
|
module := newModule(hod, android.MultilibFirst)
|
2017-12-02 04:00:31 +08:00
|
|
|
|
decorator := &binaryDecorator{pythonInstaller: NewPythonInstaller("bin", "")}
|
2017-05-11 04:37:54 +08:00
|
|
|
|
|
2017-07-13 03:55:28 +08:00
|
|
|
|
module.bootstrapper = decorator
|
|
|
|
|
module.installer = decorator
|
2017-02-28 02:12:13 +08:00
|
|
|
|
|
2017-07-13 03:55:28 +08:00
|
|
|
|
return module, decorator
|
2017-02-28 02:12:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-13 03:55:28 +08:00
|
|
|
|
func PythonBinaryHostFactory() android.Module {
|
|
|
|
|
module, _ := NewBinary(android.HostSupportedNoCross)
|
|
|
|
|
|
|
|
|
|
return module.Init()
|
|
|
|
|
}
|
2017-02-28 02:12:13 +08:00
|
|
|
|
|
2017-07-13 03:55:28 +08:00
|
|
|
|
func (binary *binaryDecorator) bootstrapperProps() []interface{} {
|
|
|
|
|
return []interface{}{&binary.binaryProperties}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-19 05:20:23 +08:00
|
|
|
|
func (binary *binaryDecorator) bootstrap(ctx android.ModuleContext, actualVersion string,
|
|
|
|
|
embeddedLauncher bool, srcsPathMappings []pathMapping, srcsZip android.Path,
|
|
|
|
|
depsSrcsZips android.Paths) android.OptionalPath {
|
2017-02-28 02:12:13 +08:00
|
|
|
|
|
2017-07-13 03:55:28 +08:00
|
|
|
|
main := binary.getPyMainFile(ctx, srcsPathMappings)
|
|
|
|
|
|
2018-09-27 06:14:10 +08:00
|
|
|
|
var launcherPath android.OptionalPath
|
2017-12-19 05:20:23 +08:00
|
|
|
|
if embeddedLauncher {
|
2017-12-31 09:54:27 +08:00
|
|
|
|
ctx.VisitDirectDepsWithTag(launcherTag, func(m android.Module) {
|
2017-07-13 03:55:28 +08:00
|
|
|
|
if provider, ok := m.(IntermPathProvider); ok {
|
2018-09-27 06:14:10 +08:00
|
|
|
|
if launcherPath.Valid() {
|
2017-07-13 03:55:28 +08:00
|
|
|
|
panic(fmt.Errorf("launcher path was found before: %q",
|
2017-12-19 05:20:23 +08:00
|
|
|
|
launcherPath))
|
2017-07-13 03:55:28 +08:00
|
|
|
|
}
|
2018-09-27 06:14:10 +08:00
|
|
|
|
launcherPath = provider.IntermPathForModuleOut()
|
2017-07-13 03:55:28 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
2017-02-28 02:12:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-19 05:20:23 +08:00
|
|
|
|
binFile := registerBuildActionForParFile(ctx, embeddedLauncher, launcherPath,
|
|
|
|
|
binary.getHostInterpreterName(ctx, actualVersion),
|
|
|
|
|
main, binary.getStem(ctx), append(android.Paths{srcsZip}, depsSrcsZips...))
|
2017-02-28 02:12:13 +08:00
|
|
|
|
|
2017-05-11 04:37:54 +08:00
|
|
|
|
return android.OptionalPathForPath(binFile)
|
2017-02-28 02:12:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-13 03:55:28 +08:00
|
|
|
|
// get host interpreter name.
|
|
|
|
|
func (binary *binaryDecorator) getHostInterpreterName(ctx android.ModuleContext,
|
2017-12-19 05:20:23 +08:00
|
|
|
|
actualVersion string) string {
|
2017-02-28 02:12:13 +08:00
|
|
|
|
var interp string
|
2017-12-19 05:20:23 +08:00
|
|
|
|
switch actualVersion {
|
2017-02-28 02:12:13 +08:00
|
|
|
|
case pyVersion2:
|
2017-09-26 04:47:40 +08:00
|
|
|
|
interp = "python2.7"
|
2017-02-28 02:12:13 +08:00
|
|
|
|
case pyVersion3:
|
|
|
|
|
interp = "python3"
|
|
|
|
|
default:
|
|
|
|
|
panic(fmt.Errorf("unknown Python actualVersion: %q for module: %q.",
|
2017-12-19 05:20:23 +08:00
|
|
|
|
actualVersion, ctx.ModuleName()))
|
2017-02-28 02:12:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return interp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// find main program path within runfiles tree.
|
2017-07-13 03:55:28 +08:00
|
|
|
|
func (binary *binaryDecorator) getPyMainFile(ctx android.ModuleContext,
|
|
|
|
|
srcsPathMappings []pathMapping) string {
|
2017-02-28 02:12:13 +08:00
|
|
|
|
var main string
|
2017-11-09 13:20:04 +08:00
|
|
|
|
if String(binary.binaryProperties.Main) == "" {
|
2017-07-13 03:55:28 +08:00
|
|
|
|
main = ctx.ModuleName() + pyExt
|
2017-02-28 02:12:13 +08:00
|
|
|
|
} else {
|
2017-11-09 13:20:04 +08:00
|
|
|
|
main = String(binary.binaryProperties.Main)
|
2017-02-28 02:12:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-13 03:55:28 +08:00
|
|
|
|
for _, path := range srcsPathMappings {
|
2017-02-28 02:12:13 +08:00
|
|
|
|
if main == path.src.Rel() {
|
|
|
|
|
return path.dest
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ctx.PropertyErrorf("main", "%q is not listed in srcs.", main)
|
|
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-13 03:55:28 +08:00
|
|
|
|
func (binary *binaryDecorator) getStem(ctx android.ModuleContext) string {
|
2017-02-28 02:12:13 +08:00
|
|
|
|
stem := ctx.ModuleName()
|
2017-11-09 13:20:04 +08:00
|
|
|
|
if String(binary.binaryProperties.Stem) != "" {
|
|
|
|
|
stem = String(binary.binaryProperties.Stem)
|
2017-02-28 02:12:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-09 13:20:04 +08:00
|
|
|
|
return stem + String(binary.binaryProperties.Suffix)
|
2017-02-28 02:12:13 +08:00
|
|
|
|
}
|