2018-04-10 06:07:10 +02:00
|
|
|
// Copyright 2018 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 java
|
|
|
|
|
|
|
|
import (
|
|
|
|
"android/soong/android"
|
|
|
|
"android/soong/genrule"
|
|
|
|
"fmt"
|
2018-04-23 14:41:26 +02:00
|
|
|
"io"
|
2018-04-10 06:07:10 +02:00
|
|
|
"path"
|
2018-04-23 14:41:26 +02:00
|
|
|
"sort"
|
2018-04-10 06:07:10 +02:00
|
|
|
"strings"
|
2018-04-23 14:41:26 +02:00
|
|
|
"sync"
|
2018-04-10 06:07:10 +02:00
|
|
|
|
|
|
|
"github.com/google/blueprint"
|
|
|
|
"github.com/google/blueprint/proptools"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
sdkStubsLibrarySuffix = ".stubs"
|
|
|
|
sdkSystemApiSuffix = ".system"
|
2018-04-27 09:29:21 +02:00
|
|
|
sdkTestApiSuffix = ".test"
|
2018-04-10 06:07:10 +02:00
|
|
|
sdkDocsSuffix = ".docs"
|
|
|
|
sdkImplLibrarySuffix = ".impl"
|
|
|
|
sdkXmlFileSuffix = ".xml"
|
|
|
|
)
|
|
|
|
|
|
|
|
type stubsLibraryDependencyTag struct {
|
|
|
|
blueprint.BaseDependencyTag
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
publicApiStubsTag = dependencyTag{name: "public"}
|
|
|
|
systemApiStubsTag = dependencyTag{name: "system"}
|
2018-04-27 09:29:21 +02:00
|
|
|
testApiStubsTag = dependencyTag{name: "test"}
|
2018-07-06 04:20:23 +02:00
|
|
|
implLibTag = dependencyTag{name: "platform"}
|
2018-04-27 09:29:21 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type apiScope int
|
|
|
|
|
|
|
|
const (
|
|
|
|
apiScopePublic apiScope = iota
|
|
|
|
apiScopeSystem
|
|
|
|
apiScopeTest
|
2018-04-10 06:07:10 +02:00
|
|
|
)
|
|
|
|
|
2018-04-23 14:41:26 +02:00
|
|
|
var (
|
|
|
|
javaSdkLibrariesLock sync.Mutex
|
|
|
|
)
|
|
|
|
|
2018-04-10 06:07:10 +02:00
|
|
|
// java_sdk_library is to make a Java library that implements optional platform APIs to apps.
|
|
|
|
// It is actually a wrapper of several modules: 1) stubs library that clients are linked against
|
|
|
|
// to, 2) droiddoc module that internally generates API stubs source files, 3) the real runtime
|
|
|
|
// shared library that implements the APIs, and 4) XML file for adding the runtime lib to the
|
|
|
|
// classpath at runtime if requested via <uses-library>.
|
|
|
|
//
|
|
|
|
// TODO: these are big features that are currently missing
|
2018-05-28 11:02:19 +02:00
|
|
|
// 1) disallowing linking to the runtime shared lib
|
|
|
|
// 2) HTML generation
|
2018-04-10 06:07:10 +02:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
android.RegisterModuleType("java_sdk_library", sdkLibraryFactory)
|
|
|
|
|
|
|
|
android.PreArchMutators(func(ctx android.RegisterMutatorsContext) {
|
|
|
|
ctx.TopDown("java_sdk_library", sdkLibraryMutator).Parallel()
|
|
|
|
})
|
2018-04-23 14:41:26 +02:00
|
|
|
|
|
|
|
android.RegisterMakeVarsProvider(pctx, func(ctx android.MakeVarsContext) {
|
|
|
|
javaSdkLibraries := javaSdkLibraries(ctx.Config())
|
|
|
|
sort.Strings(*javaSdkLibraries)
|
|
|
|
ctx.Strict("JAVA_SDK_LIBRARIES", strings.Join(*javaSdkLibraries, " "))
|
|
|
|
})
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type sdkLibraryProperties struct {
|
|
|
|
// list of source files used to compile the Java module. May be .java, .logtags, .proto,
|
|
|
|
// or .aidl files.
|
|
|
|
Srcs []string `android:"arch_variant"`
|
|
|
|
|
2018-05-01 18:35:27 +02:00
|
|
|
// list of optional source files that are part of API but not part of runtime library.
|
|
|
|
Api_srcs []string `android:"arch_variant"`
|
|
|
|
|
2018-04-10 06:07:10 +02:00
|
|
|
// list of of java libraries that will be in the classpath
|
|
|
|
Libs []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// list of java libraries that will be compiled into the resulting runtime jar.
|
|
|
|
// These libraries are not compiled into the stubs jar.
|
|
|
|
Static_libs []string `android:"arch_variant"`
|
|
|
|
|
2018-06-25 09:04:37 +02:00
|
|
|
// List of Java libraries that will be in the classpath when building stubs
|
|
|
|
Stub_only_libs []string `android:"arch_variant"`
|
|
|
|
|
2018-04-10 06:07:10 +02:00
|
|
|
// list of package names that will be documented and publicized as API
|
|
|
|
Api_packages []string
|
|
|
|
|
2018-05-01 15:25:41 +02:00
|
|
|
// list of package names that must be hidden from the API
|
|
|
|
Hidden_api_packages []string
|
|
|
|
|
2018-06-15 03:38:59 +02:00
|
|
|
Errorprone struct {
|
|
|
|
// List of javac flags that should only be used when running errorprone.
|
|
|
|
Javacflags []string
|
|
|
|
}
|
|
|
|
|
2018-04-10 06:07:10 +02:00
|
|
|
// TODO: determines whether to create HTML doc or not
|
|
|
|
//Html_doc *bool
|
|
|
|
}
|
|
|
|
|
|
|
|
type sdkLibrary struct {
|
|
|
|
android.ModuleBase
|
|
|
|
android.DefaultableModuleBase
|
|
|
|
|
2018-05-01 16:33:08 +02:00
|
|
|
properties sdkLibraryProperties
|
|
|
|
deviceProperties CompilerDeviceProperties
|
2018-04-10 06:07:10 +02:00
|
|
|
|
|
|
|
publicApiStubsPath android.Paths
|
|
|
|
systemApiStubsPath android.Paths
|
2018-04-27 09:29:21 +02:00
|
|
|
testApiStubsPath android.Paths
|
2018-07-06 04:20:23 +02:00
|
|
|
implLibPath android.Paths
|
2018-07-13 09:16:44 +02:00
|
|
|
|
|
|
|
publicApiStubsImplPath android.Paths
|
|
|
|
systemApiStubsImplPath android.Paths
|
|
|
|
testApiStubsImplPath android.Paths
|
|
|
|
implLibImplPath android.Paths
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (module *sdkLibrary) DepsMutator(ctx android.BottomUpMutatorContext) {
|
|
|
|
// Add dependencies to the stubs library
|
2018-04-27 09:29:21 +02:00
|
|
|
ctx.AddDependency(ctx.Module(), publicApiStubsTag, module.stubsName(apiScopePublic))
|
|
|
|
ctx.AddDependency(ctx.Module(), systemApiStubsTag, module.stubsName(apiScopeSystem))
|
|
|
|
ctx.AddDependency(ctx.Module(), testApiStubsTag, module.stubsName(apiScopeTest))
|
2018-07-06 04:20:23 +02:00
|
|
|
ctx.AddDependency(ctx.Module(), implLibTag, module.implName())
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (module *sdkLibrary) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
2018-07-06 04:20:23 +02:00
|
|
|
// Record the paths to the header jars of the library (stubs and impl).
|
2018-04-10 06:07:10 +02:00
|
|
|
// When this java_sdk_library is dependened from others via "libs" property,
|
|
|
|
// the recorded paths will be returned depending on the link type of the caller.
|
|
|
|
ctx.VisitDirectDeps(func(to android.Module) {
|
|
|
|
otherName := ctx.OtherModuleName(to)
|
|
|
|
tag := ctx.OtherModuleDependencyTag(to)
|
|
|
|
|
2018-07-06 04:20:23 +02:00
|
|
|
if lib, ok := to.(Dependency); ok {
|
2018-04-10 06:07:10 +02:00
|
|
|
switch tag {
|
|
|
|
case publicApiStubsTag:
|
2018-07-06 04:20:23 +02:00
|
|
|
module.publicApiStubsPath = lib.HeaderJars()
|
2018-07-13 09:16:44 +02:00
|
|
|
module.publicApiStubsImplPath = lib.ImplementationJars()
|
2018-04-10 06:07:10 +02:00
|
|
|
case systemApiStubsTag:
|
2018-07-06 04:20:23 +02:00
|
|
|
module.systemApiStubsPath = lib.HeaderJars()
|
2018-07-13 09:16:44 +02:00
|
|
|
module.systemApiStubsImplPath = lib.ImplementationJars()
|
2018-04-27 09:29:21 +02:00
|
|
|
case testApiStubsTag:
|
2018-07-06 04:20:23 +02:00
|
|
|
module.testApiStubsPath = lib.HeaderJars()
|
2018-07-13 09:16:44 +02:00
|
|
|
module.testApiStubsImplPath = lib.ImplementationJars()
|
2018-07-06 04:20:23 +02:00
|
|
|
case implLibTag:
|
|
|
|
module.implLibPath = lib.HeaderJars()
|
2018-07-13 09:16:44 +02:00
|
|
|
module.implLibImplPath = lib.ImplementationJars()
|
2018-04-10 06:07:10 +02:00
|
|
|
default:
|
|
|
|
ctx.ModuleErrorf("depends on module %q of unknown tag %q", otherName, tag)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-04-23 14:41:26 +02:00
|
|
|
func (module *sdkLibrary) AndroidMk() android.AndroidMkData {
|
|
|
|
return android.AndroidMkData{
|
|
|
|
Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
|
2018-05-02 12:30:15 +02:00
|
|
|
// Create a phony module that installs the impl library, for the case when this lib is
|
|
|
|
// in PRODUCT_PACKAGES.
|
2018-04-23 14:41:26 +02:00
|
|
|
fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)")
|
|
|
|
fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir)
|
|
|
|
fmt.Fprintln(w, "LOCAL_MODULE :=", name)
|
|
|
|
fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES := "+module.implName())
|
|
|
|
fmt.Fprintln(w, "include $(BUILD_PHONY_PACKAGE)")
|
2018-05-02 12:30:15 +02:00
|
|
|
// Create dist rules to install the stubs libs to the dist dir
|
2018-05-06 00:53:02 +02:00
|
|
|
if len(module.publicApiStubsPath) == 1 {
|
|
|
|
fmt.Fprintln(w, "$(call dist-for-goals,sdk win_sdk,"+
|
|
|
|
module.publicApiStubsPath.Strings()[0]+
|
|
|
|
":"+path.Join("apistubs", "public", module.BaseModuleName()+".jar")+")")
|
|
|
|
}
|
|
|
|
if len(module.systemApiStubsPath) == 1 {
|
|
|
|
fmt.Fprintln(w, "$(call dist-for-goals,sdk win_sdk,"+
|
|
|
|
module.systemApiStubsPath.Strings()[0]+
|
|
|
|
":"+path.Join("apistubs", "system", module.BaseModuleName()+".jar")+")")
|
|
|
|
}
|
|
|
|
if len(module.testApiStubsPath) == 1 {
|
|
|
|
fmt.Fprintln(w, "$(call dist-for-goals,sdk win_sdk,"+
|
|
|
|
module.testApiStubsPath.Strings()[0]+
|
|
|
|
":"+path.Join("apistubs", "test", module.BaseModuleName()+".jar")+")")
|
|
|
|
}
|
2018-04-23 14:41:26 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-10 06:07:10 +02:00
|
|
|
// Module name of the stubs library
|
2018-04-27 09:29:21 +02:00
|
|
|
func (module *sdkLibrary) stubsName(apiScope apiScope) string {
|
2018-04-10 06:07:10 +02:00
|
|
|
stubsName := module.BaseModuleName() + sdkStubsLibrarySuffix
|
2018-04-27 09:29:21 +02:00
|
|
|
switch apiScope {
|
|
|
|
case apiScopeSystem:
|
2018-04-10 06:07:10 +02:00
|
|
|
stubsName = stubsName + sdkSystemApiSuffix
|
2018-04-27 09:29:21 +02:00
|
|
|
case apiScopeTest:
|
|
|
|
stubsName = stubsName + sdkTestApiSuffix
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
return stubsName
|
|
|
|
}
|
|
|
|
|
|
|
|
// Module name of the docs
|
2018-04-27 09:29:21 +02:00
|
|
|
func (module *sdkLibrary) docsName(apiScope apiScope) string {
|
2018-04-10 06:07:10 +02:00
|
|
|
docsName := module.BaseModuleName() + sdkDocsSuffix
|
2018-04-27 09:29:21 +02:00
|
|
|
switch apiScope {
|
|
|
|
case apiScopeSystem:
|
2018-04-10 06:07:10 +02:00
|
|
|
docsName = docsName + sdkSystemApiSuffix
|
2018-04-27 09:29:21 +02:00
|
|
|
case apiScopeTest:
|
|
|
|
docsName = docsName + sdkTestApiSuffix
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
return docsName
|
|
|
|
}
|
|
|
|
|
|
|
|
// Module name of the runtime implementation library
|
|
|
|
func (module *sdkLibrary) implName() string {
|
|
|
|
return module.BaseModuleName() + sdkImplLibrarySuffix
|
|
|
|
}
|
|
|
|
|
|
|
|
// File path to the runtime implementation library
|
|
|
|
func (module *sdkLibrary) implPath() string {
|
|
|
|
partition := "system"
|
|
|
|
if module.SocSpecific() {
|
|
|
|
partition = "vendor"
|
|
|
|
} else if module.DeviceSpecific() {
|
|
|
|
partition = "odm"
|
|
|
|
} else if module.ProductSpecific() {
|
|
|
|
partition = "product"
|
|
|
|
}
|
|
|
|
return "/" + partition + "/framework/" + module.implName() + ".jar"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Module name of the XML file for the lib
|
|
|
|
func (module *sdkLibrary) xmlFileName() string {
|
|
|
|
return module.BaseModuleName() + sdkXmlFileSuffix
|
|
|
|
}
|
|
|
|
|
|
|
|
// SDK version that the stubs library is built against. Note that this is always
|
|
|
|
// *current. Older stubs library built with a numberd SDK version is created from
|
|
|
|
// the prebuilt jar.
|
2018-04-27 09:29:21 +02:00
|
|
|
func (module *sdkLibrary) sdkVersion(apiScope apiScope) string {
|
|
|
|
switch apiScope {
|
|
|
|
case apiScopePublic:
|
|
|
|
return "current"
|
|
|
|
case apiScopeSystem:
|
2018-04-10 06:07:10 +02:00
|
|
|
return "system_current"
|
2018-04-27 09:29:21 +02:00
|
|
|
case apiScopeTest:
|
|
|
|
return "test_current"
|
|
|
|
default:
|
2018-04-10 06:07:10 +02:00
|
|
|
return "current"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// $(INTERNAL_PLATFORM_<apiTagName>_API_FILE) points to the generated
|
|
|
|
// api file for the current source
|
|
|
|
// TODO: remove this when apicheck is done in soong
|
2018-04-27 09:29:21 +02:00
|
|
|
func (module *sdkLibrary) apiTagName(apiScope apiScope) string {
|
2018-04-10 06:07:10 +02:00
|
|
|
apiTagName := strings.Replace(strings.ToUpper(module.BaseModuleName()), ".", "_", -1)
|
2018-04-27 09:29:21 +02:00
|
|
|
switch apiScope {
|
|
|
|
case apiScopeSystem:
|
2018-04-10 06:07:10 +02:00
|
|
|
apiTagName = apiTagName + "_SYSTEM"
|
2018-04-27 09:29:21 +02:00
|
|
|
case apiScopeTest:
|
|
|
|
apiTagName = apiTagName + "_TEST"
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
return apiTagName
|
|
|
|
}
|
|
|
|
|
2018-05-12 15:29:12 +02:00
|
|
|
func (module *sdkLibrary) latestApiFilegroupName(apiScope apiScope) string {
|
|
|
|
name := ":" + module.BaseModuleName() + ".api."
|
2018-04-27 09:29:21 +02:00
|
|
|
switch apiScope {
|
2018-05-12 15:29:12 +02:00
|
|
|
case apiScopePublic:
|
|
|
|
name = name + "public"
|
2018-04-27 09:29:21 +02:00
|
|
|
case apiScopeSystem:
|
2018-05-12 15:29:12 +02:00
|
|
|
name = name + "system"
|
2018-04-27 09:29:21 +02:00
|
|
|
case apiScopeTest:
|
2018-05-12 15:29:12 +02:00
|
|
|
name = name + "test"
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
2018-05-12 15:29:12 +02:00
|
|
|
name = name + ".latest"
|
|
|
|
return name
|
|
|
|
}
|
2018-04-10 06:07:10 +02:00
|
|
|
|
2018-05-12 15:29:12 +02:00
|
|
|
func (module *sdkLibrary) latestRemovedApiFilegroupName(apiScope apiScope) string {
|
|
|
|
name := ":" + module.BaseModuleName() + "-removed.api."
|
|
|
|
switch apiScope {
|
|
|
|
case apiScopePublic:
|
|
|
|
name = name + "public"
|
|
|
|
case apiScopeSystem:
|
|
|
|
name = name + "system"
|
|
|
|
case apiScopeTest:
|
|
|
|
name = name + "test"
|
|
|
|
}
|
|
|
|
name = name + ".latest"
|
|
|
|
return name
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Creates a static java library that has API stubs
|
2018-04-27 09:29:21 +02:00
|
|
|
func (module *sdkLibrary) createStubsLibrary(mctx android.TopDownMutatorContext, apiScope apiScope) {
|
2018-04-10 06:07:10 +02:00
|
|
|
props := struct {
|
|
|
|
Name *string
|
|
|
|
Srcs []string
|
|
|
|
Sdk_version *string
|
2018-06-25 09:04:37 +02:00
|
|
|
Libs []string
|
2018-04-10 06:07:10 +02:00
|
|
|
Soc_specific *bool
|
|
|
|
Device_specific *bool
|
|
|
|
Product_specific *bool
|
|
|
|
Product_variables struct {
|
|
|
|
Unbundled_build struct {
|
|
|
|
Enabled *bool
|
|
|
|
}
|
2018-04-23 14:41:26 +02:00
|
|
|
Pdk struct {
|
|
|
|
Enabled *bool
|
|
|
|
}
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
}{}
|
|
|
|
|
2018-04-27 09:29:21 +02:00
|
|
|
props.Name = proptools.StringPtr(module.stubsName(apiScope))
|
2018-04-10 06:07:10 +02:00
|
|
|
// sources are generated from the droiddoc
|
2018-04-27 09:29:21 +02:00
|
|
|
props.Srcs = []string{":" + module.docsName(apiScope)}
|
|
|
|
props.Sdk_version = proptools.StringPtr(module.sdkVersion(apiScope))
|
2018-06-25 09:04:37 +02:00
|
|
|
props.Libs = module.properties.Stub_only_libs
|
2018-04-10 06:07:10 +02:00
|
|
|
// Unbundled apps will use the prebult one from /prebuilts/sdk
|
|
|
|
props.Product_variables.Unbundled_build.Enabled = proptools.BoolPtr(false)
|
2018-04-23 14:41:26 +02:00
|
|
|
props.Product_variables.Pdk.Enabled = proptools.BoolPtr(false)
|
2018-04-10 06:07:10 +02:00
|
|
|
|
|
|
|
if module.SocSpecific() {
|
|
|
|
props.Soc_specific = proptools.BoolPtr(true)
|
|
|
|
} else if module.DeviceSpecific() {
|
|
|
|
props.Device_specific = proptools.BoolPtr(true)
|
|
|
|
} else if module.ProductSpecific() {
|
|
|
|
props.Product_specific = proptools.BoolPtr(true)
|
|
|
|
}
|
|
|
|
|
2018-06-27 02:59:05 +02:00
|
|
|
mctx.CreateModule(android.ModuleFactoryAdaptor(LibraryFactory), &props)
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Creates a droiddoc module that creates stubs source files from the given full source
|
|
|
|
// files
|
2018-04-27 09:29:21 +02:00
|
|
|
func (module *sdkLibrary) createDocs(mctx android.TopDownMutatorContext, apiScope apiScope) {
|
2018-04-10 06:07:10 +02:00
|
|
|
props := struct {
|
|
|
|
Name *string
|
|
|
|
Srcs []string
|
|
|
|
Custom_template *string
|
|
|
|
Installable *bool
|
|
|
|
Srcs_lib *string
|
|
|
|
Srcs_lib_whitelist_dirs []string
|
|
|
|
Srcs_lib_whitelist_pkgs []string
|
|
|
|
Libs []string
|
|
|
|
Args *string
|
|
|
|
Api_tag_name *string
|
|
|
|
Api_filename *string
|
|
|
|
Removed_api_filename *string
|
2018-05-12 15:29:12 +02:00
|
|
|
Check_api struct {
|
|
|
|
Current ApiToCheck
|
|
|
|
Last_released ApiToCheck
|
|
|
|
}
|
2018-05-29 04:35:17 +02:00
|
|
|
Aidl struct {
|
|
|
|
Include_dirs []string
|
|
|
|
Local_include_dirs []string
|
|
|
|
}
|
2018-04-10 06:07:10 +02:00
|
|
|
}{}
|
|
|
|
|
2018-04-27 09:29:21 +02:00
|
|
|
props.Name = proptools.StringPtr(module.docsName(apiScope))
|
2018-05-01 18:35:27 +02:00
|
|
|
props.Srcs = append(props.Srcs, module.properties.Srcs...)
|
|
|
|
props.Srcs = append(props.Srcs, module.properties.Api_srcs...)
|
2018-04-10 06:07:10 +02:00
|
|
|
props.Custom_template = proptools.StringPtr("droiddoc-templates-sdk")
|
|
|
|
props.Installable = proptools.BoolPtr(false)
|
2018-06-05 09:46:14 +02:00
|
|
|
// A droiddoc module has only one Libs property and doesn't distinguish between
|
|
|
|
// shared libs and static libs. So we need to add both of these libs to Libs property.
|
2018-04-10 06:07:10 +02:00
|
|
|
props.Libs = module.properties.Libs
|
2018-06-05 09:46:14 +02:00
|
|
|
props.Libs = append(props.Libs, module.properties.Static_libs...)
|
2018-05-29 04:35:17 +02:00
|
|
|
props.Aidl.Include_dirs = module.deviceProperties.Aidl.Include_dirs
|
|
|
|
props.Aidl.Local_include_dirs = module.deviceProperties.Aidl.Local_include_dirs
|
2018-04-10 06:07:10 +02:00
|
|
|
|
|
|
|
droiddocArgs := " -hide 110 -hide 111 -hide 113 -hide 121 -hide 125 -hide 126 -hide 127 -hide 128" +
|
|
|
|
" -stubpackages " + strings.Join(module.properties.Api_packages, ":") +
|
2018-05-01 15:25:41 +02:00
|
|
|
" " + android.JoinWithPrefix(module.properties.Hidden_api_packages, "-hidePackage ") +
|
2018-04-10 06:07:10 +02:00
|
|
|
" -nodocs"
|
2018-04-27 09:29:21 +02:00
|
|
|
switch apiScope {
|
|
|
|
case apiScopeSystem:
|
2018-04-10 06:07:10 +02:00
|
|
|
droiddocArgs = droiddocArgs + " -showAnnotation android.annotation.SystemApi"
|
2018-04-27 09:29:21 +02:00
|
|
|
case apiScopeTest:
|
|
|
|
droiddocArgs = droiddocArgs + " -showAnnotation android.annotation.TestApi"
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
props.Args = proptools.StringPtr(droiddocArgs)
|
|
|
|
|
|
|
|
// List of APIs identified from the provided source files are created. They are later
|
|
|
|
// compared against to the not-yet-released (a.k.a current) list of APIs and to the
|
|
|
|
// last-released (a.k.a numbered) list of API.
|
|
|
|
currentApiFileName := "current.txt"
|
|
|
|
removedApiFileName := "removed.txt"
|
2018-04-27 09:29:21 +02:00
|
|
|
switch apiScope {
|
|
|
|
case apiScopeSystem:
|
2018-04-10 06:07:10 +02:00
|
|
|
currentApiFileName = "system-" + currentApiFileName
|
|
|
|
removedApiFileName = "system-" + removedApiFileName
|
2018-04-27 09:29:21 +02:00
|
|
|
case apiScopeTest:
|
|
|
|
currentApiFileName = "test-" + currentApiFileName
|
|
|
|
removedApiFileName = "test-" + removedApiFileName
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
currentApiFileName = path.Join("api", currentApiFileName)
|
|
|
|
removedApiFileName = path.Join("api", removedApiFileName)
|
2018-05-12 15:29:12 +02:00
|
|
|
// TODO(jiyong): remove these three props
|
2018-04-27 09:29:21 +02:00
|
|
|
props.Api_tag_name = proptools.StringPtr(module.apiTagName(apiScope))
|
2018-04-10 06:07:10 +02:00
|
|
|
props.Api_filename = proptools.StringPtr(currentApiFileName)
|
|
|
|
props.Removed_api_filename = proptools.StringPtr(removedApiFileName)
|
|
|
|
|
2018-05-12 15:29:12 +02:00
|
|
|
// check against the not-yet-release API
|
|
|
|
props.Check_api.Current.Api_file = proptools.StringPtr(currentApiFileName)
|
|
|
|
props.Check_api.Current.Removed_api_file = proptools.StringPtr(removedApiFileName)
|
|
|
|
// any change is reported as error
|
|
|
|
props.Check_api.Current.Args = proptools.StringPtr("-error 2 -error 3 -error 4 -error 5 " +
|
|
|
|
"-error 6 -error 7 -error 8 -error 9 -error 10 -error 11 -error 12 -error 13 " +
|
|
|
|
"-error 14 -error 15 -error 16 -error 17 -error 18 -error 19 -error 20 " +
|
|
|
|
"-error 21 -error 23 -error 24 -error 25 -error 26 -error 27")
|
|
|
|
|
|
|
|
// check against the latest released API
|
|
|
|
props.Check_api.Last_released.Api_file = proptools.StringPtr(
|
|
|
|
module.latestApiFilegroupName(apiScope))
|
|
|
|
props.Check_api.Last_released.Removed_api_file = proptools.StringPtr(
|
|
|
|
module.latestRemovedApiFilegroupName(apiScope))
|
|
|
|
// backward incompatible changes are reported as error
|
|
|
|
props.Check_api.Last_released.Args = proptools.StringPtr("-hide 2 -hide 3 -hide 4 -hide 5 " +
|
|
|
|
"-hide 6 -hide 24 -hide 25 -hide 26 -hide 27 " +
|
|
|
|
"-error 7 -error 8 -error 9 -error 10 -error 11 -error 12 -error 13 -error 14 " +
|
|
|
|
"-error 15 -error 16 -error 17 -error 18")
|
|
|
|
|
2018-04-23 14:41:26 +02:00
|
|
|
// Include the part of the framework source. This is required for the case when
|
|
|
|
// API class is extending from the framework class. In that case, doclava needs
|
|
|
|
// to know whether the base class is hidden or not. Since that information is
|
|
|
|
// encoded as @hide string in the comment, we need source files for the classes,
|
2018-05-01 18:35:27 +02:00
|
|
|
// not the compiled ones.
|
2018-04-10 06:07:10 +02:00
|
|
|
props.Srcs_lib = proptools.StringPtr("framework")
|
|
|
|
props.Srcs_lib_whitelist_dirs = []string{"core/java"}
|
2018-04-23 14:41:26 +02:00
|
|
|
// Add android.annotation package to give access to the framework-defined
|
|
|
|
// annotations such as SystemApi, NonNull, etc.
|
2018-05-01 18:35:27 +02:00
|
|
|
props.Srcs_lib_whitelist_pkgs = []string{"android.annotation"}
|
2018-04-23 14:41:26 +02:00
|
|
|
// These libs are required by doclava to parse the framework sources add via
|
|
|
|
// Src_lib and Src_lib_whitelist_* properties just above.
|
2018-04-10 06:07:10 +02:00
|
|
|
// If we don't add them to the classpath, errors messages are generated by doclava,
|
|
|
|
// though they don't break the build.
|
2018-04-23 14:41:26 +02:00
|
|
|
props.Libs = append(props.Libs, "conscrypt", "bouncycastle", "okhttp", "framework")
|
2018-04-10 06:07:10 +02:00
|
|
|
|
|
|
|
mctx.CreateModule(android.ModuleFactoryAdaptor(DroiddocFactory), &props)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Creates the runtime library. This is not directly linkable from other modules.
|
|
|
|
func (module *sdkLibrary) createImplLibrary(mctx android.TopDownMutatorContext) {
|
|
|
|
props := struct {
|
|
|
|
Name *string
|
|
|
|
Srcs []string
|
|
|
|
Libs []string
|
|
|
|
Static_libs []string
|
|
|
|
Soc_specific *bool
|
|
|
|
Device_specific *bool
|
|
|
|
Product_specific *bool
|
2018-06-27 02:59:05 +02:00
|
|
|
Installable *bool
|
2018-04-10 06:07:10 +02:00
|
|
|
Required []string
|
2018-06-15 03:38:59 +02:00
|
|
|
Errorprone struct {
|
|
|
|
Javacflags []string
|
|
|
|
}
|
2018-04-10 06:07:10 +02:00
|
|
|
}{}
|
|
|
|
|
|
|
|
props.Name = proptools.StringPtr(module.implName())
|
|
|
|
props.Srcs = module.properties.Srcs
|
|
|
|
props.Libs = module.properties.Libs
|
|
|
|
props.Static_libs = module.properties.Static_libs
|
2018-06-27 02:59:05 +02:00
|
|
|
props.Installable = proptools.BoolPtr(true)
|
2018-04-10 06:07:10 +02:00
|
|
|
// XML file is installed along with the impl lib
|
|
|
|
props.Required = []string{module.xmlFileName()}
|
2018-06-15 03:38:59 +02:00
|
|
|
props.Errorprone.Javacflags = module.properties.Errorprone.Javacflags
|
2018-04-10 06:07:10 +02:00
|
|
|
|
|
|
|
if module.SocSpecific() {
|
|
|
|
props.Soc_specific = proptools.BoolPtr(true)
|
|
|
|
} else if module.DeviceSpecific() {
|
|
|
|
props.Device_specific = proptools.BoolPtr(true)
|
|
|
|
} else if module.ProductSpecific() {
|
|
|
|
props.Product_specific = proptools.BoolPtr(true)
|
|
|
|
}
|
|
|
|
|
2018-06-27 02:59:05 +02:00
|
|
|
mctx.CreateModule(android.ModuleFactoryAdaptor(LibraryFactory), &props, &module.deviceProperties)
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Creates the xml file that publicizes the runtime library
|
|
|
|
func (module *sdkLibrary) createXmlFile(mctx android.TopDownMutatorContext) {
|
|
|
|
template := `
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2018 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.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<permissions>
|
|
|
|
<library name="%s" file="%s"/>
|
|
|
|
</permissions>
|
|
|
|
`
|
|
|
|
// genrule to generate the xml file content from the template above
|
|
|
|
// TODO: preserve newlines in the generate xml file. Newlines are being squashed
|
|
|
|
// in the ninja file. Do we need to have an external tool for this?
|
|
|
|
xmlContent := fmt.Sprintf(template, module.BaseModuleName(), module.implPath())
|
|
|
|
genruleProps := struct {
|
|
|
|
Name *string
|
|
|
|
Cmd *string
|
|
|
|
Out []string
|
|
|
|
}{}
|
|
|
|
genruleProps.Name = proptools.StringPtr(module.xmlFileName() + "-gen")
|
|
|
|
genruleProps.Cmd = proptools.StringPtr("echo '" + xmlContent + "' > $(out)")
|
|
|
|
genruleProps.Out = []string{module.xmlFileName()}
|
|
|
|
mctx.CreateModule(android.ModuleFactoryAdaptor(genrule.GenRuleFactory), &genruleProps)
|
|
|
|
|
|
|
|
// creates a prebuilt_etc module to actually place the xml file under
|
|
|
|
// <partition>/etc/permissions
|
|
|
|
etcProps := struct {
|
|
|
|
Name *string
|
2018-04-25 15:57:34 +02:00
|
|
|
Src *string
|
2018-04-10 06:07:10 +02:00
|
|
|
Sub_dir *string
|
|
|
|
Soc_specific *bool
|
|
|
|
Device_specific *bool
|
|
|
|
Product_specific *bool
|
|
|
|
}{}
|
|
|
|
etcProps.Name = proptools.StringPtr(module.xmlFileName())
|
2018-04-25 15:57:34 +02:00
|
|
|
etcProps.Src = proptools.StringPtr(":" + module.xmlFileName() + "-gen")
|
2018-04-10 06:07:10 +02:00
|
|
|
etcProps.Sub_dir = proptools.StringPtr("permissions")
|
|
|
|
if module.SocSpecific() {
|
|
|
|
etcProps.Soc_specific = proptools.BoolPtr(true)
|
|
|
|
} else if module.DeviceSpecific() {
|
|
|
|
etcProps.Device_specific = proptools.BoolPtr(true)
|
|
|
|
} else if module.ProductSpecific() {
|
|
|
|
etcProps.Product_specific = proptools.BoolPtr(true)
|
|
|
|
}
|
|
|
|
mctx.CreateModule(android.ModuleFactoryAdaptor(android.PrebuiltEtcFactory), &etcProps)
|
|
|
|
}
|
|
|
|
|
|
|
|
// to satisfy SdkLibraryDependency interface
|
|
|
|
func (module *sdkLibrary) HeaderJars(linkType linkType) android.Paths {
|
|
|
|
// This module is just a wrapper for the stubs.
|
2018-07-06 04:20:23 +02:00
|
|
|
if linkType == javaSystem {
|
2018-04-10 06:07:10 +02:00
|
|
|
return module.systemApiStubsPath
|
2018-07-06 04:20:23 +02:00
|
|
|
} else if linkType == javaPlatform {
|
|
|
|
return module.implLibPath
|
2018-04-10 06:07:10 +02:00
|
|
|
} else {
|
|
|
|
return module.publicApiStubsPath
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-13 09:16:44 +02:00
|
|
|
// to satisfy SdkLibraryDependency interface
|
|
|
|
func (module *sdkLibrary) ImplementationJars(linkType linkType) android.Paths {
|
|
|
|
// This module is just a wrapper for the stubs.
|
|
|
|
if linkType == javaSystem {
|
|
|
|
return module.systemApiStubsImplPath
|
|
|
|
} else if linkType == javaPlatform {
|
|
|
|
return module.implLibImplPath
|
|
|
|
} else {
|
|
|
|
return module.publicApiStubsImplPath
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-23 14:41:26 +02:00
|
|
|
func javaSdkLibraries(config android.Config) *[]string {
|
|
|
|
return config.Once("javaSdkLibraries", func() interface{} {
|
|
|
|
return &[]string{}
|
|
|
|
}).(*[]string)
|
|
|
|
}
|
|
|
|
|
2018-04-10 06:07:10 +02:00
|
|
|
// For a java_sdk_library module, create internal modules for stubs, docs,
|
|
|
|
// runtime libs and xml file. If requested, the stubs and docs are created twice
|
|
|
|
// once for public API level and once for system API level
|
|
|
|
func sdkLibraryMutator(mctx android.TopDownMutatorContext) {
|
|
|
|
if module, ok := mctx.Module().(*sdkLibrary); ok {
|
2018-04-25 12:56:13 +02:00
|
|
|
if module.properties.Srcs == nil {
|
|
|
|
mctx.PropertyErrorf("srcs", "java_sdk_library must specify srcs")
|
|
|
|
}
|
|
|
|
if module.properties.Api_packages == nil {
|
|
|
|
mctx.PropertyErrorf("api_packages", "java_sdk_library must specify api_packages")
|
|
|
|
}
|
|
|
|
|
2018-04-10 06:07:10 +02:00
|
|
|
// for public API stubs
|
2018-04-27 09:29:21 +02:00
|
|
|
module.createStubsLibrary(mctx, apiScopePublic)
|
|
|
|
module.createDocs(mctx, apiScopePublic)
|
2018-04-10 06:07:10 +02:00
|
|
|
|
|
|
|
// for system API stubs
|
2018-04-27 09:29:21 +02:00
|
|
|
module.createStubsLibrary(mctx, apiScopeSystem)
|
|
|
|
module.createDocs(mctx, apiScopeSystem)
|
|
|
|
|
|
|
|
// for test API stubs
|
|
|
|
module.createStubsLibrary(mctx, apiScopeTest)
|
|
|
|
module.createDocs(mctx, apiScopeTest)
|
2018-04-10 06:07:10 +02:00
|
|
|
|
|
|
|
// for runtime
|
|
|
|
module.createXmlFile(mctx)
|
|
|
|
module.createImplLibrary(mctx)
|
2018-04-23 14:41:26 +02:00
|
|
|
|
|
|
|
// record java_sdk_library modules so that they are exported to make
|
|
|
|
javaSdkLibraries := javaSdkLibraries(mctx.Config())
|
|
|
|
javaSdkLibrariesLock.Lock()
|
|
|
|
defer javaSdkLibrariesLock.Unlock()
|
|
|
|
*javaSdkLibraries = append(*javaSdkLibraries, module.BaseModuleName())
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func sdkLibraryFactory() android.Module {
|
|
|
|
module := &sdkLibrary{}
|
|
|
|
module.AddProperties(&module.properties)
|
2018-05-01 16:33:08 +02:00
|
|
|
module.AddProperties(&module.deviceProperties)
|
2018-04-10 06:07:10 +02:00
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon)
|
|
|
|
android.InitDefaultableModule(module)
|
|
|
|
return module
|
|
|
|
}
|