2019-10-11 07:59:13 +02:00
|
|
|
// Copyright (C) 2019 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// 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 sdk
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-11-27 18:43:54 +01:00
|
|
|
"reflect"
|
2019-10-11 07:59:13 +02:00
|
|
|
"strings"
|
|
|
|
|
2019-11-29 21:17:53 +01:00
|
|
|
"github.com/google/blueprint"
|
2019-10-11 07:59:13 +02:00
|
|
|
"github.com/google/blueprint/proptools"
|
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
)
|
|
|
|
|
|
|
|
var pctx = android.NewPackageContext("android/soong/sdk")
|
|
|
|
|
2019-11-29 21:17:53 +01:00
|
|
|
var (
|
|
|
|
repackageZip = pctx.AndroidStaticRule("SnapshotRepackageZip",
|
|
|
|
blueprint.RuleParams{
|
2019-12-09 20:58:17 +01:00
|
|
|
Command: `${config.Zip2ZipCmd} -i $in -o $out -x META-INF/**/* "**/*:$destdir"`,
|
2019-11-29 21:17:53 +01:00
|
|
|
CommandDeps: []string{
|
|
|
|
"${config.Zip2ZipCmd}",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"destdir")
|
|
|
|
|
|
|
|
zipFiles = pctx.AndroidStaticRule("SnapshotZipFiles",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: `${config.SoongZipCmd} -C $basedir -l $out.rsp -o $out`,
|
|
|
|
CommandDeps: []string{
|
|
|
|
"${config.SoongZipCmd}",
|
|
|
|
},
|
|
|
|
Rspfile: "$out.rsp",
|
|
|
|
RspfileContent: "$in",
|
|
|
|
},
|
|
|
|
"basedir")
|
|
|
|
|
|
|
|
mergeZips = pctx.AndroidStaticRule("SnapshotMergeZips",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: `${config.MergeZipsCmd} $out $in`,
|
|
|
|
CommandDeps: []string{
|
|
|
|
"${config.MergeZipsCmd}",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
)
|
|
|
|
|
2019-11-27 18:43:54 +01:00
|
|
|
type generatedContents struct {
|
|
|
|
content strings.Builder
|
|
|
|
indentLevel int
|
|
|
|
}
|
|
|
|
|
2019-10-11 07:59:13 +02:00
|
|
|
// generatedFile abstracts operations for writing contents into a file and emit a build rule
|
|
|
|
// for the file.
|
|
|
|
type generatedFile struct {
|
2019-11-27 18:43:54 +01:00
|
|
|
generatedContents
|
|
|
|
path android.OutputPath
|
2019-10-11 07:59:13 +02:00
|
|
|
}
|
|
|
|
|
2019-11-04 04:23:40 +01:00
|
|
|
func newGeneratedFile(ctx android.ModuleContext, path ...string) *generatedFile {
|
2019-10-11 07:59:13 +02:00
|
|
|
return &generatedFile{
|
2019-11-27 18:43:54 +01:00
|
|
|
path: android.PathForModuleOut(ctx, path...).OutputPath,
|
2019-10-11 07:59:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-27 18:43:54 +01:00
|
|
|
func (gc *generatedContents) Indent() {
|
|
|
|
gc.indentLevel++
|
2019-10-22 13:31:18 +02:00
|
|
|
}
|
|
|
|
|
2019-11-27 18:43:54 +01:00
|
|
|
func (gc *generatedContents) Dedent() {
|
|
|
|
gc.indentLevel--
|
2019-10-22 13:31:18 +02:00
|
|
|
}
|
|
|
|
|
2019-11-27 18:43:54 +01:00
|
|
|
func (gc *generatedContents) Printfln(format string, args ...interface{}) {
|
2019-10-11 07:59:13 +02:00
|
|
|
// ninja consumes newline characters in rspfile_content. Prevent it by
|
2019-11-12 20:39:25 +01:00
|
|
|
// escaping the backslash in the newline character. The extra backslash
|
2019-10-11 07:59:13 +02:00
|
|
|
// is removed when the rspfile is written to the actual script file
|
2019-11-27 18:43:54 +01:00
|
|
|
fmt.Fprintf(&(gc.content), strings.Repeat(" ", gc.indentLevel)+format+"\\n", args...)
|
2019-10-11 07:59:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (gf *generatedFile) build(pctx android.PackageContext, ctx android.BuilderContext, implicits android.Paths) {
|
|
|
|
rb := android.NewRuleBuilder()
|
|
|
|
// convert \\n to \n
|
|
|
|
rb.Command().
|
|
|
|
Implicits(implicits).
|
|
|
|
Text("echo").Text(proptools.ShellEscape(gf.content.String())).
|
|
|
|
Text("| sed 's/\\\\n/\\n/g' >").Output(gf.path)
|
|
|
|
rb.Command().
|
|
|
|
Text("chmod a+x").Output(gf.path)
|
|
|
|
rb.Build(pctx, ctx, gf.path.Base(), "Build "+gf.path.Base())
|
|
|
|
}
|
|
|
|
|
2019-11-28 15:31:38 +01:00
|
|
|
// Collect all the members.
|
|
|
|
//
|
|
|
|
// The members are first grouped by type and then grouped by name. The order of
|
2020-01-13 21:58:25 +01:00
|
|
|
// the types is the order they are referenced in android.SdkMemberTypesRegistry.
|
|
|
|
// The names are in the order in which the dependencies were added.
|
2019-12-13 12:22:16 +01:00
|
|
|
func (s *sdk) collectMembers(ctx android.ModuleContext) []*sdkMember {
|
2019-11-28 15:31:38 +01:00
|
|
|
byType := make(map[android.SdkMemberType][]*sdkMember)
|
|
|
|
byName := make(map[string]*sdkMember)
|
2019-10-11 07:59:13 +02:00
|
|
|
|
2020-01-13 21:58:25 +01:00
|
|
|
ctx.WalkDeps(func(child android.Module, parent android.Module) bool {
|
|
|
|
tag := ctx.OtherModuleDependencyTag(child)
|
2019-11-19 20:44:10 +01:00
|
|
|
if memberTag, ok := tag.(android.SdkMemberTypeDependencyTag); ok {
|
|
|
|
memberType := memberTag.SdkMemberType()
|
2019-11-28 15:31:38 +01:00
|
|
|
|
|
|
|
// Make sure that the resolved module is allowed in the member list property.
|
2020-01-13 21:58:25 +01:00
|
|
|
if !memberType.IsInstance(child) {
|
|
|
|
ctx.ModuleErrorf("module %q is not valid in property %s", ctx.OtherModuleName(child), memberType.SdkPropertyName())
|
2019-11-28 15:31:38 +01:00
|
|
|
}
|
2019-10-22 13:31:18 +02:00
|
|
|
|
2020-01-13 21:58:25 +01:00
|
|
|
name := ctx.OtherModuleName(child)
|
2019-10-22 13:31:18 +02:00
|
|
|
|
2019-11-28 15:31:38 +01:00
|
|
|
member := byName[name]
|
|
|
|
if member == nil {
|
|
|
|
member = &sdkMember{memberType: memberType, name: name}
|
|
|
|
byName[name] = member
|
|
|
|
byType[memberType] = append(byType[memberType], member)
|
|
|
|
}
|
2019-10-22 13:31:18 +02:00
|
|
|
|
2020-01-20 19:16:30 +01:00
|
|
|
// Only append new variants to the list. This is needed because a member can be both
|
|
|
|
// exported by the sdk and also be a transitive sdk member.
|
|
|
|
member.variants = appendUniqueVariants(member.variants, child.(android.SdkAware))
|
2020-01-13 21:58:25 +01:00
|
|
|
|
|
|
|
// If the member type supports transitive sdk members then recurse down into
|
|
|
|
// its dependencies, otherwise exit traversal.
|
|
|
|
return memberType.HasTransitiveSdkMembers()
|
2019-10-22 13:31:18 +02:00
|
|
|
}
|
2020-01-13 21:58:25 +01:00
|
|
|
|
|
|
|
return false
|
2019-10-22 13:31:18 +02:00
|
|
|
})
|
2019-10-11 07:59:13 +02:00
|
|
|
|
2019-11-28 15:31:38 +01:00
|
|
|
var members []*sdkMember
|
2020-01-20 19:16:30 +01:00
|
|
|
for _, memberListProperty := range s.memberListProperties() {
|
2019-11-28 15:31:38 +01:00
|
|
|
membersOfType := byType[memberListProperty.memberType]
|
|
|
|
members = append(members, membersOfType...)
|
2019-10-22 13:31:18 +02:00
|
|
|
}
|
|
|
|
|
2019-11-28 15:31:38 +01:00
|
|
|
return members
|
2019-10-22 13:31:18 +02:00
|
|
|
}
|
|
|
|
|
2020-01-20 19:16:30 +01:00
|
|
|
func appendUniqueVariants(variants []android.SdkAware, newVariant android.SdkAware) []android.SdkAware {
|
|
|
|
for _, v := range variants {
|
|
|
|
if v == newVariant {
|
|
|
|
return variants
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return append(variants, newVariant)
|
|
|
|
}
|
|
|
|
|
2019-10-22 13:31:18 +02:00
|
|
|
// SDK directory structure
|
|
|
|
// <sdk_root>/
|
|
|
|
// Android.bp : definition of a 'sdk' module is here. This is a hand-made one.
|
|
|
|
// <api_ver>/ : below this directory are all auto-generated
|
|
|
|
// Android.bp : definition of 'sdk_snapshot' module is here
|
|
|
|
// aidl/
|
|
|
|
// frameworks/base/core/..../IFoo.aidl : an exported AIDL file
|
|
|
|
// java/
|
2019-11-04 04:23:40 +01:00
|
|
|
// <module_name>.jar : the stub jar for a java library 'module_name'
|
2019-10-22 13:31:18 +02:00
|
|
|
// include/
|
|
|
|
// bionic/libc/include/stdlib.h : an exported header file
|
|
|
|
// include_gen/
|
2019-11-04 04:23:40 +01:00
|
|
|
// <module_name>/com/android/.../IFoo.h : a generated header file
|
2019-10-22 13:31:18 +02:00
|
|
|
// <arch>/include/ : arch-specific exported headers
|
|
|
|
// <arch>/include_gen/ : arch-specific generated headers
|
|
|
|
// <arch>/lib/
|
|
|
|
// libFoo.so : a stub library
|
|
|
|
|
2019-11-04 04:23:40 +01:00
|
|
|
// A name that uniquely identifies a prebuilt SDK member for a version of SDK snapshot
|
2019-10-22 13:31:18 +02:00
|
|
|
// This isn't visible to users, so could be changed in future.
|
|
|
|
func versionedSdkMemberName(ctx android.ModuleContext, memberName string, version string) string {
|
|
|
|
return ctx.ModuleName() + "_" + memberName + string(android.SdkVersionSeparator) + version
|
|
|
|
}
|
|
|
|
|
2019-11-12 20:39:25 +01:00
|
|
|
// buildSnapshot is the main function in this source file. It creates rules to copy
|
|
|
|
// the contents (header files, stub libraries, etc) into the zip file.
|
|
|
|
func (s *sdk) buildSnapshot(ctx android.ModuleContext) android.OutputPath {
|
|
|
|
snapshotDir := android.PathForModuleOut(ctx, "snapshot")
|
|
|
|
|
2019-11-04 04:23:40 +01:00
|
|
|
bp := newGeneratedFile(ctx, "snapshot", "Android.bp")
|
2019-11-27 18:43:54 +01:00
|
|
|
|
|
|
|
bpFile := &bpFile{
|
|
|
|
modules: make(map[string]*bpModule),
|
|
|
|
}
|
2019-11-12 20:39:25 +01:00
|
|
|
|
|
|
|
builder := &snapshotBuilder{
|
2019-11-27 18:43:54 +01:00
|
|
|
ctx: ctx,
|
2019-11-26 19:04:12 +01:00
|
|
|
sdk: s,
|
2019-11-27 18:43:54 +01:00
|
|
|
version: "current",
|
|
|
|
snapshotDir: snapshotDir.OutputPath,
|
2019-12-11 19:34:15 +01:00
|
|
|
copies: make(map[string]string),
|
2019-11-27 18:43:54 +01:00
|
|
|
filesToZip: []android.Path{bp.path},
|
|
|
|
bpFile: bpFile,
|
|
|
|
prebuiltModules: make(map[string]*bpModule),
|
2019-10-11 07:59:13 +02:00
|
|
|
}
|
2019-11-26 19:02:20 +01:00
|
|
|
s.builderForTests = builder
|
2019-10-11 07:59:13 +02:00
|
|
|
|
2019-12-13 12:22:16 +01:00
|
|
|
for _, member := range s.collectMembers(ctx) {
|
2019-11-28 15:31:38 +01:00
|
|
|
member.memberType.BuildSnapshot(ctx, builder, member)
|
2019-10-22 13:31:18 +02:00
|
|
|
}
|
2019-10-11 07:59:13 +02:00
|
|
|
|
2020-01-15 15:08:51 +01:00
|
|
|
// Create a transformer that will transform an unversioned module into a versioned module.
|
|
|
|
unversionedToVersionedTransformer := unversionedToVersionedTransformation{builder: builder}
|
|
|
|
|
2020-01-20 19:16:30 +01:00
|
|
|
// Create a transformer that will transform an unversioned module by replacing any references
|
|
|
|
// to internal members with a unique module name and setting prefer: false.
|
|
|
|
unversionedTransformer := unversionedTransformation{builder: builder}
|
|
|
|
|
2019-11-27 18:43:54 +01:00
|
|
|
for _, unversioned := range builder.prebuiltOrder {
|
|
|
|
// Copy the unversioned module so it can be modified to make it versioned.
|
2020-01-14 16:53:11 +01:00
|
|
|
versioned := unversioned.deepCopy()
|
2020-01-15 15:08:51 +01:00
|
|
|
|
|
|
|
// Transform the unversioned module into a versioned one.
|
|
|
|
versioned.transform(unversionedToVersionedTransformer)
|
2019-11-27 18:43:54 +01:00
|
|
|
bpFile.AddModule(versioned)
|
|
|
|
|
2020-01-20 19:16:30 +01:00
|
|
|
// Transform the unversioned module to make it suitable for use in the snapshot.
|
|
|
|
unversioned.transform(unversionedTransformer)
|
2019-11-27 18:43:54 +01:00
|
|
|
bpFile.AddModule(unversioned)
|
|
|
|
}
|
2019-11-12 20:39:25 +01:00
|
|
|
|
2019-11-27 18:43:54 +01:00
|
|
|
// Create the snapshot module.
|
|
|
|
snapshotName := ctx.ModuleName() + string(android.SdkVersionSeparator) + builder.version
|
2019-12-16 18:21:27 +01:00
|
|
|
var snapshotModuleType string
|
|
|
|
if s.properties.Module_exports {
|
|
|
|
snapshotModuleType = "module_exports_snapshot"
|
|
|
|
} else {
|
|
|
|
snapshotModuleType = "sdk_snapshot"
|
|
|
|
}
|
|
|
|
snapshotModule := bpFile.newModule(snapshotModuleType)
|
2019-11-27 18:43:54 +01:00
|
|
|
snapshotModule.AddProperty("name", snapshotName)
|
2019-12-05 15:31:48 +01:00
|
|
|
|
|
|
|
// Make sure that the snapshot has the same visibility as the sdk.
|
|
|
|
visibility := android.EffectiveVisibilityRules(ctx, s)
|
|
|
|
if len(visibility) != 0 {
|
|
|
|
snapshotModule.AddProperty("visibility", visibility)
|
|
|
|
}
|
|
|
|
|
2019-11-26 19:04:12 +01:00
|
|
|
addHostDeviceSupportedProperties(&s.ModuleBase, snapshotModule)
|
2020-01-20 19:16:30 +01:00
|
|
|
for _, memberListProperty := range s.memberListProperties() {
|
2019-12-13 12:22:16 +01:00
|
|
|
names := memberListProperty.getter(s.dynamicMemberTypeListProperties)
|
2019-11-28 15:31:38 +01:00
|
|
|
if len(names) > 0 {
|
2019-12-13 12:22:16 +01:00
|
|
|
snapshotModule.AddProperty(memberListProperty.propertyName(), builder.versionedSdkMemberNames(names))
|
2019-11-28 15:31:38 +01:00
|
|
|
}
|
2019-10-22 13:31:18 +02:00
|
|
|
}
|
2019-11-27 18:43:54 +01:00
|
|
|
bpFile.AddModule(snapshotModule)
|
|
|
|
|
|
|
|
// generate Android.bp
|
|
|
|
bp = newGeneratedFile(ctx, "snapshot", "Android.bp")
|
|
|
|
generateBpContents(&bp.generatedContents, bpFile)
|
2019-10-11 07:59:13 +02:00
|
|
|
|
|
|
|
bp.build(pctx, ctx, nil)
|
|
|
|
|
2019-11-12 20:39:25 +01:00
|
|
|
filesToZip := builder.filesToZip
|
2019-10-11 07:59:13 +02:00
|
|
|
|
2019-11-12 20:39:25 +01:00
|
|
|
// zip them all
|
2019-11-12 20:39:36 +01:00
|
|
|
outputZipFile := android.PathForModuleOut(ctx, ctx.ModuleName()+"-current.zip").OutputPath
|
|
|
|
outputDesc := "Building snapshot for " + ctx.ModuleName()
|
|
|
|
|
|
|
|
// If there are no zips to merge then generate the output zip directly.
|
|
|
|
// Otherwise, generate an intermediate zip file into which other zips can be
|
|
|
|
// merged.
|
|
|
|
var zipFile android.OutputPath
|
|
|
|
var desc string
|
|
|
|
if len(builder.zipsToMerge) == 0 {
|
|
|
|
zipFile = outputZipFile
|
|
|
|
desc = outputDesc
|
|
|
|
} else {
|
|
|
|
zipFile = android.PathForModuleOut(ctx, ctx.ModuleName()+"-current.unmerged.zip").OutputPath
|
|
|
|
desc = "Building intermediate snapshot for " + ctx.ModuleName()
|
|
|
|
}
|
|
|
|
|
2019-11-29 21:17:53 +01:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Description: desc,
|
|
|
|
Rule: zipFiles,
|
|
|
|
Inputs: filesToZip,
|
|
|
|
Output: zipFile,
|
|
|
|
Args: map[string]string{
|
|
|
|
"basedir": builder.snapshotDir.String(),
|
|
|
|
},
|
|
|
|
})
|
2019-11-12 20:39:36 +01:00
|
|
|
|
|
|
|
if len(builder.zipsToMerge) != 0 {
|
2019-11-29 21:17:53 +01:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Description: outputDesc,
|
|
|
|
Rule: mergeZips,
|
|
|
|
Input: zipFile,
|
|
|
|
Inputs: builder.zipsToMerge,
|
|
|
|
Output: outputZipFile,
|
|
|
|
})
|
2019-11-12 20:39:36 +01:00
|
|
|
}
|
2019-10-11 07:59:13 +02:00
|
|
|
|
2019-11-12 20:39:36 +01:00
|
|
|
return outputZipFile
|
2019-11-12 20:39:25 +01:00
|
|
|
}
|
|
|
|
|
2020-01-13 22:03:22 +01:00
|
|
|
type propertyTag struct {
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
|
|
|
var sdkMemberReferencePropertyTag = propertyTag{"sdkMemberReferencePropertyTag"}
|
|
|
|
|
2020-01-15 15:08:51 +01:00
|
|
|
type unversionedToVersionedTransformation struct {
|
|
|
|
identityTransformation
|
|
|
|
builder *snapshotBuilder
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t unversionedToVersionedTransformation) transformModule(module *bpModule) *bpModule {
|
|
|
|
// Use a versioned name for the module but remember the original name for the
|
|
|
|
// snapshot.
|
|
|
|
name := module.getValue("name").(string)
|
|
|
|
module.setProperty("name", t.builder.versionedSdkMemberName(name))
|
|
|
|
module.insertAfter("name", "sdk_member_name", name)
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
2020-01-13 22:03:22 +01:00
|
|
|
func (t unversionedToVersionedTransformation) transformProperty(name string, value interface{}, tag android.BpPropertyTag) (interface{}, android.BpPropertyTag) {
|
|
|
|
if tag == sdkMemberReferencePropertyTag {
|
|
|
|
return t.builder.versionedSdkMemberNames(value.([]string)), tag
|
|
|
|
} else {
|
|
|
|
return value, tag
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-20 19:16:30 +01:00
|
|
|
type unversionedTransformation struct {
|
|
|
|
identityTransformation
|
|
|
|
builder *snapshotBuilder
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t unversionedTransformation) transformModule(module *bpModule) *bpModule {
|
|
|
|
// If the module is an internal member then use a unique name for it.
|
|
|
|
name := module.getValue("name").(string)
|
|
|
|
module.setProperty("name", t.builder.unversionedSdkMemberName(name))
|
|
|
|
|
|
|
|
// Set prefer: false - this is not strictly required as that is the default.
|
|
|
|
module.insertAfter("name", "prefer", false)
|
|
|
|
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t unversionedTransformation) transformProperty(name string, value interface{}, tag android.BpPropertyTag) (interface{}, android.BpPropertyTag) {
|
|
|
|
if tag == sdkMemberReferencePropertyTag {
|
|
|
|
return t.builder.unversionedSdkMemberNames(value.([]string)), tag
|
|
|
|
} else {
|
|
|
|
return value, tag
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-27 18:43:54 +01:00
|
|
|
func generateBpContents(contents *generatedContents, bpFile *bpFile) {
|
|
|
|
contents.Printfln("// This is auto-generated. DO NOT EDIT.")
|
|
|
|
for _, bpModule := range bpFile.order {
|
|
|
|
contents.Printfln("")
|
|
|
|
contents.Printfln("%s {", bpModule.moduleType)
|
2020-01-14 16:53:11 +01:00
|
|
|
outputPropertySet(contents, bpModule.bpPropertySet)
|
2019-11-27 18:43:54 +01:00
|
|
|
contents.Printfln("}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func outputPropertySet(contents *generatedContents, set *bpPropertySet) {
|
|
|
|
contents.Indent()
|
|
|
|
for _, name := range set.order {
|
2020-01-15 15:23:52 +01:00
|
|
|
value := set.getValue(name)
|
2019-11-27 18:43:54 +01:00
|
|
|
|
|
|
|
reflectedValue := reflect.ValueOf(value)
|
|
|
|
t := reflectedValue.Type()
|
|
|
|
|
|
|
|
kind := t.Kind()
|
|
|
|
switch kind {
|
|
|
|
case reflect.Slice:
|
|
|
|
length := reflectedValue.Len()
|
|
|
|
if length > 1 {
|
|
|
|
contents.Printfln("%s: [", name)
|
|
|
|
contents.Indent()
|
|
|
|
for i := 0; i < length; i = i + 1 {
|
|
|
|
contents.Printfln("%q,", reflectedValue.Index(i).Interface())
|
|
|
|
}
|
|
|
|
contents.Dedent()
|
|
|
|
contents.Printfln("],")
|
|
|
|
} else if length == 0 {
|
|
|
|
contents.Printfln("%s: [],", name)
|
|
|
|
} else {
|
|
|
|
contents.Printfln("%s: [%q],", name, reflectedValue.Index(0).Interface())
|
|
|
|
}
|
|
|
|
case reflect.Bool:
|
|
|
|
contents.Printfln("%s: %t,", name, reflectedValue.Bool())
|
|
|
|
|
|
|
|
case reflect.Ptr:
|
|
|
|
contents.Printfln("%s: {", name)
|
|
|
|
outputPropertySet(contents, reflectedValue.Interface().(*bpPropertySet))
|
|
|
|
contents.Printfln("},")
|
|
|
|
|
|
|
|
default:
|
|
|
|
contents.Printfln("%s: %q,", name, value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
contents.Dedent()
|
|
|
|
}
|
|
|
|
|
2019-11-26 19:02:20 +01:00
|
|
|
func (s *sdk) GetAndroidBpContentsForTests() string {
|
2019-11-27 18:43:54 +01:00
|
|
|
contents := &generatedContents{}
|
|
|
|
generateBpContents(contents, s.builderForTests.bpFile)
|
|
|
|
return contents.content.String()
|
2019-11-26 19:02:20 +01:00
|
|
|
}
|
|
|
|
|
2019-11-12 20:39:25 +01:00
|
|
|
type snapshotBuilder struct {
|
2019-11-27 18:43:54 +01:00
|
|
|
ctx android.ModuleContext
|
2019-11-26 19:04:12 +01:00
|
|
|
sdk *sdk
|
2019-11-27 18:43:54 +01:00
|
|
|
version string
|
|
|
|
snapshotDir android.OutputPath
|
|
|
|
bpFile *bpFile
|
2019-12-11 19:34:15 +01:00
|
|
|
|
|
|
|
// Map from destination to source of each copy - used to eliminate duplicates and
|
|
|
|
// detect conflicts.
|
|
|
|
copies map[string]string
|
|
|
|
|
2019-11-27 18:43:54 +01:00
|
|
|
filesToZip android.Paths
|
|
|
|
zipsToMerge android.Paths
|
|
|
|
|
|
|
|
prebuiltModules map[string]*bpModule
|
|
|
|
prebuiltOrder []*bpModule
|
2019-11-12 20:39:25 +01:00
|
|
|
}
|
2019-10-11 07:59:13 +02:00
|
|
|
|
2019-11-12 20:39:25 +01:00
|
|
|
func (s *snapshotBuilder) CopyToSnapshot(src android.Path, dest string) {
|
2019-12-11 19:34:15 +01:00
|
|
|
if existing, ok := s.copies[dest]; ok {
|
|
|
|
if existing != src.String() {
|
|
|
|
s.ctx.ModuleErrorf("conflicting copy, %s copied from both %s and %s", dest, existing, src)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
path := s.snapshotDir.Join(s.ctx, dest)
|
|
|
|
s.ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: android.Cp,
|
|
|
|
Input: src,
|
|
|
|
Output: path,
|
|
|
|
})
|
|
|
|
s.filesToZip = append(s.filesToZip, path)
|
|
|
|
|
|
|
|
s.copies[dest] = src.String()
|
|
|
|
}
|
2019-11-12 20:39:25 +01:00
|
|
|
}
|
2019-10-11 07:59:13 +02:00
|
|
|
|
2019-11-12 20:39:36 +01:00
|
|
|
func (s *snapshotBuilder) UnzipToSnapshot(zipPath android.Path, destDir string) {
|
|
|
|
ctx := s.ctx
|
|
|
|
|
|
|
|
// Repackage the zip file so that the entries are in the destDir directory.
|
|
|
|
// This will allow the zip file to be merged into the snapshot.
|
|
|
|
tmpZipPath := android.PathForModuleOut(ctx, "tmp", destDir+".zip").OutputPath
|
2019-11-29 21:17:53 +01:00
|
|
|
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Description: "Repackaging zip file " + destDir + " for snapshot " + ctx.ModuleName(),
|
|
|
|
Rule: repackageZip,
|
|
|
|
Input: zipPath,
|
|
|
|
Output: tmpZipPath,
|
|
|
|
Args: map[string]string{
|
|
|
|
"destdir": destDir,
|
|
|
|
},
|
|
|
|
})
|
2019-11-12 20:39:36 +01:00
|
|
|
|
|
|
|
// Add the repackaged zip file to the files to merge.
|
|
|
|
s.zipsToMerge = append(s.zipsToMerge, tmpZipPath)
|
|
|
|
}
|
|
|
|
|
2019-12-05 19:19:29 +01:00
|
|
|
func (s *snapshotBuilder) AddPrebuiltModule(member android.SdkMember, moduleType string) android.BpModule {
|
|
|
|
name := member.Name()
|
2019-11-27 18:43:54 +01:00
|
|
|
if s.prebuiltModules[name] != nil {
|
|
|
|
panic(fmt.Sprintf("Duplicate module detected, module %s has already been added", name))
|
|
|
|
}
|
|
|
|
|
|
|
|
m := s.bpFile.newModule(moduleType)
|
|
|
|
m.AddProperty("name", name)
|
2019-12-05 15:31:48 +01:00
|
|
|
|
2020-01-20 19:16:30 +01:00
|
|
|
if s.sdk.isInternalMember(name) {
|
|
|
|
// An internal member is only referenced from the sdk snapshot which is in the
|
|
|
|
// same package so can be marked as private.
|
|
|
|
m.AddProperty("visibility", []string{"//visibility:private"})
|
|
|
|
} else {
|
|
|
|
// Extract visibility information from a member variant. All variants have the same
|
|
|
|
// visibility so it doesn't matter which one is used.
|
|
|
|
visibility := android.EffectiveVisibilityRules(s.ctx, member.Variants()[0])
|
|
|
|
if len(visibility) != 0 {
|
|
|
|
m.AddProperty("visibility", visibility)
|
|
|
|
}
|
2019-12-05 15:31:48 +01:00
|
|
|
}
|
|
|
|
|
2019-11-26 19:04:12 +01:00
|
|
|
addHostDeviceSupportedProperties(&s.sdk.ModuleBase, m)
|
2019-11-27 18:43:54 +01:00
|
|
|
|
|
|
|
s.prebuiltModules[name] = m
|
|
|
|
s.prebuiltOrder = append(s.prebuiltOrder, m)
|
|
|
|
return m
|
2019-11-12 20:39:25 +01:00
|
|
|
}
|
|
|
|
|
2019-11-26 19:04:12 +01:00
|
|
|
func addHostDeviceSupportedProperties(module *android.ModuleBase, bpModule *bpModule) {
|
|
|
|
if !module.DeviceSupported() {
|
|
|
|
bpModule.AddProperty("device_supported", false)
|
|
|
|
}
|
|
|
|
if module.HostSupported() {
|
|
|
|
bpModule.AddProperty("host_supported", true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-13 22:03:22 +01:00
|
|
|
func (s *snapshotBuilder) SdkMemberReferencePropertyTag() android.BpPropertyTag {
|
|
|
|
return sdkMemberReferencePropertyTag
|
|
|
|
}
|
|
|
|
|
2019-11-27 18:43:54 +01:00
|
|
|
// Get a versioned name appropriate for the SDK snapshot version being taken.
|
|
|
|
func (s *snapshotBuilder) versionedSdkMemberName(unversionedName string) string {
|
2019-11-12 20:39:25 +01:00
|
|
|
return versionedSdkMemberName(s.ctx, unversionedName, s.version)
|
2019-10-11 07:59:13 +02:00
|
|
|
}
|
2019-11-27 18:43:54 +01:00
|
|
|
|
|
|
|
func (s *snapshotBuilder) versionedSdkMemberNames(members []string) []string {
|
|
|
|
var references []string = nil
|
|
|
|
for _, m := range members {
|
|
|
|
references = append(references, s.versionedSdkMemberName(m))
|
|
|
|
}
|
|
|
|
return references
|
|
|
|
}
|
2019-11-28 15:31:38 +01:00
|
|
|
|
2020-01-20 19:16:30 +01:00
|
|
|
// Get an internal name unique to the sdk.
|
|
|
|
func (s *snapshotBuilder) unversionedSdkMemberName(unversionedName string) string {
|
|
|
|
if s.sdk.isInternalMember(unversionedName) {
|
|
|
|
return s.ctx.ModuleName() + "_" + unversionedName
|
|
|
|
} else {
|
|
|
|
return unversionedName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *snapshotBuilder) unversionedSdkMemberNames(members []string) []string {
|
|
|
|
var references []string = nil
|
|
|
|
for _, m := range members {
|
|
|
|
references = append(references, s.unversionedSdkMemberName(m))
|
|
|
|
}
|
|
|
|
return references
|
|
|
|
}
|
|
|
|
|
2019-11-28 15:31:38 +01:00
|
|
|
var _ android.SdkMember = (*sdkMember)(nil)
|
|
|
|
|
|
|
|
type sdkMember struct {
|
|
|
|
memberType android.SdkMemberType
|
|
|
|
name string
|
|
|
|
variants []android.SdkAware
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *sdkMember) Name() string {
|
|
|
|
return m.name
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *sdkMember) Variants() []android.SdkAware {
|
|
|
|
return m.variants
|
|
|
|
}
|