2016-06-18 01:45:24 +02:00
|
|
|
// Copyright 2016 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 cc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2016-08-08 06:17:54 +02:00
|
|
|
"sync"
|
2016-06-18 01:45:24 +02:00
|
|
|
|
|
|
|
"github.com/google/blueprint"
|
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
toolPath = pctx.SourcePathVariable("toolPath", "build/soong/cc/gen_stub_libs.py")
|
|
|
|
|
2016-08-30 01:14:13 +02:00
|
|
|
genStubSrc = pctx.AndroidStaticRule("genStubSrc",
|
2016-06-18 01:45:24 +02:00
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: "$toolPath --arch $arch --api $apiLevel $in $out",
|
|
|
|
Description: "genStubSrc $out",
|
|
|
|
CommandDeps: []string{"$toolPath"},
|
|
|
|
}, "arch", "apiLevel")
|
|
|
|
|
|
|
|
ndkLibrarySuffix = ".ndk"
|
2016-07-29 21:48:20 +02:00
|
|
|
|
|
|
|
ndkPrebuiltSharedLibs = []string{
|
|
|
|
"android",
|
|
|
|
"c",
|
|
|
|
"dl",
|
|
|
|
"EGL",
|
|
|
|
"GLESv1_CM",
|
|
|
|
"GLESv2",
|
|
|
|
"GLESv3",
|
|
|
|
"jnigraphics",
|
|
|
|
"log",
|
|
|
|
"mediandk",
|
|
|
|
"m",
|
|
|
|
"OpenMAXAL",
|
|
|
|
"OpenSLES",
|
|
|
|
"stdc++",
|
|
|
|
"vulkan",
|
|
|
|
"z",
|
|
|
|
}
|
|
|
|
ndkPrebuiltSharedLibraries = addPrefix(append([]string(nil), ndkPrebuiltSharedLibs...), "lib")
|
|
|
|
|
|
|
|
// These libraries have migrated over to the new ndk_library, which is added
|
|
|
|
// as a variation dependency via depsMutator.
|
2016-08-08 06:17:54 +02:00
|
|
|
ndkMigratedLibs = []string{}
|
|
|
|
ndkMigratedLibsLock sync.Mutex // protects ndkMigratedLibs writes during parallel beginMutator
|
2016-06-18 01:45:24 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Creates a stub shared library based on the provided version file.
|
|
|
|
//
|
|
|
|
// The name of the generated file will be based on the module name by stripping
|
|
|
|
// the ".ndk" suffix from the module name. Module names must end with ".ndk"
|
|
|
|
// (as a convention to allow soong to guess the NDK name of a dependency when
|
|
|
|
// needed). "libfoo.ndk" will generate "libfoo.so.
|
|
|
|
//
|
|
|
|
// Example:
|
|
|
|
//
|
|
|
|
// ndk_library {
|
|
|
|
// name: "libfoo.ndk",
|
|
|
|
// symbol_file: "libfoo.map.txt",
|
|
|
|
// first_version: "9",
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
type libraryProperties struct {
|
|
|
|
// Relative path to the symbol map.
|
|
|
|
// An example file can be seen here: TODO(danalbert): Make an example.
|
|
|
|
Symbol_file string
|
|
|
|
|
|
|
|
// The first API level a library was available. A library will be generated
|
|
|
|
// for every API level beginning with this one.
|
|
|
|
First_version string
|
|
|
|
|
|
|
|
// Private property for use by the mutator that splits per-API level.
|
2016-11-08 22:35:12 +01:00
|
|
|
ApiLevel string `blueprint:"mutated"`
|
2016-06-18 01:45:24 +02:00
|
|
|
}
|
|
|
|
|
2016-07-30 02:28:03 +02:00
|
|
|
type stubDecorator struct {
|
|
|
|
*libraryDecorator
|
2016-06-18 01:45:24 +02:00
|
|
|
|
|
|
|
properties libraryProperties
|
2016-07-29 02:40:28 +02:00
|
|
|
|
2016-07-30 02:28:03 +02:00
|
|
|
versionScriptPath android.ModuleGenPath
|
|
|
|
installPath string
|
2016-06-18 01:45:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// OMG GO
|
2016-08-06 01:37:52 +02:00
|
|
|
func intMax(a int, b int) int {
|
|
|
|
if a > b {
|
2016-06-18 01:45:24 +02:00
|
|
|
return a
|
|
|
|
} else {
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-08 23:34:24 +01:00
|
|
|
func normalizeNdkApiLevel(apiLevel string, arch android.Arch) (string, error) {
|
|
|
|
if apiLevel == "current" {
|
|
|
|
return apiLevel, nil
|
|
|
|
}
|
|
|
|
|
2016-06-18 01:45:24 +02:00
|
|
|
minVersion := 9 // Minimum version supported by the NDK.
|
|
|
|
firstArchVersions := map[string]int{
|
|
|
|
"arm": 9,
|
|
|
|
"arm64": 21,
|
|
|
|
"mips": 9,
|
|
|
|
"mips64": 21,
|
|
|
|
"x86": 9,
|
|
|
|
"x86_64": 21,
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the NDK drops support for a platform version, we don't want to have to
|
2016-08-06 01:37:52 +02:00
|
|
|
// fix up every module that was using it as its SDK version. Clip to the
|
2016-06-18 01:45:24 +02:00
|
|
|
// supported version here instead.
|
2016-08-06 01:37:52 +02:00
|
|
|
version, err := strconv.Atoi(apiLevel)
|
2016-06-18 01:45:24 +02:00
|
|
|
if err != nil {
|
2016-11-08 23:34:24 +01:00
|
|
|
return "", fmt.Errorf("API level must be an integer (is %q)", apiLevel)
|
2016-06-18 01:45:24 +02:00
|
|
|
}
|
2016-08-06 01:37:52 +02:00
|
|
|
version = intMax(version, minVersion)
|
2016-06-18 01:45:24 +02:00
|
|
|
|
2016-08-06 01:37:52 +02:00
|
|
|
archStr := arch.ArchType.String()
|
|
|
|
firstArchVersion, ok := firstArchVersions[archStr]
|
2016-06-18 01:45:24 +02:00
|
|
|
if !ok {
|
2016-08-06 01:37:52 +02:00
|
|
|
panic(fmt.Errorf("Arch %q not found in firstArchVersions", archStr))
|
|
|
|
}
|
|
|
|
|
2016-11-08 23:34:24 +01:00
|
|
|
return strconv.Itoa(intMax(version, firstArchVersion)), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getFirstGeneratedVersion(firstSupportedVersion string, platformVersion int) (int, error) {
|
|
|
|
if firstSupportedVersion == "current" {
|
|
|
|
return platformVersion + 1, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return strconv.Atoi(firstSupportedVersion)
|
2016-08-06 01:37:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func generateStubApiVariants(mctx android.BottomUpMutatorContext, c *stubDecorator) {
|
2016-11-08 23:34:24 +01:00
|
|
|
platformVersion := mctx.AConfig().PlatformSdkVersionInt()
|
2016-08-06 01:37:52 +02:00
|
|
|
|
2016-11-08 23:34:24 +01:00
|
|
|
firstSupportedVersion, err := normalizeNdkApiLevel(c.properties.First_version,
|
2016-08-06 01:37:52 +02:00
|
|
|
mctx.Arch())
|
|
|
|
if err != nil {
|
|
|
|
mctx.PropertyErrorf("first_version", err.Error())
|
2016-06-18 01:45:24 +02:00
|
|
|
}
|
2016-08-06 01:37:52 +02:00
|
|
|
|
2016-11-08 23:34:24 +01:00
|
|
|
firstGenVersion, err := getFirstGeneratedVersion(firstSupportedVersion, platformVersion)
|
|
|
|
if err != nil {
|
|
|
|
// In theory this is impossible because we've already run this through
|
|
|
|
// normalizeNdkApiLevel above.
|
|
|
|
mctx.PropertyErrorf("first_version", err.Error())
|
|
|
|
}
|
|
|
|
|
2016-11-08 22:35:12 +01:00
|
|
|
var versionStrs []string
|
2016-11-08 23:34:24 +01:00
|
|
|
for version := firstGenVersion; version <= platformVersion; version++ {
|
2016-11-08 22:35:12 +01:00
|
|
|
versionStrs = append(versionStrs, strconv.Itoa(version))
|
2016-06-18 01:45:24 +02:00
|
|
|
}
|
2016-11-08 22:35:12 +01:00
|
|
|
versionStrs = append(versionStrs, "current")
|
2016-06-18 01:45:24 +02:00
|
|
|
|
|
|
|
modules := mctx.CreateVariations(versionStrs...)
|
|
|
|
for i, module := range modules {
|
2016-11-08 22:35:12 +01:00
|
|
|
module.(*Module).compiler.(*stubDecorator).properties.ApiLevel = versionStrs[i]
|
2016-06-18 01:45:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func ndkApiMutator(mctx android.BottomUpMutatorContext) {
|
|
|
|
if m, ok := mctx.Module().(*Module); ok {
|
2016-07-30 02:28:03 +02:00
|
|
|
if compiler, ok := m.compiler.(*stubDecorator); ok {
|
2016-06-18 01:45:24 +02:00
|
|
|
generateStubApiVariants(mctx, compiler)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-30 02:28:03 +02:00
|
|
|
func (c *stubDecorator) compilerInit(ctx BaseModuleContext) {
|
2016-08-04 22:02:36 +02:00
|
|
|
c.baseCompiler.compilerInit(ctx)
|
|
|
|
|
|
|
|
name := strings.TrimSuffix(ctx.ModuleName(), ".ndk")
|
2016-08-08 06:17:54 +02:00
|
|
|
ndkMigratedLibsLock.Lock()
|
|
|
|
defer ndkMigratedLibsLock.Unlock()
|
2016-08-04 22:02:36 +02:00
|
|
|
for _, lib := range ndkMigratedLibs {
|
|
|
|
if lib == name {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ndkMigratedLibs = append(ndkMigratedLibs, name)
|
|
|
|
}
|
|
|
|
|
2016-09-27 02:33:01 +02:00
|
|
|
func (c *stubDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
|
2016-06-18 01:45:24 +02:00
|
|
|
arch := ctx.Arch().ArchType.String()
|
|
|
|
|
|
|
|
if !strings.HasSuffix(ctx.ModuleName(), ndkLibrarySuffix) {
|
|
|
|
ctx.ModuleErrorf("ndk_library modules names must be suffixed with %q\n",
|
|
|
|
ndkLibrarySuffix)
|
|
|
|
}
|
|
|
|
libName := strings.TrimSuffix(ctx.ModuleName(), ndkLibrarySuffix)
|
2016-11-08 22:35:12 +01:00
|
|
|
fileBase := fmt.Sprintf("%s.%s.%s", libName, arch, c.properties.ApiLevel)
|
2016-06-18 01:45:24 +02:00
|
|
|
stubSrcName := fileBase + ".c"
|
|
|
|
stubSrcPath := android.PathForModuleGen(ctx, stubSrcName)
|
|
|
|
versionScriptName := fileBase + ".map"
|
|
|
|
versionScriptPath := android.PathForModuleGen(ctx, versionScriptName)
|
2016-07-30 02:28:03 +02:00
|
|
|
c.versionScriptPath = versionScriptPath
|
2016-06-18 01:45:24 +02:00
|
|
|
symbolFilePath := android.PathForModuleSrc(ctx, c.properties.Symbol_file)
|
|
|
|
ctx.ModuleBuild(pctx, android.ModuleBuildParams{
|
|
|
|
Rule: genStubSrc,
|
|
|
|
Outputs: []android.WritablePath{stubSrcPath, versionScriptPath},
|
|
|
|
Input: symbolFilePath,
|
|
|
|
Args: map[string]string{
|
|
|
|
"arch": arch,
|
2016-11-08 22:35:12 +01:00
|
|
|
"apiLevel": c.properties.ApiLevel,
|
2016-06-18 01:45:24 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
flags.CFlags = append(flags.CFlags,
|
|
|
|
// We're knowingly doing some otherwise unsightly things with builtin
|
|
|
|
// functions here. We're just generating stub libraries, so ignore it.
|
|
|
|
"-Wno-incompatible-library-redeclaration",
|
|
|
|
"-Wno-builtin-requires-header",
|
|
|
|
"-Wno-invalid-noreturn",
|
|
|
|
|
|
|
|
// These libraries aren't actually used. Don't worry about unwinding
|
|
|
|
// (avoids the need to link an unwinder into a fake library).
|
|
|
|
"-fno-unwind-tables",
|
|
|
|
)
|
|
|
|
|
|
|
|
subdir := ""
|
2016-10-26 19:03:47 +02:00
|
|
|
srcs := []android.Path{stubSrcPath}
|
|
|
|
return compileObjs(ctx, flagsToBuilderFlags(flags), subdir, srcs, nil)
|
2016-06-18 01:45:24 +02:00
|
|
|
}
|
|
|
|
|
2016-07-30 02:28:03 +02:00
|
|
|
func (linker *stubDecorator) linkerDeps(ctx BaseModuleContext, deps Deps) Deps {
|
2016-06-18 01:45:24 +02:00
|
|
|
return Deps{}
|
|
|
|
}
|
|
|
|
|
2016-07-30 02:28:03 +02:00
|
|
|
func (stub *stubDecorator) linkerFlags(ctx ModuleContext, flags Flags) Flags {
|
|
|
|
stub.libraryDecorator.libName = strings.TrimSuffix(ctx.ModuleName(),
|
2016-06-18 01:45:24 +02:00
|
|
|
ndkLibrarySuffix)
|
2016-07-30 02:28:03 +02:00
|
|
|
return stub.libraryDecorator.linkerFlags(ctx, flags)
|
2016-06-18 01:45:24 +02:00
|
|
|
}
|
|
|
|
|
2016-07-30 02:28:03 +02:00
|
|
|
func (stub *stubDecorator) link(ctx ModuleContext, flags Flags, deps PathDeps,
|
2016-09-27 02:33:01 +02:00
|
|
|
objs Objects) android.Path {
|
2016-07-29 02:40:28 +02:00
|
|
|
|
2016-07-30 02:28:03 +02:00
|
|
|
linkerScriptFlag := "-Wl,--version-script," + stub.versionScriptPath.String()
|
2016-07-29 02:40:28 +02:00
|
|
|
flags.LdFlags = append(flags.LdFlags, linkerScriptFlag)
|
2016-09-27 02:33:01 +02:00
|
|
|
return stub.libraryDecorator.link(ctx, flags, deps, objs)
|
2016-06-18 01:45:24 +02:00
|
|
|
}
|
|
|
|
|
2016-07-30 02:28:03 +02:00
|
|
|
func (stub *stubDecorator) install(ctx ModuleContext, path android.Path) {
|
2016-06-18 01:45:24 +02:00
|
|
|
arch := ctx.Target().Arch.ArchType.Name
|
2016-07-30 02:28:03 +02:00
|
|
|
apiLevel := stub.properties.ApiLevel
|
2016-06-18 01:45:24 +02:00
|
|
|
|
|
|
|
// arm64 isn't actually a multilib toolchain, so unlike the other LP64
|
|
|
|
// architectures it's just installed to lib.
|
|
|
|
libDir := "lib"
|
|
|
|
if ctx.toolchain().Is64Bit() && arch != "arm64" {
|
|
|
|
libDir = "lib64"
|
|
|
|
}
|
|
|
|
|
|
|
|
installDir := getNdkInstallBase(ctx).Join(ctx, fmt.Sprintf(
|
2016-11-08 22:35:12 +01:00
|
|
|
"platforms/android-%s/arch-%s/usr/%s", apiLevel, arch, libDir))
|
2016-07-30 02:28:03 +02:00
|
|
|
stub.installPath = ctx.InstallFile(installDir, path).String()
|
2016-06-18 01:45:24 +02:00
|
|
|
}
|
|
|
|
|
2016-08-08 19:45:03 +02:00
|
|
|
func newStubLibrary() (*Module, []interface{}) {
|
2016-12-09 23:46:15 +01:00
|
|
|
module, library := NewLibrary(android.DeviceSupported)
|
|
|
|
library.BuildOnlyShared()
|
2016-06-18 01:45:24 +02:00
|
|
|
module.stl = nil
|
2016-07-30 02:28:03 +02:00
|
|
|
module.sanitize = nil
|
|
|
|
library.StripProperties.Strip.None = true
|
2016-06-18 01:45:24 +02:00
|
|
|
|
2016-07-30 02:28:03 +02:00
|
|
|
stub := &stubDecorator{
|
|
|
|
libraryDecorator: library,
|
|
|
|
}
|
|
|
|
module.compiler = stub
|
|
|
|
module.linker = stub
|
|
|
|
module.installer = stub
|
2016-06-18 01:45:24 +02:00
|
|
|
|
2016-08-08 19:45:03 +02:00
|
|
|
return module, []interface{}{&stub.properties}
|
2016-06-18 01:45:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func ndkLibraryFactory() (blueprint.Module, []interface{}) {
|
2016-08-08 19:45:03 +02:00
|
|
|
module, properties := newStubLibrary()
|
|
|
|
return android.InitAndroidArchModule(module, android.DeviceSupported,
|
|
|
|
android.MultilibBoth, properties...)
|
2016-06-18 01:45:24 +02:00
|
|
|
}
|