2019-01-26 01:04:11 +01:00
|
|
|
// Copyright 2019 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 android
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-07-30 01:46:49 +02:00
|
|
|
"path/filepath"
|
2019-03-08 20:07:05 +01:00
|
|
|
"strings"
|
2019-01-26 01:04:11 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// sh_binary is for shell scripts (and batch files) that are installed as
|
|
|
|
// executable files into .../bin/
|
|
|
|
//
|
|
|
|
// Do not use them for prebuilt C/C++/etc files. Use cc_prebuilt_binary
|
|
|
|
// instead.
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
RegisterModuleType("sh_binary", ShBinaryFactory)
|
|
|
|
RegisterModuleType("sh_binary_host", ShBinaryHostFactory)
|
2019-03-08 20:07:05 +01:00
|
|
|
RegisterModuleType("sh_test", ShTestFactory)
|
2019-07-01 18:08:50 +02:00
|
|
|
RegisterModuleType("sh_test_host", ShTestHostFactory)
|
2019-01-26 01:04:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type shBinaryProperties struct {
|
|
|
|
// Source file of this prebuilt.
|
2019-03-05 07:35:41 +01:00
|
|
|
Src *string `android:"path,arch_variant"`
|
2019-01-26 01:04:11 +01:00
|
|
|
|
|
|
|
// optional subdirectory under which this file is installed into
|
|
|
|
Sub_dir *string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// optional name for the installed file. If unspecified, name of the module is used as the file name
|
|
|
|
Filename *string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// when set to true, and filename property is not set, the name for the installed file
|
|
|
|
// is the same as the file name of the source file.
|
|
|
|
Filename_from_src *bool `android:"arch_variant"`
|
|
|
|
|
|
|
|
// Whether this module is directly installable to one of the partitions. Default: true.
|
|
|
|
Installable *bool
|
2019-10-05 05:38:01 +02:00
|
|
|
|
|
|
|
// install symlinks to the binary
|
|
|
|
Symlinks []string `android:"arch_variant"`
|
2019-01-26 01:04:11 +01:00
|
|
|
}
|
|
|
|
|
2019-03-08 20:07:05 +01:00
|
|
|
type TestProperties struct {
|
|
|
|
// list of compatibility suites (for example "cts", "vts") that the module should be
|
|
|
|
// installed into.
|
|
|
|
Test_suites []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// the name of the test configuration (for example "AndroidTest.xml") that should be
|
|
|
|
// installed with the module.
|
|
|
|
Test_config *string `android:"arch_variant"`
|
2019-05-16 23:58:29 +02:00
|
|
|
|
|
|
|
// list of files or filegroup modules that provide data that should be installed alongside
|
|
|
|
// the test.
|
|
|
|
Data []string `android:"path,arch_variant"`
|
2019-03-08 20:07:05 +01:00
|
|
|
}
|
|
|
|
|
2019-01-26 01:04:11 +01:00
|
|
|
type ShBinary struct {
|
|
|
|
ModuleBase
|
|
|
|
|
|
|
|
properties shBinaryProperties
|
|
|
|
|
|
|
|
sourceFilePath Path
|
|
|
|
outputFilePath OutputPath
|
2019-07-30 01:46:49 +02:00
|
|
|
installedFile InstallPath
|
2019-01-26 01:04:11 +01:00
|
|
|
}
|
|
|
|
|
2019-07-30 01:46:49 +02:00
|
|
|
var _ HostToolProvider = (*ShBinary)(nil)
|
|
|
|
|
2019-03-08 20:07:05 +01:00
|
|
|
type ShTest struct {
|
|
|
|
ShBinary
|
|
|
|
|
|
|
|
testProperties TestProperties
|
2019-05-16 23:58:29 +02:00
|
|
|
|
|
|
|
data Paths
|
2019-03-08 20:07:05 +01:00
|
|
|
}
|
|
|
|
|
2019-07-30 01:46:49 +02:00
|
|
|
func (s *ShBinary) HostToolPath() OptionalPath {
|
|
|
|
return OptionalPathForPath(s.installedFile)
|
|
|
|
}
|
|
|
|
|
2019-01-26 01:04:11 +01:00
|
|
|
func (s *ShBinary) DepsMutator(ctx BottomUpMutatorContext) {
|
|
|
|
if s.properties.Src == nil {
|
|
|
|
ctx.PropertyErrorf("src", "missing prebuilt source file")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ShBinary) OutputFile() OutputPath {
|
|
|
|
return s.outputFilePath
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ShBinary) SubDir() string {
|
|
|
|
return String(s.properties.Sub_dir)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ShBinary) Installable() bool {
|
|
|
|
return s.properties.Installable == nil || Bool(s.properties.Installable)
|
|
|
|
}
|
|
|
|
|
2019-10-05 05:38:01 +02:00
|
|
|
func (s *ShBinary) Symlinks() []string {
|
|
|
|
return s.properties.Symlinks
|
|
|
|
}
|
|
|
|
|
2019-07-30 01:46:49 +02:00
|
|
|
func (s *ShBinary) generateAndroidBuildActions(ctx ModuleContext) {
|
2019-03-06 07:25:09 +01:00
|
|
|
s.sourceFilePath = PathForModuleSrc(ctx, String(s.properties.Src))
|
2019-01-26 01:04:11 +01:00
|
|
|
filename := String(s.properties.Filename)
|
|
|
|
filename_from_src := Bool(s.properties.Filename_from_src)
|
|
|
|
if filename == "" {
|
|
|
|
if filename_from_src {
|
|
|
|
filename = s.sourceFilePath.Base()
|
|
|
|
} else {
|
|
|
|
filename = ctx.ModuleName()
|
|
|
|
}
|
|
|
|
} else if filename_from_src {
|
|
|
|
ctx.PropertyErrorf("filename_from_src", "filename is set. filename_from_src can't be true")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
s.outputFilePath = PathForModuleOut(ctx, filename).OutputPath
|
|
|
|
|
|
|
|
// This ensures that outputFilePath has the correct name for others to
|
|
|
|
// use, as the source file may have a different name.
|
|
|
|
ctx.Build(pctx, BuildParams{
|
|
|
|
Rule: CpExecutable,
|
|
|
|
Output: s.outputFilePath,
|
|
|
|
Input: s.sourceFilePath,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-07-30 01:46:49 +02:00
|
|
|
func (s *ShBinary) GenerateAndroidBuildActions(ctx ModuleContext) {
|
|
|
|
s.generateAndroidBuildActions(ctx)
|
|
|
|
installDir := PathForModuleInstall(ctx, "bin", String(s.properties.Sub_dir))
|
|
|
|
s.installedFile = ctx.InstallExecutable(installDir, s.outputFilePath.Base(), s.outputFilePath)
|
|
|
|
}
|
|
|
|
|
2019-12-03 05:24:29 +01:00
|
|
|
func (s *ShBinary) AndroidMkEntries() []AndroidMkEntries {
|
|
|
|
return []AndroidMkEntries{AndroidMkEntries{
|
2019-01-26 01:04:11 +01:00
|
|
|
Class: "EXECUTABLES",
|
|
|
|
OutputFile: OptionalPathForPath(s.outputFilePath),
|
|
|
|
Include: "$(BUILD_SYSTEM)/soong_cc_prebuilt.mk",
|
2019-08-28 02:33:16 +02:00
|
|
|
ExtraEntries: []AndroidMkExtraEntriesFunc{
|
|
|
|
func(entries *AndroidMkEntries) {
|
|
|
|
s.customAndroidMkEntries(entries)
|
|
|
|
},
|
2019-01-26 01:04:11 +01:00
|
|
|
},
|
2019-12-03 05:24:29 +01:00
|
|
|
}}
|
2019-01-26 01:04:11 +01:00
|
|
|
}
|
|
|
|
|
2019-05-16 23:58:29 +02:00
|
|
|
func (s *ShBinary) customAndroidMkEntries(entries *AndroidMkEntries) {
|
|
|
|
entries.SetString("LOCAL_MODULE_RELATIVE_PATH", String(s.properties.Sub_dir))
|
|
|
|
entries.SetString("LOCAL_MODULE_SUFFIX", "")
|
|
|
|
entries.SetString("LOCAL_MODULE_STEM", s.outputFilePath.Rel())
|
2019-10-05 05:38:01 +02:00
|
|
|
if len(s.properties.Symlinks) > 0 {
|
|
|
|
entries.SetString("LOCAL_MODULE_SYMLINKS", strings.Join(s.properties.Symlinks, " "))
|
|
|
|
}
|
2019-05-16 23:58:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ShTest) GenerateAndroidBuildActions(ctx ModuleContext) {
|
2019-07-30 01:46:49 +02:00
|
|
|
s.ShBinary.generateAndroidBuildActions(ctx)
|
|
|
|
testDir := "nativetest"
|
|
|
|
if ctx.Target().Arch.ArchType.Multilib == "lib64" {
|
|
|
|
testDir = "nativetest64"
|
|
|
|
}
|
|
|
|
if ctx.Target().NativeBridge == NativeBridgeEnabled {
|
|
|
|
testDir = filepath.Join(testDir, ctx.Target().NativeBridgeRelativePath)
|
|
|
|
} else if !ctx.Host() && ctx.Config().HasMultilibConflict(ctx.Arch().ArchType) {
|
|
|
|
testDir = filepath.Join(testDir, ctx.Arch().ArchType.String())
|
|
|
|
}
|
|
|
|
installDir := PathForModuleInstall(ctx, testDir, String(s.properties.Sub_dir))
|
|
|
|
s.installedFile = ctx.InstallExecutable(installDir, s.outputFilePath.Base(), s.outputFilePath)
|
2019-05-16 23:58:29 +02:00
|
|
|
|
|
|
|
s.data = PathsForModuleSrc(ctx, s.testProperties.Data)
|
|
|
|
}
|
|
|
|
|
2019-07-30 01:46:49 +02:00
|
|
|
func (s *ShTest) InstallInData() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-12-03 05:24:29 +01:00
|
|
|
func (s *ShTest) AndroidMkEntries() []AndroidMkEntries {
|
|
|
|
return []AndroidMkEntries{AndroidMkEntries{
|
2019-05-16 23:58:29 +02:00
|
|
|
Class: "NATIVE_TESTS",
|
|
|
|
OutputFile: OptionalPathForPath(s.outputFilePath),
|
|
|
|
Include: "$(BUILD_SYSTEM)/soong_cc_prebuilt.mk",
|
2019-08-28 02:33:16 +02:00
|
|
|
ExtraEntries: []AndroidMkExtraEntriesFunc{
|
|
|
|
func(entries *AndroidMkEntries) {
|
|
|
|
s.customAndroidMkEntries(entries)
|
|
|
|
|
|
|
|
entries.AddStrings("LOCAL_COMPATIBILITY_SUITE", s.testProperties.Test_suites...)
|
|
|
|
entries.SetString("LOCAL_TEST_CONFIG", String(s.testProperties.Test_config))
|
|
|
|
for _, d := range s.data {
|
|
|
|
rel := d.Rel()
|
|
|
|
path := d.String()
|
|
|
|
if !strings.HasSuffix(path, rel) {
|
|
|
|
panic(fmt.Errorf("path %q does not end with %q", path, rel))
|
|
|
|
}
|
|
|
|
path = strings.TrimSuffix(path, rel)
|
|
|
|
entries.AddStrings("LOCAL_TEST_DATA", path+":"+rel)
|
2019-05-16 23:58:29 +02:00
|
|
|
}
|
2019-08-28 02:33:16 +02:00
|
|
|
},
|
2019-05-16 23:58:29 +02:00
|
|
|
},
|
2019-12-03 05:24:29 +01:00
|
|
|
}}
|
2019-03-08 20:07:05 +01:00
|
|
|
}
|
|
|
|
|
2019-01-26 01:04:11 +01:00
|
|
|
func InitShBinaryModule(s *ShBinary) {
|
|
|
|
s.AddProperties(&s.properties)
|
|
|
|
}
|
|
|
|
|
2019-03-11 21:20:17 +01:00
|
|
|
// sh_binary is for a shell script or batch file to be installed as an
|
|
|
|
// executable binary to <partition>/bin.
|
2019-01-26 01:04:11 +01:00
|
|
|
func ShBinaryFactory() Module {
|
|
|
|
module := &ShBinary{}
|
2019-11-19 04:57:57 +01:00
|
|
|
module.Prefer32(func(ctx BaseModuleContext, base *ModuleBase, class OsClass) bool {
|
|
|
|
return class == Device && ctx.Config().DevicePrefer32BitExecutables()
|
|
|
|
})
|
2019-01-26 01:04:11 +01:00
|
|
|
InitShBinaryModule(module)
|
|
|
|
InitAndroidArchModule(module, HostAndDeviceSupported, MultilibFirst)
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
2019-03-11 21:20:17 +01:00
|
|
|
// sh_binary_host is for a shell script to be installed as an executable binary
|
|
|
|
// to $(HOST_OUT)/bin.
|
2019-01-26 01:04:11 +01:00
|
|
|
func ShBinaryHostFactory() Module {
|
|
|
|
module := &ShBinary{}
|
|
|
|
InitShBinaryModule(module)
|
|
|
|
InitAndroidArchModule(module, HostSupported, MultilibFirst)
|
|
|
|
return module
|
|
|
|
}
|
2019-03-08 20:07:05 +01:00
|
|
|
|
2019-07-01 18:08:50 +02:00
|
|
|
// sh_test defines a shell script based test module.
|
2019-03-08 20:07:05 +01:00
|
|
|
func ShTestFactory() Module {
|
|
|
|
module := &ShTest{}
|
|
|
|
InitShBinaryModule(&module.ShBinary)
|
|
|
|
module.AddProperties(&module.testProperties)
|
|
|
|
|
|
|
|
InitAndroidArchModule(module, HostAndDeviceSupported, MultilibFirst)
|
|
|
|
return module
|
|
|
|
}
|
2019-07-01 18:08:50 +02:00
|
|
|
|
|
|
|
// sh_test_host defines a shell script based test module that runs on a host.
|
|
|
|
func ShTestHostFactory() Module {
|
|
|
|
module := &ShTest{}
|
|
|
|
InitShBinaryModule(&module.ShBinary)
|
|
|
|
module.AddProperties(&module.testProperties)
|
|
|
|
|
|
|
|
InitAndroidArchModule(module, HostSupported, MultilibFirst)
|
|
|
|
return module
|
|
|
|
}
|