| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 1 | // Copyright 2022 Google Inc. All rights reserved. | 
|  | 2 | // | 
|  | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 4 | // you may not use this file except in compliance with the License. | 
|  | 5 | // You may obtain a copy of the License at | 
|  | 6 | // | 
|  | 7 | //     http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 8 | // | 
|  | 9 | // Unless required by applicable law or agreed to in writing, software | 
|  | 10 | // distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 12 | // See the License for the specific language governing permissions and | 
|  | 13 | // limitations under the License. | 
|  | 14 |  | 
|  | 15 | package multitree | 
|  | 16 |  | 
|  | 17 | import ( | 
|  | 18 | "android/soong/android" | 
| Kiyoung Kim | 22e6b50 | 2022-08-31 14:05:45 +0900 | [diff] [blame] | 19 | "strings" | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 20 |  | 
|  | 21 | "github.com/google/blueprint" | 
|  | 22 | ) | 
|  | 23 |  | 
|  | 24 | var ( | 
|  | 25 | apiImportNameSuffix = ".apiimport" | 
|  | 26 | ) | 
|  | 27 |  | 
|  | 28 | func init() { | 
|  | 29 | RegisterApiImportsModule(android.InitRegistrationContext) | 
| Kiyoung Kim | 22e6b50 | 2022-08-31 14:05:45 +0900 | [diff] [blame] | 30 | android.RegisterMakeVarsProvider(pctx, makeVarsProvider) | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 31 | } | 
|  | 32 |  | 
|  | 33 | func RegisterApiImportsModule(ctx android.RegistrationContext) { | 
|  | 34 | ctx.RegisterModuleType("api_imports", apiImportsFactory) | 
|  | 35 | } | 
|  | 36 |  | 
|  | 37 | type ApiImports struct { | 
|  | 38 | android.ModuleBase | 
|  | 39 | properties apiImportsProperties | 
|  | 40 | } | 
|  | 41 |  | 
|  | 42 | type apiImportsProperties struct { | 
| Kiyoung Kim | 76b06f3 | 2023-02-06 22:08:13 +0900 | [diff] [blame] | 43 | Shared_libs      []string // List of C shared libraries from API surfaces | 
|  | 44 | Header_libs      []string // List of C header libraries from API surfaces | 
|  | 45 | Apex_shared_libs []string // List of C shared libraries with APEX stubs | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 46 | } | 
|  | 47 |  | 
|  | 48 | // 'api_imports' is a module which describes modules available from API surfaces. | 
|  | 49 | // This module is required to get the list of all imported API modules, because | 
|  | 50 | // it is discouraged to loop and fetch all modules from its type information. The | 
|  | 51 | // only module with name 'api_imports' will be used from the build. | 
|  | 52 | func apiImportsFactory() android.Module { | 
|  | 53 | module := &ApiImports{} | 
|  | 54 | module.AddProperties(&module.properties) | 
|  | 55 | android.InitAndroidModule(module) | 
|  | 56 | return module | 
|  | 57 | } | 
|  | 58 |  | 
|  | 59 | func (imports *ApiImports) GenerateAndroidBuildActions(ctx android.ModuleContext) { | 
|  | 60 | // ApiImport module does not generate any build actions | 
|  | 61 | } | 
|  | 62 |  | 
|  | 63 | type ApiImportInfo struct { | 
| Kiyoung Kim | 76b06f3 | 2023-02-06 22:08:13 +0900 | [diff] [blame] | 64 | SharedLibs, HeaderLibs, ApexSharedLibs map[string]string | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 65 | } | 
|  | 66 |  | 
| Colin Cross | bc7d76c | 2023-12-12 16:39:03 -0800 | [diff] [blame] | 67 | var ApiImportsProvider = blueprint.NewMutatorProvider[ApiImportInfo]("deps") | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 68 |  | 
|  | 69 | // Store module lists into ApiImportInfo and share it over mutator provider. | 
|  | 70 | func (imports *ApiImports) DepsMutator(ctx android.BottomUpMutatorContext) { | 
|  | 71 | generateNameMapWithSuffix := func(names []string) map[string]string { | 
|  | 72 | moduleNameMap := make(map[string]string) | 
|  | 73 | for _, name := range names { | 
|  | 74 | moduleNameMap[name] = name + apiImportNameSuffix | 
|  | 75 | } | 
|  | 76 |  | 
|  | 77 | return moduleNameMap | 
|  | 78 | } | 
|  | 79 |  | 
|  | 80 | sharedLibs := generateNameMapWithSuffix(imports.properties.Shared_libs) | 
|  | 81 | headerLibs := generateNameMapWithSuffix(imports.properties.Header_libs) | 
| Kiyoung Kim | 76b06f3 | 2023-02-06 22:08:13 +0900 | [diff] [blame] | 82 | apexSharedLibs := generateNameMapWithSuffix(imports.properties.Apex_shared_libs) | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 83 |  | 
| Colin Cross | 4021302 | 2023-12-13 15:19:49 -0800 | [diff] [blame] | 84 | android.SetProvider(ctx, ApiImportsProvider, ApiImportInfo{ | 
| Kiyoung Kim | 76b06f3 | 2023-02-06 22:08:13 +0900 | [diff] [blame] | 85 | SharedLibs:     sharedLibs, | 
|  | 86 | HeaderLibs:     headerLibs, | 
|  | 87 | ApexSharedLibs: apexSharedLibs, | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 88 | }) | 
|  | 89 | } | 
|  | 90 |  | 
|  | 91 | func GetApiImportSuffix() string { | 
|  | 92 | return apiImportNameSuffix | 
|  | 93 | } | 
| Kiyoung Kim | 22e6b50 | 2022-08-31 14:05:45 +0900 | [diff] [blame] | 94 |  | 
|  | 95 | func makeVarsProvider(ctx android.MakeVarsContext) { | 
|  | 96 | ctx.VisitAllModules(func(m android.Module) { | 
|  | 97 | if i, ok := m.(*ApiImports); ok { | 
|  | 98 | ctx.Strict("API_IMPORTED_SHARED_LIBRARIES", strings.Join(i.properties.Shared_libs, " ")) | 
|  | 99 | ctx.Strict("API_IMPORTED_HEADER_LIBRARIES", strings.Join(i.properties.Header_libs, " ")) | 
|  | 100 | } | 
|  | 101 | }) | 
|  | 102 | } |